*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --navy: #0D1B2A;
    --navy-mid: #1A2E45;
    --gold: #C9A84C;
    --gold-light: #E8C96E;
    --gold-pale: #F9F2E2;
    --teal: #1E7A6E;
    --teal-light: #25998A;
    --white: #FFFFFF;
    --offwhite: #F7F6F2;
    --gray-light: #EEECe6;
    --gray-mid: #8A8A8A;
    --gray-dark: #3D3D3D;
    --text: #1A1A1A;
  }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); }

  /* ===== TOP BAR ===== */
  .topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    padding: 6px 0;
  }
  .topbar .inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; }
  .topbar a { color: var(--gold-light); text-decoration: none; }
  .topbar span { margin: 0 16px 0 0; }

    .header-logo img {
        width: 200px !important;
    }
    
    .footer-logo img {
        width: 200px !important;
    }

  /* ===== NAV ===== */
  nav {
    background: var(--white);
    border-bottom: 1px solid #e8e6df;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 16px rgba(13,27,42,0.07);
  }
  .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .logo-mark {
    width: 44px; height: 44px; background: var(--navy);
    border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    position: relative;
  }
  .logo-mark svg { width: 26px; height: 26px; }
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--navy); letter-spacing: -0.3px; }
  .logo-sub { font-size: 9.5px; font-weight: 500; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }
  .nav-links { display: flex; align-items: center; gap: 4px; }
  .nav-links a {
    font-size: 13.5px; font-weight: 500; color: var(--gray-dark);
    text-decoration: none; padding: 8px 14px; border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }
  .nav-links a:hover { background: var(--offwhite); color: var(--navy); }
  .nav-links .dropdown { position: relative; }
  .nav-links .dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.6; }
  .nav-cta {
    background: var(--gold); color: var(--navy);
    font-size: 13.5px; font-weight: 600;
    padding: 10px 22px; border-radius: 7px;
    text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); }


  /* ══════════════════════════════════════════
   MAIN NAV SHELL
══════════════════════════════════════════ */
.site-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 300;
  box-shadow: 0 2px 20px rgba(13,27,42,.08);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 52px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; position: relative;
}

/* ── LOGO ── */
.nav-logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none; flex-shrink: 0;
}

/* ── MENU LIST ── */
.nav-menu {
  display: flex; align-items: center; list-style: none;
  gap: 0; height: 100%;
}

/* ── TOP-LEVEL ITEMS ── */
.nav-menu > li {
  position: relative; height: 100%;
  display: flex; align-items: center;
}
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  font-size: 13.5px; font-weight: 500;
  color: var(--gray-dark); text-decoration: none;
  padding: 0 13px; height: 100%;
  border-bottom: 2.5px solid transparent;
  transition: color .18s, border-color .18s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
/* Arrow icon for parents */
.nav-menu > li.has-child > a .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px;
  transition: transform .22s;
  opacity: .5; font-size: 10px; margin-left: 2px;
}
.nav-menu > li.has-child:hover > a .arrow,
.nav-menu > li.has-child.open > a .arrow {
  transform: rotate(180deg); opacity: .8;
}

/* ══════════════════════════════════════════
   MEGA / DROPDOWN PANEL
══════════════════════════════════════════ */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%; transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(13,27,42,.14);
  padding: 15px 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s, transform .2s, visibility .2s;
  transform: translateX(-50%) translateY(8px);
  z-index: 400;
  min-width: 220px;
}
/* Show on hover */
.nav-menu > li.has-child:hover .dropdown-panel,
.nav-menu > li.has-child.open .dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* ── SIMPLE DROPDOWN (single column) ── */
.dropdown-simple { width: 240px; }
.dropdown-simple ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.dropdown-simple ul li a {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 500; color: var(--gray-dark);
  text-decoration: none; padding: 9px 12px;
  border-radius: 7px; transition: background .15s, color .15s;
}
.dropdown-simple ul li a:hover { background: var(--offwhite); color: var(--navy); }
.dropdown-simple ul li a .d-icon { font-size: 16px; flex-shrink: 0; width: 22px; }

