/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: #F8FAFC;
  color: #0F172A;
  overflow-x: hidden;
  line-height: 1.6;
}

/* === CSS VARIABLES === */
:root {
  --primary: #0F766E;
  --primary-dark: #0A5955;
  --secondary: #14B8A6;
  --accent: #F59E0B;
  --bg: #F8FAFC;
  --white: #FFFFFF;
  --text: #0F172A;
  --text-muted: #64748B;
  --success: #22C55E;
  --danger: #EF4444;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(15,118,110,0.1), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 20px 48px rgba(15,118,110,0.15), 0 8px 24px rgba(0,0,0,0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.75; }
a { text-decoration: none; color: inherit; }
.text-teal { color: var(--primary); }

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === LOADER === */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo { animation: pulse 1s ease-in-out infinite; margin-bottom: 16px; }
.loader-text { color: white; font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.2); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-bar-fill { height: 100%; background: white; border-radius: 2px; animation: loadBar 1.8s ease-in-out forwards; }
@keyframes loadBar { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }

/* === FLOATING BUTTONS === */
.float-btn {
  position: fixed; z-index: 999; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: all 0.3s ease;
  right: 16px;
}
.float-btn.whatsapp { bottom: 90px; background: #25D366; color: white; }
.float-btn.emergency { bottom: 24px; background: var(--danger); color: white; animation: emergencyPulse 2s ease-in-out infinite; }
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 22px; height: 22px; }
@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(239,68,68,0); }
}

/* === NAVBAR === */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 12px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1rem; color: var(--primary); line-height: 1; }
.logo-sub { font-size: 0.6rem; color: var(--text-muted); font-weight: 500; line-height: 1.3; }
.nav-links { display: flex; list-style: none; gap: 2px; }
.nav-links a { padding: 7px 11px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; color: var(--text-muted); transition: all 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--primary); background: rgba(15,118,110,0.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-call { display: flex; align-items: center; gap: 6px; background: var(--primary); color: white; padding: 8px 16px; border-radius: 8px; font-size: 0.825rem; font-weight: 600; transition: all 0.2s; white-space: nowrap; }
.btn-call:hover { background: var(--primary-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* Mobile Menu */
.mobile-menu { display: none; background: white; border-top: 1px solid var(--border); padding: 0 20px; overflow: hidden; max-height: 0; transition: max-height 0.35s ease, padding 0.3s; }
.mobile-menu.open { max-height: 600px; padding: 16px 20px 20px; }
.mobile-menu ul { list-style: none; margin-bottom: 16px; }
.mobile-menu ul li a { display: block; padding: 13px 0; font-weight: 500; font-size: 1rem; color: var(--text); border-bottom: 1px solid var(--border); }
.mobile-menu-calls { display: flex; gap: 10px; }
.mobile-call-btn { flex: 1; display: block; text-align: center; background: var(--primary); color: white; padding: 12px 8px; border-radius: 10px; font-weight: 700; font-size: 0.9rem; }
.mobile-call-btn:last-child { background: var(--primary-dark); }

/* === SECTION TAGS & HEADERS === */
.section-tag { display: inline-block; background: rgba(15,118,110,0.1); color: var(--primary); padding: 6px 16px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; margin-bottom: 12px; letter-spacing: 0.5px; text-transform: uppercase; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header p { max-width: 540px; margin: 12px auto 0; font-size: 1rem; }

/* === BUTTONS === */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: white; padding: 13px 26px; border-radius: 12px; font-weight: 600; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 14px rgba(15,118,110,0.3); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 6px; border: 2px solid var(--primary); color: var(--primary); padding: 11px 20px; border-radius: 12px; font-weight: 600; font-size: 0.875rem; background: white; transition: all 0.3s; white-space: nowrap; }
.btn-outline:hover { background: rgba(15,118,110,0.06); transform: translateY(-2px); }
.btn-outline-alt { border-color: var(--accent); color: var(--accent); }
.btn-outline-alt:hover { background: rgba(245,158,11,0.06); }

/* === ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* === HERO === */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #F0FDFB 0%, #ECFDF5 40%, #F8FAFC 100%);
  padding: 90px 20px 60px; position: relative; overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape { position: absolute; border-radius: 50%; }
.shape-1 { width: 400px; height: 400px; top: -80px; right: -80px; background: radial-gradient(circle, rgba(20,184,166,0.12) 0%, transparent 70%); }
.shape-2 { width: 250px; height: 250px; bottom: 0; left: 0; background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%); }
.shape-3 { width: 180px; height: 180px; top: 40%; left: 40%; background: radial-gradient(circle, rgba(15,118,110,0.06) 0%, transparent 70%); }
.hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(15,118,110,0.1); color: var(--primary); padding: 7px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 600; margin-bottom: 16px; }
#hero h1 { margin-bottom: 18px; }
.hero-highlight { color: var(--primary); background: linear-gradient(135deg, #0F766E, #14B8A6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.05rem; max-width: 480px; margin-bottom: 28px; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; align-items: center; }
.hero-call-group { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge { display: flex; align-items: center; gap: 6px; background: white; border: 1px solid var(--border); padding: 7px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 500; color: var(--text); box-shadow: var(--shadow-sm); }
.badge svg { color: var(--primary); }
.hero-visual { position: relative; }
.hero-card-main { background: white; border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-lg); }
.hero-card-main svg { width: 100%; height: auto; }
.hero-stat-card { position: absolute; background: white; border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; }
.stat-1 { top: 16px; left: -16px; }
.stat-2 { top: 40%; right: -16px; }
.stat-3 { bottom: 16px; left: 50%; transform: translateX(-50%); }
.stat-icon { font-size: 1.4rem; }
.stat-num { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--primary); }
.stat-label { font-size: 0.68rem; color: var(--text-muted); }

/* === WHY CHOOSE US === */
#why-us { padding: 90px 0; background: white; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.why-card { background: var(--bg); border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); transition: all 0.3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.why-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.why-icon.teal { background: rgba(15,118,110,0.1); color: var(--primary); }
.why-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent); }
.why-icon.green { background: rgba(34,197,94,0.1); color: var(--success); }
.why-icon.red { background: rgba(239,68,68,0.1); color: var(--danger); }
.why-card h3 { margin-bottom: 6px; font-size: 1rem; }
.why-card p { font-size: 0.875rem; }

