:root {
  --navy:    #0b1f3a;
  --navy2:   #122952;
  --green:   #00d48c;
  --green2:  #00b878;
  --yellow:  #ffd166;
  --pink:    #ff6b9d;
  --purple:  #a78bfa;
  --blue:    #38bdf8;
  --white:   #ffffff;
  --off:     #f5f9ff;
  --text:    #1e3a5f;
  --muted:   #5e7a9a;
  --border:  #dbeafe;

  /* legacy aliases so old pages still work */
  --primary:     var(--navy);
  --accent:      var(--green);
  --accent2:     var(--yellow);
  --light:       var(--off);
  --section-alt: var(--off);
  --hero-bg:     var(--navy);
}

/* ─────────────────────────────────────────────
   2. REDUCED MOTION GATE
───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:       0.01ms !important;
    animation-iteration-count: 1     !important;
    transition-duration:      0.01ms !important;
  }
}

/* ─────────────────────────────────────────────
   3. RESET & BASE
───────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.75;
}
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
  margin-bottom: 0.5em;
}
p   { margin-bottom: 1rem; line-height: 1.8; color: var(--muted); }
ul, ol { padding-left: 1.25rem; margin-bottom: 1rem; }
li  { margin-bottom: 0.45rem; line-height: 1.75; }
a   { text-decoration: none !important; color: inherit !important; }
img { max-width: 100%; display: block; }

/* ─────────────────────────────────────────────
   4. PAGE-LOAD CURTAIN
   Pages add  <div id="curtain">…</div>
   JS adds .go after 600 ms
───────────────────────────────────────────── */
#curtain {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  pointer-events: none;
}
#curtain.go { animation: curtainUp .7s cubic-bezier(.77,0,.18,1) .5s forwards; }
@keyframes curtainUp { to { transform: translateY(-100%); } }
.curtain-logo {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: #fff; display: flex; align-items: center; gap: 12px;
  animation: clFade .5s ease both;
}
.curtain-logo span { color: var(--green); }
@keyframes clFade { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
.curtain-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,.1); border-radius: 4px; overflow: hidden;
  animation: clFade .4s ease .2s both;
}
.curtain-bar-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--green), var(--blue));
  animation: barFill .45s ease .3s both;
}
@keyframes barFill { to { width: 100%; } }

/* ─────────────────────────────────────────────
   5. TOPBAR
───────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 10px 0;
}

.tb-inner {
  max-width: 1240px;
  margin: auto;
  padding: 0 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  /*
    Keep each link intact.
    The badge can move to another row,
    but individual contact links won't break.
  */
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: rgba(255,255,255,.8);
  margin-right: 18px;
  transition: color .2s;

  /*
    IMPORTANT:
    Prevent email / phone / WhatsApp
    from breaking into multiple lines.
  */
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.topbar a:hover {
  color: var(--green);
}

.topbar a i {
  margin-right: 5px;
  flex-shrink: 0;
}

.tb-badge {
  background: linear-gradient(90deg, var(--yellow), #ffb700);
  color: var(--navy);
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .75rem;

  display: flex;
  align-items: center;
  gap: 5px;

  /*
    Prevent the promotional text itself
    from breaking awkwardly.
  */
  white-space: nowrap;

  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%,100% {
    box-shadow: 0 0 0 0 rgba(255,209,102,.45);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255,209,102,0);
  }
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .tb-inner {
    padding: 0 18px;
    gap: 8px;
  }

  .topbar a {
    margin-right: 12px;
  }

  .tb-badge {
    font-size: .72rem;
    padding: 4px 12px;
  }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 700px) {

  .tb-inner {
    /*
      Keep the contact links together.
      Badge will move below when necessary.
    */
    justify-content: center;
    gap: 6px 0;
  }

  .tb-inner > div {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    /*
      IMPORTANT:
      Do not allow the individual links
      to wrap onto separate lines.
    */
    flex-wrap: nowrap;
  }

  .topbar a {
    margin-right: 12px;
    font-size: .78rem;
    white-space: nowrap;
  }

  .topbar a:last-child {
    margin-right: 0;
  }

  .tb-badge {
    font-size: .7rem;
    padding: 4px 11px;
  }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 500px) {

  .topbar {
    font-size: .75rem;
    padding: 8px 0;
  }

  .tb-inner {
    padding: 0 10px;
  }

  .tb-inner > div {
    justify-content: space-between;
    width: 100%;
  }

  .topbar a {
    font-size: .7rem;
    margin-right: 0;
  }

  .topbar a i {
    margin-right: 3px;
  }

  .tb-badge {
    font-size: .65rem;
    padding: 4px 9px;
    max-width: 100%;
  }
}


/* =========================================
   VERY SMALL PHONES
   ========================================= */

@media (max-width: 380px) {

  .topbar a {
    font-size: .64rem;
  }

  .topbar a i {
    margin-right: 2px;
  }

  .tb-badge {
    font-size: .6rem;
    padding: 4px 8px;
  }
}

/* ─────────────────────────────────────────────
   6. NAVBAR
───────────────────────────────────────────── */
nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(11,31,58,.08);
  position: sticky; top: 0; z-index: 1000;
  transition: box-shadow .3s, background .3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(11,31,58,.16); }

.nav-inner {
  max-width: 1240px; margin: auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}

/* Logo */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}

.curtain-logo-img,
.cl-logo-img {
  height: 150px;
  width: auto;
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.75rem; font-weight: 800;
  color: var(--navy);
  display: flex; align-items: center; gap: 10px;
  transition: transform .25s;
}
.logo:hover { transform: scale(1.03); }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--green); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1.1rem; font-weight: 900;
  box-shadow: 0 4px 12px rgba(0,212,140,.4);
  transition: all .3s;
}
.logo:hover .logo-icon {
  transform: rotate(-8deg) scale(1.1);
  box-shadow: 0 6px 22px rgba(0,212,140,.65);
}
.logo em, .logo span { font-style: normal; color: var(--green); }

/* Nav links */
.navbar .container-fluid{
  padding: 0px 40px !important;
}
.nav-item{
  margin-bottom: 0 !important;
  padding-left: 10px !important;
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  color: var(--text); font-size: .9rem; font-weight: 500;
  padding: 9px 14px; border-radius: 8px;
  transition: all .25s; position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 2px; background: var(--green); border-radius: 2px;
  transition: left .25s, right .25s;
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 14px; right: 14px; }
.nav-links a:hover,
.nav-links a.active { color: var(--green); }

/* Bootstrap Dropdown Customization */
.dropdown-menu {
  background: var(--white);
  box-shadow: 0 12px 40px rgba(11,31,58,.14);
  border-radius: 14px;
  border: 1px solid rgba(0,212,140,.1);
  animation: menuDrop .22s ease;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  width: min(620px, calc(100vw - 32px));
  min-width: min(620px, calc(100vw - 32px));
  left: auto;
  right: 0;
}

.dropdown-menu.show {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 4px 8px;
  padding: 12px;
}

@media (min-width: 992px) {
  .dropdown-menu {
    display: none;
  }

  .dropdown:hover > .dropdown-menu,
  .dropdown:focus-within > .dropdown-menu,
  .dropdown .dropdown-menu.show {
    display: grid;
  }
}