/* ── MEGA DROPDOWN (multi-column) ── */
.dropdown-mega {
  left: 0; transform: translateX(0);
  width: 820px;
}
.dropdown-mega:hover,
.nav-menu > li.has-child:hover .dropdown-mega {
  transform: translateX(0) translateY(0);
}
.nav-menu > li.has-child .dropdown-mega {
  transform: translateX(0) translateY(8px);
}
.mega-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3,1fr);
  gap: 0;
}
/* Featured promo column */
.mega-promo {
  background: var(--navy);
  border-radius: 9px;
  padding: 22px 20px;
  margin-right: 20px;
}
.mega-promo-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
.mega-promo-item {
  display: block; text-decoration: none;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: padding-left .15s;
}
.mega-promo-item:last-child { border-bottom: none; }
.mega-promo-item:hover { padding-left: 4px; }
.mega-promo-item .mpi-title {
  font-size: 13px; font-weight: 600; color: var(--white);
  margin-bottom: 3px; line-height: 1.35;
}
.mega-promo-item .mpi-meta {
  font-size: 11px; color: rgba(255,255,255,.4);
}
/* Category columns */
.mega-col { padding: 0 16px; border-left: 1px solid var(--border); }
.mega-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 12px; padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mega-col ul { list-style: none; display: flex; flex-direction: column; gap: 1px; }
.mega-col ul li a {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--gray-dark); text-decoration: none;
  padding: 7px 8px; border-radius: 6px;
  transition: background .14s, color .14s;
}
.mega-col ul li a:hover { background: var(--offwhite); color: var(--navy); }
.mega-col ul li a.new::after {
  content: 'NEW'; font-size: 9px; font-weight: 800; letter-spacing: 1px;
  background: var(--teal); color: var(--white);
  padding: 1px 5px; border-radius: 3px; margin-left: 6px;
  vertical-align: middle;
}
/* Mega footer */
.mega-footer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--border);
  margin-top: 18px; padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.mega-footer-link {
  font-size: 12.5px; font-weight: 600; color: var(--teal);
  text-decoration: none; display: flex; align-items: center; gap: 5px;
}
.mega-footer-link:hover { text-decoration: underline; }
.mega-footer-tags { display: flex; gap: 8px; }
.mega-tag {
  font-size: 11px; font-weight: 500; color: var(--gray-mid);
  background: var(--offwhite); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 20px; text-decoration: none;
}
.mega-tag:hover { border-color: var(--gold); color: var(--navy); }

/* ── SERVICES DROPDOWN ── */
.dropdown-services { width: 560px; left: 50%; transform: translateX(-50%); }
.nav-menu > li.has-child:hover .dropdown-services { transform: translateX(-50%) translateY(0); }
.nav-menu > li.has-child .dropdown-services { transform: translateX(-50%) translateY(8px); }
.services-grid-drop {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.srv-drop-item {
  display: flex; align-items: flex-start; gap: 11px;
  padding: 12px; border-radius: 9px; text-decoration: none;
  transition: background .14s;
}
.srv-drop-item:hover { background: var(--offwhite); }
.srv-drop-ico {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.srv-drop-text .srv-drop-title {
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  margin-bottom: 2px;
}
.srv-drop-text .srv-drop-desc {
  font-size: 12px; color: var(--gray-mid); line-height: 1.45;
}

/* ── CTA BUTTON ── */
.nav-cta-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-btn-ghost {
  font-size: 13.5px; font-weight: 500; color: var(--gray-dark);
  text-decoration: none; padding: 8px 14px; border-radius: 7px;
  border: 1.5px solid var(--border);
  transition: border-color .15s, color .15s;
}
.nav-btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.nav-btn-cta {
  background: var(--gold); color: var(--white);
  font-size: 13.5px; font-weight: 700;
  padding: 10px 22px; border-radius: 7px;
  text-decoration: none;
  transition: background .15s;
}
.nav-btn-cta:hover { background: var(--gold-light); }

/* ══════════════════════════════════════════
   MOBILE HAMBURGER
══════════════════════════════════════════ */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; cursor: pointer;
  border: none; background: transparent; padding: 4px;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════
   MOBILE DRAWER
══════════════════════════════════════════ */
.mobile-drawer {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 500;
}
.mobile-drawer.open { display: block; }
.drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,42,.55);
  backdrop-filter: blur(3px);
}
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 320px; max-width: 90vw;
  background: var(--white);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 32px rgba(0,0,0,.18);
}
.mobile-drawer.open .drawer-panel {
  transform: translateX(0);
}
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: var(--white); z-index: 1;
}
.drawer-close {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; color: var(--gray-dark);
}
.drawer-nav { list-style: none; padding: 12px 0; }
.drawer-nav > li { border-bottom: 1px solid #F5F2EC; }
.drawer-nav > li > a,
.drawer-nav > li > .drawer-parent-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 20px; font-size: 14px; font-weight: 500;
  color: var(--gray-dark); text-decoration: none;
  background: transparent; border: none; width: 100%;
  cursor: pointer; font-family: 'DM Sans',sans-serif;
  text-align: left;
}
.drawer-nav > li > a:hover,
.drawer-nav > li > .drawer-parent-btn:hover { background: var(--offwhite); color: var(--navy); }
.drawer-arrow {
  font-size: 12px; opacity: .4;
  transition: transform .2s;
  flex-shrink: 0;
}
.drawer-parent-btn.open .drawer-arrow { transform: rotate(90deg); opacity: .8; }
.drawer-sub {
  display: none; background: var(--offwhite);
  padding: 8px 0; border-top: 1px solid var(--border);
}
.drawer-sub.open { display: block; }
.drawer-sub a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 28px; font-size: 13.5px;
  color: var(--gray-dark); text-decoration: none;
  transition: color .14s;
}
.drawer-sub a:hover { color: var(--navy); }
.drawer-sub a .d-icon { font-size: 15px; width: 20px; }
.drawer-sub-title {
  padding: 10px 28px 5px; font-size: 10px;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
}
.drawer-footer {
  padding: 20px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.drawer-footer a {
  display: block; text-align: center; padding: 12px;
  border-radius: 8px; font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.drawer-footer .df-primary { background: var(--gold); color: var(--navy); }
.drawer-footer .df-secondary { background: var(--offwhite); color: var(--navy); border: 1.5px solid var(--border); }

/* ══════════════════════════════════════════
   DEMO AREA (just to show nav in context)
══════════════════════════════════════════ */
.demo-hero {
  background: var(--navy); min-height: 240px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; text-align: center;
  padding: 40px 28px;
}
.demo-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--white);
}
.demo-hero p { font-size: 14px; color: rgba(255,255,255,.5); }
.demo-note {
  max-width: 900px; margin: 32px auto; padding: 20px 28px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 13.5px; line-height: 1.7; color: var(--gray-dark);
}
.demo-note strong { color: var(--navy); }
.demo-note code { background: var(--offwhite); padding: 2px 7px; border-radius: 4px; font-size: 12.5px; }

