@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  --sage: #3d7a6b;
  --sage-light: #5a9e8d;
  --sage-dark: #2d5c50;
  --sage-wash: #eef6f3;
  --sage-mist: #f4faf8;
  --cream: #fdfaf7;
  --cream-dark: #f5efe7;
  --cream-warm: #faf3eb;
  --charcoal: #1e3028;
  --charcoal-light: #3a5244;
  --text-muted: #7a9088;
  --border: rgba(61,122,107,0.13);
  --border-warm: rgba(61,122,107,0.22);
  --shadow: 0 2px 20px rgba(30,48,40,0.07);
  --shadow-hover: 0 10px 36px rgba(30,48,40,0.13);
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.75;
  font-weight: 400;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  font-weight: 500;
  color: var(--charcoal);
}
h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 400; }
h4 { font-size: 1.05rem; }
p  { color: var(--charcoal-light); font-size: 0.975rem; line-height: 1.85; }
a  { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── LAYOUT ─────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

/* ── ANNOUNCEMENT BAR ───────────────────────── */
.announcement-bar {
  background: var(--sage);
  padding: 0.6rem 0;
  position: relative;
  z-index: 110;
}

.announcement-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  flex-wrap: wrap;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(253,250,247,0.88);
  white-space: nowrap;
}

.announcement-item a {
  color: #fff;
  font-weight: 600;
  transition: opacity 0.2s;
}
.announcement-item a:hover { opacity: 0.8; text-decoration: underline; }

.announcement-item [data-lucide] {
  width: 13px; height: 13px;
  color: rgba(253,250,247,0.65);
  flex-shrink: 0;
}

.announcement-divider {
  width: 1px; height: 14px;
  background: rgba(253,250,247,0.22);
}

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,250,247,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(30,48,40,0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo { display: flex; align-items: center; }

.nav-logo-img { height: 46px; width: auto; display: block; }

.footer-logo-img {
  height: 52px; width: auto; display: block;
  margin-bottom: 1rem;
  background: var(--cream);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
}

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }

.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--charcoal); letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:not(.btn-primary):not(.btn-whatsapp-nav):hover { color: var(--sage); }
.nav-links a.active { color: var(--sage); }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--sage); color: var(--cream) !important;
  padding: 0.65rem 1.5rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 2px 10px rgba(61,122,107,0.2);
}
.btn-primary:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(61,122,107,0.32);
}

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--sage);
  padding: 0.65rem 1.5rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1.5px solid var(--sage);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif;
}
.btn-secondary:hover { background: var(--sage); color: var(--cream); transform: translateY(-1px); }

.btn-lg { padding: 0.9rem 2.1rem; font-size: 0.975rem; }

/* ── MOBILE MENU ─────────────────────────────── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--charcoal); padding: 0.25rem; }

/* ── HERO ────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, #2a4a38 0%, #1e3028 45%, #243d30 100%);
  color: var(--cream);
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(6rem, 13vw, 10rem);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 75% 40%, rgba(61,122,107,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 5% 85%, rgba(90,158,141,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 70px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 700px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(90,158,141,0.9);
  margin-bottom: 1.5rem;
  background: rgba(61,122,107,0.15);
  padding: 0.35rem 0.85rem; border-radius: 2rem;
  border: 1px solid rgba(61,122,107,0.25);
}
.hero h1 { color: #fff; margin-bottom: 1.5rem; font-weight: 300; font-style: italic; letter-spacing: -0.01em; line-height: 1.1; }
.hero h1 em { font-style: normal; font-weight: 500; color: #fff; }
.hero p { color: rgba(253,250,247,0.72); font-size: 1rem; max-width: 560px; margin-bottom: 2.5rem; line-height: 1.85; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: var(--cream-warm);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: clamp(2rem, 5vw, 5rem); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.83rem; font-weight: 600; color: var(--charcoal); letter-spacing: 0.02em; }
.trust-item [data-lucide] { color: var(--sage); width: 17px; height: 17px; flex-shrink: 0; }
.trust-divider { width: 1px; height: 18px; background: var(--border-warm); }

/* ── SECTION LABEL ───────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 0.9rem;
}
.section-label::before { content: ''; width: 18px; height: 1.5px; background: var(--sage); border-radius: 2px; }

/* ── WHY CHOOSE US ───────────────────────────── */
.why-section { background: var(--cream); }
.why-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }

.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }

.why-card {
  background: var(--sage-mist);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.2s;
}
.why-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); border-color: var(--border-warm); }
.why-card-icon { width: 46px; height: 46px; border-radius: var(--radius); background: rgba(61,122,107,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; color: var(--sage); }
.why-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }

/* ── CTA BAND ─────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  color: var(--cream); padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; position: relative; }
.cta-band p { color: rgba(253,250,247,0.8); margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; position: relative; }

/* ── PAGE HEROES ─────────────────────────────── */
.services-hero, .page-hero {
  background: linear-gradient(150deg, #2a4a38 0%, #1e3028 60%, #243d30 100%);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(4.5rem, 9vw, 6.5rem);
  text-align: center; position: relative; overflow: hidden;
}
.services-hero::before, .page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(61,122,107,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.services-hero::after, .page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 55px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none;
}
.services-hero h1, .page-hero h1 { color: #fff; position: relative; }
.services-hero p, .page-hero p { color: rgba(253,250,247,0.72); position: relative; max-width: 540px; margin: 1rem auto 0; }

/* ── SERVICE CARDS ───────────────────────────── */
.service-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.5rem; margin-top: 1rem; }
.service-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: box-shadow 0.25s, transform 0.2s; }
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--cream-dark); }
.service-card-body { padding: 1.75rem; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }

/* ── INCLUDES ────────────────────────────────── */
.includes-section { background: var(--sage-wash); }
.includes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.include-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: box-shadow 0.2s; }
.include-card:hover { box-shadow: var(--shadow); }
.include-card-icon { width: 42px; height: 42px; border-radius: var(--radius); background: rgba(61,122,107,0.1); display: flex; align-items: center; justify-content: center; color: var(--sage); margin-bottom: 1rem; }
.include-card h4 { margin-bottom: 0.4rem; }

/* ── ABOUT ───────────────────────────────────── */
.about-intro { background: var(--cream); }
.about-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.expertise-list { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-top: 1.5rem; }
.expertise-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; color: var(--charcoal-light); background: var(--sage-mist); padding: 0.7rem 1rem; border-radius: var(--radius); border: 1px solid var(--border); }
.expertise-list li [data-lucide] { color: var(--sage); width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }

.credentials-box { background: linear-gradient(145deg, #243d30, #1e3028); border-radius: var(--radius-lg); padding: 2.5rem; color: var(--cream); box-shadow: 0 8px 32px rgba(30,48,40,0.18); }
.credentials-box h3 { color: #fff; margin-bottom: 1.25rem; }
.credentials-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.credentials-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(253,250,247,0.82); padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.credentials-list li:last-child { border-bottom: none; padding-bottom: 0; }
.credentials-list li [data-lucide] { color: var(--sage-light); width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }

.commitment-section { background: var(--sage-wash); }
.commitment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.commitment-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: box-shadow 0.2s, transform 0.2s; }
.commitment-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.commitment-card-icon { width: 44px; height: 44px; border-radius: var(--radius); background: rgba(61,122,107,0.1); display: flex; align-items: center; justify-content: center; color: var(--sage); margin-bottom: 1.1rem; }
.commitment-card h4 { margin-bottom: 0.4rem; }

.coverage-section { background: var(--cream-warm); }
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.coverage-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.coverage-tag { background: rgba(61,122,107,0.1); color: var(--sage-dark); padding: 0.4rem 1rem; border-radius: 2rem; font-size: 0.8rem; font-weight: 500; border: 1px solid rgba(61,122,107,0.2); transition: background 0.2s; }
.coverage-tag:hover { background: rgba(61,122,107,0.18); }
.coverage-features { display: flex; flex-direction: column; gap: 1.1rem; }
.coverage-feature { display: flex; gap: 1rem; align-items: flex-start; background: var(--cream); padding: 1.1rem 1.25rem; border-radius: var(--radius-lg); border: 1.5px solid var(--border); transition: box-shadow 0.2s; }
.coverage-feature:hover { box-shadow: var(--shadow); }
.coverage-feature-icon { width: 38px; height: 38px; border-radius: var(--radius); background: rgba(61,122,107,0.1); display: flex; align-items: center; justify-content: center; color: var(--sage); flex-shrink: 0; }
.coverage-feature-text h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.coverage-feature-text p { font-size: 0.85rem; }

/* ── CONTACT PAGE ──────────────────────────────── */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.contact-card { background: var(--sage-mist); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; gap: 1rem; align-items: flex-start; transition: box-shadow 0.2s, transform 0.2s; }
.contact-card:hover { box-shadow: var(--shadow); transform: translateY(-1px); }
.contact-card-icon { width: 42px; height: 42px; border-radius: var(--radius); background: rgba(61,122,107,0.12); display: flex; align-items: center; justify-content: center; color: var(--sage); flex-shrink: 0; }
.contact-card-body h4 { margin-bottom: 0.2rem; }
.contact-card-body p { font-size: 0.875rem; }
.contact-card-body a { color: var(--sage); font-weight: 600; }
.contact-card-body a:hover { text-decoration: underline; }

.hours-box { background: linear-gradient(145deg, #243d30, #1e3028); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: 0 8px 32px rgba(30,48,40,0.15); }
.hours-box h3 { color: #fff; margin-bottom: 1.5rem; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.07); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.7rem 0; font-size: 0.875rem; color: rgba(253,250,247,0.82); }
.hours-table td:last-child { text-align: right; color: rgba(253,250,247,0.6); }
.hours-emergency { display: inline-flex; align-items: center; gap: 0.4rem; color: #6ee09e !important; font-weight: 600 !important; font-size: 0.8rem !important; }

.contact-cta-section { background: var(--sage-wash); padding: 5rem 0; text-align: center; }
.contact-cta-section h2 { margin-bottom: 0.75rem; }
.contact-cta-section p { margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── REQUEST FORM ──────────────────────────────── */
.request-section { background: var(--cream); }
.request-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: start; }

.form-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow); }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--charcoal); margin-bottom: 0.45rem; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--sage-mist); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.9rem; color: var(--charcoal); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; outline: none; -webkit-appearance: none; appearance: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(61,122,107,0.1); background: #fff; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%233d7a6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2.5rem; background-color: var(--sage-mist); }
.form-group select:focus { background-color: #fff; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group-check { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.25rem; background: var(--sage-mist); padding: 0.75rem 1rem; border-radius: var(--radius); border: 1.5px solid var(--border); }
.form-group-check input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; flex-shrink: 0; accent-color: var(--sage); }
.form-group-check label { font-size: 0.875rem; color: var(--charcoal-light); cursor: pointer; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

.request-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card { background: var(--sage-mist); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; }
.sidebar-card-icon { width: 40px; height: 40px; border-radius: var(--radius); background: rgba(61,122,107,0.12); display: flex; align-items: center; justify-content: center; color: var(--sage); margin-bottom: 1rem; }
.sidebar-card h4 { margin-bottom: 0.4rem; }
.sidebar-card p { font-size: 0.85rem; }
.sidebar-card a { color: var(--sage); font-weight: 600; }

/* ── FOOTER ────────────────────────────────────── */
footer { background: var(--charcoal); color: var(--cream); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand p { font-size: 0.85rem; color: rgba(253,250,247,0.6); max-width: 280px; line-height: 1.8; }
.footer-col h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li a { font-size: 0.875rem; color: rgba(253,250,247,0.6); transition: color 0.2s; }
.footer-links li a:hover { color: var(--cream); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: rgba(253,250,247,0.6); margin-bottom: 0.65rem; }
.footer-contact-item [data-lucide] { color: var(--sage-light); width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: rgba(253,250,247,0.6); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--cream); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: rgba(253,250,247,0.35); }

/* ── WHATSAPP ─────────────────────────────────── */
.btn-whatsapp-nav { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 600; color: #1a7a42 !important; padding: 0.5rem 1rem; border-radius: var(--radius); border: 1.5px solid rgba(37,211,102,0.3); background: rgba(37,211,102,0.07); letter-spacing: 0.01em; transition: background 0.2s, border-color 0.2s; white-space: nowrap; }
.btn-whatsapp-nav:hover { background: rgba(37,211,102,0.14); border-color: rgba(37,211,102,0.55); }
.btn-whatsapp-nav [data-lucide] { color: #25D366; flex-shrink: 0; }

.whatsapp-fab { position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 2px 6px rgba(0,0,0,0.12); transition: transform 0.2s, box-shadow 0.2s, background 0.2s; outline-offset: 3px; }
.whatsapp-fab:hover { background: #1ebe5d; transform: translateY(-3px) scale(1.05); box-shadow: 0 8px 28px rgba(37,211,102,0.5), 0 4px 10px rgba(0,0,0,0.12); }
.whatsapp-fab:focus-visible { outline: 2px solid #25D366; }
.whatsapp-fab svg { display: block; flex-shrink: 0; }
.whatsapp-fab::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4); animation: wa-pulse 2.5s ease-out infinite; }
@keyframes wa-pulse { 0% { opacity: 1; transform: scale(1); } 70% { opacity: 0; transform: scale(1.35); } 100% { opacity: 0; transform: scale(1.35); } }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 900px) {
  .about-intro-inner, .coverage-inner, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .request-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; background: rgba(253,250,247,0.99); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem; border-bottom: 1px solid var(--border); align-items: flex-start; box-shadow: 0 8px 24px rgba(30,48,40,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { gap: 1.25rem; }
  .trust-divider { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .whatsapp-fab { width: 50px; height: 50px; bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
  .announcement-bar-inner { gap: 0.75rem; }
  .announcement-divider { display: none; }
  .announcement-item { font-size: 0.75rem; }
  .hero::after, .services-hero::after, .page-hero::after { height: 35px; }
}

/* ── UTILITY ──────────────────────────────────── */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