/* === SERVICES === */
#services { padding: 90px 0; background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.service-card { background: white; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); transition: all 0.35s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 12px; display: block; }
.service-card h3 { margin-bottom: 8px; font-size: 1rem; }
.service-card p { font-size: 0.875rem; line-height: 1.6; margin-bottom: 14px; }
.service-link { color: var(--primary); font-size: 0.85rem; font-weight: 600; }
.service-link:hover { text-decoration: underline; }

/* === CARE PLANS === */
#care-plans { padding: 90px 0; background: white; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 36px; }
.plan-card {
  border-radius: var(--radius-lg); border: 2px solid var(--border);
  overflow: hidden; transition: all 0.35s; position: relative;
  background: white;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--secondary); }
.plan-card.featured { border-color: var(--primary); box-shadow: 0 8px 32px rgba(15,118,110,0.2); }
.plan-card.featured:hover { box-shadow: 0 20px 56px rgba(15,118,110,0.3); }
.plan-popular-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--accent); color: white;
  font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  z-index: 2;
}
.plan-header {
  padding: 28px 28px 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
}
.plan-header.morning { background: linear-gradient(135deg, #FFF7ED 0%, #FFFBEB 100%); }
.plan-header.night   { background: linear-gradient(135deg, #EFF6FF 0%, #EDE9FE 100%); }
.plan-header.fullday { background: linear-gradient(135deg, #F0FDFB 0%, #ECFDF5 100%); }
.plan-icon { font-size: 2.6rem; line-height: 1; }
.plan-badge-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  background: rgba(255,255,255,0.8); padding: 3px 10px; border-radius: 10px; color: var(--text-muted);
}
.plan-body { padding: 20px 28px 28px; }
.plan-body h3 { margin-bottom: 4px; font-size: 1.15rem; }
.plan-time { font-size: 0.85rem; font-weight: 600; color: var(--primary); margin-bottom: 10px; }
.plan-desc { font-size: 0.875rem; margin-bottom: 18px; line-height: 1.65; }
.plan-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.plan-features li { font-size: 0.85rem; color: var(--text); display: flex; align-items: flex-start; gap: 6px; }
.plan-cta-group { display: flex; flex-direction: column; gap: 10px; }
.plan-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 11px 16px; border-radius: 10px; font-weight: 700; font-size: 0.875rem;
  transition: all 0.25s; border: 2px solid transparent;
}
.plan-btn.primary { background: var(--primary); color: white; box-shadow: 0 3px 10px rgba(15,118,110,0.25); }
.plan-btn.primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.plan-btn.outline { border-color: var(--primary); color: var(--primary); background: rgba(15,118,110,0.04); }
.plan-btn.outline:hover { background: rgba(15,118,110,0.1); transform: translateY(-1px); }
.plans-note {
  background: linear-gradient(135deg, #F0FDFB, #ECFDF5);
  border: 1px solid rgba(15,118,110,0.15); border-radius: var(--radius);
  padding: 24px 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.note-icon { font-size: 2rem; flex-shrink: 0; }
.plans-note p { flex: 1; min-width: 200px; color: var(--text); font-size: 0.95rem; }
.note-phones { display: flex; align-items: center; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.note-phones a { font-weight: 700; color: var(--primary); font-size: 0.95rem; white-space: nowrap; }
.note-phones span { color: var(--text-muted); }

/* === AMBULANCE === */
#ambulance { background: linear-gradient(135deg, #0A2341 0%, #0F2D4A 50%, #0A3D3D 100%); padding: 80px 0; position: relative; overflow: hidden; }
#ambulance::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.ambulance-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ambulance-badge { display: inline-block; background: rgba(239,68,68,0.2); color: #FCA5A5; padding: 6px 16px; border-radius: 20px; font-size: 0.83rem; font-weight: 600; margin-bottom: 18px; border: 1px solid rgba(239,68,68,0.3); }
#ambulance h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 14px; }
#ambulance h2 span { color: var(--secondary); }
.ambulance-content > p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.ambulance-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.amb-feat { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500; }
.amb-feat span { font-size: 1rem; }
.ambulance-call-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-ambulance { display: inline-flex; align-items: center; gap: 8px; background: var(--danger); color: white; padding: 13px 22px; border-radius: 12px; font-weight: 700; font-size: 0.95rem; transition: all 0.3s; box-shadow: 0 4px 16px rgba(239,68,68,0.4); animation: pulseCTA 2s ease-in-out infinite; }
.btn-ambulance:hover { background: #DC2626; transform: translateY(-2px); }
.btn-ambulance-2 { background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.3); animation: none; box-shadow: none; }
.btn-ambulance-2:hover { background: rgba(255,255,255,0.2); }
@keyframes pulseCTA { 0%, 100% { box-shadow: 0 4px 16px rgba(239,68,68,0.4); } 50% { box-shadow: 0 8px 28px rgba(239,68,68,0.6); } }
.ambulance-visual { position: relative; }
.ambulance-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 24px; }
.ambulance-card svg { width: 100%; height: auto; }
.response-time-badge { position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); background: white; border-radius: 12px; padding: 10px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); white-space: nowrap; }
.rt-pulse { width: 11px; height: 11px; border-radius: 50%; background: var(--success); animation: rtPulse 1.5s ease-in-out infinite; }
@keyframes rtPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); } 50% { box-shadow: 0 0 0 7px rgba(34,197,94,0); } }
.rt-label { font-size: 0.68rem; color: var(--text-muted); }
.rt-value { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--primary); font-size: 0.9rem; }

