/* ─── TOKENS ─── */
:root {
  /* --blue:        #0052e0;
      --blue-dark:   #0040b8;
      --blue-pale:   #e6edff;
      --purple:      #6b21e8;
      --green:       #00b87a;
      --amber:       #f59e0b;
      --rose:        #f43f5e;
      --ink:         #07101f;
      --slate:       #334166;
      --muted:       #7b8db0;
      --pale:        #f4f6fd;
      --white:       #ffffff;
      --border:      rgba(0,0,0,.07);
      --blue-dark:  #0040b8;
      --blue-pale:  #e6edff; */

  --blue: #0052e0;
  --blue-dark: #0040b8;
  --blue-pale: #e6edff;
  --purple: #6b21e8;
  --green: #00b87a;
  --amber: #f59e0b;
  --rose: #f43f5e;
  --ink: #07101f;
  --slate: #334166;
  --muted: #7b8db0;
  --pale: #f4f6fd;
  --white: #ffffff;
  --border: rgba(0, 0, 0, .07);

  --ff-display: 'Inter', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
  --ff-d: 'Inter', sans-serif;
  --ff-b: 'DM Sans', sans-serif;
  --nav-h: 70px;
  --radius-lg: 10px;
  --radius-xl: 24px;
  --r-xl: 10px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t: .25s;
}

/* ─── BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-body);
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
}

/* ════════════════════════════════════
       ANNOUNCEMENT BAR
    ════════════════════════════════════ */
.announce-bar {
  background: var(--blue);
  font-size: .825rem;
  font-weight: 500;
  letter-spacing: .01em;
}

.announce-bar a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announce-bar a:hover {
  opacity: .8;
}

.announce-bar .btn-close-white {
  --bs-btn-close-color: rgba(255, 255, 255, .7);
  width: 18px;
  height: 18px;
}

/* ════════════════════════════════════
       NAVBAR
    ════════════════════════════════════ */
.site-navbar {
  /* height: var(--nav-h); */
  transition: box-shadow var(--t) var(--ease),
    background var(--t) var(--ease);
}

.site-navbar.scrolled {
  background: rgba(255, 255, 255, .92) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--border), 0 4px 18px rgba(0, 60, 200, .06);
}

/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--blue);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(0, 82, 224, .35);
  transition: transform var(--t) var(--ease);
}

.navbar-brand:hover .nav-logo-icon {
  transform: rotate(-7deg) scale(1.07);
}

.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.02em;
}

.nav-logo-text span {
  color: var(--blue);
}


/* Auth buttons */
.btn-nav-ghost {
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate);
  background: transparent;
  border: none;
  padding: .5rem 1rem;
  border-radius: 99px;
  transition: background var(--t), color var(--t);
  text-decoration: none;
}

.btn-nav-ghost:hover {
  background: var(--pale);
  color: var(--ink);
}

.btn-nav-primary {
  font-family: var(--ff-display);
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: .55rem 1.3rem;
  border-radius: 99px;
  box-shadow: 0 4px 14px rgba(0, 82, 224, .28);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.btn-nav-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 82, 224, .38);
  color: #fff;
}

.btn-nav-primary i {
  font-size: .75rem;
  transition: transform var(--t);
}

.btn-nav-primary:hover i {
  transform: translateX(3px);
}

/* Toggler */
.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .38rem .55rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  /* content: "\f0c9"; */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280%2C0%2C0%2C.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ══════════════════════════════════════════════════
       ★ NAVBAR HOVER FIX
       Add this CSS snippet to your existing navbar file.
       It overrides Bootstrap's click-only dropdown
       behaviour on desktop (≥992px) with CSS hover.
    ══════════════════════════════════════════════════ */

/* 1. Show dropdown on hover on desktop */
@media (min-width: 992px) {
  .site-navbar .navbar-nav .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
    /* remove gap so hover doesn't break */
    animation: ddFadeIn .18s var(--ease);
  }

  /* 2. Keep the dropdown open while cursor moves from toggle → menu */
  .site-navbar .navbar-nav .dropdown-menu {
    /* small top padding creates a "bridge" so the gap doesn't cause flicker */
    margin-top: 4px;
    border-top: 4px solid transparent;
    background-clip: padding-box;
  }

  /* 3. Add active state to toggle on hover */
  .site-navbar .navbar-nav .dropdown:hover>.nav-link {
    background: var(--pale);
    color: var(--ink) !important;
  }
}

@keyframes ddFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 4. Remove Bootstrap's click-toggle arrow rotation on desktop
          (it stays visually cleaner on hover mode) */
@media (min-width: 992px) {
  .site-navbar .navbar-nav .dropdown-toggle::after {
    transition: transform .2s var(--ease);
  }

  .site-navbar .navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* ─── END NAVBAR HOVER FIX ─── */

/* Offcanvas (mobile menu) */
/* .offcanvas {
      max-width: 320px;
      border-right: 1px solid var(--border) !important;
    }
    .offcanvas-header { border-bottom: 1px solid var(--border); padding: 1.1rem 1.3rem; }
    .offcanvas-body { padding: 1rem 1.1rem; }
    .mobile-nav-link {
      display: flex;
      align-items: center;
      gap: .75rem;
      padding: .75rem .9rem;
      border-radius: 12px;
      font-size: .925rem;
      font-weight: 500;
      color: var(--slate);
      text-decoration: none;
      transition: background var(--t), color var(--t);
    }
    .mobile-nav-link:hover, .mobile-nav-link.active {
      background: var(--pale);
      color: var(--blue);
    }
    .mobile-nav-icon {
      width: 34px; height: 34px;
      border-radius: 9px;
      background: var(--pale);
      display: flex; align-items: center; justify-content: center;
      font-size: .82rem;
      color: var(--blue);
      flex-shrink: 0;
      transition: background var(--t);
    }
    .mobile-nav-link.active .mobile-nav-icon,
    .mobile-nav-link:hover .mobile-nav-icon {
      background: var(--blue);
      color: #fff;
    }
    .mobile-divider {
      height: 1px;
      background: var(--border);
      margin: .65rem 0;
    }
    */
.btn-mobile-login {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .85rem;
  border-radius: 12px;
  background: var(--pale);
  border: 1px solid var(--border);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  transition: all var(--t);
}

.btn-mobile-login:hover {
  border-color: rgba(0, 82, 224, .25);
  color: var(--blue);
}

.btn-mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem;
  border-radius: 12px;
  background: var(--blue);
  border: none;
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 82, 224, .3);
  transition: all var(--t);
}

.btn-mobile-cta:hover {
  background: var(--blue-dark);
  color: #fff;
}

/* ════════════════════════════════════
       HERO SECTION
    ════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f8f9ff;
}

/* Mesh gradient BG */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 55% at 50% -5%, rgba(0, 82, 224, .09) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 90% 55%, rgba(107, 33, 232, .07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 8% 75%, rgba(0, 184, 122, .06) 0%, transparent 60%),
    #f8f9ff;
  z-index: 0;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 82, 224, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 224, .035) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 65% 65% at 50% 40%, black 15%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 40%, black 15%, transparent 80%);
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: rgba(0, 82, 224, .11);
  top: -80px;
  right: -60px;
  animation: drift 18s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(107, 33, 232, .09);
  bottom: 60px;
  left: -50px;
  animation: drift 22s ease-in-out infinite reverse;
}

.orb-3 {
  width: 220px;
  height: 220px;
  background: rgba(0, 184, 122, .08);
  bottom: 25%;
  right: 10%;
  animation: drift 16s ease-in-out infinite;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(18px, -16px) scale(1.05);
  }

  66% {
    transform: translate(-12px, 14px) scale(.97);
  }
}

/* ── HERO CONTENT ── */
.hero-content {
  position: relative;
  z-index: 1;
}

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(0, 82, 224, .18);
  border-radius: 99px;
  padding: .35rem 1rem .35rem .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--slate);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 82, 224, .08);
  cursor: default;
  transition: border-color var(--t), box-shadow var(--t);
}

.hero-eyebrow:hover {
  border-color: rgba(0, 82, 224, .35);
  box-shadow: 0 4px 18px rgba(0, 82, 224, .13);
}

.eyebrow-badge {
  background: var(--blue);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  padding: .15rem .6rem;
  border-radius: 99px;
  letter-spacing: .02em;
}

.eyebrow-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px var(--green);
  animation: livePulse 2s ease infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

/* Heading */
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--ink);
}

.hero-gradient-word {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-underline {
  display: inline-block;
  position: relative;
}

.hero-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  border-radius: 99px;
  opacity: .22;
}

/* Rotating word */
.rotating-word {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.rotating-word.fade-out {
  opacity: 0;
  transform: translateY(8px);
}

/* Cursor blink */
.cursor-blink {
  display: inline-block;
  width: 3px;
  height: .85em;
  background: var(--blue);
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 3px;
  animation: blink 1.1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

/* Subtitle */
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--slate);
  line-height: 1.7;
  max-width: 520px;
}

/* CTA row */
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: .9rem 1.9rem;
  border-radius: 99px;
  box-shadow: 0 6px 24px rgba(0, 82, 224, .32);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18) 0%, transparent 60%);
  pointer-events: none;
}

.btn-hero-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(0, 82, 224, .42);
  color: #fff;
}

.btn-hero-primary i {
  font-size: .8rem;
  transition: transform var(--t);
}

.btn-hero-primary:hover i {
  transform: translateX(4px);
}

.btn-hero-secondary {
  font-family: var(--ff-body);
  font-size: .935rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--border);
  padding: .9rem 1.7rem;
  border-radius: 99px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: all var(--t);
  backdrop-filter: blur(8px);
}

.btn-hero-secondary:hover {
  border-color: rgba(0, 82, 224, .25);
  box-shadow: 0 6px 20px rgba(0, 30, 100, .1);
  transform: translateY(-1px);
  color: var(--ink);
}

.play-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .55rem;
  flex-shrink: 0;
}




.fc-1 {
  top: 18%;
  left: -80px;
  animation: floatA 4s ease-in-out infinite;
}

.fc-2 {
  bottom: 22%;
  right: -70px;
  animation: floatB 5s ease-in-out infinite;
}

@keyframes floatA {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@keyframes floatB {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(10px)
  }
}




/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-14px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.anim-fadeUp {
  animation: fadeUp .6s var(--ease) both;
}

.anim-fadeDown {
  animation: fadeDown .55s var(--ease) both;
}

.delay-1 {
  animation-delay: .08s;
}

.delay-2 {
  animation-delay: .16s;
}

.delay-3 {
  animation-delay: .24s;
}

.delay-4 {
  animation-delay: .32s;
}

.delay-5 {
  animation-delay: .4s;
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 991px) {

  .fc-1,
  .fc-2 {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-sub {
    max-width: 100%;
  }

  .dash-stats .row {
    --bs-gutter-x: .5rem;
  }
}

@media (max-width: 575px) {
  .hero-cta-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    justify-content: center;
  }
}


/* ─── SHARED SECTION STYLES ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--blue);
  border-radius: 99px;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-title .grad {
  background: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ════════════════════════════════════
       SECTION 3 — SERVICES
    ════════════════════════════════════ */
.services-section {
  background: #f8f9ff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 80% 15%, rgba(0, 82, 224, .05) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 8% 85%, rgba(107, 33, 232, .04) 0%, transparent 65%);
  pointer-events: none;
}

/* Filter tabs using Bootstrap nav-pills */
.services-filter .nav-pills .nav-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: .5rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all var(--t);
}

.services-filter .nav-pills .nav-link:hover {
  border-color: rgba(0, 82, 224, .25);
  color: var(--blue);
}

.services-filter .nav-pills .nav-link.active {
  background: var(--blue) !important;
  border-color: var(--blue);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 82, 224, .28);
}

.filter-count {
  font-size: .68rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 99px;
}

.nav-link.active .filter-count {
  background: rgba(255, 255, 255, .25);
  color: #fff;
}

.nav-link:not(.active) .filter-count {
  background: var(--pale);
  color: var(--muted);
}

/* ── SERVICE CARD ── */
.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 30, 100, .12);
  border-color: rgba(0, 82, 224, .18);
}

/* Color top strip */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Featured card */
.service-card.featured {
  background: linear-gradient(135deg, #0035b0 0%, #08004a 60%, #150038 100%);
  border-color: transparent;
  color: #fff;
}

.service-card.featured .card-icon {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.service-card.featured .card-category {
  color: rgba(255, 255, 255, .45);
}

.service-card.featured .card-name {
  color: #fff;
}

.service-card.featured .card-desc {
  color: rgba(255, 255, 255, .65);
}

.service-card.featured .card-tag {
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .8);
  border-color: transparent;
}

.service-card.featured .card-footer {
  border-color: rgba(255, 255, 255, .12);
}

.service-card.featured .card-price {
  color: #fff;
}

.service-card.featured .card-link {
  color: rgba(255, 255, 255, .9);
}

.service-card.featured::after {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

/* Popular badge */
.card-popular {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--amber), #f97316);
  color: #fff;
  box-shadow: 0 3px 10px rgba(245, 158, 11, .35);
  z-index: 1;
}

.card-trending {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 3px 10px rgba(0, 82, 224, .3);
  z-index: 1;
}

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform var(--t) var(--ease);
}

.service-card:hover .card-icon {
  transform: scale(1.08) rotate(-4deg);
}

.card-category {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.card-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.card-desc {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
}

/* Rating */
.card-stars i {
  font-size: .72rem;
  color: var(--amber);
}

.card-stars span {
  font-size: .72rem;
  color: var(--muted);
}

/* Tags */
.card-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
  background: var(--pale);
  color: var(--slate);
  border: 1px solid var(--border);
}

/* Footer */
.card-footer {
  border-top: 1px solid var(--border);
  padding-top: .85rem;
  margin-top: auto;
  background: transparent;
}

.card-price {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
}

.card-price small {
  font-family: var(--ff-body);
  font-size: .75rem;
  font-weight: 400;
  color: var(--muted);
}

.card-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--t);
}

.card-link:hover {
  gap: .55rem;
}

/* Featured mini items */
.feat-mini {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: .65rem .85rem;
}

.feat-mini-label {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .85);
}

.feat-mini-val {
  font-size: .7rem;
  color: rgba(255, 255, 255, .5);
  margin-top: 1px;
}

/* Stats bar */
.stats-bar {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 12px rgba(0, 82, 224, .05);
}

.stat-item {
  padding: 1.6rem 1.4rem;
}

.stat-val {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.stat-val .accent {
  color: var(--blue);
}

.stat-label {
  font-size: .82rem;
  color: var(--muted);
  margin-top: .3rem;
}

.stat-trend {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(0, 184, 122, .08);
  padding: 2px 8px;
  border-radius: 99px;
  margin-top: .5rem;
}

.stat-divider {
  width: 1px;
  background: var(--border);
  margin: 1rem 0;
}

/* Btn see all */
.btn-see-all {
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  background: transparent;
  border: 1.5px solid var(--blue);
  padding: .65rem 1.5rem;
  border-radius: 99px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all var(--t);
}

.btn-see-all:hover {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 82, 224, .28);
  transform: translateY(-1px);
}


/* ════════════════════════════════════
       SECTION 4 — HOW IT WORKS
    ════════════════════════════════════ */
.hiw-section {
  background: #fff;
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}

.hiw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 12% 30%, rgba(0, 82, 224, .04) 0%, transparent 65%),
    radial-gradient(ellipse 45% 30% at 88% 70%, rgba(107, 33, 232, .04) 0%, transparent 65%);
  pointer-events: none;
}

/* ── STEP ROW ── */
.step-row {
  position: relative;
}

/* Vertical spine */
.hiw-spine {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spine-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, var(--border) 10%, var(--border) 90%, transparent 100%);
  z-index: 0;
}

/* Step circle */
.step-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 800;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--muted);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px #fff, 0 0 0 7px var(--border);
  transition: all .4s var(--ease);
  flex-shrink: 0;
}

.step-circle.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 6px #fff, 0 0 0 8px rgba(0, 82, 224, .25);
}

.step-circle.done {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 0 0 6px #fff, 0 0 0 8px rgba(0, 184, 122, .2);
}

/* Connector */
.step-connector {
  flex: 1;
  width: 2px;
  background: var(--border);
  min-height: 28px;
  transition: background .4s;
}

.step-connector.done {
  background: var(--green);
}

.step-connector.active {
  background: linear-gradient(180deg, var(--green), var(--blue));
}

/* Step content */
.step-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
}

.step-title {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.step-desc {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.7;
}

.step-bullet {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  color: var(--slate);
}

.sb-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  flex-shrink: 0;
}

/* ── VISUAL CARDS ── */
.step-visual-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  box-shadow: 0 8px 36px rgba(0, 30, 100, .1);
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t);
}

.step-visual-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 30, 100, .14);
}

.step-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.vc-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .7rem;
}

.vc-title {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
}

.vc-sub {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .9rem;
}

.vc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
  color: var(--slate);
}

.vc-row:last-child {
  border-bottom: none;
}

.vc-row strong {
  color: var(--ink);
  font-weight: 700;
}

.vc-badge {
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}

.vc-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .7rem;
  margin-top: .4rem;
  border-top: 2px solid var(--border);
}

.vc-total-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
}

.vc-total-val {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
}

.vc-status {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: .9rem;
}

.vc-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* Checklist in visual card */
.vc-check {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  color: var(--slate);
  padding: 3px 0;
}

.vc-check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .6rem;
  flex-shrink: 0;
}

/* Notification items */
.vc-notif {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem .7rem;
  border-radius: 10px;
  background: var(--pale);
  border: 1px solid var(--border);
  margin-bottom: .55rem;
}

.vc-notif:last-child {
  margin-bottom: 0;
}

.vc-notif-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  flex-shrink: 0;
}

.vc-notif-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--ink);
}

.vc-notif-sub {
  font-size: .7rem;
  color: var(--muted);
}

/* Bottom CTA card */
.hiw-cta-card {
  background: linear-gradient(135deg, #0035b0 0%, #08004a 60%, #150038 100%);
  border-radius: var(--radius-xl);
  padding: 3rem 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 20, 80, .2);
}

.hiw-cta-card::before {
  content: '';
  position: absolute;
  top: -70px;
  right: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.hiw-cta-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(107, 33, 232, .18);
  pointer-events: none;
}

.hiw-cta-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  margin-bottom: .6rem;
}

.hiw-cta-title {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: .7rem;
}

.hiw-cta-desc {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
}

.hiw-cta-steps {
  display: flex;
  align-items: center;
  gap: .5rem 1.2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hiw-cta-step-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
}

.hiw-cta-step-item i {
  font-size: .72rem;
  color: var(--green);
}

.btn-cta-white {
  font-family: var(--ff-display);
  font-size: .9rem;
  font-weight: 700;
  background: #fff;
  color: var(--blue);
  border: none;
  border-radius: 99px;
  padding: .85rem 1.7rem;
  box-shadow: 0 4px 18px rgba(255, 255, 255, .2);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: all var(--t);
}

.btn-cta-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, .28);
  color: var(--blue-dark);
}

.btn-cta-ghost-white {
  font-family: var(--ff-body);
  font-size: .875rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 99px;
  padding: .82rem 1.5rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: all var(--t);
}

.btn-cta-ghost-white:hover {
  background: rgba(255, 255, 255, .18);
  border-color: rgba(255, 255, 255, .4);
  color: #fff;
}




/* ════════════════════════════════════
       SECTION 7 — TESTIMONIALS
    ════════════════════════════════════ */
.testimonials-section {
  padding: 100px 0 110px;
  background: #f8f9ff;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(0, 82, 224, .05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 90% 70%, rgba(107, 33, 232, .05) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Rating summary ── */
.rating-big {
  font-family: var(--ff-d);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.rating-stars i {
  font-size: 1.15rem;
  color: var(--amber);
}

.rating-label {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 500;
}

/* Avatar stack */
.av-stack {
  display: flex;
}

.av-item {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #f8f9ff;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
}

.av-item:first-child {
  margin-left: 0;
}

.av-more {
  background: var(--pale);
  color: var(--muted);
  font-size: .65rem;
  border: 2px solid #f8f9ff;
}

/* ── FEATURED testimonial ── */
.feat-testimonial {
  background: linear-gradient(135deg, #001ba0 0%, #08004e 50%, #180050 100%);
  border-radius: var(--r-xl);
  padding: 3rem 3.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 20, 100, .22);
}

.ft-orb-1 {
  position: absolute;
  top: -70px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.ft-orb-2 {
  position: absolute;
  bottom: -50px;
  left: 10%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(107, 33, 232, .18);
  pointer-events: none;
}

.ft-service-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .15);
  z-index: 1;
}

.ft-quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  color: rgba(255, 255, 255, .1);
  line-height: 1;
}

.ft-quote {
  font-family: var(--ff-d);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  letter-spacing: -.01em;
}

.ft-quote .soft {
  color: rgba(255, 255, 255, .55);
  font-style: italic;
}

.ft-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  border: 3px solid rgba(255, 255, 255, .2);
  flex-shrink: 0;
}

.ft-name {
  font-family: var(--ff-d);
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}

.ft-role {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

.ft-stars-row i {
  font-size: .85rem;
  color: var(--amber);
}

/* ── TESTIMONIAL CARD ── */
.marquee-track {
  position: relative;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
}

.marquee-row {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 4px;

  scrollbar-width: none;
  /* Firefox */
}

.marquee-row::-webkit-scrollbar {
  display: none;
  /* Chrome */
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;

  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: .2s;
}

.slider-btn:hover {
  background: #0052e0;
  color: #fff;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}

/* ── PLATFORM RATINGS ── */
.platform-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 82, 224, .05);
}

.pl-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .85rem 0;
}

.pl-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.pl-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  min-width: 72px;
}

.pl-rating {
  font-family: var(--ff-d);
  font-size: .9rem;
  font-weight: 800;
  color: var(--ink);
  min-width: 32px;
  text-align: right;
}

/* ── WRITE A REVIEW card ── */
.review-cta-card {
  background: linear-gradient(135deg, #001ba0 0%, #08004e 55%, #180050 100%);
  border-radius: var(--r-xl);
  padding: 1.9rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 20, 100, .2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.rcc-orb {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.rcc-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.rcc-title {
  font-family: var(--ff-d);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.rcc-desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
}

/* Star picker */
.star-picker {
  display: flex;
  gap: .4rem;
}

.sp-star {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, .2);
  cursor: pointer;
  transition: color var(--t), transform var(--t);
}

.sp-star.lit,
.sp-star:hover {
  color: var(--amber);
}

.sp-star:hover {
  transform: scale(1.18);
}

.btn-write-review {
  font-family: var(--ff-d);
  font-size: .88rem;
  font-weight: 700;
  background: #fff;
  color: var(--blue);
  border: none;
  border-radius: 99px;
  padding: .7rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  text-decoration: none;
  transition: all var(--t);
  box-shadow: 0 4px 14px rgba(255, 255, 255, .2);
}

.btn-write-review:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, .28);
  color: var(--blue-dark);
}


/* ════════════════════════════════════
       SECTION 8 — FAQ
    ════════════════════════════════════ */
.faq-section {
  padding: 60px 0 110px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 35% at 5% 20%, rgba(0, 82, 224, .04) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 95% 80%, rgba(107, 33, 232, .04) 0%, transparent 65%);
  pointer-events: none;
}

/* Category filter pills — Bootstrap nav-pills override */
.faq-filter .nav-pills .nav-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--pale);
  border: 1.5px solid var(--border);
  border-radius: 99px;
  padding: .5rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all var(--t);
}

.faq-filter .nav-pills .nav-link:hover {
  border-color: rgba(0, 82, 224, .25);
  color: var(--blue);
}

.faq-filter .nav-pills .nav-link.active {
  background: var(--blue) !important;
  border-color: var(--blue);
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 82, 224, .28);
}

/* Search box */
.faq-search {
  background: var(--pale);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  transition: border-color var(--t), box-shadow var(--t);
}

.faq-search:focus-within {
  border-color: rgba(0, 82, 224, .35);
  box-shadow: 0 0 0 3px rgba(0, 82, 224, .07);
}

.faq-search input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--ff-b);
  font-size: .9rem;
  color: var(--ink);
  width: 100%;
}

.faq-search input::placeholder {
  color: var(--muted);
}

/* Accordion overrides */
.faq-accordion .accordion-item {
  border: 1.5px solid var(--border) !important;
  border-radius: 14px !important;
  overflow: hidden;
  margin-bottom: .65rem;
  transition: border-color var(--t), box-shadow var(--t);
}

.faq-accordion .accordion-item:hover {
  border-color: rgba(0, 82, 224, .2) !important;
  box-shadow: 0 4px 18px rgba(0, 82, 224, .07);
}

.faq-accordion .accordion-item.active-item {
  border-color: rgba(0, 82, 224, .3) !important;
  box-shadow: 0 4px 22px rgba(0, 82, 224, .1);
}

.faq-accordion .accordion-button {
  font-family: var(--ff-d);
  font-size: .95rem;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  padding: 1.1rem 1.2rem;
  border-radius: 14px !important;
  box-shadow: none !important;
  /*gap: .85rem;*/
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--blue);
  background: var(--blue-pale);
  border-radius: 14px 14px 0 0 !important;
}

.faq-accordion .accordion-button .q-num {
  font-size: .7rem;
  font-weight: 800;
  color: var(--muted);
  min-width: 22px;
  transition: color var(--t);
}

.faq-accordion .accordion-button:not(.collapsed) .q-num {
  color: var(--blue);
}

.faq-accordion .accordion-button .q-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}

.faq-accordion .accordion-button::after {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background-color: var(--pale);
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237b8db0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); */
  background-size: .75rem;
  flex-shrink: 0;
  background-position: center;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-color: rgba(0, 82, 224, .12);
  /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230052e0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); */
}

.faq-accordion .accordion-body {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.78;
  padding: 1.4rem 2.1rem;
  background: #fff;
}

/* Answer tags */
.a-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 99px;
  background: var(--pale);
  color: var(--muted);
  border: 1px solid var(--border);
}

/* Helpful */
.helpful-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.2rem .85rem 4.3rem;
  border-top: 1px solid var(--border);
  background: #fff;
}

.helpful-label {
  font-size: .8rem;
  color: var(--muted);
}

.helpful-btn {
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all var(--t);
}

.helpful-btn:hover.yes {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0, 184, 122, .07);
}

.helpful-btn:hover.no {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(244, 63, 94, .07);
}

.helpful-btn.active.yes {
  border-color: var(--green);
  color: var(--green);
  background: rgba(0, 184, 122, .08);
}

.helpful-btn.active.no {
  border-color: var(--rose);
  color: var(--rose);
  background: rgba(244, 63, 94, .08);
}

/* No results */
.no-results {
  display: none;
}

.no-results.show {
  display: block;
}

/* FAQ sidebar cards */
.faq-sidebar-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 82, 224, .05);
}

.faq-sidebar-card .card-head {
  padding: 1rem 1.3rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--ff-d);
  font-size: .88rem;
  font-weight: 800;
  color: var(--ink);
}

.faq-topic-link {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1rem;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t), color var(--t);
}

.faq-topic-link:hover {
  background: var(--pale);
  color: var(--blue);
}

.faq-topic-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  flex-shrink: 0;
}

.faq-topic-count {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 99px;
  background: var(--pale);
  color: var(--muted);
  border: 1px solid var(--border);
}

/* Support card */
.support-card {
  background: linear-gradient(135deg, #001ba0 0%, #08004e 55%, #180050 100%);
  border-radius: var(--r-xl);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}

.support-card .s-orb {
  position: absolute;
  top: -45px;
  right: -35px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.support-card .s-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}

.support-card .s-title {
  font-family: var(--ff-d);
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.support-card .s-desc {
  font-size: .82rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.6;
}

.support-channel {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  text-decoration: none;
  transition: all var(--t);
  margin-bottom: .5rem;
}

.support-channel:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .25);
}

.support-channel:last-child {
  margin-bottom: 0;
}

.sc-icon {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  width: 16px;
  text-align: center;
}

.sc-label {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  flex: 1;
}

.sc-time {
  font-size: .72rem;
  color: rgba(255, 255, 255, .4);
}

.sc-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

/* Bottom CTA */
.faq-bottom-cta {
  background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
  border: 1.5px solid rgba(0, 82, 224, .1);
  border-radius: var(--r-xl);
  padding: 3rem 3.4rem;
  position: relative;
  overflow: hidden;
}

.faq-bottom-cta::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(0, 82, 224, .04);
  pointer-events: none;
}

.fbc-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}

.fbc-title {
  font-family: var(--ff-d);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.fbc-desc {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.65;
}

.btn-fbc-primary {
  font-family: var(--ff-d);
  font-size: .9rem;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: .82rem 1.8rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  box-shadow: 0 4px 18px rgba(0, 82, 224, .28);
  transition: all var(--t);
}

.btn-fbc-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn-fbc-outline {
  font-family: var(--ff-b);
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  background: transparent;
  border: 1.5px solid var(--blue);
  border-radius: 99px;
  padding: .8rem 1.6rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: all var(--t);
}

.btn-fbc-outline:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-1px);
}



/* ════════════════════════════════════
       SECTION 9 — CTA BANNER
    ════════════════════════════════════ */
.cta-section {
  padding: 90px 0 100px;
  background: #f8f9ff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 15% 50%, rgba(0, 82, 224, .05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 45% at 85% 50%, rgba(107, 33, 232, .04) 0%, transparent 65%);
  pointer-events: none;
}

.cta-card {
  background: linear-gradient(135deg, #001ba0 0%, #080050 48%, #180052 100%);
  border-radius: 28px;
  padding: 4.5rem 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 20, 100, .26), inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 82, 224, .22) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  animation: orbPulse 8s ease-in-out infinite;
}

.cta-orb-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(107, 33, 232, .18) 0%, transparent 70%);
  bottom: -70px;
  left: 5%;
  animation: orbPulse 10s ease-in-out infinite reverse;
}

.cta-orb-3 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 184, 122, .12) 0%, transparent 70%);
  top: 20%;
  left: 38%;
  animation: orbPulse 12s ease-in-out infinite;
}

@keyframes orbPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.07) translate(10px, -8px);
    opacity: .75
  }
}

.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .1) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 65% 75% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 65% 75% at 50% 50%, black 20%, transparent 80%);
  pointer-events: none;
}

.cta-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.cta-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 7px var(--green);
  animation: livePulse 2s ease infinite;
  display: inline-block;
  margin-right: .5rem;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.5)
  }
}

.cta-headline {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.cta-headline .shimmer {
  background: linear-gradient(90deg, #60a5fa, #a78bfa, #34d399, #60a5fa);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: 0% center
  }

  100% {
    background-position: 200% center
  }
}

.cta-sub {
  font-size: clamp(.95rem, 1.7vw, 1.1rem);
  color: rgba(255, 255, 255, .62);
  line-height: 1.7;
  max-width: 480px;
}

/* Email form */
.cta-input-group {
  max-width: 500px;
}

.cta-input {
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: 99px 0 0 99px;
  border-right: none;
  padding: .82rem 1.2rem .82rem 3rem;
  font-family: var(--ff-b);
  font-size: .9rem;
  color: #fff;
  outline: none;
  transition: border-color var(--t), background var(--t);
}

.cta-input::placeholder {
  color: rgba(255, 255, 255, .38);
}

.cta-input:focus {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .14);
}

.cta-icon-prefix {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .35);
  font-size: .85rem;
  z-index: 5;
}

.btn-cta-submit {
  font-family: var(--ff-d);
  font-size: .9rem;
  font-weight: 700;
  background: #fff;
  color: var(--blue);
  border: none;
  border-radius: 0 99px 99px 0;
  padding: .82rem 1.7rem;
  box-shadow: 0 4px 20px rgba(255, 255, 255, .2);
  transition: all var(--t);
  white-space: nowrap;
}

.btn-cta-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, .3);
  color: var(--blue-dark);
}

.cta-trust {
  display: flex;
  align-items: center;
  gap: .5rem 1.4rem;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .52);
  font-weight: 500;
}

.cta-trust-item i {
  font-size: .72rem;
  color: var(--green);
}

/* Mini stat cards inside CTA */
.cta-stat {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  backdrop-filter: blur(10px);
  transition: background var(--t), transform var(--t);
}

.cta-stat:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateX(-3px);
}

.cta-stat-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .5rem;
}

.cta-stat-val {
  font-family: var(--ff-d);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cta-stat-trend {
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 99px;
  margin-top: .5rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

/* Bottom mini features strip inside CTA card */
.cta-mini {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  padding: .85rem 1rem;
  transition: background var(--t), transform var(--t);
}

.cta-mini:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.cta-mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.cta-mini-val {
  font-family: var(--ff-d);
  font-size: .95rem;
  font-weight: 800;
  color: #fff;
}

.cta-mini-label {
  font-size: .72rem;
  color: rgba(255, 255, 255, .45);
}

/* Secondary action cards below main CTA */
.sec-action-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.sec-action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 30, 100, .1);
  border-color: rgba(0, 82, 224, .18);
}

.sac-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform var(--t);
}

.sec-action-card:hover .sac-icon {
  transform: scale(1.08) rotate(-5deg);
}

.sac-title {
  font-family: var(--ff-d);
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 3px;
}

.sac-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.5;
}

.sac-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: var(--muted);
  margin-left: auto;
  flex-shrink: 0;
  transition: all var(--t);
}

.sec-action-card:hover .sac-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateX(2px);
}


/* ════════════════════════════════════
       ABOUT US SECTION
    ════════════════════════════════════ */
.about-section {
  padding: 80px 0 50px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 40% at 90% 20%, rgba(0, 82, 224, .05) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 5% 80%, rgba(107, 33, 232, .04) 0%, transparent 65%);
  pointer-events: none;
}

/* Story card */
.story-card {
  background: linear-gradient(135deg, #001ba0 0%, #080050 55%, #180050 100%);
  border-radius: var(--r-xl);
  padding: 2.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 20, 100, .22);
}

.story-orb-1 {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.story-orb-2 {
  position: absolute;
  bottom: -50px;
  left: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(107, 33, 232, .18);
  pointer-events: none;
}

.story-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
}

.story-quote {
  font-family: var(--ff-d);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}

.story-quote .muted-text {
  color: rgba(255, 255, 255, .55);
  font-style: italic;
}

.story-founder-name {
  font-family: var(--ff-d);
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
}

.story-founder-role {
  font-size: .78rem;
  color: rgba(255, 255, 255, .5);
}

/* Value cards */
.value-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 30, 100, .1);
  border-color: rgba(0, 82, 224, .15);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.vc-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: transform var(--t);
}

.value-card:hover .vc-icon {
  transform: scale(1.08) rotate(-5deg);
}

.vc-title {
  font-family: var(--ff-d);
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.vc-desc {
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.65;
}

/* Team member */
.team-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem 1.3rem;
  text-align: center;
  height: 100%;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 30, 100, .1);
  border-color: rgba(0, 82, 224, .15);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-d);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
}

.team-name {
  font-family: var(--ff-d);
  font-size: .95rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .2rem;
}

.team-role {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: .8rem;
}

.team-langs {
  display: flex;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap;
}

.team-lang {
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 99px;
  background: var(--pale);
  color: var(--slate);
  border: 1px solid var(--border);
}

/* Why us list */
.why-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--slate);
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
}

.why-item:last-child {
  border-bottom: none;
}

.why-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ════════════════════════════════════
       BOOK APPOINTMENT SECTION
    ════════════════════════════════════ */
.book-section {
  padding: 100px 0 110px;
  background: #f8f9ff;
  position: relative;
  overflow: hidden;
}

.book-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 50% 0%, rgba(0, 82, 224, .05) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(107, 33, 232, .04) 0%, transparent 65%);
  pointer-events: none;
}

/* Step progress */
.booking-step-indicator {
  display: flex;
  align-items: center;
}

.bsi-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
}

.bsi-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  color: var(--muted);
  transition: all .3s;
}

.bsi-item.active .bsi-circle {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.bsi-item.active {
  color: var(--blue);
}

.bsi-item.done .bsi-circle {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.bsi-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 .5rem;
  min-width: 24px;
  transition: background .3s;
}

.bsi-line.done {
  background: var(--green);
}

/* Booking form card */
.booking-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0, 30, 100, .1);
}

.booking-card-head {
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--border);
  background: var(--pale);
}

.booking-card-body {
  padding: 1.8rem;
}

/* Service selector */
.service-option {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--t);
  margin-bottom: .6rem;
  background: #fff;
}

.service-option:last-child {
  margin-bottom: 0;
}

.service-option:hover {
  border-color: rgba(0, 82, 224, .25);
  background: var(--pale);
}

.service-option.selected {
  border-color: var(--blue);
  background: var(--blue-pale);
}

.so-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.so-name {
  font-size: .875rem;
  font-weight: 700;
  color: var(--ink);
}

.so-desc {
  font-size: .75rem;
  color: var(--muted);
}

.so-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin-left: auto;
  flex-shrink: 0;
  transition: all var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-option.selected .so-radio {
  border-color: var(--blue);
  background: var(--blue);
}

.service-option.selected .so-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* Form controls */
.book-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: .4rem;
  display: block;
}

.book-label .req {
  color: var(--rose);
}

.book-input {
  width: 100%;
  background: var(--pale);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-family: var(--ff-b);
  font-size: .9rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}

.book-input:focus {
  border-color: rgba(0, 82, 224, .35);
  box-shadow: 0 0 0 3px rgba(0, 82, 224, .07);
}

.book-input::placeholder {
  color: var(--muted);
}

/* Toggle pills */
.toggle-pills {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.tp-pill {
  font-size: .82rem;
  font-weight: 600;
  padding: .52rem 1.1rem;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--slate);
  cursor: pointer;
  transition: all var(--t);
  user-select: none;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.tp-pill:hover {
  border-color: rgba(0, 82, 224, .25);
  color: var(--blue);
  background: var(--pale);
}

.tp-pill.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 82, 224, .25);
}

.tp-pill.urgent-pill.active {
  background: var(--rose);
  border-color: var(--rose);
  box-shadow: 0 4px 12px rgba(244, 63, 94, .25);
}

/* Payment options */
.payment-option {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--t);
  margin-bottom: .5rem;
  background: #fff;
}

.payment-option.selected {
  border-color: var(--blue);
  background: var(--blue-pale);
}

.po-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  flex-shrink: 0;
}

.po-title {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
}

.po-desc {
  font-size: .72rem;
  color: var(--muted);
}

.po-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.payment-option.selected .po-radio {
  border-color: var(--blue);
  background: var(--blue);
}

.payment-option.selected .po-radio::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

/* Booking summary card */
.booking-summary {
  background: linear-gradient(135deg, #001ba0 0%, #080050 55%, #180050 100%);
  border-radius: var(--r-xl);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 20, 100, .2);
}

.bs-orb {
  position: absolute;
  top: -50px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.bs-head {
  font-family: var(--ff-d);
  font-size: .88rem;
  font-weight: 800;
  color: #fff;
}

.bs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: .82rem;
}

.bs-row:last-of-type {
  border-bottom: none;
}

.bs-row .bs-key {
  color: rgba(255, 255, 255, .5);
}

.bs-row .bs-val {
  color: #fff;
  font-weight: 600;
}

.bs-total {
  border-top: 2px solid rgba(255, 255, 255, .15);
  padding-top: .8rem;
}

.bs-total-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .4);
}

.bs-total-val {
  font-family: var(--ff-d);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.btn-book-now {
  font-family: var(--ff-d);
  font-size: .95rem;
  font-weight: 700;
  background: #fff;
  color: var(--blue);
  border: none;
  border-radius: 99px;
  padding: .88rem 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  box-shadow: 0 4px 18px rgba(255, 255, 255, .22);
  transition: all var(--t);
  cursor: pointer;
}

.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 255, 255, .32);
  color: var(--blue-dark);
}

.btn-book-outline {
  font-family: var(--ff-b);
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .25);
  background: transparent;
  border-radius: 99px;
  padding: .75rem 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-decoration: none;
  transition: all var(--t);
}

.btn-book-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

/* Features below form */
.booking-feature {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  color: var(--slate);
  padding: .5rem 0;
}

.bf-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}


/* ════════════════════════════════════
       CONTACT SECTION
    ════════════════════════════════════ */
.contact-section {
  padding: 100px 0 110px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 40% at 90% 15%, rgba(0, 82, 224, .05) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 5% 85%, rgba(107, 33, 232, .04) 0%, transparent 65%);
  pointer-events: none;
}

/* Contact info card (dark) */
.contact-info-card {
  background: linear-gradient(135deg, #001ba0 0%, #080050 55%, #180050 100%);
  border-radius: var(--r-xl);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 24px 60px rgba(0, 20, 100, .22);
}

.ci-orb-1 {
  position: absolute;
  top: -60px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  pointer-events: none;
}

.ci-orb-2 {
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(107, 33, 232, .18);
  pointer-events: none;
}

.ci-head {
  font-family: var(--ff-d);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.ci-sub {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ci-item:last-of-type {
  border-bottom: none;
}

.ci-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: #fff;
  flex-shrink: 0;
}

.ci-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: .2rem;
}

.ci-value {
  font-size: .875rem;
  font-weight: 600;
  color: #fff;
}

.ci-value a {
  color: #fff;
  text-decoration: none;
}

.ci-value a:hover {
  text-decoration: underline;
}

/* Hours badge */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(0, 184, 122, .15);
  color: #00e5a0;
  border: 1px solid rgba(0, 184, 122, .25);
}

.hb-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: livePulse 2s ease infinite;
}

/* Social links */
.contact-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: all var(--t);
}

.contact-social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Contact form card */
.contact-form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 36px rgba(0, 30, 100, .08);
}

.form-card-head {
  padding: 1.3rem 1.8rem;
  border-bottom: 1px solid var(--border);
  background: var(--pale);
}

.form-card-head-title {
  font-family: var(--ff-d);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}

.form-card-body {
  padding: 1.8rem;
}

.cf-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: .4rem;
  display: block;
}

.cf-input {
  width: 100%;
  background: var(--pale);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  font-family: var(--ff-b);
  font-size: .9rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
}

.cf-input:focus {
  border-color: rgba(0, 82, 224, .35);
  box-shadow: 0 0 0 3px rgba(0, 82, 224, .07);
}

.cf-input::placeholder {
  color: var(--muted);
}

textarea.cf-input {
  resize: vertical;
  min-height: 110px;
}

/* Service chips */
.cf-service-chip {
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem .95rem;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--slate);
  cursor: pointer;
  transition: all var(--t);
  user-select: none;
}

.cf-service-chip:hover {
  border-color: rgba(0, 82, 224, .25);
  color: var(--blue);
  background: var(--pale);
}

.cf-service-chip.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn-send-msg {
  font-family: var(--ff-d);
  font-size: .95rem;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: .88rem 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 4px 18px rgba(0, 82, 224, .28);
  transition: all var(--t);
  cursor: pointer;
}

.btn-send-msg:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 82, 224, .38);
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.show {
  display: block;
}

.fs-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 184, 122, .1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
}


/* ════════════════════════════════════
       SECTION 10 — FOOTER
    ════════════════════════════════════ */
.site-footer {
  background: #080e1c;
  color: rgba(255, 255, 255, .55);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(0, 82, 224, .08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 90% 70%, rgba(107, 33, 232, .07) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 75% 55% at 50% 20%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 20%, black 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

/* Newsletter band */
.footer-nl-band {
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 3rem 0;
}

.nl-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
}

.nl-title {
  font-family: var(--ff-d);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.nl-desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .5);
}

.nl-input {
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: 10px 0 0 10px;
  border-right: none;
  padding: .8rem 1.1rem;
  font-family: var(--ff-b);
  font-size: .9rem;
  color: #fff;
  outline: none;
  transition: border-color var(--t), background var(--t);
}

.nl-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.nl-input:focus {
  border-color: rgba(0, 82, 224, .5);
  background: rgba(255, 255, 255, .12);
}

.nl-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 0 10px 10px 0;
  padding: .8rem 1.3rem;
  font-family: var(--ff-d);
  font-size: .875rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 82, 224, .3);
  transition: all var(--t);
  white-space: nowrap;
}

.nl-btn:hover {
  background: var(--blue-dark);
}

/* Footer main grid */
.footer-main {
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

/* Brand */
.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(0, 82, 224, .35);
  transition: transform var(--t);
}

.footer-logo:hover .footer-logo-icon {
  transform: rotate(-6deg) scale(1.06);
}

.footer-logo-text {
  font-family: var(--ff-d);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.footer-logo-text span {
  color: var(--blue);
}

.footer-tagline-en {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
}

.footer-tagline-bn {
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.footer-soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: all var(--t);
}

.footer-soc-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  transition: color var(--t);
}

.footer-contact-item a:hover {
  color: #fff;
}

.fci-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--blue);
  flex-shrink: 0;
}

/* Link columns */
.footer-col-head {
  font-family: var(--ff-d);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-link a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .855rem;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  padding: .3rem 0;
  transition: color var(--t), gap var(--t);
}

.footer-link a:hover {
  color: #fff;
  gap: .65rem;
}

.footer-link .fl-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  flex-shrink: 0;
  transition: background var(--t);
}

.footer-link li:hover::marker {
  color: var(--blue);
}

.fl-badge {
  font-size: .62rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 99px;
  margin-left: auto;
}

.fl-new {
  background: rgba(0, 184, 122, .15);
  color: #00e5a0;
}

.fl-hot {
  background: rgba(244, 63, 94, .15);
  color: #ff6b6b;
}

/* Trust band */
.footer-trust-band {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem 1rem;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
}

.tbi-icon {
  font-size: .95rem;
}

.tbi-val {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
}

.tbi-sub {
  font-size: .68rem;
  color: rgba(255, 255, 255, .35);
}

/* App badges */
.app-badge {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: .65rem 1rem;
  text-decoration: none;
  transition: all var(--t);
}

.app-badge:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .22);
}

.app-badge i {
  font-size: 1.25rem;
  color: #fff;
}

.ab-sub {
  font-size: .62rem;
  color: rgba(255, 255, 255, .4);
}

.ab-name {
  font-family: var(--ff-d);
  font-size: .82rem;
  font-weight: 800;
  color: #fff;
}

/* Bottom bar */
.footer-bottom {
  padding: 1.3rem 0;
}

.footer-copyright {
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
}

.footer-copyright .heart {
  color: var(--rose);
  animation: heartBeat 1.6s ease infinite;
}

@keyframes heartBeat {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.25)
  }
}

.footer-legal-link {
  font-size: .82rem;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  transition: color var(--t);
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, .65);
}

.footer-lang {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  padding: .4rem .9rem;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  cursor: default;
}

.back-top {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: all var(--t);
}

.back-top:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

/* Wordmark */
.footer-wordmark {
  border-top: 1px solid rgba(255, 255, 255, .05);
  text-align: center;
  overflow: hidden;
}

.wm-text {
  font-family: var(--ff-d);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 800;
  color: rgba(255, 255, 255, .025);
  letter-spacing: -3px;
  line-height: 1;
  user-select: none;
  transition: color var(--t);
}

.footer-wordmark:hover .wm-text {
  color: rgba(255, 255, 255, .05);
}






/* ================================
   HELPER → BOOTSTRAP BRIDGE
================================ */

/* li = nav-item */
.navbar-nav>.menu-item {
  position: relative;
}

/* a = nav-link */
.navbar-nav>.menu-item>a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--slate) !important;
  padding: .45rem .95rem;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  text-decoration: none;
  transition: background var(--t), color var(--t);
}

/* hover + active */
.navbar-nav>.menu-item>a:hover {
  background: var(--pale);
  color: var(--ink) !important;
}

.navbar-nav>.menu-item.current>a {
  color: var(--blue) !important;
  font-weight: 600;
}

/* dropdown parent */
.menu-item-has-children>a {
  cursor: pointer;
}

/* dropdown arrow */
.menu-item-has-children>a::after {
  /* content: "\f107"; */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 6px;
  font-size: .7rem;
}

/* sub-menu = dropdown-menu */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: .5rem;
  box-shadow: 0 12px 40px rgba(0, 30, 100, .12);
  display: none;
  z-index: 1000;
  animation: ddFadeIn .18s var(--ease);
}

/* show dropdown */
.menu-item-has-children:hover>.sub-menu {
  display: block;
}

/* dropdown item */
.sub-menu li a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem .85rem;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: background var(--t), color var(--t);
}

.sub-menu li a:hover {
  background: var(--pale);
  color: var(--blue);
}

/* icon */
.sub-menu li a i {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
  transition: background var(--t), color var(--t);
}

.sub-menu li a:hover i {
  background: var(--blue);
  color: #fff;
}

.sub-menu li {
  list-style: none;
}

/* ===============================
   MOBILE MENU SYSTEM
================================ */

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* item spacing */
.mobile-nav .menu-item {
  margin-bottom: 4px;
}

/* link */
.mobile-nav .menu-item>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: .75rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  font-size: .925rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  transition: all .25s ease;
}

.mobile-nav .menu-item>a i.has-child-icon {
  margin-left: auto;
  font-size: .8rem;
  transition: transform .3s ease;
}

/* rotate when open */
.mobile-nav .menu-item-has-children.active>a i {
  transform: rotate(180deg);
}

/* hover + active */
.mobile-nav .menu-item>a:hover,
.mobile-nav .menu-item.current>a {
  background: var(--pale);
  color: var(--blue);
}

/* icon */
.mobile-nav .menu-item>a i {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: all .25s ease;
}

.mobile-nav .menu-item>a:hover i,
.mobile-nav .menu-item.current>a i {
  background: var(--blue);
  color: #fff;
}

/* text */
.mobile-nav .menu-text {
  flex-grow: 1;
}

/* badge */
.mobile-nav .nav-badge {
  font-size: .65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 99px;
  background: rgba(0, 82, 224, .1);
  color: var(--blue);
}

/* dropdown arrow */
.mobile-nav .menu-item-has-children>a::after {
  /* content: "\f107"; */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: auto;
  transition: transform .3s ease;
}

/* rotate arrow when open */
.mobile-nav .menu-item-has-children.active>a::after {
  transform: rotate(180deg);
}

/* ===============================
   ACCORDION (SMOOTH)
================================ */

.mobile-nav .sub-menu {
  list-style: none;
  padding-left: 15px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding-left: 12px;
}

.mobile-nav .sub-menu li a {
  padding: .55rem 1.5rem;
  font-size: .82rem;
  display: block;
}

/* open */
.mobile-nav .menu-item-has-children.active>.sub-menu {
  max-height: 500px;
}

/* child items */
.mobile-nav .sub-menu a {
  font-size: .88rem;
  padding: .6rem .85rem;
}

/* ===============================
   DIVIDER
================================ */

.mobile-divider {
  height: 1px;
  background: var(--border);
  margin: .65rem 0;
}

.mobile-divider>a {
  display: none;
}

/* ===============================
   FIX MOBILE DROPDOWN
================================ */

@media (max-width: 665px) {

    .mobile-nav .sub-menu {
    position: static !important;
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 !important;
    border: none;
    box-shadow: none;
    transition: max-height 0.3s ease;
  }

  /* 🔥 THIS IS THE MISSING PART */
  .mobile-nav .menu-item-has-children.active > .sub-menu {
    max-height: 500px; /* fallback if JS fails */
  }

  .menu-item-has-children:hover > .sub-menu {
    display: block !important;
  }

}