@media (max-width: 1024px) {
  .nav-menu, .nav-btn-ghost { display: none; }
  .hamburger { display: flex; }
}


  /* ===== HERO ===== */
  .hero {
    background: var(--navy);
    position: relative; overflow: hidden; min-height: 640px;
    display: flex; align-items: center;
  }
  .hero-bg-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(201,168,76,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(201,168,76,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
  }
  .hero-accent {
    position: absolute; right: -80px; top: -80px;
    width: 480px; height: 480px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  }
  .hero-accent2 {
    position: absolute; left: -60px; bottom: -60px;
    width: 360px; height: 360px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,122,110,0.15) 0%, transparent 70%);
  }
  .hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; width: 100%; }
  .hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); border-radius: 100px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--gold-light); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
  .hero-tag span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
  .hero h1 em { color: var(--gold-light); font-style: normal; }
  .hero p { font-size: 16.5px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 36px; }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-gold { background: var(--gold); color: var(--navy); font-weight: 600; font-size: 14px; padding: 14px 28px; border-radius: 8px; text-decoration: none; border: none; cursor: pointer; }
  .btn-outline { background: transparent; border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); font-weight: 500; font-size: 14px; padding: 13px 28px; border-radius: 8px; text-decoration: none; cursor: pointer; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border-radius: 12px; overflow: hidden; margin-top: 40px; }
  .stat-box { background: rgba(13,27,42,0.6); padding: 18px 16px; text-align: center; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--gold-light); }
  .stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; letter-spacing: 0.5px; }

  /* SEARCH BOX */
  .search-card {
    background: var(--white); border-radius: 16px; padding: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  }
  .search-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .search-card p { font-size: 13px; color: var(--gray-mid); margin-bottom: 20px; }
  .search-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
  .search-row.single { grid-template-columns: 1fr; }
  select, input[type="text"] {
    width: 100%; padding: 11px 14px; border: 1.5px solid #e2dfd6;
    border-radius: 8px; font-size: 13.5px; color: var(--navy);
    font-family: 'DM Sans', sans-serif; background: var(--offwhite);
    appearance: none; outline: none;
  }
  .search-btn {
    width: 100%; padding: 13px; background: var(--navy); color: var(--white);
    font-size: 14px; font-weight: 600; border: none; border-radius: 8px;
    cursor: pointer; font-family: 'DM Sans', sans-serif; margin-top: 6px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
  }

  /* ===== CATEGORIES ===== */
  .section { padding: 72px 0; }
  .section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
  .section-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
  .section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.25; }
  .section-subtitle { font-size: 15.5px; color: var(--gray-mid); max-width: 540px; line-height: 1.6; }
  .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
  .view-all { font-size: 13.5px; font-weight: 600; color: var(--teal); text-decoration: none; border-bottom: 1.5px solid var(--teal); padding-bottom: 1px; }

  .cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .cat-card {
    background: var(--white); border: 1px solid #e8e5de; border-radius: 12px;
    padding: 22px 18px; text-decoration: none; transition: all 0.2s;
    display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden;
  }
  .cat-card:hover { border-color: var(--gold); box-shadow: 0 4px 24px rgba(201,168,76,0.15); transform: translateY(-2px); }
  .cat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
  .cat-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.35; }
  .cat-card span { font-size: 12px; color: var(--gray-mid); }
  .cat-arrow { position: absolute; right: 16px; bottom: 16px; font-size: 16px; color: var(--gold); opacity: 0; transition: opacity 0.2s; }
  .cat-card:hover .cat-arrow { opacity: 1; }

  /* ===== WHY US ===== */
  .why-section { background: var(--navy); padding: 80px 0; }
  .why-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .why-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .why-title { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 16px; }
  .why-desc { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
  .why-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .pillar { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 20px; }
  .pillar-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 10px; }
  .pillar h5 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
  .pillar p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }
  .why-image-side { position: relative; }
  .why-img-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; }
  .why-img-placeholder { color: rgba(255,255,255,0.15); font-size: 13px; letter-spacing: 1px;object-fit: cover;height:100% }
  .why-badge { position: absolute; bottom: -12px; left: 24px; background: var(--gold); border-radius: 10px; padding: 14px 20px; box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
  .why-badge-num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--white); line-height: 1; }
  .why-badge-text { font-size: 11px; font-weight: 600; color: var(--white); opacity: 1; }

  /* ===== POPULAR COURSES ===== */
  .courses-section { background: var(--offwhite); padding: 80px 0; }
  .course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .course-card {
    background: var(--white); border-radius: 12px; overflow: hidden;
    border: 1px solid #e8e5de; transition: all 0.2s;
    display: flex; flex-direction: column;
  }
  .course-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.1); transform: translateY(-3px); }
  .course-thumb { height: 200px; background-position: center;background-repeat: no-repeat;background-size: cover; display: flex; align-items: center; justify-content: center; position: relative; }
  .course-thumb-label { background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; }
  .course-cat-badge { position: absolute; top: 12px; left: 12px; background: rgba(13,27,42,0.75); color: rgba(255,255,255,0.85); font-size: 10.5px; font-weight: 500; padding: 4px 10px; border-radius: 4px; }
  .course-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
  .course-body h4 { font-size: 14.5px; font-weight: 600; color: var(--navy); line-height: 1.4; }
  .course-body h4 a { color: var(--navy); text-decoration: none; }
  .course-body p { font-size: 12.5px; color: var(--gray-mid); line-height: 1.5; flex: 1; }
  .course-meta { display: flex; gap: 12px; font-size: 11.5px; color: var(--gray-mid); }
  .course-meta span { display: flex; align-items: center; gap: 4px; }
  .course-footer { padding: 14px 18px; border-top: 1px solid #f0ede6; display: flex; justify-content: space-between; align-items: center; }
  .course-link { font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; }
  .course-enroll { font-size: 12px; font-weight: 600; background: var(--gold-pale); color: var(--navy); padding: 7px 14px; border-radius: 6px; text-decoration: none; }

  /* ===== SERVICES ===== */
  .services-section { padding: 80px 0; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .service-card {
    border: 1px solid #e8e5de; border-radius: 14px; padding: 28px 24px;
    position: relative; overflow: hidden; transition: all 0.2s;
  }
  .service-card:hover { border-color: var(--teal); }
  .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
  .service-card.c1::before { background: var(--gold); }
  .service-card.c2::before { background: var(--teal); }
  .service-card.c3::before { background: var(--navy); }
  .service-card.c4::before { background: #8B5CF6; }
  .service-card.c5::before { background: #E85D3A; }
  .service-card.c6::before { background: #059669; }
  .service-icon { font-size: 28px; margin-bottom: 14px; }
  .service-card h4 { font-size: 15.5px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
  .service-card p { font-size: 13px; color: var(--gray-mid); line-height: 1.6; margin-bottom: 16px; }
  .service-link { font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; }

  /* ===== TESTIMONIALS ===== */
  .testimonials-section { background: var(--gold-pale); padding: 80px 0; }
  .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .test-card { background: var(--white); border-radius: 12px; padding: 24px; border: 1px solid #e8e5de; }
  .stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; }
  .test-card blockquote { font-size: 14px; color: var(--gray-dark); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
  .test-person { display: flex; align-items: center; gap: 10px; }
  .test-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--gold-light); }
  .test-name { font-size: 13.5px; font-weight: 600; color: var(--navy); }
  .test-role { font-size: 11.5px; color: var(--gray-mid); }

  /* ===== CLIENTS ===== */
  .clients-section { padding: 48px 0; border-bottom: 1px solid #e8e5de; }
  .clients-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
  .clients-label { text-align: center; font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 28px; }
  .clients-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
  .client-logo { background: var(--gray-light); border-radius: 8px; padding: 10px 24px; font-size: 13px; font-weight: 600; color: var(--gray-mid); letter-spacing: 0.5px; }

  /* ===== CTA BANNER ===== */
  .cta-section { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); padding: 64px 0; }
  .cta-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
  .cta-text h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
  .cta-text p { font-size: 15px; color: rgba(255,255,255,0.75); }
  .cta-actions { display: flex; gap: 12px; flex-shrink: 0; }
  .btn-white { background: var(--white); color: var(--teal); font-weight: 700; font-size: 14px; padding: 13px 28px; border-radius: 8px; text-decoration: none; }
  .btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); font-weight: 500; font-size: 14px; padding: 12px 28px; border-radius: 8px; text-decoration: none; }

  /* ===== BLOG ===== */
  .blog-section { padding: 80px 0; background: var(--offwhite); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .blog-card { background: var(--white); border-radius: 12px; overflow: hidden; border: 1px solid #e8e5de; }
  .blog-thumb { height: 240px;object-fit: cover; background: var(--navy-mid); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 1px; }
  .blog-body { padding: 18px; }
  .blog-thumb img {width: 100%;height: 100%;object-fit: cover;}
  .blog-tag { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); background: rgba(30,122,110,0.08); padding: 3px 10px; border-radius: 4px; margin-bottom: 10px; }
  .blog-body h4 { font-size: 14.5px; font-weight: 600; color: var(--navy); line-height: 1.4; margin-bottom: 8px; }
  .blog-body p { font-size: 12.5px; color: var(--gray-mid); line-height: 1.5; }
  .blog-footer { padding: 12px 18px; border-top: 1px solid #f0ede6; font-size: 11.5px; color: var(--gray-mid); display: flex; justify-content: space-between; }
  .blog-footer a {color:var(--teal);font-weight:600;text-decoration:none}



  /* Blog Pagination Styles */
.blog-pagination {
    margin-top: 50px;
    text-align: center;
}

.blog-pagination .pagination-links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    min-width: 40px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: var(--navy, #0a2540);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.blog-pagination a:hover {
    background: var(--teal, #C9A84C);
    border-color: var(--teal, #C9A84C);
    color: #fff;
}

.blog-pagination .current {
    background: var(--teal, #C9A84C);
    border-color: var(--teal, #C9A84C);
    color: #fff;
    cursor: default;
}

.blog-pagination .dots {
    background: transparent;
    border: none;
    color: #6c757d;
}

/* Previous and Next buttons */
.blog-pagination a.prev,
.blog-pagination a.next {
    min-width: 100px;
}

.blog-pagination a.prev:hover,
.blog-pagination a.next:hover {
    background: var(--teal, #C9A84C);
    border-color: var(--teal, #C9A84C);
    color: #fff;
}

/* Responsive pagination */
@media (max-width: 768px) {
    .blog-pagination a,
    .blog-pagination span {
        min-width: 36px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .blog-pagination a.prev,
    .blog-pagination a.next {
        min-width: 80px;
    }
}



  /* ===== WHATSAPP ===== */
  .whatsapp-fab {
    position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px;
    background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; z-index: 999;
    font-size: 26px;
  }

  /* ===== FOOTER ===== */
  footer { background: var(--navy); color: rgba(255,255,255,0.6); }
  .footer-top { max-width: 1200px; margin: 0 auto; padding: 60px 32px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
  .footer-brand .logo { margin-bottom: 16px; }
  .footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
  .social-links { display: flex; gap: 10px; }
  .social-link { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; text-decoration: none; color: rgba(255,255,255,0.6); }
  .footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
  .footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
  .footer-col a:hover { color: var(--gold-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
  .footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 20px 32px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; }

  /* ===== BRANDING GUIDE SECTION ===== */
  .brand-section { background: #fafaf7; border-top: 4px solid var(--gold); padding: 60px 0; }
  .brand-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
  .brand-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--navy); margin-bottom: 6px; }
  .brand-subtitle { font-size: 14px; color: var(--gray-mid); margin-bottom: 40px; }
  .brand-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
  .color-swatch { border-radius: 12px; overflow: hidden; border: 1px solid #e8e5de; }
  .swatch-color { height: 80px; }
  .swatch-info { padding: 12px; background: var(--white); }
  .swatch-name { font-size: 13px; font-weight: 600; color: var(--navy); }
  .swatch-hex { font-size: 11.5px; color: var(--gray-mid); font-family: monospace; }
  .swatch-role { font-size: 11px; color: var(--teal); font-weight: 500; }
  .font-showcase { background: var(--white); border: 1px solid #e8e5de; border-radius: 12px; padding: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
  .font-sample-title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 12px; }
  .font-display { font-family: 'Playfair Display', serif; font-size: 32px; color: var(--navy); font-weight: 700; margin-bottom: 6px; }
  .font-body-sample { font-family: 'DM Sans', sans-serif; font-size: 16px; color: var(--gray-dark); line-height: 1.6; }

  /* MOCKUP LABEL */
  .mockup-watermark {
    position: fixed; top: 12px; right: 12px; background: var(--gold); color: var(--navy);
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 12px; border-radius: 4px; z-index: 9999;
  }


  /* ===== ABOUT US PAGE ===== */
  /* BREADCRUMB */
.breadcrumb-bar { background: var(--offwhite); border-bottom: 1px solid #e8e5de; padding: 10px 0; }
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; font-size: 12.5px; color: var(--gray-mid); display: flex; align-items: center; gap: 6px; }
.breadcrumb-inner a { color: var(--teal); text-decoration: none; }

/* PAGE HERO */
.page-hero { background: var(--navy); padding: 64px 0 56px; position: relative; overflow: hidden; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px); background-size: 48px 48px; }
.page-hero-accent { position: absolute; right: -60px; top: -60px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%); }
.page-hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.page-hero-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: 52px; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold-light); font-style: normal; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 620px; line-height: 1.7; }

/* SECTION HELPERS */
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* STATS STRIP */
.stats-strip { background: var(--gold); padding: 0; }
.stats-strip-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-strip .stat-item { padding: 28px 24px; text-align: center; border-right: 1px solid rgba(13,27,42,0.12); }
.stats-strip .stat-item:last-child { border-right: none; }
.stats-strip .stat-num { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; color: var(--white); line-height: 1; }
.stats-strip .stat-lbl { font-size: 12px; font-weight: 600; color: var(--white); margin-top: 4px; letter-spacing: 0.5px; }

/* OUR STORY */
.story-section { padding: 88px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-image { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; background: var(--navy-mid); position: relative; }
.story-image img { width: 100%; height: 100%; object-fit: cover; }
.story-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #1A2E45 0%, #0D1B2A 100%); }
.story-badge { position: absolute; bottom: -1px; right: 24px; background: var(--gold); border-radius: 12px 12px 0 0; padding: 14px 22px; text-align: center; }
.story-badge-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--white); line-height: 1; }
.story-badge-lbl { font-size: 11px; font-weight: 600; color: var(--white); }
.story-content p { font-size: 16px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 20px; }
.story-content p:last-of-type { margin-bottom: 0; }

/* VMV Cards */
.vmv-row { display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px; margin-top: 40px; }
.vmv-card { background: var(--offwhite); border: 1px solid #e8e5de; border-radius: 12px; padding: 24px 22px; display: flex; gap: 16px; }
.vmv-icon { width: 48px; height: 48px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.vmv-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.vmv-card p { font-size: 13px; color: var(--gray-mid); line-height: 1.6; }

/* TWO-COL SECTION */
.two-col-section { padding: 80px 0; }
.two-col-section.bg-navy { background: var(--navy); }
.two-col-section.bg-offwhite { background: var(--offwhite); }
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col-grid.reverse { }
.two-col-image { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: var(--offwhite); }
.two-col-image img { width: 100%; height: 100%; object-fit: cover; }
.two-col-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1A2E45 0%, #0D1B2A 100%); font-size: 48px; opacity: 1; }
.two-col-content p { font-size: 15.5px; color: var(--gray-dark); line-height: 1.8; margin-bottom: 18px; }
.two-col-content.light p { color: rgba(255,255,255,0.7); }
.two-col-content.light .section-label { color: var(--gold); }
.two-col-content.light .section-title { color: var(--white); }

/* COMMITMENTS */
.commitments-section { padding: 80px 0; background: var(--offwhite); }
.commitments-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.commitment-card { background: var(--white); border: 1px solid #e8e5de; border-radius: 14px; padding: 28px 24px; position: relative; overflow: hidden; transition: all .2s; }
.commitment-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.commitment-card.c1::before { background: var(--gold); }
.commitment-card.c2::before { background: var(--teal); }
.commitment-card.c3::before { background: var(--navy); }
.commitment-card.c4::before { background: #8B5CF6; }
.commitment-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.1); transform: translateY(-2px); }
.commitment-icon { font-size: 28px; margin-bottom: 14px; }
.commitment-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.commitment-card p { font-size: 13.5px; color: var(--gray-mid); line-height: 1.65; }

/* TEAM SECTION */
.team-section { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.team-card { background: var(--white); border: 1px solid #e8e5de; border-radius: 14px; overflow: hidden; text-align: center; transition: all .2s; }
.team-card:hover { box-shadow: 0 8px 28px rgba(13,27,42,0.1); transform: translateY(-3px); }
.team-avatar { height: 200px; background: linear-gradient(135deg, var(--navy-mid), var(--navy)); display: flex; align-items: center; justify-content: center; position: relative; }
.team-avatar-initials { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--navy); }
.team-body { padding: 18px; }
.team-name { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.team-role { font-size: 12.5px; color: var(--teal); font-weight: 500; margin-bottom: 10px; }
.team-bio { font-size: 12.5px; color: var(--gray-mid); line-height: 1.5; }
.team-socials { display: flex; justify-content: center; gap: 8px; padding: 12px 18px; border-top: 1px solid #f0ede6; }
.team-social-btn { width: 30px; height: 30px; border-radius: 6px; background: var(--offwhite); display: flex; align-items: center; justify-content: center; font-size: 13px; text-decoration: none; color: var(--navy); transition: background .2s; }
.team-social-btn:hover { background: var(--gold-pale); }

/* ACCREDITATIONS */
.accred-section { padding: 48px 0; background: var(--offwhite); border-top: 1px solid #e8e5de; }
.accred-label { text-align: center; font-size: 11.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 24px; }
.accred-logos { display: flex; justify-content: center; align-items: center; gap: 32px; flex-wrap: wrap; }
.accred-logo { background: var(--white); border: 1px solid #e8e5de; border-radius: 10px; padding: 12px 28px; font-size: 13px; font-weight: 600; color: var(--gray-mid); letter-spacing: 0.5px; }

.btn-outline-wh { background: transparent; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); font-weight: 500; font-size: 14px; padding: 12px 28px; border-radius: 8px; text-decoration: none; }


/* ===== CONTACT US PAGE ===== */
/* CONTACT CARDS ROW */
.contact-cards { padding: 0; margin-top: -1px; background: var(--gold); }
.contact-cards-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: repeat(4, 1fr); }
.contact-card-item { padding: 28px 20px; display: flex; align-items: flex-start; gap: 14px; border-right: 1px solid rgba(13,27,42,0.15); }
.contact-card-item:last-child { border-right: none; }
.contact-card-icon { color: var(--white); width: 42px; height: 42px; background: rgba(13,27,42,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-card-item h5 { font-size: 12px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.contact-card-item p { font-size: 13.5px; font-weight: 600; color: var(--white); line-height: 1.4; }
.contact-card-item a { color: var(--white); text-decoration: none; font-size: 13.5px; font-weight: 600; }

/* MAIN CONTACT SECTION */
.contact-main { padding: 80px 0; background: var(--offwhite); }
.contact-layout { display: grid; grid-template-columns: 1fr 440px; gap: 56px; align-items: start; }

/* CONTACT FORM */
.contact-form-wrap { background: var(--white); border: 1px solid #e8e5de; border-radius: 16px; padding: 40px 36px; box-shadow: 0 4px 32px rgba(13,27,42,0.07); }
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-wrap > p { font-size: 14px; color: var(--gray-mid); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 12.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #e2dfd6; border-radius: 9px; font-size: 14px; color: var(--navy); font-family: 'DM Sans', sans-serif; background: var(--offwhite); outline: none; transition: border-color .2s, background .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-section-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin: 24px 0 16px; padding-bottom: 10px; border-bottom: 1px solid #e8e5de; }
.radio-group { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-option { display: flex; align-items: center; gap: 7px; cursor: pointer; }
.radio-option input[type="radio"] { accent-color: var(--navy); width: 16px; height: 16px; }
.radio-option span { font-size: 13.5px; color: var(--gray-dark);position: relative;top: -3px;margin-left: 6px; }
.checkbox-group { display: flex; flex-direction: column; gap: 9px; }
.checkbox-option { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.checkbox-option input[type="checkbox"] { accent-color: var(--navy); width: 16px; height: 16px; }
.checkbox-option span { font-size: 13.5px; color: var(--gray-dark);position: relative;top: -3px;margin-left: 6px; }
.privacy-note { font-size: 12px; color: var(--gray-mid); line-height: 1.55; margin-top: 6px; }
.privacy-note a { color: var(--teal); }
.submit-btn-main { width: 100%; padding: 15px; background: var(--navy); color: var(--white); font-size: 15px; font-weight: 600; border: none; border-radius: 9px; cursor: pointer; font-family: 'DM Sans', sans-serif; margin-top: 8px; letter-spacing: 0.3px; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.submit-btn-main:hover { background: var(--navy-mid); }
#form-messages {margin-bottom: 20px;}
.alert {padding: 15px 20px;border-radius: 8px;margin-bottom: 20px;}
.alert-success {background-color: #d4edda;border: 1px solid #c3e6cb;color: #155724;}
.alert-error {background-color: #f8d7da;border: 1px solid #f5c6cb;color: #721c24;}
.alert ul {margin: 0;padding-left: 20px;}

/* SIDEBAR */
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-info-card { background: var(--white); border: 1px solid #e8e5de; border-radius: 14px; overflow: hidden; }
.sic-header { background: var(--navy); padding: 20px 22px; }
.sic-header h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.sic-header p { font-size: 12.5px; color: rgba(255,255,255,0.5); }
.sic-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 16px; }
.sic-item { display: flex; gap: 14px; align-items: flex-start; }
.sic-icon { width: 38px; height: 38px; background: var(--offwhite); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.sic-item h5 { font-size: 11.5px; font-weight: 600; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.sic-item p, .sic-item a { font-size: 13.5px; color: var(--navy); font-weight: 500; text-decoration: none; line-height: 1.5; }
.sic-item a:hover { color: var(--teal); }
.sic-divider { height: 1px; background: #f0ede6; }

/* MAP */
.map-card { background: var(--white); border: 1px solid #e8e5de; border-radius: 14px; overflow: hidden; }
.map-placeholder { height: 220px; background: linear-gradient(135deg, #E6F4F1, #C2E8E1); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; cursor: pointer; transition: opacity .2s; }
.map-placeholder:hover { opacity: 0.85; }
.map-placeholder span { font-size: 36px; }
.map-placeholder p { font-size: 13px; font-weight: 600; color: var(--teal); }
.map-placeholder small { font-size: 11.5px; color: var(--gray-mid); }
.map-address { padding: 16px 18px; }
.map-address p { font-size: 13px; color: var(--gray-dark); line-height: 1.6; }
.map-address a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; margin-top: 10px; }

/* HOURS CARD */
.hours-card { background: var(--white); border: 1px solid #e8e5de; border-radius: 14px; padding: 22px; }
.hours-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid #f5f3ef; font-size: 13px; }
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--gray-mid); }
.hours-time { font-weight: 600; color: var(--navy); }
.hours-time.closed { color: #E85D3A; font-weight: 500; }
.hours-time.open-badge { color: var(--teal); }

/* GLOBAL OFFICES */
.offices-section { padding: 80px 0; }
.offices-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.office-card { background: var(--white); border: 1px solid #e8e5de; border-radius: 12px; padding: 20px 18px; transition: all .2s; }
.office-card:hover { box-shadow: 0 6px 24px rgba(13,27,42,0.1); border-color: var(--gold); }
.office-flag { font-size: 24px; margin-bottom: 8px; }
.office-city { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.office-country { font-size: 12px; color: var(--teal); font-weight: 500; margin-bottom: 8px; }
.office-address { font-size: 12.5px; color: var(--gray-mid); line-height: 1.5; }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--offwhite); }
.faq-grid { max-width: 800px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid #e8e5de; border-radius: 12px; overflow: hidden; }
.faq-question { padding: 18px 22px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 14.5px; font-weight: 600; color: var(--navy); }
.faq-toggle { color: var(--gold); font-size: 20px; font-weight: 300; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; font-size: 14px; color: var(--gray-dark); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }