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

:root {
  --brand:    #1ABFB4;
  --brand-l:  #5DD9D3;
  --brand-d:  #0E9E99;
  --accent:   #E8368A;
  --accent-l: #FF6BAE;
  --accent-d: #C4237A;
  --c0:       #0D0D0D;
  --c1:       #141414;
  --c2:       #222222;
  --c3:       #3A3A3A;
  --c4:       #666666;
  --c5:       #9A9A9A;
  --sand:     #F7F5F2;
  --white:    #FFFFFF;
  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 4px 24px rgba(0,0,0,.08);
  --shadow-md:0 8px 40px rgba(0,0,0,.14);
  --max-w:    1100px;
  --font:     'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--c1);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(26,191,180,.1);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 12px;
}
.tag-accent { color: var(--accent); background: rgba(232,54,138,.1); }
.eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }

h1,h2,h3,h4 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--c3); }

.lead { font-size: 1.1rem; color: var(--c3); max-width: 640px; }
.text-center { text-align: center; }
.text-center .lead { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 100px;
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  cursor: pointer; border: none; transition: all .2s ease; white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-d); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(232,54,138,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-brand { background: var(--brand); color: var(--white); }
.btn-brand:hover { background: var(--brand-d); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,191,180,.35); }
.btn-dark { background: var(--c1); color: var(--white); }
.btn-dark:hover { background: var(--c0); transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ── LAYOUT GRIDS ──────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Two-column split (used in services, about, why-us) */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* Two-thirds / one-third (contact form + sidebar, FAQ + sidebar) */
.content-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

/* ── NAV ───────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap {
  display: flex; align-items: center;
  justify-content: space-between; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-size: 1.1rem; font-weight: 800; color: var(--white); line-height: 1.1; }
.nav-logo-text span { color: var(--brand); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.75);
  padding: 8px 14px; border-radius: 8px; transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--brand); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--c0); padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-menu a {
  font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.8);
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); transition: color .15s;
}
.mobile-menu a:hover { color: var(--brand); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }
.mobile-menu.open { display: flex; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative; background: var(--c0);
  overflow: hidden; min-height: 92vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover; background-position: center; opacity: .22;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,.95) 50%, rgba(26,191,180,.15) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 80px 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,191,180,.12); border: 1px solid rgba(26,191,180,.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: .8rem; font-weight: 700; color: var(--brand-l);
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 span { color: var(--brand); }
.hero .tagline { font-size: 1.25rem; color: rgba(255,255,255,.65); font-style: italic; margin-bottom: 20px; }
.hero .lead { color: rgba(255,255,255,.7); margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num span { color: var(--brand); }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ── SERVICES STRIP ────────────────────────────────────────── */
.services-strip { background: var(--brand); padding: 20px 0; overflow: hidden; }
.strip-inner {
  display: flex; gap: 40px; align-items: center;
  white-space: nowrap; font-size: .85rem; font-weight: 700;
  color: var(--white); letter-spacing: .04em; text-transform: uppercase;
}
.strip-inner span { opacity: .6; }

/* ── SERVICE CARDS ─────────────────────────────────────────── */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 36px 28px;
  border-bottom: 4px solid transparent;
  transition: all .25s; display: flex; flex-direction: column; gap: 12px;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-bottom-color: var(--brand); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(26,191,180,.1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.service-link {
  font-size: .85rem; font-weight: 700; color: var(--brand);
  display: flex; align-items: center; gap: 4px; transition: gap .15s;
}
.service-card:hover .service-link { gap: 8px; }

/* ── WHY US ────────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item {
  padding: 28px; background: var(--sand); border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 10px;
}
.why-icon {
  font-size: 1.8rem; width: 52px; height: 52px; display: flex;
  align-items: center; justify-content: center;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow);
}

/* ── REVIEWS ───────────────────────────────────────────────── */
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { color: #F4B400; font-size: 1rem; letter-spacing: 2px; }
.review-text { font-size: .93rem; color: var(--c3); font-style: italic; line-height: 1.65; flex: 1; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: var(--white); flex-shrink: 0;
}
.reviewer-name { font-size: .88rem; font-weight: 700; }
.reviewer-location { font-size: .78rem; color: var(--c5); }

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--c0) 0%, var(--c2) 100%);
  padding: 72px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,191,180,.15) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.65); max-width: 540px; margin: 0 auto 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── PROCESS ───────────────────────────────────────────────── */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 32px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--brand), var(--accent)); z-index: 0;
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px; border-radius: 50%; background: var(--brand);
  color: var(--white); font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px rgba(26,191,180,.15);
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1rem;
  gap: 16px; transition: color .15s;
}
.faq-question:hover { color: var(--brand); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: rgba(26,191,180,.1); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: transform .25s, background .25s; color: var(--brand);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brand); color: var(--white); }
.faq-answer { display: none; padding: 0 0 20px; font-size: .93rem; color: var(--c3); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ── CONTACT FORM ──────────────────────────────────────────── */
.contact-form { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 48px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .85rem; font-weight: 700; color: var(--c2); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px; border: 2px solid #E5E5E5; border-radius: var(--radius);
  font-family: var(--font); font-size: .93rem; color: var(--c1);
  transition: border-color .15s; background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--brand); }
.form-group textarea { resize: vertical; min-height: 110px; }
.consent-block { background: var(--sand); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.consent-check { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; margin-bottom: 16px; }
.consent-check input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--brand); cursor: pointer; }
.consent-text { font-size: .83rem; color: var(--c3); line-height: 1.6; }
.consent-details { font-size: .78rem; color: var(--c5); line-height: 1.6; }
.consent-details a { color: var(--brand); text-decoration: underline; }
.consent-details strong { font-weight: 700; color: var(--c3); }

.emergency-box {
  background: linear-gradient(135deg, var(--c0), var(--c2));
  border-radius: var(--radius-lg); padding: 36px; text-align: center; color: var(--white);
}
.emergency-box h3 { color: var(--brand-l); margin-bottom: 8px; }
.emergency-box p { color: rgba(255,255,255,.7); margin-bottom: 20px; font-size: .93rem; }
.emergency-phone { font-size: 1.8rem; font-weight: 900; color: var(--white); display: block; margin-bottom: 8px; }

/* ── SERVICES PAGE ─────────────────────────────────────────── */
.service-label {
  display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--brand); background: rgba(26,191,180,.1);
  border-radius: 6px; padding: 4px 10px; margin-bottom: 12px;
}
.check-list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.check-list li { font-size: .9rem; color: var(--c3); display: flex; gap: 8px; align-items: flex-start; }
.check-list li::before { content: none; }

/* ── LEGAL PAGES ───────────────────────────────────────────── */
.legal-body h2 { font-size: 1.15rem; margin: 36px 0 10px; color: var(--c0); }
.legal-body h3 { font-size: 1rem; margin: 20px 0 8px; color: var(--c2); }
.legal-body p  { font-size: .93rem; color: var(--c3); margin-bottom: 12px; line-height: 1.75; }
.legal-body ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.legal-body ul li { font-size: .9rem; color: var(--c3); }
.legal-body a  { color: var(--brand); text-decoration: underline; }

/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  background: var(--c0); padding: 80px 0 60px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(26,191,180,.1) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero h1 span { color: var(--brand); }
.page-hero .lead { color: rgba(255,255,255,.65); }

