/* ============================================
   LOVE ELDER HEALTH — Premium CSS
   Font: Sora (headings) + DM Sans (body)
   ============================================ */

:root {
  --primary: #0F3D6E;
  --primary-light: #1A5BA0;
  --primary-glow: rgba(15, 61, 110, 0.15);
  --green: #67B26F;
  --green-light: #8FCB96;
  --green-glow: rgba(103, 178, 111, 0.15);
  --red: #E85D5D;
  --red-glow: rgba(232, 93, 93, 0.12);
  --bg: #F4F7FB;
  --bg-white: #FFFFFF;
  --text-dark: #0A1628;
  --text-mid: #3D5176;
  --text-muted: #7B90B0;
  --border: rgba(15, 61, 110, 0.1);
  --shadow-sm: 0 2px 12px rgba(15, 61, 110, 0.08);
  --shadow-md: 0 8px 32px rgba(15, 61, 110, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 61, 110, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); }

.section-padding { padding: 96px 0; }

/* ============ GRADIENT TEXT ============ */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ SECTION LABELS ============ */
.section-tag {
  display: inline-block;
  background: var(--green-glow);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}
.section-header { margin-bottom: 16px; }

/* ============ NAVBAR ============ */
.leh-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(15,61,110,0.1);
}
.leh-navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(15,61,110,0.1);
}
.leh-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--green));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 15px var(--primary-glow);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}
.logo-accent { color: var(--green); }
.logo-sub {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.leh-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid) !important;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: var(--transition);
}
.leh-nav-link:hover { color: var(--primary) !important; background: var(--primary-glow); }
.leh-navbar:not(.scrolled) .leh-nav-link { color: rgba(2, 0, 8, 0.85) !important; }
.leh-navbar:not(.scrolled) .leh-nav-link:hover { color: rgb(5, 2, 17) !important; background: rgba(255,255,255,0.15); }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-search-btn {
  width: 38px; height: 38px;
  border: none; background: transparent;
  border-radius: 8px; cursor: pointer;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-search-btn:hover { background: var(--primary-glow); color: var(--primary); }
.leh-navbar:not(.scrolled) .nav-search-btn { color: rgba(4, 1, 1, 0.8); }

.btn-whatsapp {
  background: #25D366;
  color: white !important;
  border-radius: 10px;
  padding: 8px 14px !important;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}
.btn-whatsapp:hover { background: #1EBE5C; transform: translateY(-1px); }

.btn-nav-login {
  background: black;
  border: 1.5px solid var(--border);
  color: var(--text-mid) !important;
  border-radius: 10px;
  padding: 8px 16px !important;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-nav-login:hover { border-color: var(--primary); color: var(--primary) !important; }
.leh-navbar:not(.scrolled) .btn-nav-login { border-color: rgba(6, 2, 2, 0.4); color: white !important; }

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white !important;
  border-radius: 10px;
  padding: 8px 20px !important;
  font-size: 14px;
  font-weight: 700;
  border: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px var(--primary-glow); }

.leh-toggler {
  border: none; background: transparent; cursor: pointer;
  padding: 4px; display: flex; flex-direction: column; gap: 5px;
}
.leh-toggler span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: var(--transition);
}
.leh-navbar:not(.scrolled) .leh-toggler span { background: white; }

/* Search overlay */
.search-overlay {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,0.98); padding: 16px 0;
  display: none; box-shadow: var(--shadow-md);
}
.search-overlay.active { display: block; }
.search-inner { position: relative; }
.search-input {
  width: 100%; padding: 14px 50px 14px 20px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 16px; outline: none;
  font-family: var(--font-body);
}
.search-input:focus { border-color: var(--primary); }
.search-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  border: none; background: transparent; cursor: pointer; color: var(--text-muted); font-size: 18px;
}

/* ============ HERO ============ */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(145deg, #0A2140 0%, #0F3D6E 45%, #1A6B4A 100%);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-mesh {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(103,178,111,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(232,93,93,0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.3;
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #67B26F, transparent);
  top: -150px; right: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #1A6BD0, transparent);
  bottom: -100px; left: -100px;
  animation-delay: -4s;
}
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-15px,25px) scale(0.97); }
}

