/* ============================================================
   JAI SRIMANNARAYANA AMBULANCE SERVICE – style.css
   Pure CSS3, no frameworks
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --primary: hsl(0, 78%, 48%);
  --primary-foreground: #fff;
  --primary-glow: hsl(0, 85%, 60%);

  --secondary: hsl(217, 89%, 32%);
  --secondary-foreground: #fff;

  --background: #fff;
  --foreground: hsl(220, 40%, 12%);

  --muted: hsl(45, 60%, 96%);
  --muted-foreground: hsl(220, 15%, 40%);

  --accent: hsl(48, 100%, 60%);
  --accent-foreground: hsl(220, 40%, 12%);

  --border: hsl(220, 20%, 88%);
  --input: hsl(220, 20%, 90%);
  --card: #fff;

  --radius: 0.75rem;

  --gradient-hero: linear-gradient(135deg, hsl(217,89%,32%) 0%, hsl(217,91%,22%) 60%, hsl(0,78%,38%) 100%);
  --gradient-emergency: linear-gradient(135deg, hsl(0,78%,48%), hsl(0,85%,60%));
  --gradient-trust: linear-gradient(135deg, hsl(217,89%,32%), hsl(217,91%,50%));
  --gradient-soft: linear-gradient(180deg, hsl(48,100%,97%) 0%, #fff 100%);

  --shadow-emergency: 0 10px 40px -10px hsl(0 78% 48% / 0.45);
  --shadow-trust: 0 10px 40px -10px hsl(217 89% 32% / 0.4);
  --shadow-card: 0 4px 20px -6px hsl(220 40% 20% / 0.12);
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  max-width: 100vw;
  line-height: 1.6;
}

img, iframe { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, .font-display {
  font-family: 'Anton', 'Inter', sans-serif;
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
  line-height: 1.05;
}

/* ── Layout Container ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Utilities ────────────────────────────────────────────── */
.bg-gradient-hero { background: var(--gradient-hero); }
.bg-gradient-emergency { background: var(--gradient-emergency); }
.bg-gradient-soft { background: var(--gradient-soft); }

.shadow-emergency { box-shadow: var(--shadow-emergency); }
.shadow-card { box-shadow: var(--shadow-card); }

/* ── Animations ───────────────────────────────────────────── */
@keyframes siren {
  0%, 100% { box-shadow: 0 0 0 0 hsl(0 78% 48% / 0.7); }
  50%       { box-shadow: 0 0 0 14px hsl(0 78% 48% / 0); }
}
.siren-pulse { animation: siren 1.6s ease-in-out infinite; }

@keyframes spin { to { transform: rotate(360deg); } }
.animate-spin { animation: spin 1s linear infinite; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.6s ease both; }

/* Scroll-reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── HEADER ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0.5rem;
}

.logo { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.logo img { height: 3.5rem; width: auto; }

.main-nav { display: none; align-items: center; gap: 1.5rem; font-size: 0.875rem; font-weight: 600; color: var(--secondary); }
.main-nav a:hover { color: var(--primary); }

.btn-call-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-emergency);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-emergency);
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.btn-call-header:hover { opacity: 0.92; }

/* Mobile hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1rem 2rem;
  gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-weight: 600; color: var(--secondary); font-size: 1rem; padding: 0.25rem 0; }
.mobile-nav a:hover { color: var(--primary); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--secondary);
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(217,89%,32%,0.85) 0%, hsl(217,89%,32%,0.4) 55%, transparent 100%);
}

.hero-inner {
  position: relative;
  padding: 2.5rem 2rem 3rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  margin-top: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  line-height: 1;
}
.hero h1 .accent { color: var(--accent); }

.hero-subtitle {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero-subtitle strong { font-weight: 700; }

.hero-badge-cta {
  display: inline-block;
  margin-top: 0.75rem;
  background: var(--primary);
  color: #fff;
  padding: 0.375rem 0.875rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-emergency);
}

.hero-btns {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-stats {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  text-align: center;
}
.stat-box {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 0.625rem 0.5rem;
}
.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--accent);
}
.stat-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
}

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; height: 3rem; }

.btn-emergency {
  background: var(--gradient-emergency);
  color: #fff;
  box-shadow: var(--shadow-emergency);
}
.btn-emergency:hover { opacity: 0.92; transform: translateY(-1px); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }

.btn-outline {
  background: #fff;
  color: var(--secondary);
  border-color: #fff;
}
.btn-outline:hover { background: #f0f0f0; transform: translateY(-1px); }

.btn-outline-secondary {
  background: #fff;
  color: var(--secondary);
  border-color: var(--border);
}
.btn-outline-secondary:hover { background: var(--muted); }

/* ── SECTION COMMONS ──────────────────────────────────────── */
section { padding: 3.5rem 0; }
@media (min-width: 768px) { section { padding: 6rem 0; } }