@keyframes menuDrop {
  from { opacity: 0; transform: translateY(-8px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.dropdown-item {
  padding: 10px 14px;
  font-size: .88rem;
  color: var(--text);
  transition: all .2s;
  border-radius: 8px;
}

.dropdown-item i {
  margin-right: 10px;
  color: var(--green);
  width: 16px;
  text-align: center;
}

.dropdown-item:hover {
  background: rgba(0,212,140,.06);
  color: var(--green);
  padding-left: 20px;
}

.dropdown-item.active,
.dropdown-item:active {
  background: rgba(0,212,140,.06);
  color: var(--green);
}

.dropdown-menu::-webkit-scrollbar { width: 6px; }
.dropdown-menu::-webkit-scrollbar-thumb { background: rgba(0,212,140,.3); border-radius: 10px; }
.dropdown-menu::-webkit-scrollbar-track { background: transparent; }

.dropdown-divider { margin: 8px 0; }

@media (max-width: 991px) {
  .dropdown-menu {
    width: 100%;
    min-width: 100%;
    left: 0;
    right: auto;
  }

  .dropdown-menu.show {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1280px) {
  .dropdown-menu {
    width: min(680px, calc(100vw - 40px));
    min-width: min(680px, calc(100vw - 40px));
  }
}

/* CTA button in nav */
.nav-cta {
        background: var(--green) !important;
        color: var(--white) !important;
        font-weight: 700 !important;
        padding: 10px 22px !important;
        border-radius: 9px !important;
        box-shadow: 0 4px 14px rgba(0, 212, 140, 0.35) !important;
        position: relative;
        overflow: hidden;
      }
      .nav-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transform: translateX(-100%);
        transition: transform 0.5s;
      }
      .nav-cta:hover::before {
        transform: translateX(100%);
      }
      .nav-cta::after {
        display: none !important;
      }
      .nav-cta:hover {
        background: var(--green2) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 22px rgba(0, 212, 140, 0.5) !important;
      }

/* Mobile hamburger */
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--navy); }
.nav-links.open {
  display: flex; flex-direction: column;
  position: absolute; top: 74px; left: 0; right: 0;
  background: #fff; padding: 20px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  z-index: 999; gap: 4px;
}

/* ─────────────────────────────────────────────
   7. NOTIFICATION STRIP
───────────────────────────────────────────── */
.notif-strip {
  background: linear-gradient(90deg, var(--green), #00b878, var(--green));
  background-size: 200% auto;
  animation: shimBg 3s linear infinite;
  padding: 10px 24px; text-align: center;
  font-family: 'Syne', sans-serif; font-size: .88rem; font-weight: 700;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  flex-wrap: wrap;
  cursor: pointer;
  transition: letter-spacing .3s;
}
.notif-strip:hover { letter-spacing: .3px; }
@keyframes shimBg {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.notif-tag {
  background: var(--navy); color: var(--green);
  padding: 3px 10px; border-radius: 20px; font-size: .72rem; letter-spacing: .5px;
  animation: tagPop 2s ease-in-out infinite;
}
@keyframes tagPop { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* ─────────────────────────────────────────────
   8. PAGE HERO  (inner pages)
───────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 90px 24px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
/* Ambient mesh */
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(0,212,140,.13) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 25%, rgba(167,139,250,.13) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(56,189,248,.08) 0%, transparent 50%);
  pointer-events: none;
}
/* Breathing orbs */
.page-hero .orb {
  position: absolute; border-radius: 50%;
  filter: blur(40px); opacity: .16;
  animation: orbFloat ease-in-out infinite;
}
.page-hero .orb1 { width:480px;height:480px; background:var(--green); top:-200px; left:-150px; animation-duration:12s; }
.page-hero .orb2 { width:300px;height:300px; background:var(--purple); bottom:-100px; right:-80px; animation-duration:9s; animation-delay:-4s; }
.page-hero .orb3 { width:160px;height:160px; background:var(--yellow); top:25%; right:12%; animation-duration:7s; animation-delay:-2s; }
@keyframes orbFloat {
  0%,100% { transform: scale(1) translate(0,0); }
  33%      { transform: scale(1.08) translate(8px,-8px); }
  66%      { transform: scale(.95) translate(-6px,6px); }
}

/* Canvas particles (JS populates) */
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .5; pointer-events: none; display: block;
}

/* Floating info chips */
.hero-chip {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 9px 15px;
  font-family: 'Syne', sans-serif;
  color: rgba(255,255,255,.6); font-size: .78rem;
  backdrop-filter: blur(8px);
  animation: chipFloat ease-in-out infinite;
  pointer-events: none; user-select: none;
}
.hero-chip.hc1 { top:18%; left:4%;  animation-duration:5.5s; }
.hero-chip.hc2 { top:58%; left:5%;  animation-duration:7s;   animation-delay:-2s; }
.hero-chip.hc3 { top:20%; right:5%; animation-duration:6s;   animation-delay:-1s; }
.hero-chip.hc4 { top:64%; right:4%; animation-duration:5s;   animation-delay:-3s; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.page-hero-inner {
  max-width: 820px; margin: auto;
  position: relative; z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex; align-items: center;
  gap: 8px; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.6);
  padding: 6px 16px; border-radius: 30px; font-size: .8rem;
  margin-bottom: 24px;
  animation: hFade .7s ease .1s both;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb i { font-size: .65rem; color: rgba(255,255,255,.3); }

/* Hero heading */
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; margin-bottom: 16px;
  animation: hFade .7s ease .2s both;
}
.page-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--purple), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 300% auto;
  animation: hFade .7s ease .2s both, gradMove 5s linear infinite;
}
@keyframes gradMove { 0% { background-position: 0%; } 100% { background-position: 300%; } }
@keyframes hFade { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }

.page-hero > div > p,
.page-hero-inner > p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem; line-height: 1.75;
  max-width: 680px; margin: 0 auto 32px;
  animation: hFade .7s ease .35s both;
}

/* Badge row */
.page-hero-badges, .hero-pills {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
  animation: hFade .7s ease .5s both;
}
.page-hero-badge, .hero-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  padding: 8px 18px; border-radius: 30px; font-size: .82rem;
  display: flex; align-items: center; gap: 7px;
  transition: all .3s; cursor: default;
}
.page-hero-badge:hover, .hero-pill:hover {
  background: rgba(0,212,140,.15);
  border-color: rgba(0,212,140,.4);
  transform: translateY(-3px);
}
.page-hero-badge i, .hero-pill i { color: var(--green); }

/* ─────────────────────────────────────────────
   9. SECTION HELPERS
───────────────────────────────────────────── */
.section      { padding: 90px 24px; }
.section-alt  { background: var(--off); }
.container    { max-width: 1240px; margin: auto; padding: 0 24px; }

.section-tag {
  display: inline-block;
  background: rgba(0,212,140,.1); color: var(--green);
  border: 1px solid rgba(0,212,140,.25);
  padding: 5px 18px; border-radius: 20px;
  font-size: .75rem; font-weight: 700;
  margin-bottom: 14px; letter-spacing: .8px; text-transform: uppercase;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--navy); margin-bottom: 12px;
  position: relative;
}
/* Animated underline on section headings */
.section-header h2::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 4px;
  margin: 12px auto 0;
  transform: scaleX(0); transform-origin: center;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
}
.section-header.fade-in.visible h2::after { transform: scaleX(1); }
.section-header p {
  color: var(--muted); font-size: 1rem;
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}

/* ─────────────────────────────────────────────
   10. SCROLL REVEAL
───────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1),
              transform .7s cubic-bezier(.22,1,.36,1);
}
.fade-in.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────────────
   11. BUTTONS  (God Mode)
───────────────────────────────────────────── */

/* --- shared base --- */
.btn-primary, .btn-dark, .btn-wa, .btn-outline {
  font-family: 'Syne', sans-serif; font-weight: 800;
  padding: 14px 30px; border-radius: 12px; font-size: .95rem;
  display: inline-flex; align-items: center; gap: 9px;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  line-height: 1;
}

/* Shimmer sweep on every button */
.btn-primary::before, .btn-dark::before,
.btn-wa::before, .btn-outline::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent);
  transform: translateX(-100%);
}
.btn-primary:hover::before, .btn-dark:hover::before,
.btn-wa:hover::before, .btn-outline:hover::before {
  transform: translateX(100%);
  transition: transform .5s ease;
}

/* Icon nudge */
.btn-primary i, .btn-dark i, .btn-wa i, .btn-outline i {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  position: relative; z-index: 1;
}
.btn-primary:hover i { transform: translateX(5px) rotate(-8deg); }
.btn-dark:hover    i { transform: translateX(5px) rotate(-6deg); }
.btn-wa:hover      i { transform: rotate(20deg) scale(1.2); }
.btn-outline:hover i { transform: rotate(15deg); }

/* Text above shimmer */
.btn-primary span, .btn-dark span,
.btn-wa span, .btn-outline span { position: relative; z-index: 1; }

/* --- colours --- */
.btn-primary {
  background: var(--green); color: var(--navy);
  box-shadow: 0 6px 22px rgba(0,212,140,.38);
  animation: idleBounce 3s ease-in-out infinite 3s;
}
@keyframes idleBounce {
  0%,82%,100% { transform: translateY(0); }
  88%          { transform: translateY(-7px); }
  94%          { transform: translateY(-3px); }
}
.btn-primary:hover {
  background: var(--green2);
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0,212,140,.55);
  animation: none;
}
.btn-primary:active { transform: scale(.97); }

