/* === BRAND VARIABLES & CONFIG === */
:root {
  --navy: #0A1628;        /* Main dark headings & logo text */
  --blue: #1B66EC;        /* Brand blue for buttons, links, active lines */
  --blue-hover: #144CB3;  /* Darker blue for hover states */
  --blue-light: #EBF3FF;  /* Soft light blue for backgrounds & overlays */
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --text: #0A1628;        /* High-contrast navy text */
  --text-muted: #55627A;  /* Slate gray for secondary text */
  --green: #25D366;       /* Standard WhatsApp fallback if needed */
  --error: #DC2626;
  --transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  --font-headings: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 50px;         /* Rounded pill buttons */
  --radius-card: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 15px rgba(27, 102, 236, 0.15);
  --shadow-hover: 0 12px 30px rgba(27, 102, 236, 0.25);
}

/* === RESET & BASE STYLE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

/* === UTILITY LAYOUTS === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-padding {
  padding: 80px 0;
}
.text-center {
  text-align: center;
}
.text-white {
  color: var(--white) !important;
}
.text-gold-light {
  color: var(--blue-light) !important;
}
.text-glow {
  color: var(--blue);
  text-shadow: 0 0 20px rgba(27, 102, 236, 0.2);
}
.section-header {
  margin-bottom: 50px;
}
.section-header h2 {
  font-family: var(--font-headings);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 15px;
}
.section-header .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* === KEYFRAME ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(27, 102, 236, 0.5);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(27, 102, 236, 0);
  }
}
@keyframes shimmerSweep {
  0% { left: -100%; }
  100% { left: 150%; }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s var(--transition) forwards;
  opacity: 0;
}
.animate-fadeInDown {
  animation: fadeInDown 0.8s var(--transition) forwards;
  opacity: 0;
}

/* === SCROLL REVEAL SYSTEM === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === INTERACTIVE BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  text-align: center;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-25deg);
}
.btn-primary:hover::after {
  animation: shimmerSweep 0.8s ease-in-out;
}
.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--blue);
  padding: 14px 32px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-outline:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* === TOP CONTACT BAR === */
.top-bar {
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}
.top-left, .top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-bar .separator {
  color: #CBD5E1;
}
.top-bar a:hover {
  color: var(--blue);
}

/* === NAVBAR === */
.navbar {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 1000;
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, top 0.4s ease;
}
.navbar.scrolled {
  top: 0;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 12px 5%;
}

.logo {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--navy);
}
.logo-gold {
  color: var(--blue); /* Maps to brand blue */
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  margin-top: 1px;
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}
.nav-links a.active {
  border-bottom: 3px double var(--blue);
  padding-bottom: 4px;
}

