*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

/* CRITICAL — prevents mobile overflow white space */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  max-width: 100%;
}
body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Dot grid texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none; z-index: 0;
}

img { max-width: 100%; display: block; height: auto; }

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative; /* keeps children above blobs */
  z-index: 2;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 2px;
}

/* Selection */
::selection {
  background: var(--teal);
  color: #000;
}

/* Swiper overrides */
.swiper-pagination-bullet {
  background: rgba(255,255,255,0.3) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--teal) !important;
}
.swiper-button-next,
.swiper-button-prev { color: var(--teal) !important; }

:root {
  /* Colors */
  --bg:           #060D1A;   /* very dark blue-black */
  --bg-2:         #0A1628;   /* slightly lighter surface */
  --bg-3:         #0F1F3D;   /* card/panel layer */
  --teal:         #00C9D4;
  --teal-2:       #4DD9E3;
  --teal-glow:    rgba(0, 201, 212, 0.18);
  --violet:       rgba(124, 58, 237, 0.12);
  --gold:         #F4B942;
  --white:        #FFFFFF;
  --text-primary: rgba(255, 255, 255, 0.95);
  --text-muted:   rgba(255, 255, 255, 0.45);
  --text-dim:     rgba(255, 255, 255, 0.25);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-teal:  rgba(0, 201, 212, 0.2);

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

  /* Fluid type scale */
  --t-xs:    clamp(0.7rem,  1.5vw, 0.8rem);
  --t-sm:    clamp(0.85rem, 2vw,   0.95rem);
  --t-base:  clamp(0.95rem, 2vw,   1.05rem);
  --t-lg:    clamp(1.1rem,  2.5vw, 1.3rem);
  --t-xl:    clamp(1.3rem,  3vw,   1.6rem);
  --t-2xl:   clamp(1.7rem,  4vw,   2.4rem);
  --t-3xl:   clamp(2.2rem,  5vw,   3.2rem);
  --t-hero:  clamp(2.8rem,  7vw,   5.5rem);

  /* Radius */
  --r-sm:    10px;
  --r-md:    18px;
  --r-lg:    26px;
  --r-xl:    36px;
  --r-pill:  9999px;

  /* Glassmorphism recipe */
  --glass-bg:      rgba(255, 255, 255, 0.04);
  --glass-bg-2:    rgba(255, 255, 255, 0.07);
  --glass-blur:    blur(18px);
  --glass-border:  1px solid rgba(255, 255, 255, 0.09);
  --glass-shadow:  0 8px 32px rgba(0, 0, 0, 0.4),
                   inset 0 1px 0 rgba(255,255,255,0.06);

  /* Shadows */
  --shadow-teal:   0 0 40px rgba(0,201,212,0.2);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.35);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.5);

  /* Spacing */
  --section-py:    clamp(80px, 10vw, 130px);
  --container:     min(1200px, 92vw);
  --gap:           clamp(20px, 3vw, 32px);

  /* Transitions */
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --tr:            0.35s var(--ease);
  --tr-slow:       0.7s var(--ease);
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-2 {
  background: var(--glass-bg-2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3),
              inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Fallback if backdrop-filter not supported */
@supports not (backdrop-filter: blur(1px)) {
  .glass  { background: rgba(15, 31, 61, 0.92); }
  .glass-2 { background: rgba(20, 40, 75, 0.95); }
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.blob-teal {
  background: radial-gradient(circle,
    rgba(0,201,212,0.18) 0%, transparent 70%);
}
.blob-violet {
  background: radial-gradient(circle,
    rgba(124,58,237,0.13) 0%, transparent 70%);
}
.blob-gold {
  background: radial-gradient(circle,
    rgba(244,185,66,0.08) 0%, transparent 70%);
}

/* Only activate animations after JS loads */
html.js-ready .animate {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease),
              transform 0.75s var(--ease);
}
html.js-ready .animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* From left */
html.js-ready .animate-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.js-ready .animate-left.in-view {
  opacity: 1; transform: translateX(0);
}

/* From right */
html.js-ready .animate-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.js-ready .animate-right.in-view {
  opacity: 1; transform: translateX(0);
}

/* Scale in */
html.js-ready .animate-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.js-ready .animate-scale.in-view {
  opacity: 1; transform: scale(1);
}

/* Stagger delays — add data-delay="1" through data-delay="6" */
html.js-ready .animate[data-delay="1"] { transition-delay: 0.1s; }
html.js-ready .animate[data-delay="2"] { transition-delay: 0.2s; }
html.js-ready .animate[data-delay="3"] { transition-delay: 0.3s; }
html.js-ready .animate[data-delay="4"] { transition-delay: 0.4s; }
html.js-ready .animate[data-delay="5"] { transition-delay: 0.5s; }
html.js-ready .animate[data-delay="6"] { transition-delay: 0.6s; }
/* Also apply data-delay on animate-left and animate-right */
html.js-ready .animate-left[data-delay="1"]  { transition-delay: 0.1s; }
html.js-ready .animate-left[data-delay="2"]  { transition-delay: 0.2s; }
html.js-ready .animate-right[data-delay="1"] { transition-delay: 0.1s; }
html.js-ready .animate-right[data-delay="2"] { transition-delay: 0.2s; }
html.js-ready .animate-right[data-delay="3"] { transition-delay: 0.3s; }

#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }

.pre-logo {
  display: flex; gap: 6px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600; color: var(--white);
  letter-spacing: 12px;
}
.pre-logo span {
  opacity: 0;
  animation: letterIn 0.5s var(--ease) forwards;
}
.pre-logo span:nth-child(1) { animation-delay: 0.1s; }
.pre-logo span:nth-child(2) { animation-delay: 0.2s; }
.pre-logo span:nth-child(3) { animation-delay: 0.3s; }
.pre-logo span:nth-child(4) { animation-delay: 0.4s; }
.pre-logo span:nth-child(5) { animation-delay: 0.5s; }
.pre-logo span:nth-child(6) { animation-delay: 0.6s; }

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

.pre-line {
  width: 0; height: 1px;
  background: var(--teal);
  animation: lineGrow 0.8s var(--ease) 0.7s forwards;
}
@keyframes lineGrow {
  to { width: 80px; }
}

/* ── NAVBAR BASE ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: background 0.4s ease,
              backdrop-filter 0.4s ease,
              border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(6, 13, 26, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: rgba(255,255,255,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

/* ── LOGO ── */
.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}
.logo-tag {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  letter-spacing: 5px;
  color: var(--teal);
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── DESKTOP NAV LINKS ── */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.25s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--teal); }