.btn-dark {
  background: var(--navy); color: var(--white) !important;
}
.btn-dark:hover {
  background: #0d2e50;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11,31,58,.4);
}

.btn-wa {
  background: #25d366; color: var(--white);
}
.btn-wa:hover {
  background: #20c05a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
}

.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--green); color: var(--green);
  transform: translateY(-3px);
}

/* Ripple effect — JS adds .rip-wave child on click */
.rip { overflow: hidden; }
.rip-wave {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.32);
  transform: scale(0);
  animation: ripOut .65s linear forwards;
  pointer-events: none;
}
@keyframes ripOut { to { transform: scale(4); opacity: 0; } }

/* ─────────────────────────────────────────────
   12. CARDS
───────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px; padding: 32px;
  position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
}
/* Top accent bar */
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
/* Shine sweep */
.card::after {
  content: '';
  position: absolute; top: 0; left: -70%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: left .7s ease;
}
.card:hover::before { transform: scaleX(1); }
.card:hover::after  { left: 140%; }
.card:hover {
  border-color: var(--green);
  box-shadow: 0 16px 44px rgba(0,212,140,.14);
  transform: translateY(-6px);
}
.card-icon {
  width: 54px; height: 54px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.card:hover .card-icon { transform: scale(1.15) rotate(-8deg); }
.card h3 {
  font-size: 1.07rem; font-weight: 700; color: var(--navy); margin-bottom: 10px;
  transition: color .2s;
}
.card:hover h3 { color: var(--green); }
.card p { color: var(--muted); font-size: .9rem; line-height: 1.72; margin-bottom: 0; }

/* ─────────────────────────────────────────────
   13. FEATURE CARDS  (flex row)
───────────────────────────────────────────── */
.feat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px; padding: 22px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: -70%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .7s ease;
}
.feat-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.feat-card:hover::before { left: 140%; }
.feat-card:hover::after  { transform: scaleX(1); }
.feat-card:hover {
  border-color: var(--green);
  box-shadow: 0 12px 36px rgba(0,212,140,.15);
  transform: translateY(-5px);
}
.feat-icon, .feat-icon-wrap {
  width: 46px; height: 46px;
  background: rgba(0,212,140,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; color: var(--green); flex-shrink: 0;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.feat-card:hover .feat-icon,
.feat-card:hover .feat-icon-wrap {
  background: var(--green); color: var(--navy);
  transform: scale(1.15) rotate(-10deg);
}
.feat-card h4 {
  font-size: .93rem; color: var(--navy); margin-bottom: 4px;
  font-family: 'Syne', sans-serif; transition: color .2s;
}
.feat-card:hover h4 { color: var(--green); }
.feat-card p { color: var(--muted); font-size: .85rem; line-height: 1.6; margin: 0; }

/* ─────────────────────────────────────────────
   14. STATS
───────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-box {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px; padding: 36px 20px; text-align: center;
  position: relative; overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
}
.stat-box::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--purple));
  background-size: 200% auto;
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.stat-box:hover::before {
  transform: scaleX(1);
  animation: borderSlide 2s linear infinite;
}
@keyframes borderSlide { 0% { background-position: 0%; } 100% { background-position: 200%; } }
.stat-box:hover {
  border-color: var(--green);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,212,140,.16);
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem; font-weight: 800;
  color: var(--navy); line-height: 1; margin-bottom: 8px;
}
.stat-num span, .stat-big span { color: var(--green); }
.stat-label { color: var(--muted); font-size: .85rem; }

/* ─────────────────────────────────────────────
   15. QUOTE WIDGET
───────────────────────────────────────────── */
.quote-widget {
  background: var(--navy);
  border-radius: 24px; padding: 30px;
  position: sticky; top: 90px;
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
  animation: hFade .7s ease .45s both;
}
.quote-widget::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(0,212,140,.1) 0%, transparent 70%);
  border-radius: 50%; animation: orbFloat 8s ease-in-out infinite;
}
.quote-widget:hover { box-shadow: 0 24px 64px rgba(0,0,0,.3); transform: translateY(-4px); }