/* Dropdown Menu styling */
.nav-links li {
  position: relative;
}
.nav-links .dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: var(--white);
  border: 1px solid rgba(27, 102, 236, 0.1);
  border-radius: 8px;
  list-style: none;
  width: 230px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1001;
}
.nav-links .dropdown-menu li {
  width: 100%;
}
.nav-links .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.nav-links .dropdown-menu a::after {
  display: none;
}
.nav-links .dropdown-menu a.active {
  border-bottom: none;
  color: var(--blue);
}
.nav-links .dropdown-menu a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}
.arrow {
  font-size: 0.7rem;
  margin-left: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-phone {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover {
  color: var(--blue);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
  z-index: 1010;
}
.hamburger .bar {
  display: block;
  width: 25px; height: 2px;
  background-color: var(--navy);
  transition: var(--transition);
}

/* === MOBILE DRAWER === */
.mobile-drawer {
  position: fixed;
  top: 0; right: -320px;
  width: 300px; height: 100vh;
  background: var(--white);
  z-index: 1005;
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: right var(--transition);
}
.mobile-drawer.active {
  right: 0;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-drawer {
  background: none;
  border: none;
  color: var(--navy);
  font-size: 2rem;
  cursor: pointer;
}
.drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawer-links a {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
}
.drawer-links a:hover,
.drawer-links a.active {
  color: var(--blue);
}
.drawer-book-btn {
  text-align: center;
  background: var(--blue);
  color: var(--white) !important;
  padding: 12px;
  border-radius: 50px;
  margin-top: 15px;
  font-weight: 600 !important;
}
.drawer-phone {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  color: var(--navy) !important;
}
.drawer-submenu {
  list-style: none;
  padding-left: 15px;
  display: none;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.drawer-submenu.active {
  display: flex;
}
.drawer-submenu a {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.drawer-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  z-index: 1002;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* === HERO SECTION === */
.hero {
  min-height: 90vh;
  padding-top: 180px;
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #EBF3FF 0%, #FFFFFF 100%);
}
.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 5;
}
.hero-text-side {
  text-align: left;
}
.hero-text-side .eyebrow-badge {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 15px;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}
.hero-text-side h1 {
  font-family: var(--font-headings);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-subtext {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.trust-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.trust-badge {
  background: var(--blue-light);
  border: 1px solid rgba(27, 102, 236, 0.1);
  color: var(--blue);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-card-side {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-3d {
  width: 360px;
  height: 460px;
  position: relative;
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.1s ease;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(27, 102, 236, 0.1), 0 20px 50px rgba(0,0,0,0.1);
  border: 2px solid rgba(27, 102, 236, 0.15);
}
.floating-badge {
  position: absolute;
  background: var(--white);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 10;
  white-space: nowrap;
}
.badge-bottom-left {
  bottom: 25px; left: -25px;
}
.badge-top-right {
  top: 25px; right: -25px;
  background: var(--blue);
  color: var(--white);
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(27, 102, 236, 0.3);
  border-radius: 20px;
  position: relative;
}
.wheel {
  width: 4px; height: 8px;
  background-color: var(--blue);
  border-radius: 2px;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollMouse 1.8s infinite ease-in-out;
}

/* === STATS SECTION === */
.stats-section {
  background: var(--white);
  padding: 40px 0;
  position: relative;
  z-index: 6;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}
.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background-color: #E2E8F0;
}

/* === WHY CHOOSE US === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 35px 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border: 1px solid #F1F5F9;
  border-left: 0px solid var(--blue);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-left-width 0.2s ease;
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(27, 102, 236, 0.08);
  border-left: 5px solid var(--blue);
}
.why-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* === OUR SERVICES === */
.services-section {
  background: #F8FAFC;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border: 1px solid #E2E8F0;
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(27, 102, 236, 0.08);
}
.service-gradient {
  height: 180px;
  width: 100%;
}
.service-body {
  padding: 30px 25px;
}
.service-body .service-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.service-body h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  height: 48px;
  overflow: hidden;
}
.learn-more {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.95rem;
}

/* === BEFORE & AFTER SLIDER === */
.before-after-section {
  background: var(--navy);
  overflow: hidden;
}
.slider-outer-container {
  width: 100%;
  overflow-x: auto;
  padding: 20px 0 40px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.slider-outer-container::-webkit-scrollbar {
  display: none;
}
.slider-scroll-track {
  display: flex;
  gap: 30px;
  padding-left: 5%;
  padding-right: 5%;
}
.ba-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--navy-mid);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.ba-container {
  position: relative;
  width: 340px; height: 420px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}
.ba-before, .ba-after {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.ba-before {
  z-index: 1;
}
.ba-after {
  z-index: 2;
  clip-path: inset(0 0 0 50%);
}
.ba-badge {
  position: absolute;
  top: 15px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.before-label {
  left: 15px;
  z-index: 5;
}
.after-label {
  right: 15px;
  z-index: 5;
}
.ba-handle {
  position: absolute;
  top: 0; left: 50%;
  width: 4px; height: 100%;
  background: var(--white);
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}
.ba-handle::after {
  content: '⟺';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white);
  color: var(--blue);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-weight: bold;
}
.ba-info {
  padding: 20px;
}
.ba-info h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.ba-info p {
  font-size: 0.85rem;
  color: var(--blue-light);
}

/* === CITIES SECTION === */
.cities-section {
  background: var(--white);
}
.cities-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.city-card {
  flex: 1;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition);
}
.city-card:hover {
  transform: scale(1.04);
  box-shadow: 0 15px 35px rgba(27, 102, 236, 0.08);
}
.city-image-ph {
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
}
.city-image-ph h3 {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.city-badge {
  position: absolute;
  top: 15px; right: 15px;
  background: var(--blue);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}
.city-footer {
  padding: 15px;
  text-align: center;
  background: var(--white);
}
.view-services {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
}

/* === HOW IT WORKS === */
.how-it-works {
  background: #F8FAFC;
}
.journey-container {
  position: relative;
  padding-top: 20px;
}
.journey-line {
  position: absolute;
  top: 60px; left: 0;
  width: 100%; height: 50px;
  z-index: 1;
}
.journey-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 30px;
}
.journey-step {
  flex: 1;
  text-align: center;
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border: 1px solid #E2E8F0;
}
.step-badge {
  width: 40px; height: 40px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 20px auto;
}
.journey-step .step-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.journey-step h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}
.journey-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* === TESTIMONIALS CAROUSEL === */
.testimonials-section {
  background: var(--navy);
}
.testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonial-slides {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slide {
  flex: 0 0 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
}
.testimonial-slide.active {
  display: flex;
}
.stars {
  color: var(--blue-light);
  font-size: 1.5rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.quote {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 30px;
}
.patient-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.patient-name {
  font-weight: 600;
  color: var(--blue-light);
  font-size: 1.1rem;
}
.patient-city {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--blue);
  transform: scale(1.2);
}

/* === FAQ ACCORDION === */
.faq-section {
  background: #F8FAFC;
}
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  border: 1px solid #E2E8F0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 30px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--blue);
}
.faq-icon {
  font-size: 1.5rem;
  color: var(--blue);
  transition: transform 0.4s var(--transition);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.faq-answer-inner {
  padding: 0 30px 22px 30px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* === FINAL CTA BANNER === */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1A2E50 50%, var(--navy) 100%);
  padding: 100px 0;
  color: var(--white);
  overflow: hidden;
}
.final-cta-decor {
  position: absolute;
  left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.top-decor {
  top: 0;
}
.bottom-decor {
  bottom: 0;
}
.cta-eyebrow {
  color: var(--blue-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 15px;
}
.final-cta h2 {
  font-family: var(--font-headings);
  font-size: 3rem;
  margin-bottom: 15px;
}
.final-cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 300;
}
.cta-wa-link {
  display: block;
  margin-top: 20px;
  color: var(--blue-light);
  font-size: 0.95rem;
}
.cta-wa-link:hover {
  color: var(--white);
}

/* === GLOBAL FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0 0;
  border-top: 2px solid var(--blue);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo .logo-main {
  color: var(--white);
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 25px;
}
.footer-socials {
  display: flex;
  gap: 15px;
}
.footer-socials a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}
.footer-socials a:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-weight: 700;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a:hover {
  color: var(--blue);
}
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-contact span {
  color: var(--blue);
  margin-right: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a:hover {
  color: var(--white);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  background: var(--blue); /* Matched user screenshot blue WhatsApp widget */
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(27,102,236,0.3);
  animation: pulse 2.5s infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* === SUB PAGES STYLING === */
.sub-hero {
  background: radial-gradient(ellipse at 30% 50%, #112240 0%, #0A1628 60%, #060E1A 100%);
  padding: 180px 0 80px 0;
  color: var(--white);
}
.breadcrumbs {
  font-size: 0.9rem;
  color: var(--blue-light);
  margin-top: 10px;
  display: flex;
  gap: 8px;
}
.breadcrumbs a:hover {
  color: var(--white);
}

/* services list alternating */
.service-section-alternating {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.service-section-alternating:nth-child(even) {
  direction: rtl;
}
.service-section-alternating:nth-child(even) .service-text-col {
  direction: ltr;
}
.service-section-alternating:nth-child(even) .service-img-col {
  direction: ltr;
}
.service-text-col .large-num {
  font-family: var(--font-headings);
  font-size: 4rem;
  color: rgba(27, 102, 236, 0.15);
  font-weight: 900;
  line-height: 1;
}
.service-text-col h2 {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 20px;
}
.service-text-col p {
  color: var(--text-muted);
  margin-bottom: 15px;
}
.benefits-list {
  list-style: none;
  margin-top: 25px;
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.benefits-list li {
  font-weight: 600;
  color: var(--navy);
}
.benefits-list span {
  color: var(--blue);
  margin-right: 10px;
  font-weight: bold;
}
.service-img-col {
  height: 400px;
}

/* about page custom styles */
.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.about-mission-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border: 1px solid #E2E8F0;
  text-align: center;
}
.about-mission-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 700;
}
.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.cert-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  text-align: center;
  border: 1px solid rgba(27, 102, 236, 0.15);
}
.cert-icon {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.cert-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

/* Multi-step appointment form styles */
.booking-form-wrapper {
  max-width: 700px;
  margin: -50px auto 80px auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 45px rgba(27, 102, 236, 0.12);
  position: relative;
  z-index: 10;
}
.progress-bar-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}
.progress-line-bg {
  position: absolute;
  top: 15px; left: 0;
  width: 100%; height: 3px;
  background: #E2E8F0;
  z-index: 1;
}
.progress-line-fill {
  position: absolute;
  top: 15px; left: 0;
  width: 0%; height: 3px;
  background: var(--blue);
  z-index: 2;
  transition: width 0.4s ease;
}
.progress-step {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #E2E8F0;
  color: var(--text-muted);
  display: flex;
  align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 3;
  transition: background 0.4s ease, color 0.4s ease;
  position: relative;
}
.progress-step.active {
  background: var(--blue);
  color: var(--white);
}
.progress-step.completed {
  background: var(--navy);
  color: var(--white);
}
.step-label {
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  white-space: nowrap;
  font-weight: 600;
  color: var(--text-muted);
}
.progress-step.active .step-label {
  color: var(--blue);
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.95rem;
}
.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  background: #F8FAFC;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(27, 102, 236, 0.15);
}
.error-msg {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.radio-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 15px;
}
.radio-card {
  position: relative;
  background: #F8FAFC;
  border: 2px solid transparent;
  border-radius: var(--radius-card);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.radio-card:hover {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
}
.radio-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-card-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.radio-card-icon {
  font-size: 1.8rem;
  margin-bottom: 5px;
}
.radio-card-title {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}
.radio-card.selected {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 8px 25px rgba(27, 102, 236, 0.1);
}
.time-pills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.time-pill {
  position: relative;
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  border-radius: 50px;
  padding: 12px 15px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.time-pill input {
  position: absolute;
  opacity: 0;
}
.time-pill.selected {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 25px;
}
.checkbox-group input {
  margin-top: 4px;
  cursor: pointer;
}
.checkbox-group label {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 35px;
}
.btn-back {
  background: #F1F5F9;
  color: var(--text-muted);
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-back:hover {
  background: #E2E8F0;
}

/* Success step */
.success-step {
  text-align: center;
  padding: 30px 10px;
}
.success-icon {
  width: 80px; height: 80px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 25px auto;
  transform: scale(0);
}
.success-step.active .success-icon {
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s;
}
.success-checkmark {
  font-size: 3rem;
  color: var(--green);
}
.success-step h2 {
  font-family: var(--font-headings);
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 15px;
}

/* Contact page styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  margin-bottom: 60px;
}
.contact-form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 25px rgba(0,0,0,0.02);
  border: 1px solid #E2E8F0;
}
.contact-form-card h2 {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--navy);
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  border: 1px solid #E2E8F0;
  display: flex;
  gap: 20px;
  align-items: center;
}
.info-card-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}
.info-card-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.info-card-text p, .info-card-text a {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.btn-wa-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-card);
  font-weight: 600;
  margin-top: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn-wa-contact:hover {
  transform: translateY(-2px);
  background: var(--blue-hover);
  color: var(--white);
}

/* === RESPONSIVE GRIDS & CTAS === */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.surgeon-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.btn-navy-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 12px 24px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.btn-navy-outline:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.surgeon-ctas {
  display: flex;
  gap: 15px;
}
section[id] {
  scroll-margin-top: 100px;
}

@media (max-width: 1024px) {
  .about-intro-grid, .surgeon-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about-intro-grid .reveal-left,
  .surgeon-grid .reveal-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-intro-grid .reveal,
  .surgeon-grid .reveal {
    height: 380px !important;
    max-width: 320px;
    margin: 0 auto;
  }
  .surgeon-ctas {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-intro-grid .reveal,
  .surgeon-grid .reveal {
    height: 300px !important;
    max-width: 260px;
  }
  .surgeon-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    gap: 10px;
  }
  .surgeon-ctas a {
    width: 100%;
  }
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1200px) {
  .hero-container { gap: 30px; }
  .hero-text-side h1 { font-size: 3rem; }
}

@media (max-width: 1024px) {
  .top-bar { display: none; }
  .navbar { top: 0; }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-text-side {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas { justify-content: center; }
  .trust-badges { justify-content: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 1fr 1fr; }
  .service-section-alternating { gap: 40px; }
}

@media (max-width: 768px) {
  .navbar { padding: 16px 5%; }
  .navbar.scrolled { padding: 10px 5%; }
  .nav-menu, .nav-book-btn, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .section-padding { padding: 60px 0; }
  .section-header h2 { font-size: 2rem; }
  .hero-text-side h1 { font-size: 2.4rem; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .journey-line { display: none; }
  .journey-steps { flex-direction: column; gap: 40px; }
  .journey-step { padding: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer { padding: 60px 0 0 0; }
  .footer-col h4 { margin-bottom: 15px; }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .service-section-alternating {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 60px 0;
  }
  .service-section-alternating:nth-child(even) { direction: ltr; }
  .service-img-col { height: 300px; order: -1; }
  .about-mission-grid { grid-template-columns: 1fr; }
  .about-cert-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .radio-cards-grid { grid-template-columns: 1fr; }
  .time-pills-grid { grid-template-columns: 1fr; gap: 10px; }
  .booking-form-wrapper { padding: 25px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .hero-text-side h1 { font-size: 2rem; }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .hero-ctas a { width: 100%; }
  .stats-grid { flex-direction: column; }
  .stat-divider {
    width: 60px;
    height: 1px;
    margin: 10px auto;
  }
  .about-cert-grid { grid-template-columns: 1fr; }
  .whatsapp-float {
    width: 50px; height: 50px;
    bottom: 15px; right: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* === LOGO BADGE ANIMATION RULES === */
.logo-badge {
  background: #000;
  padding: 4px 8px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border: 1px solid rgba(27, 102, 236, 0.25);
  position: relative;
  overflow: hidden;
  animation: logoGlow 3s infinite ease-in-out;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.logo-badge img {
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo-badge.mobile-badge {
  height: 35px;
  padding: 4px;
  border-radius: 6px;
}
.logo-badge.footer-badge {
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: logoGlowFooter 3s infinite ease-in-out;
}

/* Metallic shimmer glow effect inside logo badge on hover */
.logo-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
}
.logo:hover .logo-badge::after {
  left: 150%;
  transition: left 0.8s ease-in-out;
}
.logo:hover .logo-badge {
  transform: scale(1.05);
  border-color: var(--blue);
}
.logo:hover .logo-badge img {
  transform: scale(1.1) rotate(4deg);
}

@keyframes logoGlow {
  0%, 100% {
    border-color: rgba(27, 102, 236, 0.25);
    box-shadow: 0 0 5px rgba(27, 102, 236, 0.1);
  }
  50% {
    border-color: rgba(27, 102, 236, 0.7);
    box-shadow: 0 0 15px rgba(27, 102, 236, 0.3);
  }
}
@keyframes logoGlowFooter {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
  }
  50% {
    border-color: rgba(27, 102, 236, 0.5);
    box-shadow: 0 0 15px rgba(27, 102, 236, 0.2);
  }
}


/* === FOOTER SEO DIRECTORY === */
.footer-seo-directory {
  grid-column: span 4;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 15px;
  font-size: 0.8rem;
  line-height: 1.8;
  text-align: center;
  width: 100%;
}
.footer-seo-directory .directory-title {
  font-weight: 700;
  color: var(--white);
  margin-right: 8px;
  display: inline-block;
}
.footer-seo-directory a {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 6px;
  display: inline-block;
  transition: color 0.3s ease;
}
.footer-seo-directory a:hover {
  color: var(--blue);
}

@media (max-width: 1024px) {
  .footer-seo-directory {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .footer-seo-directory {
    grid-column: span 1;
    text-align: left;
  }
}