.hero-left { color: white; padding: 80px 0 40px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(103,178,111,0.2);
  border: 1px solid rgba(103,178,111,0.4);
  color: #8FCB96;
  font-size: 13px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s ease forwards;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.6; transform:scale(1.3); } }

.hero-heading {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  color: white;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.7s 0.1s ease forwards;
  opacity: 0;
}
.hero-heading .gradient-text {
  background: linear-gradient(135deg, #8FCB96, #67E8A0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtext {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 520px; margin-bottom: 36px;
  animation: fadeSlideUp 0.7s 0.2s ease forwards; opacity: 0;
}
.hero-cta-group {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.7s 0.3s ease forwards; opacity: 0;
}
.btn-primary-custom {
  background: linear-gradient(135deg, var(--green), #4CAF50);
  color: white !important; border: none;
  padding: 16px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(103,178,111,0.4);
}
.btn-primary-custom:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(103,178,111,0.5); }
.btn-outline-custom {
  background: rgba(255,255,255,0.1);
  color: white !important; border: 1.5px solid rgba(255,255,255,0.3);
  padding: 15px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  font-family: var(--font-body);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-outline-custom:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }

.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 20px;
  animation: fadeSlideUp 0.7s 0.4s ease forwards; opacity: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 500;
}
.trust-item i { color: var(--green); }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Visual */
.hero-right { display: flex; justify-content: center; padding: 80px 0 40px; }
.hero-visual { position: relative; width: 460px; height: 460px; }

.hero-main-visual {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 280px; height: 280px;
}
.visual-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
}
.outer-ring {
  width: 280px; height: 280px;
  background: linear-gradient(135deg, rgba(103,178,111,0.1), rgba(15,61,110,0.2));
  border: 1px solid rgba(103,178,111,0.2);
  animation: rotateRing 20s linear infinite;
}
.inner-ring {
  width: 200px; height: 200px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(103,178,111,0.12));
  border: 1px solid rgba(255,255,255,0.15);
  animation: rotateRing 15s linear infinite reverse;
}
@keyframes rotateRing { from {transform:translate(-50%,-50%) rotate(0deg);} to {transform:translate(-50%,-50%) rotate(360deg);} }

.elder-icon-wrap {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 120px; height: 120px;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(103,178,111,0.2));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 50px; color: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.2);
}
.care-lines { position: absolute; inset: 0; }
.care-line {
  position: absolute; width: 2px; background: linear-gradient(180deg, rgba(103,178,111,0.6), transparent);
  top: 0; left: 50%; transform-origin: bottom center;
}
.cl-1 { height: 50%; transform: translateX(-50%) rotate(0deg); animation: scanLine 3s 0s ease-in-out infinite; }
.cl-2 { height: 50%; transform: translateX(-50%) rotate(120deg); animation: scanLine 3s 1s ease-in-out infinite; }
.cl-3 { height: 50%; transform: translateX(-50%) rotate(240deg); animation: scanLine 3s 2s ease-in-out infinite; }
@keyframes scanLine { 0%,100% {opacity:0.3;} 50% {opacity:1;} }

/* Float Cards */
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  animation: floatCard 4s ease-in-out infinite;
}
.float-card-1 { top: 40px; left: -20px; animation-delay: 0s; }
.float-card-2 { bottom: 80px; right: -30px; animation-delay: -2s; }
.float-card-3 { bottom: 20px; left: 20px; animation-delay: -1s; }
@keyframes floatCard { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }

.card-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #E85D5D, #FF8080);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px;
}
.card-info { display: flex; flex-direction: column; }
.card-label { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 500; }
.card-value { font-size: 18px; font-weight: 800; color: white; font-family: var(--font-head); }
.pulse-ring {
  position: absolute; top: 10px; right: 10px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(103,178,111,0.3);
  animation: pulse 2s infinite;
}
.consult-avatar i { font-size: 36px; color: rgba(255,255,255,0.7); }
.consult-info { display: flex; flex-direction: column; gap: 2px; }
.consult-info strong { color: white; font-size: 13px; font-family: var(--font-head); }
.consult-info span { color: rgba(255,255,255,0.6); font-size: 11px; }
.status-dot { color: var(--green) !important; font-size: 11px; font-weight: 600; }
.card-meds { gap: 8px; flex-wrap: wrap; max-width: 200px; }
.card-meds i { color: #FFD580; font-size: 18px; }
.card-meds span { color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 500; }
.time-tag {
  background: rgba(103,178,111,0.3);
  color: #8FCB96; font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 6px;
}

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

/* ============ STATS ============ */
.stats-section { background: var(--primary); padding: 0; }
.stats-wrapper {
  background: linear-gradient(135deg, var(--primary), #1A5BA0);
  border-radius: 0;
}
.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-icon { font-size: 28px; color: var(--green); margin-bottom: 12px; }
.stat-number {
  display: inline;
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: white;
}
.stat-suffix {
  display: inline;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--green);
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; margin-top: 6px; }

/* ============ SERVICES ============ */
.services-section { background: var(--bg); }
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transition: var(--transition);
}
.card-blue::before { background: linear-gradient(90deg, var(--primary), var(--primary-light)); }
.card-green::before { background: linear-gradient(90deg, var(--green), #4CAF50); }
.card-coral::before { background: linear-gradient(90deg, var(--red), #FF8080); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: var(--transition);
}
.card-blue .service-icon-wrap { background: var(--primary-glow); color: var(--primary); }
.card-green .service-icon-wrap { background: var(--green-glow); color: var(--green); }
.card-coral .service-icon-wrap { background: var(--red-glow); color: var(--red); }
.service-card:hover .service-icon-wrap { transform: scale(1.1); }

.service-card h4 {
  font-size: 17px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
  text-decoration: none; transition: var(--transition);
}
.card-blue .service-link { color: var(--primary); }
.card-green .service-link { color: var(--green); }
.card-coral .service-link { color: var(--red); }
.service-link:hover { gap: 10px; }
.service-link i { transition: var(--transition); }

/* ============ HOW IT WORKS ============ */
.how-section { background: white; }
.steps-wrapper { position: relative; }
.steps-connector {
  position: absolute; top: 64px; left: calc(16.66% + 32px); right: calc(16.66% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--green));
  opacity: 0.2;
}
.step-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: white; }
.step-number {
  position: absolute; top: 20px; right: 20px;
  font-size: 48px; font-weight: 900;
  color: var(--primary); opacity: 0.06;
  font-family: var(--font-head);
  line-height: 1;
}
.step-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--green));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(15,61,110,0.25);
  transition: var(--transition);
}
.step-card:hover .step-icon { transform: scale(1.08) rotate(5deg); }
.step-card h4 { font-size: 19px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============ PRICING ============ */
.pricing-section { background: var(--bg); }
.pricing-card {
  background: white; border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  height: 100%; position: relative;
  transition: var(--transition);
}
.pricing-card.popular {
  background: linear-gradient(165deg, var(--primary), #1A5BA0);
  border: none;
  transform: scale(1.03);
  box-shadow: 0 20px 60px rgba(15,61,110,0.35);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--green), #4CAF50);
  color: white; font-size: 12px; font-weight: 800;
  padding: 6px 20px; border-radius: 100px;
  letter-spacing: 0.5px; white-space: nowrap;
  box-shadow: 0 4px 15px rgba(103,178,111,0.4);
}
.plan-name {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-muted); margin-bottom: 12px;
}
.pricing-card.popular .plan-name { color: rgba(255,255,255,0.6); }
.plan-price {
  font-family: var(--font-head);
  font-size: 52px; font-weight: 800;
  color: var(--primary); line-height: 1;
  margin-bottom: 4px;
}
.pricing-card.popular .plan-price { color: white; }
.plan-price sup { font-size: 24px; font-weight: 600; vertical-align: super; }
.plan-price span { font-size: 16px; font-weight: 500; opacity: 0.6; }
.plan-usd { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.pricing-card.popular .plan-usd { color: rgba(255,255,255,0.5); }
.plan-savings {
  display: inline-block;
  background: rgba(103,178,111,0.2); color: var(--green);
  font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: 8px;
  margin-bottom: 20px;
}
.pricing-card.popular .plan-savings { background: rgba(255,255,255,0.15); color: #8FCB96; }

.plan-features { list-style: none; padding: 0; margin-bottom: 28px; border-top: 1px solid var(--border); padding-top: 24px; }
.pricing-card.popular .plan-features { border-color: rgba(255,255,255,0.15); }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-card.popular .plan-features li { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.08); }
.plan-features li.unavail { opacity: 0.4; }
.plan-features li i.fa-check { color: var(--green); font-size: 12px; }
.plan-features li i.fa-times { color: var(--red); font-size: 12px; }

.btn-plan {
  width: 100%; padding: 14px;
  background: var(--bg); color: var(--primary) !important;
  border: 2px solid var(--primary); border-radius: 12px;
  font-size: 15px; font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition); cursor: pointer;
  display: block; text-align: center; text-decoration: none;
}
.btn-plan:hover { background: var(--primary); color: white !important; }
.btn-plan-primary {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--green), #4CAF50);
  color: white !important; border: none;
  border-radius: 12px; font-size: 15px; font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition); cursor: pointer;
  display: block; text-align: center; text-decoration: none;
  box-shadow: 0 8px 25px rgba(103,178,111,0.35);
}
.btn-plan-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(103,178,111,0.45); }
.secure-badges { text-align: center; margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.5); }
.secure-badges i { font-size: 18px; margin: 0 4px; }
.secure-badges .fa-cc-visa { color: #1A1F71; background: white; border-radius: 3px; padding: 2px 4px; }
.secure-badges .fa-cc-mastercard { color: #EB001B; background: white; border-radius: 3px; padding: 2px 4px; }

/* ============ DASHBOARD ============ */
.dashboard-section { background: white; }
.feature-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.fi-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--primary-glow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 18px;
}
.feature-item strong { font-size: 15px; font-weight: 700; color: var(--text-dark); display: block; margin-bottom: 3px; }
.feature-item small { font-size: 13px; color: var(--text-muted); }

/* Dashboard Mockup */
.dashboard-mockup {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15,61,110,0.2);
  border: 1px solid var(--border);
}
.db-header {
  background: linear-gradient(90deg, var(--primary), #1A5BA0);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
}
.db-dots { display: flex; gap: 6px; }
.db-dots span { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.db-dots span:nth-child(1) { background: #FF5F57; }
.db-dots span:nth-child(2) { background: #FEBC2E; }
.db-dots span:nth-child(3) { background: #28C840; }
.db-title { flex: 1; text-align: center; font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.db-avatar { font-size: 24px; color: rgba(255,255,255,0.6); }
.db-body { display: flex; }
.db-sidebar {
  width: 52px; background: var(--bg);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 0; gap: 4px;
}
.db-nav-item {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); cursor: pointer;
  transition: var(--transition); font-size: 14px;
}
.db-nav-item.active { background: var(--primary-glow); color: var(--primary); }
.db-nav-item:hover { background: var(--primary-glow); color: var(--primary); }
.db-content { flex: 1; padding: 20px; background: var(--bg); }
.db-stats-row { display: flex; gap: 12px; margin-bottom: 16px; }
.db-stat-card {
  flex: 1; background: white; border-radius: 12px;
  padding: 12px; border: 1px solid var(--border);
}
.dsc-label { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.dsc-val { display: block; font-size: 18px; font-weight: 800; font-family: var(--font-head); margin-bottom: 6px; }
.dsc-val.green { color: var(--green); }
.dsc-val.blue { color: var(--primary); }
.dsc-val.orange { color: var(--red); }
.sparkline { width: 100%; height: 30px; }
.db-upcoming { background: white; border-radius: 12px; padding: 14px; margin-bottom: 12px; border: 1px solid var(--border); }
.db-section-title { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.db-appt-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.db-appt-item:last-child { border-bottom: none; padding-bottom: 0; }
.appt-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.green-dot { background: var(--green); }
.blue-dot { background: var(--primary); }
.appt-info { flex: 1; display: flex; flex-direction: column; }
.appt-info strong { font-size: 12px; font-weight: 700; color: var(--text-dark); }
.appt-info span { font-size: 11px; color: var(--text-muted); }
.appt-type { font-size: 10px; font-weight: 700; color: var(--green); background: var(--green-glow); padding: 3px 8px; border-radius: 6px; }
.db-meds-row { background: white; border-radius: 12px; padding: 14px; border: 1px solid var(--border); }
.med-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: 8px;
  margin: 3px 4px 3px 0;
}
.med-chip.taken { background: var(--green-glow); color: var(--green); }
.med-chip.pending { background: rgba(232,93,93,0.1); color: var(--red); }

/* ============ TESTIMONIALS ============ */
.testimonials-section { background: var(--bg); }
.testi-card {
  background: white; border-radius: var(--radius-lg);
  padding: 28px; height: 100%;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: #FFB800; margin-bottom: 14px; font-size: 13px; }
.testi-text { font-size: 14px; line-height: 1.7; color: var(--text-mid); font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar i { font-size: 44px; color: var(--primary); opacity: 0.3; }
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testi-author span { display: block; font-size: 12px; color: var(--green); font-weight: 500; }
.testi-author small { display: block; font-size: 11px; color: var(--text-muted); margin-top: 1px; }

/* ============ PARTNERS ============ */
.partners-section { background: white; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.partner-logo {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 16px;
  background: var(--bg); border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  text-align: center;
}
.partner-logo i { font-size: 22px; color: var(--primary); opacity: 0.5; }
.partner-logo:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.partner-logo:hover i { opacity: 1; }
.certifications-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-glow); color: var(--primary);
  font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 100px;
}

/* ============ APPOINTMENT FORM ============ */
.appointment-section { background: var(--bg); }
.appt-benefits { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.appt-benefit { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); }
.appt-benefit i { color: var(--green); }
.appt-form-card {
  background: white; border-radius: var(--radius-lg);
  padding: 40px; border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-floating-custom { position: relative; }
.form-input {
  width: 100%; padding: 16px 16px 8px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: var(--font-body);
  color: var(--text-dark); background: white;
  transition: var(--transition); outline: none;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.form-floating-custom label {
  position: absolute; top: 12px; left: 16px;
  font-size: 14px; color: var(--text-muted);
  transition: var(--transition); pointer-events: none;
}
.form-input:focus ~ label,
.form-input:not(:placeholder-shown) ~ label {
  top: 5px; font-size: 11px; color: var(--primary); font-weight: 600;
}
.form-select-custom { cursor: pointer; }
.phone-group { display: flex; gap: 8px; }
.phone-code-select {
  width: 110px; flex-shrink: 0;
  padding: 12px 8px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 13px; font-family: var(--font-body); color: var(--text-dark);
  background: white; cursor: pointer; outline: none;
}
.phone-code-select:focus { border-color: var(--primary); }
.phone-group .form-input { flex: 1; }
.phone-label { left: 128px !important; }

.btn-submit-appt {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white; border: none; border-radius: 12px;
  font-size: 16px; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 8px 25px var(--primary-glow);
}
.btn-submit-appt:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(15,61,110,0.3); }
.form-success { text-align: center; padding: 40px; }
.success-icon { font-size: 64px; color: var(--green); margin-bottom: 16px; }
.form-success h4 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }

/* ============ FAQ ============ */
.faq-section { background: white; }
.faq-accordion { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important; overflow: hidden;
}
.faq-btn {
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--text-dark); padding: 20px 24px;
  background: white !important; border: none;
  box-shadow: none !important;
}
.faq-btn:not(.collapsed) { color: var(--primary); background: var(--primary-glow) !important; }
.faq-btn::after { filter: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F3D6E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.faq-body { padding: 0 24px 20px; font-size: 14px; line-height: 1.75; color: var(--text-muted); }

/* ============ FINAL CTA ============ */
.final-cta-section {
  background: linear-gradient(145deg, #071830, #0F3D6E, #1A5E3A);
  padding: 120px 0; position: relative; overflow: hidden;
}
.cta-bg-mesh {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(103,178,111,0.12) 0%, transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(232,93,93,0.06) 0%, transparent 50%);
}
.cta-tag {
  display: inline-block; color: var(--green);
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}
.cta-heading {
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  color: white; line-height: 1.1; margin-bottom: 16px;
}
.cta-heading span { color: var(--green); }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.65); max-width: 500px; margin: 0 auto 36px; }
.cta-btn-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-cta-primary {
  background: linear-gradient(135deg, var(--green), #4CAF50);
  color: white !important; border: none;
  padding: 18px 40px; border-radius: 14px;
  font-size: 16px; font-weight: 700;
  font-family: var(--font-body);
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(103,178,111,0.4);
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(103,178,111,0.5); }
.btn-cta-outline {
  background: rgba(255,255,255,0.1); color: white !important;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 17px 40px; border-radius: 14px;
  font-size: 16px; font-weight: 600;
  font-family: var(--font-body);
  backdrop-filter: blur(10px); transition: var(--transition);
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.cta-reassurance { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cta-reassurance span { color: rgba(255,255,255,0.45); font-size: 13px; display: flex; align-items: center; gap: 6px; }
.cta-reassurance i { color: var(--green); }

/* ============ MODAL ============ */
.register-modal { border-radius: var(--radius-lg); border: none; overflow: hidden; }
.modal-header { border-bottom: 1px solid var(--border); padding: 20px 28px; }
.modal-logo { display: flex; align-items: center; gap: 10px; font-size: 16px; font-family: var(--font-head); }
.modal-logo i { font-size: 24px; color: var(--red); }
.modal-body { padding: 28px; }
.modal-body h4 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: white;
  text-decoration: none; z-index: 999;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.5); color: white; }
.wa-tooltip {
  position: absolute; right: 70px;
  background: #1EBE5C; color: white;
  font-size: 13px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  white-space: nowrap; opacity: 0;
  transition: var(--transition); pointer-events: none;
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }
.logo-img{
  height: 45px;
  width: auto;
}

.logo-text{
  line-height: 1.1;
}

.logo-main{
  font-size: 20px;
  font-weight: 700;
}

.logo-sub{
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
}
/* ============ FOOTER ============ */
.footer-logo-img{
  height: 50px;
  width: auto;
}
.leh-footer { background: #071830; }
.footer-top { padding: 72px 0 48px; }
.footer-brand {}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-logo .logo-main { color: white; }
.footer-tagline { font-size: 12px; color: var(--green); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 320px; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.07); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 15px;
  transition: var(--transition); text-decoration: none;
}
.social-links a:hover { background: var(--green); color: white; transform: translateY(-2px); }
.footer-heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: var(--green); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-contact li i { color: var(--green); margin-top: 1px; width: 14px; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-contact a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); margin: 0; }
.footer-badges { display: flex; align-items: center; gap: 16px; }
.footer-badges span { font-size: 12px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 5px; }
.footer-badges i { color: var(--green); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .hero-right { display: none; }
  .hero-left { padding: 100px 0 60px; text-align: center; }
  .hero-trust-row { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-subtext { margin: 0 auto 32px; }
  .steps-connector { display: none; }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-card.popular { transform: none; }
  .db-stats-row { flex-direction: column; }
}
@media (max-width: 767px) {
  .section-padding { padding: 64px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .appt-form-card { padding: 24px; }
  .footer-top { padding: 48px 0 32px; }
  .db-stats-row { display: none; }
  .cta-reassurance { flex-direction: column; align-items: center; gap: 10px; }
}