.quote-widget h3 {
  color: var(--white); font-size: 1.1rem; margin-bottom: 22px;
  display: flex; align-items: center; gap: 10px;
  position: relative; z-index: 1;
}
.quote-widget h3 i { color: var(--green); animation: spinCog 5s linear infinite; }
@keyframes spinCog { to { transform: rotate(360deg); } }

.form-group { margin-bottom: 14px; position: relative; z-index: 1; }
.form-group label {
  display: block; font-size: .74rem; font-weight: 700;
  color: rgba(255,255,255,.45); margin-bottom: 7px;
  text-transform: uppercase; letter-spacing: .6px;
}
.form-group select,
.form-group input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--white); border-radius: 10px;
  padding: 10px 13px; font-size: .9rem;
  font-family: 'DM Sans', sans-serif;
  transition: all .25s; outline: none;
  appearance: none; -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='rgba(255,255,255,.35)' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: rgba(255,255,255,.07);
  padding-right: 32px; cursor: pointer;
}
.form-group select option { background: #0b1f3a; color: #fff; }
.form-group select:focus,
.form-group input:focus {
  border-color: rgba(0,212,140,.5);
  background: rgba(0,212,140,.09);
  box-shadow: 0 0 0 4px rgba(0,212,140,.12);
}
.form-group select:hover,
.form-group input:hover { border-color: rgba(0,212,140,.3); }

.quote-total {
  background: rgba(0,212,140,.1);
  border: 1px solid rgba(0,212,140,.22);
  border-radius: 14px; padding: 18px;
  margin: 20px 0; text-align: center;
  position: relative; z-index: 1; overflow: hidden;
}
.quote-total::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,212,140,.08) 0%, transparent 60%);
}
.price-label {
  font-size: .72rem; color: rgba(255,255,255,.45);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: .6px;
}
.price {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem; font-weight: 800; color: var(--green);
  display: inline-block;
}
.price.bump { animation: pricePop .45s cubic-bezier(.34,1.56,.64,1) both; }
@keyframes pricePop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.2) rotate(-1deg); }
  100% { transform: scale(1); }
}

/* ─────────────────────────────────────────────
   16. CONTENT LAYOUT (service pages)
───────────────────────────────────────────── */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px; align-items: start;
}

/*.content-body .section-tag,*/
/*.content-body h2 {*/
/*    display: block !important;*/
/*    width: 100% !important;*/
/*}*/

.content-body { animation: hFade .7s ease .3s both;}
.content-body h2 {
  font-size: 1.6rem; color: var(--navy);
  margin: 40px 0 14px;
  font-family: 'Syne', sans-serif;
  position: relative;
}
.content-body h2::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 2px; transition: width .5s ease;
}
.content-body h2:hover::after { width: 100%; }
.content-body h2:first-of-type { margin-top: 0; }
.content-body h3 {
  font-size: 1.15rem; color: var(--navy);
  margin: 26px 0 10px; font-family: 'Syne', sans-serif;
}
.content-body p { color: var(--muted); line-height: 1.85; margin-bottom: 18px; font-size: .96rem; }
.content-body ul { margin: 14px 0 20px; padding-left: 0; list-style: none; }
.content-body ul li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 16px; border-radius: 12px; margin-bottom: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  font-size: .92rem; color: var(--text);
  transition: all .35s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.content-body ul li::before {
  content: '\f058'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--green); font-size: .9rem; margin-top: 2px; flex-shrink: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.content-body ul li::after {
  content: '';
  position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.content-body ul li:hover::after { left: 130%; }
.content-body ul li:hover {
  border-color: var(--green);
  background: rgba(0,212,140,.04);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0,212,140,.1);
}
.content-body ul li:hover::before { transform: scale(1.35) rotate(-15deg); }