/* ── DESKTOP CTA ── */
.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--bg);
  background: var(--teal);
  padding: 9px 22px;
  border-radius: var(--r-pill);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--tr);
}
.nav-cta:hover {
  background: var(--teal-2);
  transform: translateY(-1px);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  z-index: 2;
}
.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.35s ease, opacity 0.25s ease;
}
/* X animation on open */
.hamburger.active .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .ham-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── GLASS DROPDOWN ── */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(6, 13, 26, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1),
              opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.nav-dropdown.open {
  max-height: 420px;
  opacity: 1;
  pointer-events: all;
}
.dropdown-inner {
  padding: 24px 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.dropdown-inner ul {
  list-style: none;
  width: 100%;
  text-align: center;
}
.dd-link {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 14px 24px;
  transition: color 0.2s ease, background 0.2s ease;
}
.dd-link:hover { color: var(--teal); }

.dd-cta {
  margin-top: 16px;
  background: var(--teal);
  color: var(--bg) !important;
  border-radius: var(--r-pill);
  padding: 13px 32px !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  width: auto;
  display: inline-block !important;
}

/* ── OVERLAY behind dropdown ── */
.dd-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.dd-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ── RESPONSIVE: hide desktop elements on mobile ── */
@media (max-width: 820px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
}
@media (min-width: 821px) {
  .nav-dropdown { display: none; }
  .hamburger    { display: none; }
  .dd-overlay   { display: none; }
}

/* HERO */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,13,26,0.92) 0%,
    rgba(6,13,26,0.82) 45%,
    rgba(6,13,26,0.60) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
  min-height: 100vh;
}
.hero .blob { z-index: 2; }
.hero-inner {
  display:grid;
  grid-template-columns: 55fr 45fr;
  align-items:center; min-height:100vh;
  padding:96px 0 60px; gap:48px;
  position: relative; z-index: 3;
}
.hero-left { position:relative; z-index:2; }

.hero-tag { display:inline-block; font-family:var(--font-sans);
  font-size:var(--t-xs); font-weight:600; color:var(--teal);
  text-transform:uppercase; letter-spacing:3px;
  padding:8px 18px; border:1px solid var(--border-teal);
  border-radius:var(--r-pill); margin-bottom:28px; }

