/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Tokens */
:root {
  --brand: #10b981;
  --brand-600: #059669;
  --text: #0f172a;
  --muted: #475569;
  --bg-soft: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --gradient: radial-gradient(1200px 400px at 50% -30%, rgba(16,185,129,0.12), transparent), linear-gradient(180deg, #ffffff, #f8fafc 60%);
  --accent-gradient: linear-gradient(135deg, #10b981, #0ea5e9);
  --accent-gradient-hover: linear-gradient(135deg, #34d399, #22c1ee);
}

/* Layout */
.container { width: min(1100px, 92%); margin: 0 auto; }

/* Scroll progress bar */
.scroll-progress { position: fixed; left: 0; top: 0; height: 3px; width: 0%; background: linear-gradient(90deg, #10b981, #0ea5e9); z-index: 100; box-shadow: 0 2px 10px rgba(14,165,233,.35); transition: width .12s linear; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: saturate(140%) blur(6px);
  background: rgba(255,255,255,0.86);
  border-bottom: 1px solid rgba(226,232,240,0.7);
  z-index: 10;
}
/* Elevation when page is scrolled */
.site-header.scrolled { background: rgba(255,255,255,0.96); border-bottom-color: var(--border); box-shadow: 0 6px 18px rgba(2,6,23,0.06); }
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: linear-gradient(90deg, rgba(16,185,129,0) 0%, rgba(16,185,129,.35) 20%, rgba(14,165,233,.35) 80%, rgba(14,165,233,0) 100%); opacity: .0; transition: opacity .25s ease; pointer-events: none; }
.site-header.scrolled::after { opacity: 1; }
.site-header .container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px; padding: 14px 0; }
.logo { font-weight: 800; letter-spacing: 0.2px; color: var(--text); text-decoration: none; display: inline-flex; align-items: center; gap: 10px; }
.logo img { height: 36px; width: auto; object-fit: contain; border-radius: 0; display: inline-block; box-shadow: none; background: transparent; }
.logo span { font-size: 20px; }
.nav { list-style: none; display: flex; gap: 18px; margin: 0; padding: 0; min-height: 1px; }
.nav a { color: #334155; text-decoration: none; font-weight: 600; position: relative; }
.nav a::after { content: ""; position: absolute; left: 8px; right: 8px; bottom: -8px; height: 2px; background: var(--accent-gradient); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; border-radius: 2px; }
.nav a:hover { color: var(--text); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; gap: 8px; }

/* Mobile menu button */
.menu-toggle { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border); background: #ffffff; align-items: center; justify-content: center; gap: 3px; padding: 0 10px; cursor: pointer; }
.menu-bar { display: block; width: 18px; height: 2px; background: #0f172a; border-radius: 2px; box-shadow: 0 6px 12px rgba(2,6,23,.06); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border-radius: 12px; font-weight: 600; text-decoration: none; transition: transform .08s ease; }
/* Compact button variant for hero CTA */
.btn-compact { padding: 10px 14px; font-size: 15px; border-radius: 10px; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(16,185,129,0.35); border: 0; }
.btn-primary:hover { background: var(--brand-600); box-shadow: 0 10px 26px rgba(16,185,129,0.35), 0 6px 18px rgba(16,185,129,0.28); transform: translateY(-1px); }
.btn-primary { isolation: isolate; }
.btn-primary::after { content: ""; position: absolute; inset: -8px; z-index: -1; border-radius: 16px; background: radial-gradient(120px 40px at 10% -10%, rgba(16,185,129,.25), transparent 60%), radial-gradient(120px 40px at 110% 120%, rgba(14,165,233,.2), transparent 60%); opacity: 0; transition: opacity .25s ease; }
.btn-primary:hover::after { opacity: 1; }
/* Force solid green for Login in header */
.btn-login { background: #10b981 !important; }
.btn-login:hover { background: #059669 !important; }
.btn-login, .btn-login:hover { box-shadow: none !important; }
.hero .btn-primary, .hero .btn-primary:hover { box-shadow: none !important; }
/* Remove glow backdrop on these two CTAs */
.btn-login::before, .btn-login::after,
.hero .btn-primary::before, .hero .btn-primary::after { content: none !important; }
.btn-primary:focus-visible { outline: 3px solid rgba(14,165,233,0.35); outline-offset: 2px; }
.btn-secondary { background: #eef2ff; color: #1e293b; }
.btn-ghost { color: var(--text); padding: 8px 12px; }
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: ""; position: absolute; inset: 0; transform: translateX(-120%);
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
}
.btn-shine:hover::after { transform: translateX(120%); transition: transform .8s ease; }
/* Premium hover glow for all prominent buttons */
.btn-primary,
.btn-secondary { position: relative; }
.btn-primary::before { content: ""; position: absolute; inset: -2px; border-radius: 14px; background: radial-gradient(120px 40px at 10% 0%, rgba(255,255,255,0.35), transparent 60%); opacity: 0; transition: opacity .25s ease; pointer-events: none; }
.btn-primary:hover::before { opacity: 1; }

/* Hero */
.hero { background: var(--gradient); padding: 84px 0 72px; }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(800px 200px at 40% -10%, rgba(14,165,233,0.15), transparent 60%), radial-gradient(800px 200px at 80% -20%, rgba(16,185,129,0.12), transparent 60%); opacity: .7; }
.hero { position: relative; overflow: hidden; }
.eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--brand-600); font-weight: 700; margin: 0 0 10px; }
.hero h1 { font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; font-size: clamp(38px, 6.4vw, 64px); line-height: 1.05; margin: 0 0 14px; }
.hero .accent { color: var(--brand); }
.hero .accent { background: none; -webkit-background-clip: initial; background-clip: initial; color: var(--brand); }
.hero .lead { font-size: 18px; color: var(--muted); margin: 0 0 22px; max-width: 60ch; }
.hero .actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 26px; }
.hero-grid.single { grid-template-columns: 1fr; }
.stats { display: flex; gap: 20px; margin: 18px 0 0; padding: 0; list-style: none; }
.stats li { display: grid; gap: 2px; }
.stats strong { font-size: 22px; }
.stats span { font-size: 12px; color: var(--muted); }

/* Removed healthcare illustration styles (no longer used) */
/* Floating animation */
.float { animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }

/* Announcement pill */
.announcement { margin-bottom: 10px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: 999px; background: rgba(16,185,129,0.12); color: #065f46; border: 1px solid rgba(16,185,129,0.25); font-weight: 700; }
.badge.blue { background: rgba(14,165,233,0.12); color: #075985; border-color: rgba(14,165,233,0.25); }
.clock { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 999px; background: rgba(16,185,129,0.18); color: #065f46; font-size: 13px; }

/* Services */
.services { padding: 72px 0; background: var(--bg-soft); }
.services h2, .testimonials h2 { font-size: 28px; margin: 0 0 24px; }
.section-sub { color: var(--muted); margin: -8px 0 24px; }
.services h2, .services .section-sub { text-align: center; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why { padding: 72px 0; background: #fff; }
.why h2 { text-align: center; font-size: 30px; }
.why h2::after { content: ""; display: block; width: 120px; height: 4px; background: var(--brand); border-radius: 999px; margin: 8px auto 0; }
.why .section-sub { text-align: center; }
.why .card.big { background: linear-gradient(180deg, #ffffff, #f8fafc); border-color: rgba(16,185,129,0.25); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.card.big { padding: 22px; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.card:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(2,6,23,0.12); }
.services .card { background: linear-gradient(180deg, #ffffff, #f8fafc); border-color: rgba(14,165,233,0.18); position: relative; overflow: hidden; }
.services .card::after { content: ""; position: absolute; inset: -1px; background: radial-gradient(400px 200px at 0% -10%, rgba(16,185,129,0.18), transparent 40%), radial-gradient(400px 200px at 120% 120%, rgba(16,185,129,0.16), transparent 40%); z-index: 0; pointer-events: none; }
.services .card > * { position: relative; z-index: 1; }
.services .card:hover { border-color: rgba(14,165,233,0.35); box-shadow: 0 18px 42px rgba(2,6,23,0.14); transform: translateY(-4px); }
.services .icon { background: #10b981; color: #ffffff; transition: transform .2s ease; }
.services .card:hover .icon { transform: translateY(-2px) scale(1.06); }
.icon { width: 44px; height: 44px; display: grid; place-items: center; font-size: 22px; background: #10b981; color: #ffffff; border-radius: 12px; }
.card h3 { margin: 12px 0 6px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); }

/* Testimonials */
.testimonials { padding: 72px 0; background: linear-gradient(180deg, #f1f7ff, #f8fbff); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
blockquote { margin: 0; padding: 20px; background: linear-gradient(180deg, #ffffff, #fbfdff); border: 1px solid rgba(14,165,233,0.22); border-radius: 16px; box-shadow: 0 10px 28px rgba(2,6,23,0.08); color: var(--muted); position: relative; overflow: hidden; }
blockquote::after { content: ""; position: absolute; inset: 0; background: radial-gradient(300px 140px at 120% -20%, rgba(14,165,233,0.14), transparent 50%); pointer-events: none; }
blockquote:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(2,6,23,0.12); }
blockquote cite { display: block; margin-top: 10px; color: var(--text); font-weight: 600; }
.stars { color: #10b981; letter-spacing: 2px; margin-bottom: 8px; text-shadow: 0 2px 6px rgba(16,185,129,0.25); }

/* Impact metrics */
.impact { padding: 56px 0; background: #ffffff; }
.impact .metric { position: relative; overflow: hidden; }
.impact .metric::before { content: ""; position: absolute; inset: -1px; background: radial-gradient(350px 140px at 0% 0%, rgba(16,185,129,0.16), transparent 60%); pointer-events: none; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.impact-grid.two { grid-template-columns: repeat(2, 1fr); }
.metric { background: linear-gradient(180deg, #ffffff, #fbfdff); border: 1px solid rgba(14,165,233,0.18); border-radius: 16px; padding: 18px; box-shadow: var(--shadow); text-align: center; }
.metric-value { font-family: 'Plus Jakarta Sans', 'Inter', system-ui; font-weight: 800; font-size: clamp(28px, 5vw, 44px); color: var(--brand); }
.metric-label { color: #475569; font-weight: 600; margin-top: 4px; }

/* How it works */
.how { padding: 64px 0; background: #fff; }
.how h2 { text-align: center; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li { display: grid; grid-template-columns: 34px 1fr; align-items: start; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 14px; box-shadow: var(--shadow); }
.steps h3 { margin: 2px 0 4px; font-size: 18px; }
.steps p { margin: 0; color: var(--muted); }
.num { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 10px; background: #e2e8f0; font-weight: 800; color: #0f172a; }

/* FAQ */
.faq { padding: 64px 0; background: var(--bg-soft); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.faq details { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; font-weight: 700; }
.faq p { margin: 10px 0 0; color: var(--muted); }

/* Coverage */
.coverage { padding: 64px 0; background: #fff; }
.chips { list-style: none; padding: 0; margin: 0 0 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.chip { background: rgba(14,165,233,0.12); color: #075985; border: 1px solid rgba(14,165,233,0.25); border-radius: 999px; padding: 8px 12px; font-weight: 700; }
.chip.live { background: rgba(16,185,129,0.14); color: #065f46; border-color: rgba(16,185,129,0.35); }
.chip.soon { opacity: .75; }
.pincode { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.pincode input { flex: 1 1 220px; padding: 12px 12px; border-radius: 12px; border: 1px solid var(--border); font: inherit; }
.pincode-result { color: #075985; font-weight: 700; }

/* Contact */
.contact { padding: 64px 0; background: var(--bg-soft); }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 16px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid label { display: grid; gap: 6px; }
.form-grid .wide { grid-column: 1 / -1; }
.contact-form input, .contact-form textarea { padding: 12px; border: 1px solid var(--border); border-radius: 12px; font: inherit; }
.contact-form textarea { resize: vertical; }
.form-actions { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.form-note { color: var(--muted); }
.form-success { margin-top: 10px; color: #065f46; background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.25); padding: 10px 12px; border-radius: 12px; font-weight: 700; }
.form-error { margin-top: 10px; color: #7f1d1d; background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.25); padding: 10px 12px; border-radius: 12px; font-weight: 700; }

/* Footer */
.site-footer { padding: 44px 0 110px; border-top: 1px solid var(--border); background: linear-gradient(180deg, #0b1f33, #0a2540); color: #e2e8f0; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: 24px; align-items: start; }
.footer-top .footer-brand, .footer-links > div { padding: 6px 0; }
.site-footer .logo span { color: #ffffff; }
.footer-brand p { color: #cbd5e1; margin: 8px 0 0; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(120px, 1fr)); gap: 16px; }
.footer-links h4 { margin: 0 0 10px; font-size: 14px; color: #e2e8f0; }
.footer-links a { display: block; color: #cbd5e1; text-decoration: none; padding: 8px 0; overflow-wrap: anywhere; }
.footer-links a:hover { color: #ffffff; }
.social { display: flex; gap: 10px; }
.social a { width: 36px; height: 36px; border-radius: 10px; display: inline-grid; place-items: center; background: rgba(255,255,255,0.08); color: #e2e8f0; }
.social a:hover { background: rgba(255,255,255,0.16); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.14); color: #cbd5e1; }
.footer-bottom .legal-links .dot { opacity: .5; }
.legal-links { display: flex; align-items: center; gap: 8px; }
.legal-links a { color: #cbd5e1; text-decoration: none; }
.legal-links a:hover { color: #ffffff; }
.footer-copy { color: #cbd5e1; }

/* Sticky CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 14px; transform: translateY(120%); transition: transform .25s ease, opacity .25s ease; opacity: 0; z-index: 50; }
.sticky-cta.show { transform: translateY(0%); opacity: 1; }
.sticky-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #0f172a; color: white; padding: 12px 14px; border-radius: 14px; box-shadow: var(--shadow); width: min(720px, 92%); }
.banner-text { margin-right: 8px; }
.banner-actions { display: flex; gap: 10px; align-items: center; }
.banner-close { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.25); width: 36px; height: 36px; border-radius: 10px; cursor: pointer; }
.sticky-cta a.btn-primary { background: var(--brand); box-shadow: none; }
/* Default button labels */
.cta-btn .label-full { display: inline; }
.cta-btn .label-short { display: none; }

@media (max-width: 520px) {
  /* Always keep short label on phones, single line */
  .cta-btn .label-full { display: none; }
  .cta-btn .label-short { display: inline; text-transform: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .grid.three { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-copy { text-align: left; }
  .hero .actions { gap: 10px; }
  /* Collapse nav into a menu */
  .menu-toggle { display: inline-flex; }
  nav[aria-label="Primary"] { position: absolute; left: 0; right: 0; top: 100%; background: rgba(255,255,255,0.98); border-bottom: 1px solid var(--border); transform-origin: top; transform: scaleY(0); transition: transform .2s ease; }
  nav[aria-label="Primary"].open { transform: scaleY(1); }
  .nav { padding: 10px 16px; flex-direction: column; gap: 10px; }
}

@media (max-width: 520px) {
  .hero { padding: 44px 0 22px; }
  .site-footer { padding-bottom: 92px; }
  .faq-grid { grid-template-columns: 1fr; }
  /* Ensure comfortable mobile layout */
  .grid { grid-template-columns: 1fr; }
  .nav { flex-wrap: wrap; gap: 12px; }
  .sticky-cta .container { flex-direction: row; align-items: center; gap: 10px; padding: 10px 12px; }
  .banner-text { font-size: 13px; line-height: 1.3; margin: 0; flex: 1 1 auto; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .banner-actions { width: auto; justify-content: flex-end; gap: 8px; }
.sticky-cta a.btn-primary { padding: 10px 14px; font-size: 14px; border-radius: 10px; box-shadow: none; white-space: nowrap; }
  .banner-close { display: none; }
  /* Compact CTA button text handling */
  .cta-btn .label-full { display: none; }
  .cta-btn .label-short { display: inline; }
  /* Slightly smaller brand on phones */
  .logo img { width: auto; height: 32px; border-radius: 0; box-shadow: none; background: transparent; }
  .logo span { font-size: 18px; }
  /* Tighten gap before impact section */
  .impact { padding-top: 28px; }
  .stats { flex-wrap: wrap; gap: 14px; }
  .site-header .container { grid-template-columns: auto 1fr auto; row-gap: 6px; }
  .site-header nav { grid-column: 1 / -1; grid-row: 2; }
  .site-header .header-cta { grid-column: 3; grid-row: 1; justify-self: end; }
  .site-header .btn { padding: 8px 12px; border-radius: 10px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 44px); }
  .hero-br { display: none; }
  .hero .lead { font-size: 15px; }
  /* Extra compact CTA on phones */
  .btn-compact { padding: 8px 12px; font-size: 14px; border-radius: 10px; }
  .card { padding: 16px; }
  .card.big { padding: 18px; }
  .badge { width: 100%; justify-content: center; }
  .med-svg { width: 100%; }
  .med-chip { position: static; display: inline-flex; margin: 8px 8px 0 0; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-links h4 { margin-top: 12px; }
  .footer-bottom { gap: 12px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .metric { padding: 14px; }
  .impact .metric-value { font-size: clamp(22px, 7.2vw, 32px); }
  .pincode { gap: 8px; }
  .pincode input { flex-basis: 160px; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(14px); }
.reveal.show { opacity: 1; transform: translateY(0); transition: opacity .5s ease, transform .5s ease; }

/* WhatsApp and Call Buttons */
.btn-whatsapp { 
  background: #25D366; 
  color: #fff; 
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35); 
  border: 0; 
}
.btn-whatsapp:hover { 
  background: #22c55e; 
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35), 0 6px 18px rgba(37, 211, 102, 0.28); 
  transform: translateY(-1px); 
}

/* Make hero "Book Instant on WhatsApp" button red */
.hero .btn-whatsapp {
  background: #ef4444;
  color: #fff;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}
.hero .btn-whatsapp:hover {
  background: #dc2626;
  box-shadow: 0 10px 26px rgba(239, 68, 68, 0.35), 0 6px 18px rgba(239, 68, 68, 0.28);
}

.btn-call { 
  background: #ef4444; 
  color: #fff; 
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35); 
  border: 0; 
}
.btn-call:hover { 
  background: #dc2626; 
  box-shadow: 0 10px 26px rgba(239, 68, 68, 0.35), 0 6px 18px rgba(239, 68, 68, 0.28); 
  transform: translateY(-1px); 
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 100000;
  animation: float 3s ease-in-out infinite;
  display: block !important;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Mobile responsive for floating button */
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 120px;
    right: 16px;
    z-index: 9999;
    display: block !important;
    /* Avoid mobile Safari quirks with transformed fixed elements */
    animation: none;
  }
  
  .floating-whatsapp a {
    padding: 12px 16px;
    font-size: 13px;
    min-width: 50px;
    min-height: 50px;
    justify-content: center;
  }
  
  .floating-whatsapp span {
    display: none;
  }
  
  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 520px) {
  .floating-whatsapp {
    bottom: 100px;
    right: 12px;
    z-index: 9999;
    display: block !important;
    /* Avoid mobile Safari quirks with transformed fixed elements */
    animation: none;
  }
  
  .floating-whatsapp a {
    padding: 12px;
    font-size: 12px;
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    justify-content: center;
  }
  
  .floating-whatsapp span {
    display: none;
  }
  
  .floating-whatsapp svg {
    width: 22px;
    height: 22px;
  }
}

/* Respect iOS safe-area to ensure visibility above system bars */
@supports (bottom: env(safe-area-inset-bottom)) {
  .floating-whatsapp {
    bottom: calc(100px + env(safe-area-inset-bottom));
  }
  @media (max-width: 768px) {
    .floating-whatsapp { bottom: calc(120px + env(safe-area-inset-bottom)); }
  }
  @media (max-width: 520px) {
    .floating-whatsapp { bottom: calc(100px + env(safe-area-inset-bottom)); }
  }
}


