/* ============================================================
   Bridge The Gap Consulting — Global Design System
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Sora:wght@300;400;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  --navy:        #0B1F3A;
  --navy-mid:    #12294D;
  --navy-light:  #1A3560;
  --blue:        #1D4ED8;
  --blue-light:  #3B82F6;
  --blue-pale:   #EFF6FF;
  --gold:        #D4AF37;
  --gold-light:  #E8CC5A;
  --gold-pale:   #FBF6E3;
  --red:         #C41E3A;
  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-600:    #475569;
  --gray-700:    #334155;
  --gray-800:    #1E293B;
  --charcoal:    #2D3748;

  --font-display: 'Sora', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 20px 64px rgba(0,0,0,.20);
  --shadow-gold: 0 4px 24px rgba(212,175,55,.30);

  --ease-out: cubic-bezier(.22,.68,0,1.2);
  --ease-in-out: cubic-bezier(.4,0,.2,1);

  --nav-h: 80px;
  --max-w: 1280px;
  --section-py: 96px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  height: var(--nav-h);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s var(--ease-in-out), box-shadow .3s var(--ease-in-out);
}
.nav.scrolled {
  background: rgba(11,31,58,.97);
  box-shadow: 0 2px 40px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  padding: 4px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text .brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--white);
  text-transform: uppercase;
}
.nav-logo-text .sub {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li {
  position: relative;
}
.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-menu > li.has-drop > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: .7rem;
  opacity: .7;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s var(--ease-in-out);
  border: 1px solid var(--gray-200);
}
.nav-menu > li.has-drop:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius-md);
  transition: background .15s, color .15s;
}
.dropdown a:hover {
  background: var(--blue-pale);
  color: var(--blue);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0 32px;
  z-index: 999;
  overflow-y: auto;
  max-height: calc(100vh - var(--nav-h));
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 12px 24px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .15s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .mobile-section-title {
  padding: 16px 24px 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-mobile .mobile-cta {
  margin: 20px 24px 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: all .25s var(--ease-in-out);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  line-height: 1;
}
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}
.btn-sm {
  padding: 9px 20px;
  font-size: .82rem;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-light);
  border-color: var(--blue-light);
  transform: translateY(-1px);
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: var(--section-py) 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.bg-navy  { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }
.bg-gray  { background: var(--gray-50); }
.bg-white { background: var(--white); }
.bg-gold-pale { background: var(--gold-pale); }
.bg-blue-pale { background: var(--blue-pale); }

.text-white { color: var(--white); }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-blue  { color: var(--blue); }
.text-gray  { color: var(--gray-500); }
.text-muted { color: var(--gray-400); }

/* Section Header */
.section-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-title.white { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}
.section-subtitle.white { color: rgba(255,255,255,.75); }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* Gold Rule */
.gold-rule {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}
.section-header.center .gold-rule { margin: 0 auto 20px; }

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--gray-200);
  margin: 48px 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--nav-h);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .4;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(29,78,216,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(212,175,55,.08) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 7px 16px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: var(--radius-full);
  background: rgba(212,175,55,.06);
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-title .accent {
  color: var(--gold);
  position: relative;
  display: inline;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
  font-weight: 500;
}
.hero-badge {
  position: absolute;
  right: 5%;
  bottom: 12%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  display: none;
}
@media (min-width: 900px) { .hero-badge { display: block; } }
.hero-badge-icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.hero-badge-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
  opacity: .4;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  padding: 32px;
  transition: all .3s var(--ease-in-out);
}
.card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-navy {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,.08);
  color: var(--white);
}
.card-navy:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(0,0,0,.3);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.icon-blue-pale { background: var(--blue-pale); }
.icon-gold-pale { background: var(--gold-pale); }
.icon-navy { background: rgba(255,255,255,.08); }

.card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}
.card-navy .card-title { color: var(--white); }
.card-body {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
}
.card-navy .card-body { color: rgba(255,255,255,.65); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
  transition: gap .2s;
}
.card-link:hover { gap: 10px; }
.card-navy .card-link { color: var(--gold); }

/* Grid layouts */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* ============================================================
   WHO WE HELP
   ============================================================ */
.who-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all .25s var(--ease-in-out);
}
.who-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(212,175,55,.12);
  transform: translateY(-2px);
}
.who-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
}
.who-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.who-desc {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillar {
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: all .3s;
}
.pillar:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(212,175,55,.3);
  transform: translateY(-4px);
}
.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(212,175,55,.18);
  line-height: 1;
  margin-bottom: 4px;
}
.pillar-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* ============================================================
   SERVICE LIST
   ============================================================ */