/* === PROCESS === */
#process { padding: 90px 0; background: white; }
.process-timeline { position: relative; display: flex; flex-direction: column; padding-left: 56px; }
.process-line { position: absolute; left: 18px; top: 20px; bottom: 20px; width: 2px; background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%); }
.process-step { position: relative; display: flex; gap: 28px; padding-bottom: 32px; }
.process-step:last-child { padding-bottom: 0; }
.step-num { position: absolute; left: -46px; top: 0; width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 0.75rem; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 4px white, 0 0 0 6px rgba(15,118,110,0.2); flex-shrink: 0; }
.step-card { background: var(--bg); border-radius: var(--radius); padding: 22px 24px; border: 1px solid var(--border); flex: 1; transition: all 0.3s; }
.step-card:hover { transform: translateX(6px); border-color: var(--secondary); box-shadow: var(--shadow); }
.step-icon { font-size: 1.8rem; margin-bottom: 8px; display: block; }
.step-card h3 { margin-bottom: 4px; font-size: 1.05rem; }
.step-card p { font-size: 0.875rem; }

/* === STATISTICS === */
#stats { padding: 70px 0; position: relative; overflow: hidden; }
.stats-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0A3D3D 100%); }
.stats-grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; text-align: center; }
.stat-item { color: white; }
.stat-big { font-family: 'Poppins', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: white; line-height: 1; display: inline; }
.stat-suffix { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--accent); display: inline; }
.stat-desc { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-top: 8px; font-weight: 500; }

