/* ----------------------------------------------------------
   ANYTIME-MOW — MASTER STYLESHEET (UNIFIED)
   One CSS for ALL pages
   Goals:
   - Same header on every page
   - Centered desktop menu
   - Larger logo (like Services page)
   - Clean modern bright theme
   - Mobile nav consistent
---------------------------------------------------------- */

/* ---------- THEME TOKENS ---------- */
:root{
  --bg:#f7f9fb;
  --bg-soft:#ffffff;
  --bg-softer:#eef2f6;
  --nav:#1e2227;
  --line:#e1e6eb;
  --text:#0e1114;
  --muted:#4a5562;
  --green:#39d353;
  --green-dark:#208a2e;
  --radius:20px;
  --maxw:1100px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
a:hover{color:var(--green);}

main{display:block;}

/* ----------------------------------------------------------
   HEADER + NAV (UNIFIED ACROSS ALL PAGES)
---------------------------------------------------------- */
header{
  position:relative;
  background:var(--nav);
  border-bottom:1px solid #111418;
}

.header-wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:10px 16px;
  display:grid;
  grid-template-columns:auto 1fr auto; /* logo | nav | optional CTA */
  align-items:center;
  gap:18px;
}

/* Logo */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand img{
  height:54px;
  width:auto;
  object-fit:contain;
}

/* Desktop nav centered */
nav{
  justify-self:center;
  display:flex;
  align-items:center;
  gap:20px;
  font-weight:700;
  font-size:15px;
}
nav a{
  color:#e9eef3;
  opacity:.95;
  padding:6px 8px;
  border-radius:10px;
}
nav a:hover{
  opacity:1;
  background:rgba(255,255,255,0.08);
}
nav a.active{
  color:var(--green);
  background:rgba(57,211,83,0.12);
  opacity:1;
}

/* Optional header CTA group (only on pages that include it) */
.cta{
  justify-self:end;
  display:flex;
  gap:8px;
}
.cta a{
  font-weight:800;
  font-size:14px;
  padding:8px 16px;
  border-radius:999px;
  background:var(--green);
  color:#08110b;
  box-shadow:var(--shadow);
  white-space:nowrap;
}
.cta a.secondary{
  background:transparent;
  color:#e9eef3;
  border:1px solid rgba(255,255,255,0.22);
  box-shadow:none;
}

/* Mobile toggle button */
.menu-btn{
  display:none;
  font-size:22px;
  padding:6px 10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.25);
  background:transparent;
  color:white;
  cursor:pointer;
}

/* MOBILE HEADER / NAV */
@media(max-width:860px){
  .header-wrap{
    grid-template-columns:auto auto; /* logo | hamburger */
    grid-template-areas:
      "logo menu"
      "nav nav";
  }
  .brand{grid-area:logo;}
  .menu-btn{
    grid-area:menu;
    display:block;
    justify-self:end;
  }
  nav{
    grid-area:nav;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    padding:12px 6px 4px;
  }
  nav.open{display:flex;}
  .cta{display:none;}
  .brand img{height:38px;}
}

/* ----------------------------------------------------------
   HERO / BANNER (same layout everywhere)
---------------------------------------------------------- */
.hero-wrap{
  max-width:var(--maxw);
  margin:14px auto 0;
  padding:0 14px 14px;
}
.hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  align-items:center;
}
.hero-img{
  height:370px;
  border-radius:var(--radius);
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background-color:#dfe6ee;
}
.hero-card{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
}
.hero-pill{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:.7px;
  color:#0e1114;
  background:var(--bg-softer);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  margin-bottom:10px;
  text-transform:uppercase;
}
.hero-card h1{
  margin:0 0 8px;
  font-size:32px;
  line-height:1.15;
  font-weight:900;
}
.hero-card p{
  margin:0 0 14px;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}
.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.hero-actions a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  background:var(--green);
  color:#08110b;
}
.hero-actions a.secondary{
  background:white;
  color:#0e1114;
  border:1px solid var(--line);
}

