@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --navy: #0f2440;
  --navy2: #1a3a5c;
  --blue: #0d7bbd;
  --blue-light: #3fa8e0;
  --accent: #e63946;
  --gold: #c9a84c;
  --gold2: #f0d080;
  --bg: #f6f9fc;
  --white: #ffffff;
  --text: #1a2535;
  --muted: #5a6a80;
  --border: #dce8f5;
  --card-shadow: 0 8px 32px rgba(15,36,64,0.10);
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  padding: 7px 0;
  letter-spacing: 0.3px;
}
.topbar a { color: var(--gold2); text-decoration: none; transition: var(--transition); }
.topbar a:hover { color: #fff; }
.topbar .sep { margin: 0 14px; opacity: 0.3; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(15,36,64,0.08);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(15,36,64,0.15); }

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-icon svg { width: 22px; height: 22px; fill: #fff; }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.brand-sub {
  font-size: 0.65rem;
  color: var(--blue);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  background: rgba(13,123,189,0.07);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(15,36,64,0.15);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 999;
  border: 1px solid var(--border);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px !important;
  border-radius: 8px;
  font-size: 0.84rem;
  color: var(--text) !important;
}
.dropdown-menu a:hover { background: var(--bg) !important; color: var(--blue) !important; }
.dropdown-menu a .dm-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: #fff;
}

.btn-appt {
  background: linear-gradient(135deg, var(--accent), #c1121f);
  color: #fff !important;
  border-radius: 30px !important;
  padding: 9px 22px !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(230,57,70,0.3);
  border: none;
  transition: var(--transition) !important;
}
.btn-appt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,57,70,0.4) !important;
  background: linear-gradient(135deg, #c1121f, var(--accent)) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none; border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,36,64,0.97);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.7;
  transition: var(--transition);
}
.mobile-menu a:hover { opacity: 1; color: var(--gold2); }

/* ===== SECTION UTILITIES ===== */
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,123,189,0.1);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(13,123,189,0.2);
}
.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; }

.section-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title span { color: var(--blue); }
.section-title .accent { color: var(--accent); }

.title-bar {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 2px;
  margin-bottom: 24px;
}
.title-bar.center { margin: 0 auto 24px; }

/* ===== CARDS ===== */
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15,36,64,0.15);
  border-color: var(--blue);
}
.service-card img {
  width: 100%; height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card .card-img-wrap { overflow: hidden; flex-shrink: 0; }
.card-body { padding: 20px 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.card-body p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; flex: 1; }
.btn-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(13,123,189,0.08);
  padding: 7px 16px;
  border-radius: 20px;
  border: 1.5px solid rgba(13,123,189,0.2);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}
.btn-learn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-learn .arrow { transition: transform 0.25s; }
.btn-learn:hover .arrow { transform: translateX(3px); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15,36,64,0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box {
  background: #fff;
  border-radius: 24px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }
.modal-head {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 28px 32px 24px;
  border-radius: 24px 24px 0 0;
  position: sticky;
  top: 0;
  z-index: 1;
}
.modal-head h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  padding-right: 32px;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-content-inner { padding: 28px 32px 32px; }
.modal-content-inner p { font-size: 0.9rem; line-height: 1.75; color: var(--muted); margin-bottom: 16px; }
.modal-content-inner h5 {
  color: var(--navy);
  font-size: 1rem;
  margin: 20px 0 10px;
  padding-left: 12px;
  border-left: 3px solid var(--blue);
}
.modal-content-inner ul { padding-left: 20px; }
.modal-content-inner ul li { font-size: 0.88rem; color: var(--text); line-height: 1.7; margin-bottom: 5px; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 70px 0 0;
}
.footer-brand { margin-bottom: 20px; }
.footer-brand .name { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1.2rem; font-weight: 700; }
.footer-brand .sub { font-size: 0.7rem; color: var(--gold2); letter-spacing: 1.5px; text-transform: uppercase; }
footer h5 { font-family: 'Cormorant Garamond', serif; color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 18px; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: var(--transition); display: block; margin-bottom: 9px; }
footer a:hover { color: var(--gold2); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--blue);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 6px 20px rgba(13,123,189,0.4);
  text-decoration: none;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,123,189,0.5); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.anim-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-up.visible { opacity: 1; transform: translateY(0); }
