/* ================================================================
   FASTEST IMMIGRATION — style.css (Light Theme)
   Palette: Ivory base · Charcoal type · Rich gold accent
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------------- */
:root {
  /* Core palette */
  --clr-ivory:        #FAF8F3;
  --clr-cream:        #F2EDE3;
  --clr-cream-2:      #EBE4D8;
  --clr-parchment:    #E0D8CC;
  --clr-charcoal:     #1C1A17;
  --clr-charcoal-2:   #2E2B26;
  --clr-charcoal-3:   #3F3B34;
  --clr-gold:         #B8922A;
  --clr-gold-light:   #D4AF37;
  --clr-gold-pale:    #F0D878;
  --clr-gold-dark:    #8A6A18;
  --clr-gold-dim:     rgba(184,146,42,0.12);
  --clr-gold-glow:    rgba(184,146,42,0.08);
  --clr-muted:        rgba(28,26,23,0.5);
  --clr-border:       rgba(184,146,42,0.22);
  --clr-border-soft:  rgba(28,26,23,0.1);

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;

  /* Layout */
  --nav-h:        76px;
  --max-w:        1200px;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-full:  9999px;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --dur-fast:     160ms;
  --dur-base:     280ms;
  --dur-slow:     480ms;

  /* Shadows */
  --shadow-gold:  0 0 32px rgba(184,146,42,0.22), 0 0 8px rgba(184,146,42,0.14);
  --shadow-card:  0 8px 40px rgba(28,26,23,0.1);
  --shadow-soft:  0 2px 16px rgba(28,26,23,0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--clr-ivory);
  color: var(--clr-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-cream); }
::-webkit-scrollbar-thumb { background: var(--clr-gold); border-radius: 3px; }

/* ----------------------------------------------------------------
   3. NAVIGATION BAR
   ---------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--dur-base) var(--ease),
              box-shadow  var(--dur-base) var(--ease),
              backdrop-filter var(--dur-base) var(--ease);
}

.navbar.scrolled {
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 1px 0 var(--clr-border-soft), 0 4px 24px rgba(28,26,23,0.08);
}

/* Force opaque navbar when mobile menu is open so content
   doesn't bleed through the semi-transparent scrolled state.
   transition: none ensures the switch is instant (no 280ms fade). */
.navbar.menu-open {
  background: #FAF8F3 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: none !important;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
}

/* Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.nav-brand:hover { opacity: 0.8; }

.nav-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-charcoal);
  letter-spacing: 0.01em;
}
.nav-brand-name-accent {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 50%, var(--clr-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-brand-tagline {
  font-size: 0.67rem;
  font-weight: 400;
  color: var(--clr-charcoal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(28,26,23,0.65);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--clr-gold);
  border-radius: 1px;
  transition: left var(--dur-base) var(--ease),
              right var(--dur-base) var(--ease);
}

.nav-link:hover,
.nav-link--active {
  color: var(--clr-charcoal);
}

.nav-link:hover::after,
.nav-link--active::after {
  left: 0.85rem;
  right: 0.85rem;
}

/* Contact Us CTA pill */
.nav-cta-link {
  color: var(--clr-gold) !important;
  border: 1.5px solid var(--clr-border);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  background: transparent;
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.nav-cta-link::after { display: none; }

.nav-cta-link:hover {
  background: var(--clr-gold);
  color: var(--clr-ivory) !important;
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease);
}
.hamburger:hover { background: var(--clr-gold-dim); }

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-charcoal);
  border-radius: 1px;
  transform-origin: center;
  transition: transform var(--dur-base) var(--ease),
              opacity   var(--dur-base) var(--ease),
              width     var(--dur-base) var(--ease);
}

.hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; width: 0; }
.hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----------------------------------------------------------------
   4. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* Warm gradient — ivory at top fading into deeper cream at bottom */
  background: linear-gradient(165deg, #FAF8F3 0%, #F2EDE3 45%, #E8DFD0 100%);
}

