/*
Theme Name: New Shivay Medicose Pro
Description: Professional healthcare website theme — fully responsive, mobile-first
Author: Professional Redesign
Version: 4.0
*/

/* ════════════════════════════════════════
   CUSTOM PROPERTIES
════════════════════════════════════════ */
:root {
  --green-dark:    #0a3d2e;
  --green-mid:     #145c44;
  --green-light:   #1a7a5e;
  --green-bright:  #22c55e;
  --green-glow:    #4ade80;
  --accent-gold:   #f59e0b;
  --accent-blue:   #3b82f6;
  --white:         #ffffff;
  --off-white:     #f0fdf4;
  --gray-50:       #f9fafb;
  --gray-100:      #f3f4f6;
  --gray-200:      #e5e7eb;
  --gray-400:      #9ca3af;
  --gray-600:      #4b5563;
  --gray-800:      #1f2937;
  --gray-900:      #111827;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,0.14);
  --shadow-xl:     0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --radius-full:   9999px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary:  'Sora', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --header-h:      80px;
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ════════════════════════════════════════
   UTILITY
════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

.gradient-text {
  background: linear-gradient(135deg, var(--green-bright), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-light);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,122,94,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26,122,94,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-light);
}
.btn-outline:hover {
  background: var(--off-white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-3px); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar-right a {
  color: var(--green-glow);
  font-weight: 500;
}
.topbar-right a:hover { color: var(--white); }

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  position: relative;
  width: 50px; height: 50px;
}
.logo-img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--green-light);
  box-shadow: 0 0 0 4px rgba(26,122,94,0.12);
}
.logo-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--green-bright);
  opacity: 0;
  animation: logoPulse 2.5s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.15); opacity: 0; }
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
}
.logo-tagline {
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover {
  color: var(--green-light);
  background: var(--off-white);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-whatsapp-header {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 12px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.btn-whatsapp-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 24px 20px;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-nav.open {
  max-height: 400px;
}
.mob-link {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700, #374151);
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  display: block;
}
.mob-link:hover { color: var(--green-light); }
.mob-whatsapp {
  display: inline-flex;
  margin-top: 16px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

/* ════════════════════════════════════════
   FLOATING ELEMENTS
════════════════════════════════════════ */
.float-whatsapp {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 999;
  transition: var(--transition);
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: floatPulse 2s ease-in-out infinite;
}
@keyframes floatPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%       { transform: scale(1.35); opacity: 0; }
}

.back-to-top {
  position: fixed;
  bottom: 96px; right: 26px;
  width: 44px; height: 44px;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 998;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--green-light); }

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 40%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.25), transparent);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.2), transparent);
  bottom: 0; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(59,130,246,0.15), transparent);
  top: 40%; left: 40%;
}

.hero-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(34,197,94,0.4);
  color: var(--green-light);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
  box-shadow: 0 2px 12px rgba(34,197,94,0.1);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}
.trust-item svg { color: var(--green-light); }

/* Hero Image */
.hero-img-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}
.hero-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(10,61,46,0.2);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.hero-img-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  font-family: var(--font-primary);
  animation: heroFloat 6s ease-in-out infinite;
}
.card-top {
  top: 30px; left: -30px;
  animation-delay: -3s;
}
.card-bottom {
  bottom: 40px; right: -30px;
}
.hero-img-card .card-icon { font-size: 28px; }
.hero-img-card strong { display: block; font-size: 16px; font-weight: 700; color: var(--gray-900); }
.hero-img-card span { font-size: 12px; color: var(--gray-400); }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-dot {
  width: 6px; height: 20px;
  border-radius: 3px;
  background: var(--green-light);
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.4; }
}