.anim-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-left.visible { opacity: 1; transform: translateX(0); }
.anim-fade { opacity: 0; transition: opacity 0.8s ease; }
.anim-fade.visible { opacity: 1; }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--muted);
  list-style: none;
}
.breadcrumb li a { color: var(--blue); text-decoration: none; }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li::after { content: '/'; margin-left: 8px; opacity: 0.4; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb li:last-child { color: var(--text); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, var(--blue) 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(13,123,189,0.1);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p { font-size: 1rem; opacity: 0.8; max-width: 560px; line-height: 1.7; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 18px;
}

/* ===== GRID ===== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* ===== PLAN CARDS ===== */
.plan-card {
  border-radius: 20px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.plan-card:hover { transform: translateY(-6px); }
.plan-card.basic {
  background: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 6px 24px rgba(230,57,70,0.1);
}
.plan-card.fit {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 32px rgba(15,36,64,0.25);
}
.plan-card.superfit {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 32px rgba(13,123,189,0.3);
}
.plan-card.platinum {
  background: #fff;
  border: 2px solid var(--navy);
  box-shadow: var(--card-shadow);
}
.plan-card.premium {
  background: linear-gradient(135deg, #0d1b2e, #1a3a5c);
  color: #fff;
  box-shadow: 0 8px 40px rgba(15,36,64,0.35);
}
.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.plan-price.red { color: var(--accent); }
.plan-price.white { color: #fff; }
.plan-price.navy { color: var(--navy); }
.plan-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 16px;
}
.plan-name.dark-sep { border-color: var(--border); }
.plan-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}
.plan-tests { font-size: 0.78rem; line-height: 1.8; }
.plan-tests strong { display: block; margin-top: 10px; font-size: 0.78rem; }
.plan-card.fit .plan-tests strong, .plan-card.superfit .plan-tests strong,
.plan-card.premium .plan-tests strong { color: var(--blue-light); }
.plan-card.platinum .plan-tests strong { color: var(--blue); }

.btn-book {
  display: inline-block;
  margin-top: 18px;
  padding: 11px 28px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: center;
}
.btn-book.red-btn { background: var(--accent); color: #fff; }
.btn-book.red-btn:hover { background: #c1121f; box-shadow: 0 6px 20px rgba(230,57,70,0.4); }
.btn-book.white-btn { background: #fff; color: var(--navy); }
.btn-book.white-btn:hover { background: var(--bg); box-shadow: 0 6px 20px rgba(255,255,255,0.2); }
.btn-book.navy-btn { background: var(--navy); color: #fff; }
.btn-book.navy-btn:hover { background: var(--navy2); }

/* ===== PACKAGE BADGES ===== */
.pkg-badge {
  display: inline-block;
  background: rgba(230,57,70,0.07);
  border: 1.5px solid rgba(230,57,70,0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 20px;
  margin: 4px 3px;
  transition: var(--transition);
  cursor: default;
}
.pkg-badge:hover { background: var(--accent); color: #fff; }

/* ===== MEDANTA STRIP ===== */
.medanta-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  box-shadow: 0 8px 32px rgba(15,36,64,0.2);
}
.medanta-logo {
  background: #fff;
  border-radius: 12px;
  padding: 14px 22px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  white-space: nowrap;
}
.medanta-logo span { color: var(--accent); }

/* ===== HOME HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,28,58,0.92) 0%, rgba(10,28,58,0.7) 60%, rgba(13,123,189,0.4) 100%);
}
.slide-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 0 24px;
  max-width: 700px;
}
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
  animation: fadeIn 0.5s 0.3s both;
}
.slide-content h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
  animation: fadeUp 0.7s 0.4s both;
}
.slide-content p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.7;
  animation: fadeUp 0.7s 0.5s both;
}
.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.6s both;
}
.btn-primary-hero {
  background: linear-gradient(135deg, var(--accent), #c1121f);
  color: #fff;
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(230,57,70,0.4);
}
.btn-primary-hero:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(230,57,70,0.5); color: #fff; }
.btn-outline-hero {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 13px 30px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.btn-outline-hero:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); color: #fff; }

/* Slider nav */
.slider-nav {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slider-dot.active { background: #fff; width: 28px; border-radius: 4px; }
.slider-arrows {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}
.slider-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.slider-arrow:hover { background: rgba(255,255,255,0.25); transform: scale(1.1); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--navy);
  padding: 28px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold2);
  line-height: 1;
  display: block;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.5px; }

/* ===== FEATURE ICON ===== */
.feat-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .btn-appt { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.9rem; }
  .slide-content h2 { font-size: 2rem; }
  .hero-slider { min-height: 70vh; }
  .page-hero h1 { font-size: 2rem; }
  .medanta-strip { flex-direction: column; text-align: center; }
  .plan-card { margin-bottom: 8px; }
}