.hero-h1 { font-family:var(--font-serif); font-size:var(--t-hero);
  font-weight:700; color:var(--white); line-height:1.1;
  margin-bottom:28px; }
.h-mask  { display:block; overflow:hidden; }
.hero-line-1, .hero-line-2, .hero-line-3 {
  display:block; opacity:0; transform:translateY(100%); }

.hero-sub { font-family:var(--font-sans); font-size:var(--t-lg);
  color:var(--text-muted); line-height:1.75;
  margin-bottom:40px; max-width:480px; }

.hero-ctas { display:flex; gap:16px; flex-wrap:wrap;
  margin-bottom:40px; }

.btn-primary { display:inline-flex; align-items:center;
  gap:8px; font-family:var(--font-sans); font-weight:600;
  font-size:var(--t-sm); color:var(--bg);
  background:var(--teal); padding:15px 32px;
  border-radius:var(--r-pill); text-decoration:none;
  transition:var(--tr);
  box-shadow:0 0 30px rgba(0,201,212,0.3); }
.btn-primary:hover { background:var(--teal-2);
  transform:translateY(-2px);
  box-shadow:0 0 50px rgba(0,201,212,0.45); }

.btn-ghost { display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-sans); font-weight:500;
  font-size:var(--t-sm); color:var(--white);
  border:1px solid rgba(255,255,255,0.2);
  padding:15px 28px; border-radius:var(--r-pill);
  text-decoration:none; transition:var(--tr); }
.btn-ghost:hover { border-color:var(--teal); color:var(--teal);
  background:rgba(0,201,212,0.05); }

.hero-trust { display:flex; gap:12px; flex-wrap:wrap; }
.trust-pill { display:inline-flex; align-items:center; gap:10px;
  padding:10px 18px; border-radius:var(--r-pill);
  font-family:var(--font-sans); font-size:var(--t-xs);
  color:rgba(255,255,255,0.8); }
.trust-stars { color:var(--gold); font-size:0.85rem;
  letter-spacing:2px; }

.hero-right { position:relative; z-index:2; }
.hero-img-wrap { position:relative; }
.hero-img { width:100%; border-radius:var(--r-xl);
  aspect-ratio:4/5; object-fit:cover; object-position:top;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5),
              0 0 0 1px rgba(255,255,255,0.05); }
.hero-stat-card { position:absolute; bottom:32px; left:-24px;
  padding:20px 24px; border-radius:var(--r-lg); z-index:3; }
.hsc-number { font-family:var(--font-serif); font-size:2.4rem;
  font-weight:700; color:var(--white); line-height:1; }
.hsc-label  { font-family:var(--font-sans); font-size:var(--t-xs);
  color:var(--text-muted); margin-top:4px; }

/* STATS */
#stats {
  background: var(--bg); padding: 70px 0;
  position: relative; overflow: hidden;
}
.stats-grid { display:flex; gap:var(--gap); flex-wrap:wrap;
  justify-content:center; }
.stat-card { flex:1; min-width:200px; max-width:260px;
  padding:36px 28px; border-radius:var(--r-lg);
  text-align:center; }
.stat-num  { font-family:var(--font-serif); font-size:3.5rem;
  font-weight:700; color:var(--teal); line-height:1; }
.stat-label { font-family:var(--font-sans); font-size:var(--t-xs);
  color:var(--text-muted); text-transform:uppercase;
  letter-spacing:2px; margin-top:10px; }

/* SERVICES */
#services {
  background: var(--bg-2); padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  align-items: start;
  position: relative; z-index: 2;
}
.service-card { padding:32px 28px; border-radius:var(--r-lg);
  position:relative; overflow:hidden;
  transition:var(--tr); cursor:default;
  height: auto;
  min-height: 220px;
}
.service-card:hover { transform:translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5),
              0 0 0 1px rgba(0,201,212,0.15); }
.card-num { font-family:var(--font-serif); font-size:0.75rem;
  font-weight:600; color:var(--teal); letter-spacing:2px;
  opacity:0.6; margin-bottom:20px; }
.card-title { font-family:var(--font-serif); font-size:var(--t-xl);
  font-weight:600; color:var(--white); margin-bottom:14px; }
.card-text  { font-family:var(--font-sans); font-size:var(--t-sm);
  color:var(--text-muted); line-height:1.8; }
