/* ===== 4Clean — main.css FINAL ===== */

/* Colors & tokens */
:root{
  --green:#155e4b;       /* primary pistachio */
  --green-deep:#0b3b2e;  /* deep green for text/accents */
  --pale:#ecf7f3;        /* light green card bg */
  --text:#102018;
  --muted:#4d6158;
  --border:#e7eee9;
  --radius:16px;
}

/* Base */
*,
*::before,
*::after { box-sizing:border-box; }
html,body{ margin:0; padding:0; font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif; color:var(--text); background:#fff; line-height:1.5; }
img{ max-width:100%; display:block; }
a{ color:var(--green-deep); text-decoration:none; }
.container{ width:min(1100px,92%); margin-inline:auto; }

/* ===== Header / Nav ===== */
.site-header{
  position:sticky; top:0; z-index:50;
  background:#fff;
  border-bottom:1px solid #e8ecea;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:12px;
}
.logo{ font-weight:800; font-size:26px; color:var(--green-deep); }

/* Hamburger (stacked 3 lines) */
.menu-toggle{
  display:none; width:36px; height:28px;
  border:0; background:transparent; cursor:pointer;
  align-items:center; justify-content:center; flex-direction:column; gap:5px; z-index:1100;
}
.menu-toggle span{
  width:100%; height:3px; background:var(--green-deep); border-radius:3px; transition:.25s ease;
}

/* Desktop nav */
.nav-links{ display:flex; gap:16px; align-items:center; }
.nav-links a{ padding:8px 10px; border-radius:12px; font-weight:600; color:var(--green-deep); }
.nav-links a:hover{ background:var(--pale); }

/* Mobile drawer (opens from LEFT) */
@media (max-width: 800px){
  .menu-toggle{ display:inline-flex; }
  .nav-links{
    position:fixed; inset:0 auto 0 0; width:72%; max-width:360px; height:100dvh;
    background:#fff; border-right:1px solid #e6e6e6;
    display:flex; flex-direction:column; align-items:flex-start; gap:12px;
    padding:20px; transform:translateX(-100%); transition:transform .3s ease; z-index:1000;
  }
  .nav-links.open{ transform:translateX(0); }
  body.nav-open{ overflow:hidden; }
  /* X animation for hamburger when open */
  body.nav-open .menu-toggle span:nth-child(1){ transform:translateY(8px) rotate(45deg); }
  body.nav-open .menu-toggle span:nth-child(2){ opacity:0; }
  body.nav-open .menu-toggle span:nth-child(3){ transform:translateY(-8px) rotate(-45deg); }
}

/* Buttons */
.btn{ display:inline-block; padding:10px 16px; border-radius:14px; font-weight:700; border:2px solid transparent; transition:.2s ease; line-height:1.2; }
.btn-primary{ background:var(--green); color:#fff; }
.btn-primary:hover{ background:#0f4f3e; }
.btn-ghost{ background:#fff; color:var(--green); border-color:var(--green); }
.btn-ghost:hover{ background:var(--pale); }

/* ===== Hero ===== */
.hero{
  position:relative; min-height:62vh; display:grid; place-items:center; text-align:left;
  background-image:var(--bg, none); background-size:cover; background-position:center; background-repeat:no-repeat;
}
.hero .overlay{
  position:absolute; inset:0;
  background:rgba(32, 100, 75, 0.24); /* green tint overlay */
  z-index:1;
}
.hero .hero-inner{ position:relative; z-index:2; color:#fff; padding:64px 0; max-width:900px; }
.kicker{ letter-spacing:.3em; font-weight:800; opacity:.9; display:inline-block; margin-bottom:6px; }
.hero h1{ font-size:clamp(36px,6vw,56px); margin:0 0 10px; }
.hero p{ font-size:clamp(16px,2.2vw,20px); opacity:.95; max-width:850px; }
.cta-row{ display:flex; gap:12px; margin-top:16px; flex-wrap:wrap; }

/* ===== Home — Trust cards & Stats ===== */
h2{ margin:18px 0 12px; font-size:clamp(22px,3.2vw,28px); }
.trust-grid.six{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.trust-card{
  background:var(--pale); border:1px solid #d9efe6;
  border-radius:var(--radius); padding:16px; transition:transform .2s ease, box-shadow .2s ease;
}
.trust-card:hover{ transform:translateY(-2px); box-shadow:0 8px 22px rgba(0,0,0,.08); }
.trust-card .k{ font-weight:800; margin-bottom:6px; color:var(--green-deep); }
.trust-card .v{ color:var(--muted); }

/* Stats */
.stats .grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin:10px 0 8px; }
.stat{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:18px; text-align:center;
}
.stat h3{ margin:0; font-size:28px; color:var(--green-deep); }
.stat p{ margin:6px 0 0; color:var(--muted); }

/* ===== Generic grids & sections ===== */
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.grid-2{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }

.card{
  background:#fff; border:1px solid var(--border); border-radius:var(--radius);
  padding:16px; box-shadow:0 1px 0 rgba(0,0,0,.04);
  transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(0,0,0,.08); }
.card.green{ background:var(--pale); border-color:#d6efe6; }

.text-block{ padding:34px 0; }

.split{ padding:16px 0 48px; display:grid; grid-template-columns:1.25fr .75fr; gap:20px; align-items:center; }
.split-card{ background:var(--pale); border:1px solid #dcefe6; border-radius:var(--radius); padding:16px; }
.checklist{ margin:0; padding-left:18px; }
.checklist li{ margin:8px 0; }

/* ===== Contact band ===== */
.contact-band{ background:#fff; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.band-grid{ display:grid; grid-template-columns:1fr 1fr; gap:14px; padding:16px 0; }
.band-item{
  display:flex; gap:10px; align-items:center;
  border:1px solid var(--border); border-radius:14px; padding:10px 12px;
  transition:transform .2s ease, box-shadow .2s ease;
}
.band-item .icon{ font-size:22px; }
.band-item:hover{ transform:translateY(-2px); box-shadow:0 10px 24px rgba(0,0,0,.08); }

/* ===== Footer ===== */
.site-footer{ background:#0e1a16; color:#cfe6dd; margin-top:28px; }
.footer-columns{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:20px; padding:22px 0; }
.footer-columns .col h4{ margin:0 0 8px; }
.footer-columns .list{ list-style:none; margin:0; padding:0; }
.footer-columns .list li{ margin:6px 0; }
.footer-columns .list a{ color:#d1efe3; }
.footer-columns .list a:hover{ color:#fff; }
.block{ display:block; text-align:center; }
.mini-map{ height:140px; border-radius:12px; overflow:hidden; border:1px solid #2a3f36; }
.mini-map iframe{ width:100%; height:100%; border:0; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:12px 0; border-top:1px solid #24362e; flex-wrap:wrap; gap:12px; }
.footnav a{ margin-right:12px; color:#a7d5c8; }
.footnav a:hover{ color:#fff; }

/* ===== Big map under Service Area hero ===== */
.big-map{ height:420px; border-radius:16px; overflow:hidden; border:1px solid var(--border); }
.big-map iframe{ width:100%; height:100%; border:0; }

/* ===== Responsive ===== */
@media (max-width: 1000px){
  .trust-grid.six{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 900px){
  .grid-4{ grid-template-columns:1fr 1fr; }
  .grid-3{ grid-template-columns:1fr 1fr; }
  .grid-2{ grid-template-columns:1fr; }

  .split{ grid-template-columns:1fr; }
  .band-grid{ grid-template-columns:1fr; }
  .footer-columns{ grid-template-columns:1fr 1fr; }
  .hero{ min-height:58vh; }
  .hero h1{ font-size:clamp(28px,6.5vw,44px); }
  .cta-row{ flex-direction:column; align-items:flex-start; }
  .big-map{ height:320px; }
}

/* Force STATS to 2-per-row on small phones + make cards a bit wider */
@media (max-width: 700px){
  .stats .grid-4{ grid-template-columns:1fr 1fr !important; gap:18px; }
  .stat{ padding:18px; }
  .stat h3{ font-size:1.9rem; }
}

@media (max-width: 600px){
  .grid-4, .grid-3{ grid-template-columns:1fr; }
  .footer-columns{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; gap:8px; }
  .big-map{ height:260px; }
}

/* Utility */
.section-title{ margin:8px 0 14px; }
.note{
  background:#fff; border:1px dashed var(--border); border-radius:12px;
  padding:12px 14px; color:var(--muted); margin-top:10px;
}

/* ===== Force header Call Now button text to white ===== */
.site-header .btn-primary {
  color: #fff !important;
  background: var(--green);
  border-color: var(--green);
}
.site-header .btn-primary:hover {
  background: #0f4f3e;
  color: #fff !important;
}
