/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:        #1B2A4A;
  --navy-mid:    #2E4272;
  --navy-light:  #3D5A8A;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #A88230;
  --cream:       #F5F0E8;
  --cream-light: #FAF7F2;
  --white:       #FFFFFF;
  --text-body:   #4A5568;
  --text-light:  #718096;
  --border:      #E8E0D0;
  --shadow-sm:   0 2px 12px rgba(27,42,74,0.07);
  --shadow-md:   0 6px 28px rgba(27,42,74,0.11);
  --shadow-lg:   0 12px 48px rgba(27,42,74,0.14);
  --radius:      10px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  line-height: 1.65;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-body); }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0.75rem auto 0;
  text-align: center;
}
.gold-rule {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 1rem 0;
  border-radius: 2px;
}
.gold-rule.centered { margin: 1rem auto; }

/* ── LAYOUT ───────────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.bg-cream   { background: var(--cream-light); }
.bg-navy    { background: var(--navy); }
.bg-white   { background: var(--white); }

/* ── NAVIGATION ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo-img {
  height: 90px;
  width: auto;
}
/* Keep text-based fallback styles in case needed */
.nav__logo-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.nav__logo-sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover        { color: var(--navy); }
.nav__link:hover::after { width: 100%; }
.nav__link.active       { color: var(--navy); font-weight: 600; }
.nav__link.active::after{ width: 100%; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(105deg,
      rgba(27,42,74,0.93) 0%,
      rgba(27,42,74,0.78) 50%,
      rgba(27,42,74,0.45) 100%),
    url('https://images.pexels.com/photos/5865384/pexels-photo-5865384.jpeg?auto=compress&cs=tinysrgb&w=1920')
    center/cover no-repeat;
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
  z-index: 2;
}
.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(200,216,240,0.9);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__deco {
  position: absolute;
  right: 0; top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(135deg, rgba(36,53,96,0.55) 0%, rgba(30,48,96,0.45) 100%);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}
.hero__deco-bar {
  position: absolute;
  right: 0; top: 0;
  width: 14%;
  height: 100%;
  background: rgba(26,43,85,0.50);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* Smaller page hero */
.page-hero {
  background:
    linear-gradient(105deg,
      rgba(27,42,74,0.93) 0%,
      rgba(27,42,74,0.78) 50%,
      rgba(27,42,74,0.45) 100%),
    url('https://images.pexels.com/photos/5865384/pexels-photo-5865384.jpeg?auto=compress&cs=tinysrgb&w=1920')
    center/cover no-repeat;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
  z-index: 2;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(200,216,240,0.85); font-size: 1.1rem; max-width: 560px; }
.page-hero__deco {
  position: absolute;
  right: 0; top: 0;
  width: 28%;
  height: 100%;
  background: linear-gradient(135deg, rgba(36,53,96,0.55) 0%, rgba(30,48,96,0.45) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
}

/* ── CARDS ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card--gold-top { border-top: 3px solid var(--gold); }
.card--navy-top { border-top: 3px solid var(--navy); }
.card--navy {
  background: var(--navy);
  border-color: var(--navy-mid);
  color: var(--white);
}
.card--navy h3, .card--navy h4 { color: var(--white); }
.card--navy p { color: rgba(208,220,238,0.9); }

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}
.card__icon--navy {
  background: var(--navy);
}

/* ── GRIDS ────────────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-3, .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-4          { grid-template-columns: repeat(2, 1fr); }
  .grid-2          { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-6 { grid-template-columns: 1fr; }
}

/* ── STEPS ────────────────────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; position: relative; }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__header {
  background: var(--navy);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.step__num  { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.step__icon { font-size: 1.8rem; }
.step__body { padding: 1.6rem; }
.step__body h3 { margin-bottom: 0.5rem; }
.step__body p  { font-size: 0.93rem; }
@media (max-width: 780px) { .steps { grid-template-columns: 1fr; } }

/* ── STAT BANNER ──────────────────────────────────────────────────────────── */
.stats {
  background: var(--navy);
  padding: 4rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: #243560;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background var(--transition);
}
.stat:hover { background: #2E4272; }
.stat__num  { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.stat__label{ font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem; }
.stat__sub  { font-size: 0.78rem; color: rgba(168,191,218,0.8); font-style: italic; }
.stats__note{ text-align: center; margin-top: 1.5rem; font-size: 0.8rem; color: rgba(102,119,153,0.9); font-style: italic; }
@media (max-width: 700px) { .stats__grid { grid-template-columns: repeat(2,1fr); } }

/* ── CATEGORY GRID ────────────────────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.cat-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.5rem 1.2rem;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.cat-card h4 { color: var(--white); font-size: 0.95rem; line-height: 1.4; }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px)  { .cat-grid { grid-template-columns: 1fr; } }

/* ── CTA BANNER ───────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(200,216,240,0.85); font-size: 1.1rem; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-banner__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── SECTION HEADINGS ─────────────────────────────────────────────────────── */
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { margin-bottom: 0.5rem; }

/* ── FEATURE ROW ──────────────────────────────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse    { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row__icon {
  width: 72px;
  height: 72px;
  background: var(--cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  border: 2px solid var(--gold);
}
.feature-row h3 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.feature-row p  { font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
.feature-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 2.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.feature-visual h4 { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.feature-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.93rem;
  color: rgba(208,220,238,0.9);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 800px) {
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse { direction: ltr; }
}

/* ── TWO-COLUMN VALUE ─────────────────────────────────────────────────────── */
.value-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.value-col {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.value-col__head {
  background: var(--gold);
  padding: 1.1rem 1.75rem;
}
.value-col__head h3 { color: var(--navy); font-size: 1.15rem; }
.value-col__body { padding: 1.75rem; }
.value-col__body li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.93rem;
  color: rgba(208,220,238,0.9);
  line-height: 1.5;
}
.value-col__body li:last-child { border-bottom: none; }
.value-col__body li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
@media (max-width: 700px) { .value-cols { grid-template-columns: 1fr; } }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.faq__q::before { content: 'Q'; color: var(--gold); flex-shrink: 0; font-weight: 700; }
.faq__a { padding-left: 1.5rem; font-size: 0.95rem; color: var(--text-body); line-height: 1.7; }

/* ── CONTACT FORM ─────────────────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 4rem; align-items: start; }
@media (max-width: 820px) { .contact-layout { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.93rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--cream-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-info-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.55rem 0;
  font-size: 0.93rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }

.steps-expect { counter-reset: expect; }
.step-expect {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  counter-increment: expect;
}
.step-expect::before {
  content: counter(expect);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}
.step-expect__text { font-size: 0.93rem; }
.step-expect__text strong { color: var(--navy); display: block; font-size: 0.9rem; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(200,216,240,0.8);
  padding: 3.5rem 0 2rem;
  border-top: 4px solid var(--gold);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.75rem;
}
.footer__logo-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer__logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__desc { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }
.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__links li { padding: 0.3rem 0; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(200,216,240,0.75);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(200,216,240,0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ── UTILITIES ────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(201,168,76,0.12);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.3);
}