/* Subtle texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Canvas fills the hero */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Ambient glow orbs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  animation: glowDrift 14s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-glow--tl {
  width: 700px; height: 700px;
  top: -200px; left: -250px;
  background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero-glow--br {
  width: 550px; height: 550px;
  bottom: -120px; right: -180px;
  background: radial-gradient(circle, rgba(184,146,42,0.1) 0%, transparent 70%);
  animation-delay: -7s;
}

@keyframes glowDrift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(25px, 18px) scale(1.06); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: calc(var(--nav-h) + var(--sp-xl)) var(--sp-lg) var(--sp-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  animation: heroFadeIn 1s var(--ease-out) both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  animation: heroFadeIn 1s 0.1s var(--ease-out) both;
}

.hero-eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.35; transform: scale(0.65); }
}

/* Main heading */
.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--clr-charcoal);
  animation: heroFadeIn 1s 0.2s var(--ease-out) both;
}

.hero-heading-accent {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 50%, var(--clr-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subheading */
.hero-subheading {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 400;
  color: rgba(28,26,23,0.62);
  max-width: 520px;
  line-height: 1.85;
  animation: heroFadeIn 1s 0.35s var(--ease-out) both;
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-ivory);
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 55%, var(--clr-gold-dark) 100%);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(184,146,42,0.4), 0 1px 4px rgba(28,26,23,0.12);
  animation: heroFadeIn 1s 0.5s var(--ease-out) both,
             ctaFloat   3.5s 1.5s ease-in-out infinite;
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

@keyframes ctaFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}

.btn-cta:hover::before { transform: translateX(120%); }

.btn-cta:hover {
  box-shadow: 0 8px 40px rgba(184,146,42,0.5), 0 0 0 4px rgba(184,146,42,0.15);
  animation-play-state: paused;
}

.btn-cta:active { transform: scale(0.97); }

.btn-cta-icon {
  transition: transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.btn-cta:hover .btn-cta-icon { transform: translateX(4px); }

/* CICC Badge */
.cicc-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.4rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
  text-align: left;
  animation: heroFadeIn 1s 0.65s var(--ease-out) both;
  transition: border-color var(--dur-base) var(--ease),
              background  var(--dur-base) var(--ease),
              box-shadow  var(--dur-base) var(--ease);
}

.cicc-badge:hover {
  border-color: rgba(184,146,42,0.45);
  background: rgba(255,255,255,0.85);
  box-shadow: var(--shadow-gold);
}

.cicc-star { flex-shrink: 0; margin-top: 2px; }

.cicc-badge-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cicc-badge-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

.cicc-badge-detail {
  font-size: 0.79rem;
  color: rgba(28,26,23,0.6);
  font-weight: 400;
}

.cicc-badge-link {
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--clr-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184,146,42,0.4);
  transition: color var(--dur-fast) var(--ease),
              text-decoration-color var(--dur-fast) var(--ease);
}
.cicc-badge-link:hover {
  color: var(--clr-gold-dark);
  text-decoration-color: var(--clr-gold-dark);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--sp-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.4;
  animation: scrollBob 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: 0.2; }
}

.scroll-indicator-line {
  display: block;
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
}

.scroll-indicator-label {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
}

/* ----------------------------------------------------------------
   5. FLOATING SOCIAL SIDEBAR
   ---------------------------------------------------------------- */
.social-sidebar {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-border);
  background: rgba(250,248,243,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(28,26,23,0.55);
  box-shadow: var(--shadow-soft);
  transition: color      var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              background  var(--dur-base) var(--ease),
              transform   var(--dur-base) var(--ease),
              box-shadow  var(--dur-base) var(--ease);
}

/* Platform-specific hover colours — size/shape unchanged */
#social-instagram:hover {
  color: #fff;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #e1306c;
  transform: scale(1.12) translateX(-3px);
  box-shadow: 0 0 18px rgba(225,48,108,0.45);
}

#social-whatsapp:hover {
  color: #fff;
  background: #25D366;
  border-color: #25D366;
  transform: scale(1.12) translateX(-3px);
  box-shadow: 0 0 18px rgba(37,211,102,0.45);
}

#social-email:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--clr-gold-light), var(--clr-gold));
  border-color: var(--clr-gold);
  transform: scale(1.12) translateX(-3px);
  box-shadow: var(--shadow-gold);
}

