:root {
  --brand-green: #03840E;
  --brand-green-hover: #026b0c;
  --brand-green-tint: #eaf6ec;
  --brand-red: #C3121A;
  --brand-red-tint: #fdecea;
  --whatsapp-green: #25D366;
  --whatsapp-green-hover: #1fb857;
  --ink: #1f2328;
  --muted: #5c6470;
  --faint: #8a919a;
  --border: #e5e8ea;
  --section-bg: #f6f8f7;
  --footer-bg: #1a1d20;
  --footer-muted: #9aa0a6;
  --footer-faint: #7d8388;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: var(--ink);
  min-height: 100vh;
}

a { color: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-green);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section-head { margin-bottom: 28px; }
.section-head h2 { font-size: 28px; font-weight: 800; margin: 8px 0 0; }
.local-seo-text { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 820px; margin: 14px 0 0; }

.section { padding: 60px 0; }
.section-alt { background: var(--section-bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}
.btn-outline {
  color: var(--ink);
  background: #ffffff;
  border: 1.5px solid var(--border);
  font-size: 13.5px;
  padding: 9px 14px;
}
.btn-outline:hover { border-color: var(--brand-green); color: var(--brand-green); }
.btn-whatsapp {
  color: #fff;
  background: var(--whatsapp-green);
  font-size: 13.5px;
  padding: 9px 16px;
  border-radius: 10px;
}
.btn-whatsapp:hover { background: var(--whatsapp-green-hover); }
.btn-lg { font-size: 15px; padding: 14px 26px; border-radius: 12px; }
.btn-lg.btn-whatsapp { box-shadow: 0 6px 16px rgba(37,211,102,0.28); }
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}
.btn-icon:hover { border-color: var(--brand-green); color: var(--brand-green); }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo { width: 46px; height: 46px; display: block; }
.brand-word { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: 18px; font-weight: 800; color: var(--brand-green); }
.brand-sub {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 26px; margin-left: 12px; }
.main-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--brand-green); }
.mobile-social { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.btn-label { display: inline; }
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger:hover { border-color: var(--brand-green); color: var(--brand-green); }

/* Below this width, logo + full nav + social icons + labeled buttons no
   longer fit on one row. Rather than let the header wrap into a tall,
   multi-row stack, switch to a compact single-row layout: icon-only logo,
   nav collapses into a hamburger dropdown, secondary social icons move
   into that dropdown, and the Call button drops its text label. */
@media (max-width: 959px) {
  .brand-word { display: none; }
  .header-actions .desktop-only { display: none; }
  .btn-label { display: none; }
  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    padding: 6px 24px 18px;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid #f0f2f1; }
  .mobile-social {
    display: flex;
    gap: 22px;
    padding-top: 14px;
  }
  .mobile-social a { border-bottom: none; padding: 0; color: var(--muted); font-size: 13px; }
  .mobile-social a:hover { color: var(--brand-green); }
}

/* ============ HERO ============ */
.hero { background: linear-gradient(180deg, #eef7ef 0%, #ffffff 100%); }
.hero-inner {
  padding: 56px 24px 60px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-copy { flex: 1 1 420px; min-width: 300px; }
.eyebrow {
  display: inline-block;
  background: var(--brand-green-tint);
  color: var(--brand-green);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-copy h1 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.14;
  margin: 0 0 18px;
  text-wrap: balance;
}
.lede { font-size: 16.5px; line-height: 1.6; color: var(--muted); max-width: 480px; margin: 0 0 28px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-row { display: flex; gap: 26px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-item span { font-size: 13.5px; font-weight: 600; }
.hero-emblem {
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-emblem img {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(3,132,14,0.18));
}

/* ============ OFFERS BANNER ============ */
.offers-banner { background: var(--brand-green-tint); }
.offers-inner { padding: 36px 24px; text-align: center; }
.offers-heading { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin: 10px 0 4px; color: var(--brand-green); }
.offers-subheading { font-size: 16px; font-weight: 600; color: var(--ink); margin: 0 0 14px; max-width: 640px; margin-left: auto; margin-right: auto; }
.offers-note { font-style: italic; font-size: 13.5px; color: var(--muted); margin: 0 0 12px; }
.offers-disclaimer { font-size: 11px; color: var(--faint); line-height: 1.6; max-width: 760px; margin: 0 auto; }

/* ============ SERVICES ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 22px;
  background: #ffffff;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.service-card:hover {
  border-color: var(--brand-green);
  box-shadow: 0 10px 24px rgba(3,132,14,0.10);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.gallery-tile {
  aspect-ratio: 4 / 3;
  border: 1.5px dashed var(--border);
  border-radius: 16px;
  background: var(--section-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}
.gallery-tile span { font-size: 13px; color: var(--faint); font-weight: 600; }

/* ============ ABOUT ============ */
.about-inner { display: flex; gap: 48px; flex-wrap: wrap; align-items: center; }
.about-copy { flex: 1 1 380px; min-width: 280px; }
.about-copy h2 { font-size: 30px; font-weight: 800; margin: 10px 0 16px; line-height: 1.25; }
.about-copy p { font-size: 15.5px; color: var(--muted); line-height: 1.75; margin: 0 0 14px; }
.about-copy p:last-child { margin-bottom: 0; }
.about-badges { flex: 1 1 280px; min-width: 260px; display: flex; flex-direction: column; gap: 14px; }
.badge-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--section-bg);
  border-radius: 14px;
  padding: 18px 20px;
}
.badge-row span { font-size: 14.5px; font-weight: 700; }

/* ============ HOURS + REVIEWS ============ */
.hours-reviews {
  padding: 60px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}
.h2-sm { font-size: 24px; font-weight: 800; margin: 8px 0 22px; }
.hours-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
}
.hours-row + .hours-row { border-top: 1px solid #f0f2f1; }
.hours-day { font-size: 14.5px; font-weight: 600; }
.hours-time { font-size: 14.5px; font-weight: 700; color: var(--brand-green); }
.hours-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--brand-green-tint);
  border-radius: 14px;
  padding: 16px 18px;
}
.hours-note span { font-size: 13px; line-height: 1.5; }

.review-list { display: flex; flex-direction: column; gap: 14px; }
.review-card {
  background: #ffffff;
  border-radius: 14px;
  border-left: 3px solid var(--brand-green);
  padding: 18px 20px;
}
.review-card p { font-size: 13.5px; line-height: 1.65; margin: 0 0 12px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand-green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-green);
  flex-shrink: 0;
}
.review-author span { font-size: 13px; font-weight: 700; }
.review-footnote { font-size: 11.5px; color: var(--faint); margin: 12px 2px 0; }

/* ============ FAQ ============ */
.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  background: #ffffff;
}
.faq-item h3 { font-size: 15px; font-weight: 700; margin: 0 0 8px; }
.faq-item p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* ============ CONTACT ============ */
.contact-layout {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: stretch;
}
.contact-cards {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map-card {
  flex: 1.3 1 380px;
  position: relative;
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--section-bg);
}
.map-embed {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
  pointer-events: none;
}
.map-overlay-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
}
.map-overlay-hint {
  background: var(--brand-green);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(3,132,14,0.28);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s;
}
.map-card:hover .map-overlay-hint,
.map-overlay-link:focus-visible .map-overlay-hint {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 639px) {
  .map-overlay-hint { opacity: 1; transform: none; }
}
.contact-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s, transform 0.15s;
}
.contact-card-link { align-items: center; }
.contact-card-link:hover { border-color: var(--brand-green); box-shadow: 0 10px 24px rgba(3,132,14,0.10); }
.contact-card-whatsapp {
  background: var(--whatsapp-green);
  border: none;
  align-items: center;
}
.contact-card-whatsapp:hover { background: var(--whatsapp-green-hover); transform: translateY(-2px); }
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--brand-green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon-whatsapp { background: rgba(255,255,255,0.2); }
.contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}
.contact-label-white { color: #ffffff; }
.contact-value { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.contact-value-strong { font-size: 14.5px; font-weight: 700; }
.contact-value-white { font-size: 14.5px; font-weight: 700; color: #ffffff; }
.contact-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-green);
  text-decoration: none;
}
.contact-link:hover { text-decoration: underline; }

/* ============ GET IN TOUCH (CONTACT FORM) ============ */
.contact-form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.15s;
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--brand-green); }
.form-submit { align-self: flex-start; border: none; cursor: pointer; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.form-status { font-size: 13.5px; font-weight: 600; color: var(--brand-green); margin: 0; min-height: 1em; }

/* ============ FOOTER ============ */
.site-footer { background: var(--footer-bg); color: #c9cdd1; }
.footer-top {
  padding: 40px 24px 24px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 36px; height: 36px; }
.footer-name { font-size: 15px; font-weight: 800; color: #ffffff; }
.footer-address { font-size: 12.5px; color: var(--footer-muted); margin-top: 2px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; font-size: 13.5px; font-weight: 600; transition: color 0.15s; }
.footer-links a:hover { color: #ffffff; }
.footer-bottom { border-top: 1px solid #33373b; }
.footer-bottom .container { padding-top: 18px; padding-bottom: 18px; }
.footer-bottom p { font-size: 11.5px; line-height: 1.6; color: var(--footer-faint); margin: 0 0 8px; }
.footer-bottom p:last-child { font-size: 12px; margin: 0; }

/* ============ FLOATING ACTIONS ============ */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.15s;
}
.fab:hover { transform: scale(1.08); }
.fab-call { background: var(--ink); box-shadow: 0 6px 18px rgba(0,0,0,0.25); }
.fab-whatsapp { background: var(--whatsapp-green); box-shadow: 0 6px 18px rgba(37,211,102,0.45); }