/* ─────────────────────────────────────────────
   17. FAQ
───────────────────────────────────────────── */
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px; margin-bottom: 12px; overflow: hidden;
  transition: all .3s cubic-bezier(.22,1,.36,1);
}
.faq-item:hover { border-color: rgba(0,212,140,.3); box-shadow: 0 6px 24px rgba(0,212,140,.08); }
.faq-item.open { border-color: var(--green); }
.faq-q {
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 700; color: var(--navy);
  font-family: 'Syne', sans-serif; font-size: .93rem; gap: 12px;
  transition: color .2s;
}
.faq-item.open .faq-q { color: var(--green); }
.faq-q i { color: var(--green); transition: transform .35s cubic-bezier(.34,1.56,.64,1); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
/* Legacy open class support */
.faq-q.open { color: var(--green); }
.faq-q.open i { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; opacity: 0;
  padding: 0 22px 0;
  font-size: .9rem; color: var(--muted); line-height: 1.75;
  border-top: 0 solid transparent;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), opacity .25s ease, padding .25s ease, border-color .25s ease;
}
.faq-a.show, .faq-item.open .faq-a {
  max-height: 300px; opacity: 1;
  padding: 14px 22px 18px;
  border-top: 1px solid var(--border);
}
.faq-a-inner {
  padding: 0;
}

/* ─────────────────────────────────────────────
   18. TESTIMONIALS
───────────────────────────────────────────── */
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px; padding: 28px;
  transition: all .35s cubic-bezier(.22,1,.36,1);
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.testi-card:hover::before { transform: scaleX(1); }
.testi-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-6px);
  box-shadow: 0 16px 44px rgba(0,0,0,.2);
}
.testi-stars {
  color: var(--yellow); font-size: .92rem;
  letter-spacing: 3px; margin-bottom: 12px;
}
.testi-q {
  font-size: 2.8rem; font-family: 'Syne', sans-serif;
  color: var(--green); line-height: .5; opacity: .3;
  margin-bottom: 10px; transition: opacity .3s;
}
.testi-card:hover .testi-q { opacity: .65; }
.testi-text {
  color: rgba(255,255,255,.78); font-size: .9rem;
  line-height: 1.78; margin-bottom: 20px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: .9rem;
  color: var(--navy); flex-shrink: 0;
  background: linear-gradient(135deg, var(--green), var(--blue));
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.testi-card:hover .testi-avatar { transform: scale(1.12); }
.testi-name { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 2px; font-family: 'Syne', sans-serif; }
.testi-city { color: rgba(255,255,255,.4); font-size: .78rem; }

/* ─────────────────────────────────────────────
   19. FREEBIES
───────────────────────────────────────────── */
.freebie {
  background: var(--white); border: 2px dashed var(--border);
  border-radius: 16px; padding: 28px 16px; text-align: center;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
  position: relative; overflow: hidden; cursor: default;
}
.freebie::before {
  content: '';
  position: absolute; top: 0; left: -70%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-20deg); transition: left .7s ease;
}
.freebie::after {
  content: 'FREE ✓';
  position: absolute; inset: 0;
  background: rgba(0,212,140,.1);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--green);
  opacity: 0; transition: opacity .3s; backdrop-filter: blur(2px);
}
.freebie:hover::before { left: 140%; }
.freebie:hover::after  { opacity: 1; }
.freebie:hover {
  background: rgba(0,212,140,.03); border-color: var(--green);
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0,212,140,.18);
}
.freebie-icon {
  width: 56px; height: 56px; background: rgba(0,212,140,.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--green);
  margin: 0 auto 16px;
  transition: all .4s cubic-bezier(.34,1.56,.64,1);
}
.freebie:hover .freebie-icon { background: var(--green); color: var(--navy); transform: scale(1.18) rotate(-10deg); }
.freebie h4 { font-size: .9rem; color: var(--navy); font-weight: 700; margin-bottom: 6px; font-family: 'Syne', sans-serif; }
.freebie-was { font-size: .78rem; color: #ef4444; text-decoration: line-through; margin-bottom: 3px; }
.freebie-free { font-size: .92rem; color: var(--green); font-weight: 800; }

/* ─────────────────────────────────────────────
   20. CTA BANNER
───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, #00b878 100%);
  padding: 90px 24px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23000' fill-opacity='.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM36 4V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 {
  font-size: clamp(1.9rem,3.5vw,2.8rem); color: var(--navy);
  margin-bottom: 12px; position: relative; z-index: 1;
  font-family: 'Syne', sans-serif;
}
.cta-banner p {
  color: rgba(11,31,58,.72); font-size: 1.05rem;
  margin-bottom: 32px; line-height: 1.7; position: relative; z-index: 1;
}
.cta-btns {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ─────────────────────────────────────────────
   21. FOOTER
───────────────────────────────────────────── */
footer {
  background: #060f1a;
  padding: 70px 24px 0; color: rgba(255,255,255,.7);
}
.footer-grid, .fg {
  max-width: 1240px; margin: auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
}
footer h4 {
  color: #fff; font-size: .95rem; font-weight: 700;
  margin-bottom: 18px; font-family: 'Syne', sans-serif;
}
footer p { font-size: .87rem; line-height: 1.75; margin-bottom: 10px; color: rgba(255,255,255,.6); }
footer ul { list-style: none; padding-left: 0; margin-bottom: 0; }
footer ul li { margin-bottom: 10px; }
footer ul li a {
  color: rgba(255,255,255,.55); font-size: .87rem;
  transition: all .2s; display: inline-block;
}
footer ul li a:hover { color: var(--green); transform: translateX(4px); }

.footer-logo {
  font-family: 'Syne', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: #fff; margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.footer-logo em, .footer-logo span { font-style: normal; color: var(--green); }

.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: .9rem;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.social-links a:hover {
  background: var(--green); color: var(--navy);
  transform: translateY(-4px) scale(1.1);
}

.payment-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.payment-badges span {
  background: rgba(255,255,255,.07); padding: 5px 12px;
  border-radius: 5px; font-size: .75rem; color: rgba(255,255,255,.55);
  cursor: default; transition: all .2s;
}
.payment-badges span:hover { background: rgba(255,255,255,.13); color: rgba(255,255,255,.8); }

.footer-bottom, .fb {
  border-top: 1px solid rgba(255,255,255,.07); padding: 22px 0;
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; font-size: .82rem; color: rgba(255,255,255,.35);
}
.footer-bottom a, .fb a { color: rgba(255,255,255,.35); transition: color .2s; }
.footer-bottom a:hover, .fb a:hover { color: var(--green); }

/* ─────────────────────────────────────────────
   22. FLOATING WHATSAPP
───────────────────────────────────────────── */
.float-wa {
  position: fixed; bottom: 28px; right: 28px;
  background: #25d366; color: white !important;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; z-index: 998;
  box-shadow: 0 4px 24px rgba(37,211,102,.55);
  animation: floatup 3s ease-in-out infinite;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.18) !important; box-shadow: 0 10px 36px rgba(37,211,102,.75); }
@keyframes floatup { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-wa::after {
  content: '';
  position: absolute; inset: -5px; border-radius: 50%;
  border: 3px solid rgba(37,211,102,.45);
  animation: waPing 2s ease-out infinite;
}
@keyframes waPing { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.7); opacity: 0; } }