/* Hero list bullets used on Home */
.hero-bullets{
  margin:0 0 14px;
  padding:0 0 0 18px;
  color:var(--muted);
  line-height:1.55;
}
.hero-bullets li{margin:6px 0;}
.hero-bullets a{font-weight:900;}

/* HERO MOBILE */
@media(max-width:860px){
  .hero{grid-template-columns:1fr;}
  .hero-img{height:170px;}
  .hero-card h1{font-size:28px;}
}

/* ----------------------------------------------------------
   SECTIONS / TYPOGRAPHY / CARDS
---------------------------------------------------------- */
.section{
  max-width:var(--maxw);
  margin:28px auto;
  padding:0 14px;
}
.section h2{
  margin:0 0 12px;
  font-size:26px;
  font-weight:900;
}
.section p{
  margin:0 0 12px;
  color:var(--muted);
  line-height:1.6;
  font-size:16px;
}

/* optional helper used in some pages */
.section-intro{
  max-width:850px;
}

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:14px;
}
.card{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.card h3{
  margin:0 0 6px;
  font-size:18px;
  font-weight:800;
}
.card p{
  margin:0;
  color:var(--muted);
  line-height:1.55;
  font-size:15px;
}

/* Optional service card image */
.card img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:10px;
  border:1px solid var(--line);
}

/* ----------------------------------------------------------
   SERVICE AREAS
---------------------------------------------------------- */
.map-wrap{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:12px;
  box-shadow:var(--shadow);
  margin:14px 0 18px;
}
.map-wrap img{
  width:100%;
  height:auto;
  border-radius:14px;
  border:1px solid var(--line);
}

.city-list{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
  display:grid;
  gap:8px;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
}
.city{
  background:var(--bg-softer);
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px 12px;
  font-weight:800;
}

/* ----------------------------------------------------------
   GALLERY + FILTERS
---------------------------------------------------------- */
.filters{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}
.filter-btn{
  border:1px solid var(--line);
  background:var(--bg-soft);
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
}
.filter-btn.active{
  background:var(--green);
  color:#08110b;
  border-color:transparent;
}

.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:12px;
}
.tile{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  cursor:pointer;
}
.tile img{
  width:100%;
  height:220px;
  object-fit:cover;
}
.tile-info{
  padding:10px 12px 12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.tile-title{font-weight:900;}
.tile-tag{
  font-size:12px;
  font-weight:800;
  background:var(--bg-softer);
  border:1px solid var(--line);
  padding:4px 8px;
  border-radius:999px;
  white-space:nowrap;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.85);
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  z-index:999;
}
.lightbox.open{display:flex;}
.lightbox img{
  max-width:95vw;
  max-height:85vh;
  border-radius:12px;
  box-shadow:var(--shadow);
}
.lightbox .close{
  position:fixed;
  top:16px;
  right:16px;
  font-size:28px;
  font-weight:900;
  color:white;
  cursor:pointer;
  background:#101419;
  border:1px solid #27303b;
  border-radius:10px;
  padding:6px 10px;
}

