/* ============================================================
   PRIME LEDGER GROUP — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy:       #0B1F3A;
  --navy-mid:   #122848;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --cream:      #F7F4EE;
  --cream-dark: #EDE8DF;
  --slate:      #4A5568;
  --white:      #FFFFFF;
  --shadow:     0 4px 32px rgba(11,31,58,0.10);
  --radius:     6px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}

.section { padding: 80px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: var(--white); }

.section__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 600px;
  margin-bottom: 48px;
}

.section--dark .section__subtitle { color: #a0aec0; }

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn--outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ── GOLD DIVIDER ───────────────────────────────────────────── */
.gold-bar {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 12px 0 24px;
}

/* ── CARDS ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.card:hover { transform: translateY(-6px); border-top-color: var(--gold); box-shadow: 0 12px 40px rgba(11,31,58,0.14); }

.card__icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 1.5rem;
}

/* ── HERO (reusable across pages) ──────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.5rem); }
.page-hero p  { color: #a0aec0; font-size: 1.1rem; margin-top: 16px; max-width: 600px; }
.page-hero .gold-bar { margin-top: 20px; }

/* ── GRID HELPERS ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── FORM ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

 /* for the footer styles, which are not included in the previous snippet.  */
.site-footer {
  background: var(--navy);
  color: #a0aec0;
  font-size: 0.9rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}

/* Brand */
.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer__logo { width: 44px; height: 44px; object-fit: contain; }
.footer__company {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.footer__group {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer__desc { line-height: 1.8; margin-bottom: 24px; }

.footer__socials { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #a0aec0;
  transition: all 0.2s;
  text-decoration: none;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

/* Links heading */
.footer__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* Pages grid — 2 columns */
.footer__grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.footer__grid a {
  color: #a0aec0;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.88rem;
}
.footer__grid a:hover { color: var(--gold); }

/* Contact */
.footer__contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer__contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.footer__contact-list svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

/* Bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: #718096;
}

/* Responsive */
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* specific for the number and address */
.plg-contact-block {
  margin-top: 10px;
}

.plg-contact-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.plg-contact-grid {
  display: flex;
  flex-direction: column;   /* KEY CHANGE: vertical */
  gap: 14px;

  list-style: none;
  padding: 0;
  margin: 0;
}

.plg-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: #cbd5e0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.plg-contact-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
}

.plg-contact-text {
  word-break: break-word;
}