/* ==========================================================================
   My Dad Can Fix It — Design System
   Palette: navy #1B3A5C (trust) · burnt orange #E07A3E (CTA) · light neutrals
   Mobile-first, fast, accessible.
   ========================================================================== */

:root {
  --navy: #1B3A5C;
  --navy-dark: #12293F;
  --navy-light: #2C567F;
  --orange: #E07A3E;
  --orange-dark: #C4632B;
  --orange-light: #F7E3D5;
  --bg: #FFFFFF;
  --bg-soft: #F5F7FA;
  --bg-navy-tint: #EDF2F7;
  --text: #22303E;
  --text-muted: #5A6B7B;
  --border: #DDE4EB;
  --star: #F5A623;
  --success: #2E7D4F;
  --whatsapp: #25D366;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 10px rgba(27, 58, 92, 0.08);
  --shadow-lg: 0 8px 30px rgba(27, 58, 92, 0.14);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --font-hand: "Segoe Script", "Bradley Hand", "Comic Sans MS", cursive;
  --header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { color: var(--navy); line-height: 1.25; margin: 0 0 0.6em; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); font-weight: 700; }

p { margin: 0 0 1em; }
a { color: var(--navy-light); }
ul { padding-left: 1.2em; }

.container { width: min(1140px, 92%); margin: 0 auto; }

section { padding: 56px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #D8E2EC; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head .kicker {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin-bottom: 8px;
}
.section-head p { color: var(--text-muted); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-dark); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: 16px 34px; font-size: 1.1rem; }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1EBE5A; }

/* --------------------------------------------------------------------------
   Top bar + header
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-dark);
  color: #C9D6E2;
  font-size: 0.85rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar .habla { color: var(--orange); font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: var(--shadow);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo .logo-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  padding: 6px;
}
.logo .logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.logo .logo-text { line-height: 1.15; }
.logo .logo-name { display: block; font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.logo .logo-tag { display: block; font-size: 0.7rem; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.main-nav ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--navy); border-bottom-color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 700;
}
.lang-toggle a, .lang-toggle span {
  padding: 5px 10px;
  text-decoration: none;
  color: var(--text-muted);
}
.lang-toggle .active { background: var(--navy); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 3px;
  background: var(--navy);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: #fff;
  padding: 72px 0;
}
.hero .container { display: grid; gap: 40px; grid-template-columns: 1.15fr 0.85fr; align-items: center; }
.hero h1 { color: #fff; }
.hero .hero-sub { font-size: 1.15rem; color: #D8E2EC; max-width: 540px; }
.hero .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0; }
.hero .hero-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.hero .hero-points li { display: flex; gap: 10px; align-items: baseline; color: #E4ECF3; font-weight: 600; font-size: 0.95rem; }
.hero .hero-points li::before { content: "✓"; color: var(--orange); font-weight: 800; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.rating-badge .stars { color: var(--star); letter-spacing: 2px; }

.hero-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.hero-card h2 { font-size: 1.3rem; }
.hero-card .fine { font-size: 0.82rem; color: var(--text-muted); margin: 10px 0 0; }

/* --------------------------------------------------------------------------
   Cards, grids
   -------------------------------------------------------------------------- */
.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.grid-2 { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); }
.grid-4 { display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card .card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--orange-light);
  color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 16px;
  padding: 8px;
}
.card .card-icon img { width: 100%; height: 100%; object-fit: contain; }
.card ul { color: var(--text-muted); font-size: 0.95rem; }
.card .card-link { font-weight: 700; text-decoration: none; color: var(--orange-dark); }
.card .card-link:hover { text-decoration: underline; }

/* Service cards with a real photo banner (homepage services grid) */
.service-card { padding: 0; overflow: hidden; }
.service-card .card-photo { aspect-ratio: 4 / 3; position: relative; }
.service-card .card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card .card-photo .badge-soon {
  position: absolute;
  top: 14px; right: 14px;
  margin-bottom: 0;
  box-shadow: var(--shadow);
}
.service-card .card-body { padding: 0 28px 28px; }
.service-card .card-icon-badge {
  position: relative;
  z-index: 2;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  margin-top: -28px;
  margin-bottom: 14px;
}
.service-card .card-icon-badge img { width: 100%; height: 100%; object-fit: contain; }