/* ════════════════════════════════════════
   STATS SECTION
════════════════════════════════════════ */
.stats-section {
  padding: 0;
  margin-top: -2px;
  background: var(--white);
}
.stats-section .container {
  padding-top: 0;
  padding-bottom: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  margin: 0 24px;
  overflow: hidden;
  transform: translateY(-30px);
  box-shadow: 0 20px 60px rgba(10,61,46,0.3);
}
.stat-card {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--green-mid); }
.stat-icon { font-size: 32px; margin-bottom: 10px; }
.stat-num {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 800;
  color: var(--green-glow);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ════════════════════════════════════════
   NOTICE BAR
════════════════════════════════════════ */
.notice-bar {
  background: linear-gradient(90deg, #fef3c7, #fff7ed);
  border-top: 1px solid #fde68a;
  border-bottom: 1px solid #fde68a;
  padding: 12px 0;
}
.notice-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gray-700, #374151);
  flex-wrap: wrap;
}
.notice-tag {
  background: var(--accent-gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.notice-inner a {
  color: var(--green-light);
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
}

/* ════════════════════════════════════════
   CATEGORIES SECTION
════════════════════════════════════════ */
.categories-section { background: var(--gray-50); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--card-color, var(--green-light));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.cat-card:hover::before { transform: scaleX(1); }
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.cat-icon-wrap {
  width: 58px; height: 58px;
  background: color-mix(in srgb, var(--card-color, var(--green-light)) 12%, white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 28px;
}

.cat-card h3 {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.cat-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}
.cat-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}
.cat-footer span {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 500;
}
.cat-link {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--card-color, var(--green-light));
  transition: gap var(--transition);
}
.cat-link:hover { letter-spacing: 0.02em; }

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.how-section { background: var(--white); }

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-bright);
}
.step-num {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 900;
  color: var(--off-white);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  user-select: none;
}
.step-icon { font-size: 42px; margin-bottom: 16px; }
.step-card h3 {
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-bright), var(--accent-gold));
  align-self: center;
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -5px;
  border: 6px solid transparent;
  border-left: 10px solid var(--accent-gold);
}

.how-cta {
  text-align: center;
  margin-top: 48px;
}

/* ════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════ */
.why-section { background: var(--gray-50); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-left .section-title { text-align: left; }
.why-left > p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.75;
}