/* === TESTIMONIALS === */
#testimonials { padding: 90px 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.testimonial-card { background: white; border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { font-size: 0.95rem; margin-bottom: 12px; }
.testimonial-card > p { font-style: italic; margin-bottom: 18px; color: var(--text); font-size: 0.9rem; line-height: 1.7; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.82rem; color: white; flex-shrink: 0; }
.testi-avatar.teal { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.testi-avatar.amber { background: linear-gradient(135deg, #D97706, var(--accent)); }
.testi-avatar.green { background: linear-gradient(135deg, #16A34A, var(--success)); }
.testi-name { font-weight: 600; font-size: 0.875rem; color: var(--text); }
.testi-loc { font-size: 0.78rem; color: var(--text-muted); }
.testi-service { display: inline-block; background: rgba(15,118,110,0.08); color: var(--primary); font-size: 0.68rem; padding: 2px 8px; border-radius: 10px; font-weight: 600; margin-top: 2px; }

/* === ABOUT === */
#about { padding: 90px 0; background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual { position: relative; }
.about-img-card { background: var(--bg); border-radius: var(--radius-lg); padding: 18px; border: 1px solid var(--border); }
.about-img-card svg { width: 100%; height: auto; }
.about-accent-card { position: absolute; bottom: -16px; right: -16px; background: var(--primary); color: white; border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); }
.accent-icon { font-size: 1.3rem; }
.accent-title { font-weight: 700; font-size: 0.82rem; }
.accent-text { font-size: 0.72rem; opacity: 0.8; }
.about-content .section-tag { display: inline-block; }
.about-content h2 { margin: 10px 0 14px; }
.about-lead { font-size: 1rem; color: var(--text); font-weight: 500; margin-bottom: 14px; }
.about-content > p { margin-bottom: 24px; }
.about-pillars { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }
.pillar { display: flex; align-items: flex-start; gap: 12px; }
.pillar-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.pillar-title { font-weight: 700; color: var(--text); margin-bottom: 2px; font-size: 0.875rem; }
.pillar-text { font-size: 0.85rem; }

/* === COVERAGE === */
#coverage { padding: 90px 0; background: var(--bg); }
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.coverage-card { background: white; border-radius: var(--radius); padding: 24px 18px; border: 1px solid var(--border); text-align: center; transition: all 0.3s; }
.coverage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.coverage-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; }
.coverage-card h3 { margin-bottom: 4px; font-size: 0.95rem; }
.coverage-card p { font-size: 0.8rem; margin-bottom: 10px; }
.coverage-badge { display: inline-block; background: rgba(34,197,94,0.1); color: var(--success); font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.coverage-badge.expanding { background: rgba(245,158,11,0.1); color: var(--accent); }

/* === FAQ === */
#faq { padding: 90px 0; background: white; }
.faq-container { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--text); transition: color 0.2s; gap: 14px; }
.faq-question:hover, .faq-question.active { color: var(--primary); }
.faq-arrow { transition: transform 0.3s; flex-shrink: 0; color: var(--text-muted); }
.faq-question.active .faq-arrow { transform: rotate(180deg); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer.open { max-height: 220px; padding-bottom: 16px; }
.faq-answer p { font-size: 0.9rem; }

/* === CONTACT === */
#contact { padding: 90px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; }
.contact-card { background: white; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); margin-bottom: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon.teal { background: rgba(15,118,110,0.1); color: var(--primary); }
.contact-icon.amber { background: rgba(245,158,11,0.1); color: var(--accent); }
.contact-icon.green { background: rgba(34,197,94,0.1); color: var(--success); }
.contact-icon.red { background: rgba(239,68,68,0.1); color: var(--danger); }
.ci-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; margin-bottom: 3px; }
.ci-value { display: block; font-weight: 600; color: var(--text); font-size: 0.875rem; }
.ci-value.emergency-link { color: var(--danger); }
a.ci-value:hover { color: var(--primary); }
.whatsapp-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: white; padding: 13px; border-radius: 12px; font-weight: 600; transition: all 0.3s; }
.whatsapp-btn:hover { background: #22C55E; transform: translateY(-2px); }
.contact-form-wrap { background: white; border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); }
.contact-form h3 { font-size: 1.3rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-family: 'Inter', sans-serif; font-size: 0.875rem; color: var(--text); background: var(--bg); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: white; }
.form-group textarea { resize: vertical; min-height: 96px; }
.btn-submit { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--primary); color: white; padding: 14px; border: none; border-radius: 12px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 14px rgba(15,118,110,0.3); }
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); }
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 3.5rem; margin-bottom: 14px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { margin-bottom: 22px; }