#social-facebook:hover {
  color: #fff;
  background: #1877F2;
  border-color: #1877F2;
  transform: scale(1.12) translateX(-3px);
  box-shadow: 0 0 18px rgba(24,119,242,0.45);
}

/* ----------------------------------------------------------------
   WHATSAPP EXPAND — two flag sub-bubbles slide in when clicked
   ---------------------------------------------------------------- */

/* Wrapper groups the WA button + its two sub-bubbles */
.wa-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Sub-bubble container — hidden by default */
.wa-sub-bubbles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.35s var(--ease),
              opacity     0.3s  var(--ease),
              margin-top  0.35s var(--ease);
  pointer-events: none;
}

/* Expanded — JS adds .wa-open to .wa-wrap */
.wa-wrap.wa-open .wa-sub-bubbles {
  max-height: 130px;
  opacity: 1;
  margin-top: 0.5rem;
  pointer-events: auto;
}

/* Sub-bubble — same dimensions as .social-btn */
.wa-sub-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #25D366;
  background: rgba(250,248,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 1.3rem;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transform: translateY(8px) scale(0.85);
  transition: transform    0.3s  var(--ease),
              background   0.25s var(--ease),
              box-shadow   0.25s var(--ease),
              border-color 0.25s var(--ease);
}

.wa-wrap.wa-open .wa-sub-btn {
  transform: translateY(0) scale(1);
}

.wa-wrap.wa-open .wa-sub-btn:nth-child(2) {
  transition-delay: 0.07s;
}

.wa-sub-btn:hover {
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 0 18px rgba(37,211,102,0.5);
  transform: scale(1.12) translateX(-3px);
}

/* Main WA button stays green while panel is open */
.wa-wrap.wa-open #social-whatsapp {
  color: #fff;
  background: #25D366;
  border-color: #25D366;
  box-shadow: 0 0 18px rgba(37,211,102,0.45);
}

/* ----------------------------------------------------------------
   6. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--clr-charcoal);
  border-top: 1px solid rgba(184,146,42,0.2);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-xl) var(--sp-lg) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--clr-ivory);
}

.footer-tagline {
  font-size: 0.76rem;
  color: var(--clr-gold-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(184,146,42,0.3), transparent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.footer-copy,
.footer-cicc {
  font-size: 0.79rem;
  color: rgba(250,248,243,0.4);
}

.footer-cicc-link {
  color: var(--clr-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212,175,55,0.35);
  transition: color var(--dur-fast);
}
.footer-cicc-link:hover { color: var(--clr-gold-pale); }

.footer-socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-social-icon {
  color: rgba(250,248,243,0.35);
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.footer-social-icon:hover {
  color: var(--clr-gold-light);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   7. RESPONSIVE — Tablet (≤ 900px)
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  .social-sidebar { display: none; }
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    background: #FAF8F3;
    padding: var(--sp-lg) var(--sp-lg) var(--sp-xl);
    border-top: 1px solid var(--clr-border-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--dur-base) var(--ease),
                transform var(--dur-base) var(--ease);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li { width: 100%; }

  .nav-link {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: rgba(28,26,23,0.75);
    border-bottom: 1px solid var(--clr-border-soft);
    border-radius: 0;
  }

  .nav-link::after { display: none; }

  .nav-cta-link {
    margin-top: var(--sp-sm);
    display: inline-flex;
    width: auto;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--clr-border);
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ----------------------------------------------------------------
   8. RESPONSIVE — Mobile (≤ 520px)
   ---------------------------------------------------------------- */
@media (max-width: 520px) {
  .nav-inner  { padding: 0 var(--sp-sm); }
  .nav-brand-tagline { display: none; }
  .hero-content { padding-left: var(--sp-sm); padding-right: var(--sp-sm); }
  .cicc-badge { flex-direction: column; }
  .footer-inner { padding: var(--sp-lg) var(--sp-sm) var(--sp-md); }
}

/* WhatsApp Split Bubbles Animation */
.bubble-wa-split {
  animation: bubbleFadeIn 0.35s var(--ease) forwards;
}

@keyframes bubbleFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