/* ----------------------------------------------------------
   CONTACT / FORMS
---------------------------------------------------------- */
.quote-form{
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  gap:12px;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media(max-width:860px){
  .form-grid{grid-template-columns:1fr;}
}

label{
  font-weight:800;
  font-size:14px;
  display:grid;
  gap:6px;
}

input, textarea{
  background:white;
  color:var(--text);
  border:1px solid var(--line);
  border-radius:12px;
  padding:12px;
  font-size:16px;
}

button{
  background:var(--green);
  color:#08110b;
  font-weight:900;
  font-size:16px;
  padding:12px 16px;
  border:none;
  border-radius:12px;
  cursor:pointer;
  box-shadow:var(--shadow);
}
button:hover{background:var(--green-dark);}

/* success message: hidden unless JS shows */
#sentMsg{display:none; font-weight:900; margin-top:12px;}

/* ----------------------------------------------------------
   BEFORE / AFTER (CARD BLOCK)
---------------------------------------------------------- */
.card-before-after .before-after-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
@media(max-width:860px){
  .card-before-after .before-after-row{grid-template-columns:1fr;}
}

.card-before-after img{
  width:100%;
  height:auto;
  display:block;
  border-radius:10px;
}

.card-before-after .before,
.card-before-after .after{
  position:relative;
  overflow:hidden;
  border-radius:12px;
}

.card-before-after .badge{
  position:absolute;
  top:8px;
  left:8px;
  padding:2px 8px;
  font-size:.75rem;
  font-weight:800;
  border-radius:6px;
  color:#fff;
  background:rgba(0,0,0,0.65);
}

.card-before-after .badge-before{background:rgba(160,0,0,0.8);}
.card-before-after .badge-after{background:rgba(0,120,40,0.85);}

/* ----------------------------------------------------------
   CASE STUDY STYLING
---------------------------------------------------------- */
.case-study{
  display:grid;
  gap:24px;
  margin-top:20px;
}

.case-study-images{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
@media(max-width:860px){
  .case-study-images{grid-template-columns:1fr;}
}

.case-study-images img{
  width:100%;
  border-radius:12px;
  display:block;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.cs-before, .cs-after{position:relative;}

.cs-badge{
  position:absolute;
  top:10px;
  left:10px;
  padding:4px 10px;
  font-size:.75rem;
  font-weight:800;
  color:#fff;
  border-radius:8px;
}
.cs-before-badge{background:rgba(160,0,0,0.85);}
.cs-after-badge{background:rgba(0,120,40,0.85);}

.case-study-text h3{
  margin:0 0 8px;
  font-weight:900;
}

/* ----------------------------------------------------------
   TESTIMONIALS + REVIEW BADGE
---------------------------------------------------------- */
.testimonials{
  max-width:1000px;
  margin:0 auto;
  text-align:center;
}

.testimonials .subtext{
  max-width:700px;
  margin:0.5rem auto 0;
}

.testimonials-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  margin-top:20px;
}

.testimonial{
  background:#ffffff;
  padding:18px 20px;
  border-radius:14px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  text-align:left;
}

.testimonial .stars{
  color:#f6b400;
  font-size:.95rem;
  margin-bottom:6px;
}

.review-text{
  font-size:1rem;
  line-height:1.55;
  margin:0 0 8px;
}

.reviewer{
  font-weight:800;
  color:#333;
  font-size:.95rem;
}

@media (min-width: 800px){
  .testimonials-grid{grid-template-columns:1fr 1fr;}
}

/* Review badge */
.review-badge{
  margin-top:12px;
  font-weight:800;
  font-size:1.05rem;
  color:#333;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
}
.review-badge .stars{
  color:#f6b400;
  font-size:1.2rem;
  letter-spacing:2px;
}
.review-badge .badge-text{color:#333;}

/* ----------------------------------------------------------
   FOOTER (MINIMAL LINKS – HIGH VISIBILITY)
---------------------------------------------------------- */
.site-footer{
  background:#1e2227;
  color:#9ca3af;
  margin-top:48px;
}

.footer-wrap.minimal-footer{
  max-width:var(--maxw);
  margin:0 auto;
  padding:22px 14px 14px;
  display:flex;
  justify-content:center;
  .footer-wrap.minimal-footer{
  max-width:var(--maxw);
  margin:0 auto;
  padding:22px 14px 14px;
  display:flex;
  justify-content:center;
  border-bottom:1px solid #2f343a;
}

}

.footer-links{
  display:flex;
  gap:22px;
}

.footer-links a{
  color:#ffffff;              /* brighter */
  font-weight:900;            /* stronger */
  font-size:14px;
  text-decoration:none;
  opacity:0.95;
}

.footer-links a:hover{
  color:var(--green);
  opacity:1;
}

.footer-bottom{
  text-align:center;
  padding:10px 14px 18px;
  border-top:1px solid #2f343a;
  font-size:13px;
  color:#b6bcc6;              /* lighter than before */
}