/* ── REVIEWS ───────────────────────────────────────────────── */
.rating-hero { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.rating-big { font-size: 4rem; font-weight: 900; color: var(--white); line-height: 1; }
.rating-stars { font-size: 1.5rem; color: #F4B400; letter-spacing: 3px; }
.rating-count { font-size: .88rem; color: rgba(255,255,255,.5); }

/* ── ABOUT ─────────────────────────────────────────────────── */
.values-list { display: flex; flex-direction: column; gap: 16px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon {
  width: 40px; height: 40px; flex-shrink: 0; background: rgba(26,191,180,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}

/* ── STATS ROW ─────────────────────────────────────────────── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--brand); border-radius: var(--radius-lg); overflow: hidden; }
.stat-block { background: var(--c0); padding: 36px 24px; text-align: center; }
.stat-block .num { font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-block .num span { color: var(--brand); }
.stat-block .lbl { font-size: .82rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer { background: var(--c0); border-top: 1px solid rgba(255,255,255,.06); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.45); margin: 8px 0 20px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.6); font-size: .88rem; margin-bottom: 10px; transition: color .15s; }
.footer-contact a:hover { color: var(--brand); }
.footer-col h5 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-hours-item { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.footer-hours-item strong { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: color .15s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── POLICY PAGES ──────────────────────────────────────────── */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.4rem; margin: 36px 0 12px; color: var(--c1); }
.policy-content h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.policy-content p { margin-bottom: 14px; font-size: .93rem; }
.policy-content ul { padding-left: 20px; list-style: disc; margin-bottom: 14px; }
.policy-content ul li { font-size: .93rem; color: var(--c3); margin-bottom: 6px; }
.policy-highlight {
  background: rgba(26,191,180,.06); border-left: 4px solid var(--brand);
  padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 20px 0;
  font-size: .9rem; color: var(--c3); font-style: italic;
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .15s; }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb span { color: rgba(255,255,255,.25); }

/* ── MOBILE STICKY BAR ─────────────────────────────────────── */
.mobile-call-bar { display: none; }

/* ── RESPONSIVE — TABLET ───────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4       { grid-template-columns: repeat(2, 1fr); }
  .stats-row    { grid-template-columns: repeat(2, 1fr); }
  .process-steps{ grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid  { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── RESPONSIVE — MOBILE ───────────────────────────────────── */
@media (max-width: 768px) {
  /* Global */
  .section    { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .container  { padding: 0 16px; }
  body        { padding-bottom: 60px; }

  /* Nav */
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .hamburger  { display: flex; }
  .nav-wrap   { height: 60px; }
  .nav-logo img { height: 36px; width: 36px; }

  /* Hero */
  .hero         { min-height: 100svh; }
  .hero-content { padding: 80px 16px 48px; }
  .hero .tagline{ font-size: 1rem; }
  .hero .lead   { font-size: .95rem; }
  .hero-btns    { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
  .hero-stats   { gap: 20px; margin-top: 36px; }
  .stat-num     { font-size: 1.5rem; }
  .hero-badge   { font-size: .72rem; }

  /* Grids */
  .grid-2, .grid-3  { grid-template-columns: 1fr; }
  .why-grid          { grid-template-columns: 1fr; }
  .split-grid        { grid-template-columns: 1fr; gap: 28px; }
  .content-layout    { grid-template-columns: 1fr; gap: 28px; }
  .form-row          { grid-template-columns: 1fr; }
  .process-steps     { grid-template-columns: repeat(2, 1fr); }
  .stats-row         { grid-template-columns: repeat(2, 1fr); }

  /* Sidebar: hide on mobile — call bar replaces it */
  .sidebar-hide { display: none !important; }

  /* Page hero */
  .page-hero { padding: 48px 0 32px; }

  /* CTA */
  .cta-band   { padding: 48px 0; }
  .cta-btns   { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { justify-content: center; }

  /* Cards & forms */
  .contact-form   { padding: 24px 16px; }
  .emergency-box  { padding: 24px 16px; }
  .emergency-phone{ font-size: 1.4rem; }
  .card           { padding: 24px 16px; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .footer-bottom-links{ justify-content: center; }

  /* Reviews */
  .rating-hero{ flex-direction: column; align-items: flex-start; gap: 12px; }
  .rating-big { font-size: 3rem; }

  /* Mobile sticky call bar */
  .mobile-call-bar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 200; box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  }
  .mobile-call-bar a {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 8px; padding: 16px 12px;
    font-family: var(--font); font-size: .9rem; font-weight: 700; color: var(--white);
  }
  .mobile-call-bar .mcb-call { background: var(--brand); }
  .mobile-call-bar .mcb-book { background: var(--accent); }
}

/* ── RESPONSIVE — SMALL MOBILE ─────────────────────────────── */
@media (max-width: 480px) {
  .grid-4        { grid-template-columns: 1fr; }
  .stats-row     { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-bottom-links { flex-direction: column; gap: 8px; align-items: center; }
  .service-card  { padding: 24px 18px; }
}
