/* =========================================
   GlobCred v2 – Light Theme
   Gold & Green · Editorial · June 2026
   ========================================= */

/* 1. Variables
   ========================================= */
:root {
  /* Backgrounds */
  --bg:          #FAF8F3;
  --bg-alt:      #F2EEE4;
  --white:       #FFFFFF;

  /* Gold */
  --gold:        #B8861C;
  --gold-mid:    #D4A030;
  --gold-light:  #FEF4DC;
  --gold-border: rgba(184,134,28,0.22);

  /* Green (darker for light bg readability) */
  --green:       #0A9461;
  --green-dark:  #087A50;
  --green-light: #E4F8EF;
  --green-border:rgba(10,148,97,0.2);

  /* Text */
  --text:        #0E1810;
  --text-2:      #4A5568;
  --text-3:      #8A99A8;

  /* Border */
  --border:      #E2DDD4;
  --border-md:   #CDC8BE;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.12);

  /* Layout */
  --nav-height:  70px;
  --container:   1280px;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --transition:  0.22s ease;
}

/* 2. Reset & Base
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
address { font-style: normal; }

/* 3. Typography
   ========================================= */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }

.gold  { color: var(--gold); }
.green { color: var(--green); }

/* 4. Layout
   ========================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  margin-bottom: 60px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p  { color: var(--text-2); font-size: 1.1rem; }
.section-header.center { text-align: center; }

/* 5. Buttons
   ========================================= */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,148,97,0.28);
}
.btn-primary.btn-lg { padding: 17px 38px; font-size: 1rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-2);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border-md);
  background: var(--white);
  transition: border-color var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--text-2); color: var(--text); box-shadow: var(--shadow-sm); }
.btn-ghost.btn-lg { padding: 17px 32px; }

.btn-outline-green {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green);
  font-weight: 700; font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--green-border);
  background: var(--green-light);
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline-green:hover { background: #D2F4E7; border-color: var(--green); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green-dark);
  font-weight: 700; font-size: 1rem;
  padding: 17px 38px;
  border-radius: 50px;
  background: var(--white);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-white:hover { background: #F0FFF8; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* 6. Navigation
   ========================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-container {
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  width: 100%;
  display: flex; align-items: center; gap: 16px;
}

.nav-logo img { height: 34px; width: auto; }

.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto; flex-shrink: 0;
}

.nav-link {
  color: var(--text-2); font-size: 0.9rem; font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 4px;
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--bg-alt); }

.nav-arrow { font-size: 0.6rem; transition: transform var(--transition); }
.nav-dropdown-toggle[aria-expanded="true"] .nav-arrow { transform: rotate(180deg); }

.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }

.dropdown-link {
  display: flex; flex-direction: column;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.dropdown-link:hover { background: var(--bg); }
.dropdown-label { color: var(--text); font-size: 0.9rem; font-weight: 600; }
.dropdown-sub { color: var(--text-3); font-size: 0.78rem; margin-top: 1px; }

.nav-cta { margin-left: 16px; }

.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* 7. Hero
   ========================================= */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-height) + 60px) 0 80px;
  background: var(--bg);
  display: flex; align-items: center;
  overflow: hidden;
  position: relative;
}

/* Decorative blobs */
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,148,97,0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -60px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,134,28,0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-container {
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  gap: 60px;
  position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.eyebrow-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.hero-heading {
  margin-bottom: 24px;
  line-height: 1.12;
}

/* Gold underline decoration on "Global Mobility" */
.hero-highlight {
  position: relative;
  color: var(--gold);
}
.hero-highlight::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-mid), transparent);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.1rem; color: var(--text-2); line-height: 1.72;
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
}

.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-2); font-size: 0.82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.chip-dot { width: 5px; height: 5px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

.hero-ctas {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  color: var(--text-2); font-size: 1rem;
  font-weight: 500;
}
.hero-trust img { height: 38px; width: 115px; }


/* Hero image col */
.hero-image-col {
  position: relative;
  display: flex; justify-content: flex-end;
}

.hero-img-wrap {
  position: relative;
  width: 100%; max-width: 480px;
}

.hero-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Floating stat cards on hero image */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  min-width: 150px;
}
.hero-float-card.card-tl { top: 28px; left: -36px; }
.hero-float-card.card-br { bottom: 40px; right: -24px; }