/* service details */

    /* ── HERO BANNER ── */
    .service-hero {
      background: linear-gradient(135deg, #001ba0 0%, #08004e 55%, #180050 100%);
      padding: 64px 0 56px;
      position: relative;
      overflow: hidden;
    }
    .service-hero::before { content:''; position:absolute; top:-80px; right:-60px; width:280px; height:280px; border-radius:50%; background:rgba(255,255,255,.05); pointer-events:none; }
    .service-hero::after  { content:''; position:absolute; bottom:-60px; left:8%;  width:200px; height:200px; border-radius:50%; background:rgba(61,217,181,.12); pointer-events:none; }
    .sh-eyebrow { font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); }
    .sh-title { font-family:var(--ff-d); font-size:clamp(1.5rem,3.5vw,2.4rem); font-weight:700; color:#07101f; line-height:1.05; letter-spacing:-.035em; }
    .sh-desc  { font-size:clamp(.95rem,1.7vw,1.1rem); color:#07101f; line-height:1.7; max-width:540px; }
    .sh-badge {
      display:inline-flex; align-items:center; gap:.45rem;
      font-size:.78rem; font-weight:700; padding:.4rem 1rem;
      border-radius:99px;
    }

    /* ── STICKY BOOKING CARD ── */
    .related-services{
      box-shadow:0 12px 40px rgba(10, 10, 232, 0.12);
      border-radius:var(--r-xl);
    }
    .book-card {
      background:#fff; border:1.5px solid var(--border);
      border-radius:var(--r-xl); overflow:hidden;
      box-shadow:0 12px 40px rgba(10, 10, 232, 0.12);
      position:sticky; top:90px;
    }
    .book-card-head { background:linear-gradient(135deg,var(--blue),var(--purple)); padding:1.4rem 1.6rem; }
    .book-card-head-title { font-family:var(--ff-d); font-size:1.05rem; font-weight:800; color:#fff; }
    .book-card-head-price { font-family:var(--ff-d); font-size:2rem; font-weight:800; color:#fff; line-height:1; }
    .book-card-head-price small { font-family:var(--ff-b); font-size:.85rem; font-weight:500; color:rgba(255,255,255,.65); }
    .book-card-body { padding:1.5rem; }


    .btn-book {
      font-family:var(--ff-d); font-size:.95rem; font-weight:700;
      background:linear-gradient(135deg,var(--blue),var(--purple));
      color:#fff; border:none; border-radius:99px;
      padding:.88rem; width:100%;
      display:flex; align-items:center; justify-content:center; gap:.5rem;
      box-shadow:0 4px 18px rgba(232,71,10,.3); transition:all var(--t); cursor:pointer;
    }
    .btn-book:hover { opacity:.9; transform:translateY(-2px); box-shadow:0 8px 28px rgba(232,71,10,.4); }
    .btn-consult {
      font-family:var(--ff-b); font-size:.88rem; font-weight:600;
      color:var(--blue); background:transparent;
      border:1.5px solid var(--blue); border-radius:99px;
      padding:.78rem; width:100%;
      display:flex; align-items:center; justify-content:center; gap:.45rem;
      transition:all var(--t); text-decoration:none; cursor:pointer;
    }
    .btn-consult:hover { background:var(--blue-pale); }

    .trust-row-mini { display:flex; align-items:center; gap:.4rem; font-size:.75rem; color:var(--muted); }
    .trust-row-mini i { font-size:.68rem; color:var(--teal); }

    .include-item { display:flex; align-items:center; gap:.65rem; font-size:.855rem; color:var(--slate); padding:.42rem 0; }
    .include-icon { width:20px; height:20px; border-radius:6px; display:flex; align-items:center; justify-content:center; font-size:.6rem; flex-shrink:0; }


    /* ── OVERVIEW TAB ── */
    .overview-lead { font-size:1.05rem; color:var(--slate); line-height:1.75; }
    .section-sub-title { font-family:var(--ff-d); font-size:1.25rem; font-weight:700; color:var(--ink); }

    
    /* ── RELATED SERVICES ── */
    .related-card {
      background:#fff; border:1.5px solid var(--border);
      border-radius:var(--r-xl); padding: .8rem;
      display:flex; align-items:center; gap:1rem;
      text-decoration:none;
      transition:transform var(--t),box-shadow var(--t),border-color var(--t);
    }
    .related-card:hover { transform:translateY(-3px); box-shadow:0 10px 32px rgba(232,71,10,.1); border-color:rgba(232,71,10,.18); }
    .rc-s-icon { width:46px; height:46px; border-radius:13px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; transition:transform var(--t); }
    .related-card:hover .rc-s-icon { transform:scale(1.08) rotate(-5deg); }
    .rc-s-name  { font-family:var(--ff-d); font-size:.92rem; font-weight:700; color:var(--ink); margin-bottom:2px; }
    .rc-s-price { font-size:.90rem; color:var(--muted); }
    .rc-s-arrow { width:28px; height:28px; border-radius:50%; border:1.5px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:.7rem; color:var(--muted); margin-left:auto; flex-shrink:0; transition:all var(--t); }
    .related-card:hover .rc-s-arrow { background:var(--blue); border-color:var(--blue); color:#fff; }
    
    
    
    /* ── BLOG CARD ── */
    .blog-card {
      background:#fff; border:1.5px solid var(--border); border-radius:var(--r-xl);
      overflow:hidden; height:100%;
      transition:transform var(--t),box-shadow var(--t),border-color var(--t);
      cursor:pointer;
    }
    .blog-card:hover { transform:translateY(-5px); box-shadow:0 18px 50px rgba(0,82,224,.11); border-color:rgba(0,82,224,.18); }
    .blog-card-img {
      width:100%; height:200px; object-fit:cover; display:flex; align-items:center; justify-content:center;
      font-size:2.5rem; color:#fff; position:relative; overflow:hidden;
    }
    .blog-card-img::after { content:''; position:absolute; inset:0; background:rgba(0,0,0,.15); }
    .bc-cat {
      position:absolute; top:14px; left:14px; z-index:2;
      font-size:.68rem; font-weight:800; padding:3px 10px; border-radius:99px;
      background:rgba(255,255,255,.18); color:#fff; border:1px solid rgba(255,255,255,.25);
      backdrop-filter:blur(4px);
    }
    .bc-body { padding:1.4rem; display:flex; flex-direction:column; flex:1; }
    .bc-meta { display:flex; align-items:center; gap:.5rem; font-size:.75rem; color:var(--muted); margin-bottom:.75rem; flex-wrap:wrap; }
    .bc-meta .bc-dot { width:3px; height:3px; border-radius:50%; background:var(--muted); }
    .bc-title a{
      text-decoration: none; font-family:var(--ff-d); font-size:1.05rem; font-weight:800; color:var(--ink); line-height:1.3; margin-bottom:.65rem; transition:color var(--t); }
    /* .bc-title a{ 
      color: inherit;
    } */
    .blog-card:hover .bc-title a{ color:var(--primary); }
    .bc-excerpt { font-size:.855rem; color:var(--slate); line-height:1.65; flex:1; margin-bottom:1rem; }
    .bc-footer { display:flex; align-items:center; justify-content:space-between; padding-top:.85rem; border-top:1px solid var(--border); }
    .bc-author { display:flex; align-items:center; gap:.5rem; }
    .bc-av { width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--ff-d); font-size:.68rem; font-weight:800; color:#fff; flex-shrink:0; }
    .bc-author-name { font-size:.88rem; font-weight:600; color:var(--slate); }
    .bc-read-link { font-size:.88rem; font-weight:700; color:var(--blue-dark); display:flex; align-items:center; gap:.3rem; transition:gap var(--t); }
    .bc-read-link:hover { gap:.5rem; }

    /* ── PAGINATION ── */
    .blog-pagination .page-link { font-family:var(--ff-d); font-size:.875rem; font-weight:700; color:var(--slate); border:1.5px solid var(--border); border-radius:10px!important; margin:0 3px; padding:.5rem .9rem; transition:all var(--t); }
    .blog-pagination .page-link:hover { background:var(--primary-lt); color:var(--primary); border-color:rgba(0,82,224,.28); }
    .blog-pagination .page-item.active .page-link { background:var(--primary); border-color:var(--primary); color:#fff; box-shadow:0 4px 14px rgba(0,82,224,.28); }

    /* ════════════════════════════
       BLOG DETAIL PAGE
    ════════════════════════════ */
    .detail-hero { background:linear-gradient(135deg,#001ba0 0%,#08004e 55%,#180050 100%); padding:56px 0 48px; position:relative; overflow:hidden; }
    .detail-hero::before { content:''; position:absolute; top:-70px; right:-60px; width:240px; height:240px; border-radius:50%; background:rgba(255,255,255,.05); pointer-events:none; }
    .detail-hero::after  { content:''; position:absolute; bottom:-50px; left:8%; width:180px; height:180px; border-radius:50%; background:rgba(107,33,232,.15); pointer-events:none; }
    .dh-cat  { font-size:.72rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.5); }
    .dh-title { font-family:var(--ff-d); font-size:clamp(1.8rem,4vw,3.2rem); font-weight:800; color:#fff; line-height:1.1; letter-spacing:-.035em; }
    .dh-excerpt { font-size:clamp(.9rem,1.6vw,1.1rem); color:rgba(255,255,255,.65); line-height:1.7; }
    .dh-meta  { font-size:.82rem; color:rgba(255,255,255,.5); display:flex; align-items:center; gap:.65rem; flex-wrap:wrap; }
    .dh-meta .dh-dot { width:3px; height:3px; border-radius:50%; background:rgba(255,255,255,.3); }
    .dh-av    { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--ff-d); font-size:.8rem; font-weight:800; color:#fff; border:2px solid rgba(255,255,255,.2); flex-shrink:0; }
    .dh-author-name { font-size:.88rem; font-weight:700; color:#fff; }
    .dh-author-role  { font-size:.75rem; color:rgba(255,255,255,.5); }

    /* Progress bar */
    .read-progress { position:fixed; top:var(--nav-h); left:0; width:0%; height:3px; background:linear-gradient(90deg,var(--primary),var(--purple)); z-index:999; transition:width .1s linear; }

    /* Table of contents */
    .toc-card { background:#fff; border:1.5px solid var(--border); border-radius:var(--r-xl); padding:1.4rem; position:sticky; top:90px; }
    .toc-title { font-family:var(--ff-d); font-size:.85rem; font-weight:800; color:var(--ink); margin-bottom:.9rem; display:flex; align-items:center; gap:.45rem; }
    .toc-link { display:flex; align-items:center; gap:.55rem; font-size:.82rem; color:var(--muted); padding:.38rem .6rem; border-radius:8px; text-decoration:none; transition:all var(--t); font-weight:500; }
    .toc-link:hover,.toc-link.active { background:var(--primary-lt); color:var(--primary); }
    .toc-link .toc-dot { width:6px; height:6px; border-radius:50%; background:var(--border); flex-shrink:0; transition:background var(--t); }
    .toc-link.active .toc-dot,.toc-link:hover .toc-dot { background:var(--primary); }

    /* Author card */
    .author-card { background:var(--pale); border:1.5px solid var(--border); border-radius:var(--r-xl); padding:1.4rem; }
    .author-av-lg { width:60px; height:60px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--ff-d); font-size:1.4rem; font-weight:800; color:#fff; flex-shrink:0; box-shadow:0 6px 20px rgba(0,0,0,.15); }
    .author-name { font-family:var(--ff-d); font-size:.95rem; font-weight:800; color:var(--ink); }
    .author-role { font-size:.78rem; color:var(--muted); }
    .author-bio  { font-size:.855rem; color:var(--slate); line-height:1.65; }

    /* Related posts */
    .related-post-card { background:#fff; border:1.5px solid var(--border); border-radius:var(--r-xl); overflow:hidden; cursor:pointer; transition:transform var(--t),box-shadow var(--t),border-color var(--t); }
    .related-post-card:hover { transform:translateY(-4px); box-shadow:0 14px 40px rgba(0,82,224,.1); border-color:rgba(0,82,224,.18); }
    .rpc-img { width:100%; height:140px; display:flex; align-items:center; justify-content:center; font-size:1.8rem; color:#fff; position:relative; }
    .rpc-img::after { content:''; position:absolute; inset:0; background:rgba(0,0,0,.12); }
    .rpc-body { padding:1.1rem; }
    .rpc-cat  { font-size:.68rem; font-weight:800; text-transform:uppercase; letter-spacing:.08em; color:var(--primary); margin-bottom:.4rem; }
    .rpc-title { font-family:var(--ff-d); font-size:.9rem; font-weight:800; color:var(--ink); line-height:1.3; margin-bottom:.4rem; transition:color var(--t); }
    .related-post-card:hover .rpc-title { color:var(--primary); }
    .rpc-meta  { font-size:.72rem; color:var(--muted); }

    /* CTA card inline */
    .inline-cta { background:linear-gradient(135deg,#001ba0 0%,#08004e 55%,#180050 100%); border-radius:var(--r-xl); padding:2rem; position:relative; overflow:hidden; }
    .inline-cta::before { content:''; position:absolute; top:-50px; right:-40px; width:160px; height:160px; border-radius:50%; background:rgba(255,255,255,.06); pointer-events:none; }
    .ic-title { font-family:var(--ff-d); font-size:1.1rem; font-weight:800; color:#fff; }
    .ic-desc  { font-size:.855rem; color:rgba(255,255,255,.6); line-height:1.6; }
    .btn-ic   { font-family:var(--ff-d); font-size:.875rem; font-weight:700; background:#fff; color:var(--primary); border:none; border-radius:99px; padding:.72rem 1.4rem; display:inline-flex; align-items:center; gap:.45rem; transition:all var(--t); cursor:pointer; text-decoration:none; }
    .btn-ic:hover { transform:translateY(-2px); box-shadow:0 6px 20px rgba(255,255,255,.22); color:var(--primary-dk); }