.badge-soon {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.price-table th, .price-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.price-table th { background: var(--navy); color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.04em; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td.price { font-weight: 800; color: var(--navy); white-space: nowrap; }
.table-wrap { overflow-x: auto; }

.price-note {
  display: flex;
  gap: 14px;
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 0.95rem;
}
.price-note strong { color: var(--navy); }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card .stars { color: var(--star); letter-spacing: 2px; font-size: 1rem; }
.review-card blockquote { margin: 0; font-style: italic; color: var(--text); }
.review-card .review-meta { font-size: 0.85rem; color: var(--text-muted); }
.review-card .review-meta strong { color: var(--navy); }
.review-card .review-source { font-size: 0.78rem; font-weight: 700; color: var(--navy-light); text-transform: uppercase; letter-spacing: 0.04em; }

/* Carousel */
.carousel { position: relative; max-width: 760px; margin: 0 auto; }
.carousel-track { overflow: hidden; }
.carousel-slide { display: none; }
.carousel-slide.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.carousel-nav { display: flex; justify-content: center; gap: 10px; margin-top: 18px; }
.carousel-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: var(--orange); }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 1.1rem;
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow);
}
.carousel-arrow:hover { background: var(--navy); color: #fff; }
.carousel-arrow.prev { left: -56px; }
.carousel-arrow.next { right: -56px; }

/* Inline testimonial strip between sections */
.testimonial-strip {
  background: var(--bg-navy-tint);
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 0 auto;
}
.testimonial-strip .stars { color: var(--star); letter-spacing: 2px; white-space: nowrap; }
.testimonial-strip blockquote { margin: 0; font-style: italic; }
.testimonial-strip cite { display: block; font-style: normal; font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }

/* --------------------------------------------------------------------------
   Family note (emotional quote block)
   -------------------------------------------------------------------------- */
.family-note {
  background: linear-gradient(180deg, #FFF9F4 0%, #FDF1E7 100%);
  border: 1px solid #F0D9C6;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.family-note::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 22px;
  font-size: 6rem;
  color: var(--orange);
  opacity: 0.35;
  font-family: Georgia, serif;
  line-height: 1;
}
.family-note p { font-size: 1.12rem; line-height: 1.8; color: #4A3A2E; font-style: italic; }
.family-note .note-sign { font-family: var(--font-hand); font-size: 1.25rem; color: var(--navy); font-style: normal; text-align: right; margin-top: 18px; }
.family-note .note-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0; }

/* Centered stand-alone quote variant (homepage) */
.family-note-center { text-align: center; }
.family-note-center p { font-size: 1.18rem; }
.family-note-center .note-sign { text-align: center; }
.note-divider {
  width: 64px;
  height: 3px;
  background: var(--orange);
  border: none;
  border-radius: 2px;
  margin: 30px auto;
}
.note-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
  outline: 1px solid #F0D9C6;
}
.note-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.note-photo figcaption { display: none; }
.photo-placeholder {
  background: var(--bg-navy-tint);
  border: 2px dashed var(--navy-light);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: normal;
  padding: 18px;
  gap: 8px;
}
.photo-placeholder .ph-icon { font-size: 2rem; }

/* --------------------------------------------------------------------------
   Trust badges
   -------------------------------------------------------------------------- */
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item {
  text-align: center;
  padding: 20px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.trust-item .trust-icon { font-size: 1.9rem; margin-bottom: 8px; }
.trust-item img.trust-icon {
  width: 48px; height: 48px;
  object-fit: contain;
  margin: 0 auto 8px;
  display: block;
}
.trust-item strong { display: block; color: var(--navy); font-size: 0.95rem; margin-bottom: 6px; line-height: 1.3; }
.trust-item span { display: block; font-size: 0.82rem; color: var(--text-muted); line-height: 1.45; }

/* Unified line-icon treatment: SVG in a tinted ring */
.icon-ring {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  flex-shrink: 0;
}
.icon-ring svg { width: 30px; height: 30px; }
.trust-item .icon-ring { margin-bottom: 12px; }

/* Mechanic services cards */
.section-photo {
  margin: 0 0 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 21 / 8;
}
.section-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mech-card { text-align: center; padding: 26px 20px; }
.mech-card h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.mech-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; line-height: 1.5; }
.mech-card.service-card { padding: 0; }
.mech-card.service-card .card-body { padding: 18px 20px 24px; }
.mech-photo-pending {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-navy-tint) 0%, var(--orange-light) 100%);
}
.mech-photo-pending .icon-ring { margin: 0; background: #fff; width: 72px; height: 72px; }
.mech-photo-pending .icon-ring svg { width: 36px; height: 36px; }

.payment-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 14px; }
.payment-row .pay-chip {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}
.field textarea { min-height: 110px; resize: vertical; }
.form-msg { display: none; background: #E6F4EC; border: 1px solid var(--success); color: var(--success); border-radius: var(--radius); padding: 14px 18px; font-weight: 600; margin-top: 16px; }
.form-msg.show { display: block; }
.response-note { font-size: 0.88rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; margin-top: 12px; }

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 20px;
  font: inherit;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
}
.faq-q::after { content: "+"; font-size: 1.4rem; color: var(--orange); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 20px 18px; color: var(--text-muted); }
.faq-item.open .faq-a { display: block; }