.float-card-value {
  font-size: 1.5rem; font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.float-card-label {
  font-size: 0.75rem; color: var(--text-2);
  font-weight: 600;
}
.float-card-green .float-card-value { color: var(--green); }

/* 8. Stats Bar
   ========================================= */
.stats-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.stats-grid {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  display: flex; align-items: center; gap: 16px;
  padding: 8px 48px;
  flex: 1; min-width: 180px; justify-content: center;
}

.stat-icon { width: 40px; height: 40px; object-fit: contain; flex-shrink: 0; }

.stat-icon-badge {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800; color: var(--green);
}

.stat-value {
  display: block;
  font-size: 1.8rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem; color: var(--text-3);
  margin-top: 3px; font-weight: 500;
}
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* 9. How It Works
   ========================================= */
.how-it-works {
  padding: 110px 0;
  background: var(--bg-alt);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.step-num {
  font-size: 3.5rem; font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  -webkit-text-stroke: 2px var(--gold-border);
  letter-spacing: -0.04em;
}

.step-card h3 { margin-bottom: 14px; }
.step-card p  { color: var(--text-2); font-size: 0.93rem; line-height: 1.68; }

/* 10. Services
    ========================================= */
.services {
  padding: 110px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card--featured {
  border-color: var(--green-border);
  border-width: 2px;
  position: relative; overflow: hidden;
}
.service-card--featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), #1AD68A);
}

.service-tag {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  margin-bottom: 22px; width: fit-content;
}
.service-tag.tag-green { background: var(--green-light); color: var(--green); border: 1px solid var(--green-border); }
.service-tag.tag-gold  { background: var(--gold-light);  color: var(--gold);  border: 1px solid var(--gold-border); }
.service-tag.tag-slate { background: #EEF2FF; color: #4F46E5; border: 1px solid rgba(79,70,229,0.2); }

.service-card h3 { margin-bottom: 12px; }
.service-card > p {
  color: var(--text-2); font-size: 0.92rem; line-height: 1.68;
  margin-bottom: 24px; flex: 1;
}

.service-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.service-features li {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-2); font-size: 0.87rem;
}
.service-features li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: var(--green-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M2.5 7L5.5 10L11.5 4' stroke='%230A9461' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* 11. Trust Strip
    ========================================= */
.trust-strip {
  padding: 60px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-strip-label {
  text-align: center;
  color: var(--text-3); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 28px;
}

.trust-track-wrap {
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.trust-track {
  display: flex; gap: 12px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text-2); font-size: 0.85rem; font-weight: 600;
  padding: 10px 20px; border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-track-wrap:hover .trust-track { animation-play-state: paused; }

/* 12. Testimonials
    ========================================= */
.testimonials {
  padding: 110px 0;
  background: var(--bg-alt);
  overflow: hidden;
}

.reviews-track {
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.reviews-inner {
  display: flex; gap: 20px;
  animation: marquee 42s linear infinite;
  width: max-content;
}
.reviews-inner img {
  width: 300px; height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.reviews-track:hover .reviews-inner { animation-play-state: paused; }

/* 13. Destinations
    ========================================= */
.destinations {
  padding: 80px 0;
  background: var(--white);
}

.destination-pills {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text-2); font-size: 0.9rem; font-weight: 600;
  padding: 13px 24px; border-radius: 50px;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.pill:hover {
  background: var(--green-light);
  border-color: var(--green-border);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* 14. FAQ
    ========================================= */
.faq {
  padding: 110px 0;
  background: var(--bg-alt);
}
.faq .container { max-width: 840px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] { border-color: var(--green-border); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px;
  font-size: 1rem; font-weight: 700; color: var(--text);
  cursor: pointer; list-style: none; user-select: none; gap: 16px;
  transition: color var(--transition);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--green); }
.faq-question::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: var(--green); flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 26px 22px;
  color: var(--text-2); font-size: 0.93rem; line-height: 1.72;
}
.faq-answer p + p { margin-top: 10px; }
.faq-answer strong { color: var(--text); }

/* 15. CTA Banner
    ========================================= */
.cta-banner {
  padding: 100px 0;
  background: var(--green);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute; bottom: -80px; left: -60px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white); font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8); font-size: 1.1rem;
  max-width: 520px; margin: 0 auto 40px;
}
.cta-banner-sub {
  color: rgba(255,255,255,0.6); font-size: 0.82rem;
  margin-top: 16px;
}

/* 16. Footer
    ========================================= */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}

.footer-brand img { height: 32px; width: auto; margin-bottom: 18px; }

.footer-tagline {
  color: var(--text-2); font-size: 0.88rem; line-height: 1.7;
  margin-bottom: 20px; max-width: 280px;
}

.footer-address {
  color: var(--text-3); font-size: 0.82rem; line-height: 1.85;
  margin-bottom: 24px;
}
.footer-address strong { color: var(--text-2); }
.footer-address a { color: var(--text-3); transition: color var(--transition); }
.footer-address a:hover { color: var(--green); }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-3);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-socials a:hover {
  background: var(--green-light); color: var(--green); border-color: var(--green-border);
}

.footer-col-heading {
  color: var(--text-3); margin-bottom: 20px; font-size: 0.75rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  color: var(--text-2); font-size: 0.86rem;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.footer-legal {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 24px; font-size: 0.83rem; color: var(--text-3);
}
.footer-legal a { transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-2); }

.footer-disclaimer {
  padding: 28px 0 40px;
}
.footer-disclaimer p {
  font-size: 0.77rem; color: var(--text-3); line-height: 1.75;
  margin-bottom: 10px;
}
.footer-disclaimer strong { color: var(--text-2); }

/* 17. Responsive
    ========================================= */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 680px; margin: 0 auto; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-chips { justify-content: center; }
  .hero-image-col { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }
  .stat-divider { display: none; }
  .stat-item { padding: 10px 16px; min-width: 140px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding-top: calc(var(--nav-height) + 40px); }
  .how-it-works, .services, .testimonials, .faq { padding: 72px 0; }

  /* Mobile Navigation Menu Open States */
  body.mobile-nav-open {
    overflow: hidden !important;
  }
  body.mobile-nav-open .nav-links {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: var(--nav-height) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    z-index: 99 !important;
    padding: 30px 20px !important;
    gap: 16px !important;
    overflow-y: auto !important;
  }
  body.mobile-nav-open .nav-link {
    font-size: 1.2rem !important;
    width: 100% !important;
    padding: 12px 16px !important;
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0 !important;
  }
  body.mobile-nav-open .dropdown-menu {
    position: static !important;
    display: block !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding-left: 20px !important;
    padding-top: 8px !important;
  }
  body.mobile-nav-open .dropdown-link {
    padding: 8px 16px !important;
  }
  body.mobile-nav-open .nav-mobile-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  body.mobile-nav-open .nav-mobile-toggle span:nth-child(2) {
    opacity: 0 !important;
  }
  body.mobile-nav-open .nav-mobile-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }
}

@media (max-width: 480px) {
  .btn-lg { padding: 14px 24px; font-size: 0.93rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .destination-pills { gap: 8px; }
  .pill { font-size: 0.82rem; padding: 10px 16px; }
}