/* ─────────────────────────────────────────────
   23. GLOBAL RIPPLE (JS hook)
───────────────────────────────────────────── */
/* already defined in §11 */

/* ─────────────────────────────────────────────
   24. RESPONSIVE
───────────────────────────────────────────── */

/* Nav switches to hamburger/mobile mode — unified breakpoint used
   consistently for hamburger, nav-links, and dropdown mobile styling,
   so there's no mismatched range where they disagree. */
@media (max-width: 991px) {
  /* Bootstrap navbar responsive adjustments */
  
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid rgba(0,212,140,.15);
    border-radius: 10px;
    background: rgba(0,212,140,.03);
    margin-top: 6px;
    max-height: 45vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dropdown-item {
    padding: 10px 14px;
    font-size: .88rem;
  }
}

@media (max-width: 960px) {
  .stats-grid   { grid-template-columns: repeat(2,1fr); }
  .footer-grid, .fg { grid-template-columns: 1fr 1fr; gap: 36px; }
  .content-layout { grid-template-columns: 1fr; }
  .quote-widget { position: static; }
  .section { padding: 70px 24px; }
  .hero-chip { display: none; }
}
@media (max-width: 600px) {
  .footer-grid, .fg { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2,1fr); }
  .section        { padding: 56px 20px; }
  .card           { padding: 24px; }
  .quote-widget   { padding: 24px; }
  .page-hero      { padding: 70px 20px 60px; }
  .cta-banner     { padding: 64px 20px; }
} 
@media (max-width: 420px) {
  .notif-strip { padding: 8px 16px; font-size: .78rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 2rem; }
}