.service-card:first-child {
  grid-row: span 1 !important;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.label-tag { display:block; font-family:var(--font-sans);
  font-size:var(--t-xs); font-weight:600; color:var(--teal);
  text-transform:uppercase; letter-spacing:3px;
  text-align:center; margin-bottom:12px; position:relative; z-index:2; }
.section-h2 { font-family:var(--font-serif);
  font-size:var(--t-3xl); font-weight:700; color:var(--white);
  text-align:center; margin-bottom:60px;
  max-width:600px; margin-left:auto; margin-right:auto; position:relative; z-index:2; }

/* BEFORE & AFTER */
#before-after {
  background: var(--bg); padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.section-sub { font-family:var(--font-sans); font-size:var(--t-base);
  color:var(--text-muted); text-align:center; max-width:480px;
  margin:0 auto 56px; line-height:1.75; position:relative; z-index:2; }
.ba-swiper { max-width: 860px; margin: 0 auto; position:relative; z-index:2; }
.ba-card { border-radius:var(--r-xl); overflow:hidden; }
.ba-images { display:flex; height:360px; }
.ba-panel  { position:relative; width:50%; flex-shrink:0; }
.ba-panel img { width:100%; height:100%; object-fit:cover; }
.ba-tag { position:absolute; bottom:14px; padding:4px 12px;
  font-family:var(--font-sans); font-size:0.72rem; font-weight:700;
  text-transform:uppercase; letter-spacing:2px; color:var(--white);
  border-radius:var(--r-pill);
  background:rgba(6,13,26,0.75);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px); }
.ba-before { left:14px; }
.ba-after  { right:14px; }
.ba-info   { padding:28px 32px; }
.ba-info h3 { font-family:var(--font-serif); font-size:var(--t-xl);
  font-weight:600; color:var(--white); margin-bottom:8px; }
.ba-info p  { font-family:var(--font-sans); font-size:var(--t-sm);
  color:var(--text-muted); }

.ba-controls { display:flex; justify-content:center; align-items:center;
  gap:24px; margin-top:32px; position:relative; z-index:2; }
.ba-prev, .ba-next { width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.2rem; border:none; cursor:pointer;
  transition:var(--tr); background:var(--glass-bg);
  backdrop-filter:var(--glass-blur); -webkit-backdrop-filter:var(--glass-blur);
  border:var(--glass-border); }
.ba-prev:hover, .ba-next:hover { background:var(--teal); color:var(--bg); }
.ba-dots { display:flex; justify-content:center; }
.swiper-pagination-bullet { cursor:pointer; width:8px; height:8px;
  border-radius:50%; margin:0 4px; transition:var(--tr); }

/* WHY CHOOSE US */
#why-us {
  background: var(--bg-2); padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.features-grid { display:grid; grid-template-columns:repeat(3, 1fr);
  position:relative; z-index:2; }
.feature-item { padding:28px; }
.feat-icon { width:52px; height:52px; border-radius:var(--r-md);
  background:rgba(0,201,212,0.1);
  border:1px solid rgba(0,201,212,0.15);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:18px; }
.feat-icon svg { width:24px; height:24px;
  color:var(--teal); stroke:currentColor; }
.feat-title { font-family:var(--font-serif); font-size:var(--t-lg);
  font-weight:600; color:var(--white); margin-bottom:10px; }
.feat-text  { font-family:var(--font-sans); font-size:var(--t-sm);
  color:var(--text-muted); line-height:1.8; }

/* TESTIMONIALS */
#testimonials {
  background: var(--bg); padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.testi-swiper { position:relative; z-index:2; padding-bottom:48px; }
#testi-swiper .swiper-wrapper {
  align-items: stretch;
}
#testi-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testi-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding:36px 28px; border-radius:var(--r-xl);
}
.testi-quote-mark { font-family:var(--font-serif);
  font-size:4rem; color:var(--teal); opacity:0.3;
  line-height:0.8; margin-bottom:16px; }
.testi-stars { color:var(--gold); letter-spacing:2px;
  font-size:0.9rem; margin-bottom:16px; }
.testi-text  { font-family:var(--font-sans); font-size:var(--t-sm);
  color:rgba(255,255,255,0.7); line-height:1.85;
  font-style:italic; margin-bottom:28px;
  flex: 1; }
.testi-author { display:flex; align-items:center; gap:14px; margin-top:auto; padding-top:20px; }
.testi-photo  { width:48px; height:48px; border-radius:50%;
  object-fit:cover; border:2px solid var(--teal); flex-shrink:0; }