/* --------------------------------------------------------------------------
   Gallery placeholders (before/after)
   -------------------------------------------------------------------------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ba-pair .photo-placeholder { min-height: 150px; }
.ba-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--navy-light); }

.ba-photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-navy-tint);
}
.ba-photo img { width: 100%; height: 100%; object-fit: cover; }
.ba-photo .ba-label {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(18, 41, 63, 0.85);
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
}
.ba-photo.ba-after .ba-label { background: var(--orange); }

/* --------------------------------------------------------------------------
   Service area
   -------------------------------------------------------------------------- */
.county-list { list-style: none; padding: 0; display: grid; gap: 8px; columns: 2; }
.area-map-placeholder { min-height: 320px; }
.area-map { margin: 0; }
.area-map img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.area-map-lg { max-width: 560px; margin: 0 auto; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--orange); color: #fff; text-align: center; padding: 52px 0; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #FBE8DB; max-width: 620px; margin: 0 auto 24px; }
.cta-band .btn-primary { background: var(--navy); }
.cta-band .btn-primary:hover { background: var(--navy-dark); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-dark); color: #B9C7D4; padding: 56px 0 0; font-size: 0.92rem; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 32px; padding-bottom: 40px; }
.site-footer a { color: #D8E2EC; text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 18px 0; text-align: center; font-size: 0.8rem; color: #8FA2B4; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.footer-badges span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Mobile action bar (click-to-call / WhatsApp / book)
   -------------------------------------------------------------------------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(27, 58, 92, 0.18);
  padding: 10px 12px;
  gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; padding: 12px 8px; font-size: 0.9rem; }

/* WhatsApp float (desktop) */
.whatsapp-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
}
.whatsapp-float:hover { transform: scale(1.06); }

/* --------------------------------------------------------------------------
   Page hero (interior pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: #D8E2EC; max-width: 680px; margin: 0 auto; font-size: 1.08rem; }
.page-hero .hero-ctas { justify-content: center; display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.breadcrumb { font-size: 0.85rem; color: #9FB3C6; margin-bottom: 12px; }
.breadcrumb a { color: #C9D6E2; text-decoration: none; }

/* --------------------------------------------------------------------------
   Blog
   -------------------------------------------------------------------------- */
.blog-card .blog-date { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card .photo-placeholder { min-height: 160px; margin-bottom: 14px; }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.muted { color: var(--text-muted); }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  z-index: 999;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .trust-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .carousel-arrow.prev { left: -8px; }
  .carousel-arrow.next { right: -8px; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    box-shadow: var(--shadow-lg);
    padding: 12px 0 18px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 12px 6%; border-bottom: 1px solid var(--bg-soft); }
  .nav-toggle { display: block; }
  .header-actions .btn { display: none; }
}

@media (max-width: 640px) {
  section { padding: 44px 0; }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .family-note .note-photos { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .county-list { columns: 1; }
  .testimonial-strip { flex-direction: column; align-items: flex-start; }
  .topbar .container { justify-content: center; text-align: center; }
  .topbar .topbar-right { display: none; }
  .mobile-cta-bar { display: flex; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 68px; }
}

/* Real logo images (replaces emoji lockup) */
.logo-img { height: 48px; width: auto; display: block; }
.footer-logo-img { height: 58px; width: auto; display: block; margin-bottom: 12px; }
@media (max-width: 640px) { .logo-img { height: 40px; } }