/* === FOOTER === */
#footer { background: #0A1628; color: white; }
.footer-top { padding: 60px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-main { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1rem; color: var(--secondary); line-height: 1; }
.footer-logo-sub { font-size: 0.6rem; color: rgba(255,255,255,0.5); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7; margin-bottom: 18px; }
.social-links { display: flex; gap: 8px; }
.social-link { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.2s; }
.social-link:hover { background: var(--primary); color: white; transform: translateY(-2px); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 14px; font-size: 0.9rem; color: white; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--secondary); }
.footer-contact { display: flex; flex-direction: column; gap: 9px; }
.fc-item { color: rgba(255,255,255,0.55); font-size: 0.85rem; display: flex; align-items: flex-start; gap: 6px; flex-wrap: wrap; }
.fc-item a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.fc-item a:hover { color: var(--secondary); }
.emergency-fc { color: #FCA5A5 !important; }
.emergency-fc a { color: #FCA5A5 !important; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { color: rgba(255,255,255,0.4); font-size: 0.8rem; transition: color 0.2s; }
.footer-legal a:hover { color: var(--secondary); }

/* ====================================================
   RESPONSIVE — TABLET (max 1024px)
==================================================== */
@media (max-width: 1024px) {
  .nav-links { gap: 0; }
  .nav-links a { padding: 7px 9px; font-size: 0.8rem; }

  .hero-container { gap: 32px; }

  .plans-grid { grid-template-columns: 1fr 1fr; }
  .plan-card:nth-child(3) { grid-column: span 2; }
  .plan-card.featured .plan-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
  .plan-card.featured .plan-body h3,
  .plan-card.featured .plan-time,
  .plan-card.featured .plan-desc { grid-column: span 2; }

  .ambulance-container { gap: 36px; }
  .about-grid { gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(5, 1fr); gap: 12px; }
}

/* ====================================================
   RESPONSIVE — MOBILE (max 768px)
==================================================== */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .btn-call { font-size: 0; padding: 9px; border-radius: 9px; }
  .btn-call svg { margin: 0; }
  .btn-call::after { content: ''; }

  /* Hero */
  #hero { padding: 80px 16px 50px; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; max-width: 340px; margin: 0 auto; }
  .hero-stat-card { display: none; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn-primary { justify-content: center; }
  .hero-call-group { flex-direction: row; }
  .hero-call-group .btn-outline { flex: 1; justify-content: center; font-size: 0.8rem; padding: 10px 10px; }
  .trust-badges { gap: 7px; }
  .badge { font-size: 0.72rem; padding: 6px 10px; }

  /* Sections */
  #why-us, #services, #care-plans, #process, #testimonials, #about, #coverage, #faq, #contact { padding: 64px 0; }
  #stats { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header p { font-size: 0.9rem; }

  /* Why */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card { padding: 18px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .service-card { padding: 18px; }
  .service-icon { font-size: 1.8rem; }

  /* Care Plans */
  .plans-grid { grid-template-columns: 1fr; gap: 18px; }
  .plan-card:nth-child(3) { grid-column: auto; }
  .plan-card.featured .plan-body { display: block; }
  .plan-header { padding: 22px 20px 14px; }
  .plan-body { padding: 16px 20px 22px; }
  .plan-cta-group { flex-direction: row; }
  .plan-btn { flex: 1; font-size: 0.8rem; padding: 10px 10px; }
  .plans-note { flex-direction: column; text-align: center; }
  .note-phones { justify-content: center; }

  /* Ambulance */
  #ambulance { padding: 60px 0; }
  .ambulance-container { grid-template-columns: 1fr; gap: 0; }
  .ambulance-visual { display: none; }
  .ambulance-call-group { flex-direction: column; gap: 10px; }
  .btn-ambulance, .btn-ambulance-2 { justify-content: center; text-align: center; }
  .ambulance-features { grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Process */
  .process-timeline { padding-left: 44px; }
  .step-num { left: -38px; width: 32px; height: 32px; font-size: 0.7rem; }
  .step-card { padding: 16px 18px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-item:nth-child(3) { grid-column: span 2; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-accent-card { position: static; display: inline-flex; margin-top: 12px; }

  /* Coverage */
  .coverage-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .coverage-card { padding: 20px 14px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 22px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 12px; }
}

/* ====================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
==================================================== */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  #hero { padding: 76px 14px 44px; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { grid-column: span 2; }

  .hero-call-group { flex-direction: column; }
  .hero-call-group .btn-outline { justify-content: center; }

  .plan-cta-group { flex-direction: column; }
  .plan-btn { width: 100%; }

  .ambulance-features { grid-template-columns: 1fr; }

  .trust-badges { flex-direction: column; align-items: flex-start; }

  .mobile-menu-calls { flex-direction: column; }

  .footer-legal { flex-direction: column; gap: 8px; }
}