.testi-name { font-family:var(--font-sans); font-weight:600;
  font-size:var(--t-sm); color:var(--white); }
.testi-role { font-family:var(--font-sans); font-size:var(--t-xs);
  color:var(--text-muted); }
.testi-dots { display:flex; justify-content:center; margin-top:16px; }

/* ABOUT THE DOCTOR */
#about {
  background: var(--bg-2); padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.about-grid { display:grid; grid-template-columns:45fr 55fr;
  align-items:center; position:relative; z-index:2; }
.about-image-col { position:relative; }
.about-image-col::before {
  content:''; position:absolute; width:3px; height:60%;
  background:linear-gradient(to bottom, var(--teal), transparent);
  left:-16px; top:20%; z-index:1;
}
.about-img { width:100%; border-radius:var(--r-xl);
  object-fit:cover; position:relative; z-index:2; }
.about-badge { position:absolute; top:-20px; right:-20px;
  padding:20px 24px; border-radius:var(--r-lg); z-index:3;
  display:flex; align-items:center; gap:12px; }
.badge-num { font-family:var(--font-serif); font-size:3rem;
  font-weight:700; color:var(--teal); line-height:1; }
.badge-txt { font-family:var(--font-sans); font-size:var(--t-xs);
  color:var(--text-muted); line-height:1.4; }

.about-content { padding-left:48px; }
.about-p { font-family:var(--font-sans); font-size:var(--t-sm);
  color:var(--text-muted); line-height:1.85; margin-bottom:18px; }
.credentials-wrap { margin-top:32px; }
.credentials-pills { display:flex; flex-wrap:wrap; gap:10px; margin-top:16px; }
.cred-pill { padding:6px 16px; border-radius:var(--r-pill);
  font-family:var(--font-sans); font-size:var(--t-xs);
  color:var(--text-primary); }

/* BOOKING */
#booking {
  background: var(--bg); padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.booking-form-wrap { max-width:600px; margin:0 auto;
  padding:48px 40px; border-radius:var(--r-xl);
  position:relative; z-index:2; }
.booking-grid { display:grid; gap:16px; margin-bottom:16px; }
.b-col-2 { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.input-group label { display:block; font-family:var(--font-sans);
  font-size:var(--t-xs); font-weight:600; color:var(--text-muted);
  text-transform:uppercase; letter-spacing:1px; margin-bottom:8px; }
.input-group input, .input-group select, .input-group textarea {
  width:100%; padding:14px 18px;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border-glass);
  border-radius:var(--r-sm); color:var(--white);
  font-family:var(--font-sans); font-size:0.95rem;
  outline:none; transition:border-color 0.25s ease;
  appearance:none; -webkit-appearance:none;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
  border-color:var(--teal);
}
.input-group input::placeholder, .input-group textarea::placeholder {
  color:var(--text-muted);
}
.input-group select {
  background-image:url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%24%2024%22%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat:no-repeat; background-position:right 12px center;
  background-size:16px; padding-right:40px;
}
.wa-btn {
  width:100%; padding:16px; border:none; cursor:pointer;
  background:linear-gradient(135deg, #00C9D4, #00A8B2);
  color:var(--bg); font-family:var(--font-sans);
  font-size:1rem; font-weight:700; border-radius:var(--r-pill);
  margin-top:8px; transition:var(--tr);
  letter-spacing:0.5px;
}
.wa-btn:hover {
  opacity:0.9; transform:translateY(-2px);
  box-shadow:0 0 40px rgba(0,201,212,0.4);
}
.fine-print {
  text-align:center; font-size:0.78rem; font-family:var(--font-sans);
  color:var(--text-muted); margin-top:14px;
}

/* FAQ */
#faq {
  background: var(--bg-2); padding: var(--section-py) 0;
  position: relative; overflow: hidden;
}
.faq-wrap { max-width:760px; margin:0 auto; padding:8px;
  border-radius:var(--r-xl); position:relative; z-index:2; }
.faq-item { border-bottom:1px solid var(--border-glass); overflow:hidden; }
.faq-item:last-child { border-bottom:none; }
.faq-q { width:100%; display:flex; justify-content:space-between;
  align-items:center; padding:22px 24px; background:none;
  border:none; cursor:pointer; font-family:var(--font-sans);
  font-size:var(--t-base); font-weight:500; color:var(--white);
  text-align:left; gap:16px; }
.faq-icon { font-size:1.4rem; color:var(--teal); flex-shrink:0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease; }
.faq-item.open .faq-icon { transform:rotate(45deg); color: var(--teal); }
.faq-item.open { border-radius: var(--r-sm); }
.faq-item.open .faq-q { color: var(--white); }
.faq-a { 
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding:0 24px 22px; font-family:var(--font-sans);
  font-size:var(--t-sm); color:var(--text-muted); line-height:1.8; }

/* CONTACT & FOOTER */
#contact {
  background: var(--bg); padding: var(--section-py) 0 0;
  position: relative; overflow: hidden;
}
.contact-grid { display:grid; grid-template-columns:55fr 45fr;
  gap:40px; position:relative; z-index:2; }
.contact-row { display:flex; align-items:flex-start; gap:18px;
  margin-bottom:28px; }
.c-icon-wrap { width:44px; height:44px; border-radius:var(--r-sm);
  flex-shrink:0; background:rgba(0,201,212,0.1);
  border:1px solid var(--border-teal);
  display:flex; align-items:center; justify-content:center; }
.c-icon-wrap svg { width:22px; height:22px; color:var(--teal); stroke:currentColor; }
.map-placeholder { height:320px; border-radius:var(--r-xl);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:12px;
  max-width:100%; text-align:center; }
.map-placeholder p { font-family:var(--font-sans); font-size:var(--t-sm);
  color:var(--white); line-height:1.6; }

.footer-bar {
  background: rgba(0,0,0,0.4);
  border-top: 1px solid var(--border-glass);
  padding: 28px 0;
  margin-top: clamp(60px, 8vw, 100px);
  position: relative; z-index:2;
}
.footer-bar-inner { display:flex; justify-content:space-between;
  align-items:center; }
.social-links { display:flex; gap:12px; }
.social-icon { width:36px; height:36px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  text-decoration:none; transition:var(--tr); color:var(--white); }
.social-icon:hover { background:var(--teal); color:var(--bg); }
.social-icon svg { width:16px; height:16px; fill:currentColor; }

.footer-disclaimer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.disclaimer-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 65%;
}
.disclaimer-text strong {
  color: var(--text-muted);
}
.creator-credit {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: right;
  white-space: nowrap;
}
.creator-credit a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  transition: var(--tr);
}
.creator-credit a:hover {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(244,185,66,0.25);
}

/* BACK TO TOP */

#btt {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: auto;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-teal);
  color: var(--teal); font-size: 1rem; cursor: pointer;
  opacity: 0; visibility: hidden; z-index: 997;
  transition: opacity 0.3s ease, visibility 0.3s ease,
              background 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
#btt.show { opacity: 1; visibility: visible; }
#btt:hover { background: var(--teal); color: var(--bg); transform: translateY(-2px); }

/* MOBILE RESPONSIVE — ADDITIONAL RULES */
@media (max-width: 768px) {
  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center; padding: 100px 0 60px;
  }
  .hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(6,13,26,0.95) 0%,
      rgba(6,13,26,0.85) 50%,
      rgba(6,13,26,0.70) 100%
    );
  }
  .hero-right { display: none; }
  .hero-sub   { margin: 0 auto 36px; }
  .hero-ctas  { justify-content: center; flex-direction: column;
    align-items: center; }
  .hero-ctas a { width: 100%; max-width: 320px;
    justify-content: center; }
  .hero-trust { justify-content: center; }

  /* Stats */
  .stats-grid { display: flex; flex-direction: column; gap: 16px; align-items: center; }
  .stat-card { width: 100%; max-width: 320px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card:first-child { grid-row: span 1; }

  /* Before/After */
  .ba-images { flex-direction:column; height:auto; }
  .ba-panel  { width:100%; height:200px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { text-align: center; display: flex; flex-direction: column; align-items: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-content { padding-left: 0 !important; margin-top:40px; }
  .about-badge { right: 8px !important; }

  /* Booking */
  .b-col-2 { grid-template-columns:1fr; }
  .booking-form-wrap { padding:32px 24px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .map-placeholder { height: 220px; }

  /* Footer */
  .footer-bar-inner { flex-direction: column; text-align: center;
    gap: 14px; }
  .footer-disclaimer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 16px;
  }
  .disclaimer-text { max-width: 100%; }
  .creator-credit { text-align: center; }

  /* Section headings */
  .section-h2 { margin-bottom: 40px; }

  /* btt */
  #btt { bottom: 20px; left: 20px; }

  /* Remove hero blob on mobile (performance) */
  .hero .blob { display: none; }
}