.service-list { display: flex; flex-direction: column; gap: 4px; }
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  transition: background .2s;
  cursor: default;
}
.service-item:hover { background: var(--gray-50); }
.service-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
}
.service-check.gold { background: var(--gold-pale); color: var(--gold); }
.service-item-title {
  font-size: .92rem;
  font-weight: 600;
  color: var(--gray-800);
}
.service-item-desc {
  font-size: .82rem;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ============================================================
   TEAM
   ============================================================ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  transition: all .3s var(--ease-in-out);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.team-card-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 48px 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.team-card-header::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(29,78,216,.15);
  top: -60px; right: -40px;
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 16px;
  position: relative;
  border: 3px solid var(--gold);
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.team-role {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.team-card-body {
  padding: 28px 32px;
}
.team-bio {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.team-tag {
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 600;
  background: var(--blue-pale);
  color: var(--blue);
  border: 1px solid rgba(29,78,216,.15);
}
.team-tag.gold {
  background: var(--gold-pale);
  color: var(--charcoal);
  border-color: rgba(212,175,55,.2);
}
.team-card-footer {
  padding: 20px 32px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.step {
  padding: 32px 28px;
  position: relative;
  text-align: center;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
}
.step-title {
  font-weight: 700;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-desc {
  font-size: .84rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: .65rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-text {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.6;
}
.check-text strong { color: var(--navy); }

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--blue); }
.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
  transition: all .25s;
  color: var(--gray-600);
}
.faq-item.open .faq-toggle {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; left: 28px;
  font-size: 5rem;
  color: var(--blue-pale);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-body {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  padding-top: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue);
  font-size: .9rem;
}
.testimonial-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
}
.testimonial-title {
  font-size: .8rem;
  color: var(--gray-400);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(29,78,216,.1);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
select.form-control { cursor: pointer; }

/* ============================================================
   BOOKING CARDS
   ============================================================ */
.booking-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--gray-200);
  padding: 36px 32px;
  text-align: center;
  transition: all .3s var(--ease-in-out);
  position: relative;
  overflow: hidden;
}
.booking-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.booking-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
}
.booking-card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.booking-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--white);
  border: 3px solid var(--gold);
}
.booking-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.booking-role {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.booking-desc {
  font-size: .87rem;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.6;
}
.booking-card.featured .booking-name { color: var(--white); }
.booking-card.featured .booking-desc { color: rgba(255,255,255,.7); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}

/* ============================================================
   RESOURCE CARDS
   ============================================================ */
.resource-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all .3s;
}
.resource-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.resource-card-top {
  height: 8px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
.resource-card-body { padding: 28px; }
.resource-category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.resource-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.resource-desc {
  font-size: .86rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.resource-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: var(--gray-400);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,78,216,.12) 0%, transparent 70%);
  right: -100px; top: -100px;
}
.page-hero-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: .4; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, var(--blue) 100%);
  padding: var(--section-py) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,175,55,.12) 0%, transparent 60%);
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-band-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}
.cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-800);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img {
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
  padding: 4px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: all .2s;
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,.35);
  transition: color .15s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-in-out), transform .6s var(--ease-in-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity .7s var(--ease-in-out);
}
.fade-in.visible { opacity: 1; }

.delay-100 { transition-delay: .1s; }
.delay-200 { transition-delay: .2s; }
.delay-300 { transition-delay: .3s; }
.delay-400 { transition-delay: .4s; }
.delay-500 { transition-delay: .5s; }
.delay-600 { transition-delay: .6s; }
.delay-700 { transition-delay: .7s; }
.delay-800 { transition-delay: .8s; }

/* Stagger grid children */
.stagger > *:nth-child(1) { transition-delay: .05s; }
.stagger > *:nth-child(2) { transition-delay: .12s; }
.stagger > *:nth-child(3) { transition-delay: .19s; }
.stagger > *:nth-child(4) { transition-delay: .26s; }
.stagger > *:nth-child(5) { transition-delay: .33s; }
.stagger > *:nth-child(6) { transition-delay: .40s; }
.stagger > *:nth-child(7) { transition-delay: .47s; }
.stagger > *:nth-child(8) { transition-delay: .54s; }
.stagger > *:nth-child(9) { transition-delay: .61s; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.flex        { display: flex; }
.flex-col    { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-4  { gap: 4px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-40 { gap: 40px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.w-full { width: 100%; }
.flex-1 { flex: 1; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.gap-lg { gap: 80px; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Badge / Tag */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .05em;
}
.tag-blue { background: var(--blue-pale); color: var(--blue); }
.tag-gold { background: var(--gold-pale); color: var(--charcoal); }
.tag-navy { background: rgba(11,31,58,.08); color: var(--navy); }
.tag-red  { background: rgba(196,30,58,.08); color: var(--red); }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; --nav-h: 72px; }

  .nav-menu { display: none; }
  .nav-cta .btn:not(.nav-book) { display: none; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 1.6rem; }

  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .steps-grid { grid-template-columns: 1fr; }
  .cta-band-actions { flex-direction: column; }
  .booking-card { padding: 28px 24px; }
  .team-card-body { padding: 20px 24px; }
  .team-card-footer { padding: 16px 24px; }
}