.section-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--primary);
}

.section-heading {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.875rem, 5vw, 3rem);
  color: var(--secondary);
  margin-top: 0.5rem;
}

.section-desc {
  color: var(--muted-foreground);
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.text-center { text-align: center; }
.section-header { max-width: 40rem; margin: 0 auto 2.5rem; }

/* ── BOOKING FORM ─────────────────────────────────────────── */
.booking-section { background: var(--gradient-soft); }
.booking-section .container { max-width: 32rem; }

.booking-form {
  background: #fff;
  border-radius: 1rem;
  border-top: 4px solid var(--primary);
  padding: 1.5rem;
  box-shadow: var(--shadow-emergency);
  width: 100%;
  max-width: 28rem;
}
.booking-form-hero { max-width: 28rem; width: 100%; }

.form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.form-icon {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-emergency);
  color: #fff;
  flex-shrink: 0;
}

.form-title { font-family: 'Anton', sans-serif; font-size: 1.75rem; color: var(--secondary); line-height: 1; }
.form-subtitle { font-size: 0.7rem; color: var(--muted-foreground); margin-top: 0.125rem; }

.form-group { margin-bottom: 0.75rem; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  background: #fff;
  color: var(--foreground);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsl(0 78% 48% / 0.1);
}
.form-input.error, .form-select.error { border-color: var(--primary); }
.form-error { font-size: 0.7rem; color: var(--primary); margin-top: 0.25rem; }

.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2rem; }

.form-textarea { resize: vertical; min-height: 4rem; }

.location-row { display: flex; gap: 0.5rem; }
.location-row .form-input { flex: 1; }
.btn-detect {
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--secondary);
  border-radius: calc(var(--radius) - 2px);
  background: #fff;
  color: var(--secondary);
  font-size: 0.875rem;
  flex-shrink: 0;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}
.btn-detect:hover { background: var(--muted); }
.btn-detect:disabled { opacity: 0.5; cursor: not-allowed; }

.gps-link {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 0.25rem;
  cursor: pointer;
}
.gps-link:hover { text-decoration: underline; }

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gradient-emergency);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  height: 3rem;
  border-radius: var(--radius);
  border: none;
  box-shadow: var(--shadow-emergency);
  transition: opacity 0.2s;
  margin-top: 0.75rem;
}
.btn-submit:hover { opacity: 0.92; }

.form-call-link {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 0.5rem;
}
.form-call-link:hover { text-decoration: underline; }

/* Toast */
.toast-container { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem; pointer-events: none; }
.toast {
  background: var(--secondary);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  pointer-events: auto;
  animation: fadeInUp 0.3s ease;
  min-width: 16rem;
  text-align: center;
}
.toast.error { background: var(--primary); }
.toast.success { background: #16a34a; }

/* ── SERVICES ─────────────────────────────────────────────── */
.services-section { background: var(--gradient-soft); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--primary);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-emergency);
}

.service-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--muted);
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }

.service-body { padding: 1.25rem; }

.service-icon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: var(--gradient-emergency);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card h3 { font-family: 'Anton', sans-serif; font-size: 1.15rem; color: var(--secondary); }
.service-card p { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; }

/* ── ABOUT ────────────────────────────────────────────────── */
.about-section { background: var(--background); }

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #fff;
}
.about-img-wrap img { width: 100%; height: auto; }

.about-text .section-heading { font-size: clamp(1.875rem, 4vw, 3rem); }

.about-desc { margin-top: 1rem; color: var(--muted-foreground); font-size: 0.95rem; line-height: 1.7; }
.about-desc strong { color: var(--secondary); }

.about-checklist {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.check-item svg { flex-shrink: 0; margin-top: 0.1rem; color: var(--primary); }
.check-item span { font-size: 0.875rem; font-weight: 600; color: var(--secondary); }

.about-btns { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-section { background: var(--gradient-soft); }

.accordion {
  background: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--primary);
  padding: 0 1.5rem;
}

.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  color: var(--secondary);
  cursor: pointer;
  transition: color 0.2s;
}
.accordion-trigger:hover { color: var(--primary); }
.accordion-trigger svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.accordion-item.open .accordion-trigger { color: var(--primary); }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }

.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.accordion-inner {
  padding-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ── WHY US ───────────────────────────────────────────────── */
.why-section { background: var(--secondary); color: #fff; }
.why-section .section-label { color: var(--accent); }
.why-section .section-heading { color: #fff; }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.why-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.15); }

.why-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: var(--accent-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card span { font-weight: 700; font-size: 1.05rem; }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-section { background: var(--background); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: 0.5rem; object-fit: contain; }
.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }

/* ── AREAS ────────────────────────────────────────────────── */
.areas-section { background: var(--muted); }

.areas-grid {
  display: grid;
  gap: 1.5rem;
}

.area-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.area-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.area-pin {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--gradient-emergency);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.area-card h3 { font-family: 'Anton', sans-serif; font-size: 1.35rem; color: var(--secondary); line-height: 1; }
.area-card p { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.area-card iframe { width: 100%; height: 14rem; border: none; }

/* ── BOOK BOTTOM ──────────────────────────────────────────── */
.book-bottom { background: var(--gradient-hero); color: #fff; }

.book-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.book-label { color: var(--accent); }
.book-heading { font-family: 'Anton', sans-serif; font-size: clamp(1.875rem, 4vw, 3rem); color: #fff; margin-top: 0.5rem; }
.book-desc { color: rgba(255,255,255,0.9); margin-top: 1rem; font-size: 1rem; }

.book-checklist { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.book-checklist li { display: flex; align-items: flex-start; gap: 0.75rem; }
.book-checklist li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

.book-btns { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ── CONTACT ──────────────────────────────────────────────── */
.contact-section { background: var(--background); }

.contact-grid {
  display: grid;
  gap: 1.25rem;
}

.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  border-top: 4px solid var(--primary);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.contact-card svg { color: var(--primary); margin-bottom: 0.75rem; }
.contact-card .card-sub { font-size: 0.8rem; color: var(--muted-foreground); }
.contact-card .card-main { font-family: 'Anton', sans-serif; font-size: 1.5rem; color: var(--secondary); }
.contact-card a { color: var(--secondary); transition: color 0.2s; }
.contact-card a:hover { color: var(--primary); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--secondary); color: #fff; padding: 3.5rem 0 1.5rem; }

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-logo img {
  height: 4rem;
  width: auto;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.footer-about {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.footer-btns { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
}

.footer-col h4 { font-family: 'Anton', sans-serif; font-size: 1.25rem; color: var(--accent); margin-bottom: 0.75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.footer-keywords { margin-bottom: 0.5rem; }
.footer-keywords strong { color: rgba(255,255,255,0.8); }
.footer-copy { text-align: center; margin-top: 1rem; }

/* ── STICKY ACTIONS ───────────────────────────────────────── */
.sticky-actions {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sticky-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.2s;
  border: none;
}
.sticky-btn:hover { transform: scale(1.1); }
.sticky-whatsapp { background: #25D366; color: #fff; }
.sticky-call { background: var(--gradient-emergency); color: #fff; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-checklist { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-label { font-size: 0.7rem; }
}

@media (min-width: 768px) {
  .main-nav { display: flex; }
  .hamburger { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid .footer-brand { grid-column: span 2; }
  .area-card iframe { height: 16rem; }
}

@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; padding: 5rem 2rem; }
  .hero-form { display: block; }
  .hero-book-mobile { display: none; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .book-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid .footer-brand { grid-column: span 1; }
  .logo img { height: 3.5rem; }
}

@media (max-width: 1023px) {
  .hero-form { display: none; }
  .hero-book-mobile { display: block; }
}

/* SVG icon sizes used inline */
.icon-sm { width: 1rem; height: 1rem; display: inline-block; vertical-align: middle; }
.icon-md { width: 1.25rem; height: 1.25rem; display: inline-block; vertical-align: middle; }
.icon-lg { width: 1.5rem; height: 1.5rem; display: inline-block; vertical-align: middle; }
.icon-xl { width: 1.75rem; height: 1.75rem; display: inline-block; vertical-align: middle; }

/* Scroll padding for sticky header */
[id] { scroll-margin-top: 5rem; }