.why-features { display: flex; flex-direction: column; gap: 22px; }
.why-feat {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feat-icon {
  width: 48px; height: 48px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.why-feat h4 {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}
.why-feat p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

.why-card-stack { display: flex; flex-direction: column; gap: 18px; }
.why-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.why-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.wc-green { border-left: 4px solid var(--green-bright); background: #f0fdf4; }
.wc-blue  { border-left: 4px solid var(--accent-blue);  background: #eff6ff; }
.wc-amber { border-left: 4px solid var(--accent-gold);  background: #fffbeb; }
.wc-icon { font-size: 28px; margin-bottom: 10px; }
.why-card h4 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}
.why-card p { font-size: 14px; color: var(--gray-600); line-height: 1.6; }

/* ════════════════════════════════════════
   ABOUT SECTION
════════════════════════════════════════ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-img-frame {
  position: relative;
  max-width: 480px;
}
.about-img-frame img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(10,61,46,0.15);
}
.about-exp-badge {
  position: absolute;
  bottom: 24px; right: -20px;
  background: var(--green-dark);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.exp-num {
  display: block;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 800;
  color: var(--green-glow);
  line-height: 1;
}
.exp-text {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.about-content .section-title { text-align: left; margin-bottom: 10px; }
.about-lead {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-content > p {
  font-size: 15px;
  color: var(--gray-500, #6b7280);
  line-height: 1.75;
  margin-bottom: 28px;
}
.about-highlights { display: flex; flex-direction: column; gap: 16px; }
.hl-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}
.hl-icon { font-size: 24px; flex-shrink: 0; }
.hl-item strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}
.hl-item span { font-size: 13px; color: var(--gray-500, #6b7280); }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonials-section { background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-size: 60px;
  color: var(--gray-100);
  font-family: Georgia, serif;
  line-height: 1;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi-stars { font-size: 16px; margin-bottom: 14px; }
.testi-card > p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.testi-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}
.testi-author span { font-size: 12px; color: var(--gray-400); }

/* ════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--green-bright); background: var(--off-white); }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item h4 {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 15px;
  color: var(--gray-800);
  line-height: 1.5;
}
.contact-item a:hover { color: var(--green-light); }

.contact-map { border-radius: var(--radius-lg); overflow: hidden; }
.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #dcfce7, #bbf7d0);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--green-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-inner { text-align: center; padding: 24px; }
.map-pin { font-size: 48px; margin-bottom: 12px; }
.map-inner p { color: var(--gray-700, #374151); margin-bottom: 6px; line-height: 1.5; }
.map-btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}
.map-btn:hover { background: var(--green-light); transform: translateY(-2px); }

/* ════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content > p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.8);
}

.footer-wave {
  margin-bottom: -2px;
  line-height: 0;
}
.footer-wave svg { width: 100%; display: block; }

.footer-main { padding: 60px 0 40px; }
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}
.footer-logo h3 {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer-logo span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-brand > p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges .badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.footer-col h4 {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover {
  color: var(--green-glow);
  padding-left: 4px;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.fc-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.fc-icon { flex-shrink: 0; font-size: 16px; }
.fc-item a { color: var(--green-glow); }
.fc-item a:hover { color: var(--white); }

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.footer-whatsapp-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.footer-credit { color: rgba(255,255,255,0.35); }

/* ════════════════════════════════════════
   PRESCRIPTION MODAL
════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.92);
  transition: transform var(--transition);
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--gray-100);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  color: var(--gray-600);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--gray-200); }
.modal-icon { font-size: 52px; margin-bottom: 18px; }
.modal-box h3 {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 10px;
}
.modal-box p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 24px;
}
.modal-options { display: flex; flex-direction: column; gap: 12px; }
.modal-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.modal-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.08); }
.modal-btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gray-50);
  color: var(--gray-700, #374151);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.modal-btn-secondary:hover { background: var(--gray-100); }
.modal-note {
  font-size: 13px;
  color: var(--gray-400);
  margin: 16px 0 0;
}

/* ════════════════════════════════════════
   TABLET RESPONSIVE  (≤1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .why-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-col { max-width: 440px; margin: 0 auto; }
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-img-wrap { max-width: 400px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .stat-card:nth-child(1), .stat-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ════════════════════════════════════════
   MOBILE RESPONSIVE (≤768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 68px; }

  .topbar { display: none; }

  .main-nav { display: none; }
  .btn-whatsapp-header { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav { display: flex; }

  .hero-container { padding: 100px 20px 60px; }
  .hero-title { font-size: clamp(30px, 7vw, 42px); }
  .card-top, .card-bottom { display: none; }

  .stats-grid { margin: 0 16px; grid-template-columns: repeat(2, 1fr); }

  .categories-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; }
  .step-connector::after {
    right: -5px; top: auto; bottom: -6px;
    border: 6px solid transparent;
    border-top: 10px solid var(--accent-gold);
    border-left: none;
  }

  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .modal-box { padding: 32px 24px; }

  .about-exp-badge { right: 0; bottom: 14px; }
  .logo-tagline { display: none; }

  .section { padding: 60px 0; }
}

/* ════════════════════════════════════════
   INFRABIRD DESIGNER CREDIT
════════════════════════════════════════ */
.infrabird-credit {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 50px 0 44px;
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.25) 100%);
}
.infrabird-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.infrabird-label {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
  font-weight: 500;
}
.infrabird-name {
  display: block;
  font-family: var(--font-primary);
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, var(--green-glow) 50%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.infrabird-name:hover { opacity: 0.85; }
.infrabird-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.rajput-brand {
  color: var(--accent-gold);
  font-weight: 600;
}
.infrabird-url {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.infrabird-url:hover {
  color: var(--green-glow);
  border-color: var(--green-glow);
}

/* ════════════════════════════════════════
   SMALL MOBILE (≤480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .float-whatsapp { bottom: 18px; right: 16px; width: 52px; height: 52px; }
  .back-to-top { bottom: 80px; right: 18px; }
}
