/* =====================================================
   CORE THEME — PREMIUM LOCAL SERVICE
===================================================== */

:root{
  --brand-black:#1e1e1e;
  --brand-blue:#1f5cff;
  --brand-light:#5973b9;
  --accent:#ffb700;

  --bg:#fffb00;
  --card:#cecece;
  --border:#000000;

  --text:#1e1e1e;
  --muted:#000000;

  --radius:14px;
  --radius-lg:20px;

  --shadow-sm:0 6px 16px rgba(0,0,0,.06);
  --shadow-md:0 16px 36px rgba(0,0,0,.12);

  --max:1180px;
}

/* =====================================================
   RESET
===================================================== */

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,Segoe UI,Arial,sans-serif;
  line-height:1.7;
}

img{width:100%;display:block}
a{text-decoration:none;color:inherit}

/* =====================================================
   CONTAINERS
===================================================== */

.container,
.inner{
  width:92%;
  max-width:var(--max);
  margin-inline:auto;
}

section{margin-bottom:64px}

/* =====================================================
   NAVIGATION — CLEAN, TRUSTED
===================================================== */

.header{
  background:#fff;
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.brand{
  font-weight:900;
  color:var(--brand-blue);
  font-size:1.05rem;
}

.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
}

.nav-links a{
  font-weight:700;
  color:#374151;
}

.nav-links a:hover{
  color:var(--brand-blue);
}

/* =====================================================
   HERO — HIGH IMPACT, CLEAN
===================================================== */

.hero{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  min-height:420px;
  box-shadow:var(--shadow-md);
}

.hero-bg{
  position:absolute;
  inset:0;
}

.hero-bg img{
  height:100%;
  object-fit:cover;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(31,92,255,.25),
    rgba(15,23,42,.85)
  );
}

.hero-overlay{
  position:relative;
  z-index:2;
  padding:36px 24px;
  max-width:720px;
  margin:auto;
  text-align:center;
}

.hero h1{
  color:#fff;
  font-size:clamp(2rem,4vw,3rem);
  font-weight:900;
  line-height:1.05;
  margin-bottom:16px;
}

.top-hero-p,
.second-top-hero-p{
  color:#e5e7eb;
  font-size:1.05rem;
  margin-bottom:12px;
}

/* =====================================================
   BUTTONS — CALL-FOCUSED
===================================================== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:12px;
  font-weight:900;
  transition:.15s ease;
}

.btn-phone{
  background:linear-gradient(90deg,var(--accent),#ffd75e);
  color:#000;
  box-shadow:0 10px 22px rgba(255,183,0,.35);
}

.btn-phone:hover{
  transform:translateY(-2px);
}

/* =====================================================
   TRUST BAR
===================================================== */

.top-trust{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow-sm);
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  padding:18px;
}

@media(min-width:700px){
  .top-trust{grid-template-columns:repeat(3,1fr)}
}

.trust-item{text-align:center}
.trust-item strong{font-weight:900}

/* =====================================================
   CONTENT CARDS
===================================================== */

.card{
  background:var(--card);
  border-radius:var(--radius-lg);
  padding:36px;
  box-shadow:var(--shadow-sm);
  border:1px solid var(--border);
}

.long-copy p{
  max-width:65ch;
  margin-bottom:16px;
}

.kicker{
  display:inline-block;
  background:var(--brand-blue);
  color:#fff;
  padding:6px 12px;
  border-radius:999px;
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.h2{
  font-size:1.6rem;
  font-weight:900;
  margin-bottom:16px;
}

/* =====================================================
   LISTS
===================================================== */

.list-plain{
  padding-left:18px;
}

.list-plain li{
  margin-bottom:10px;
  position:relative;
}

.list-plain li::before{
  content:"✔";
  position:absolute;
  left:-18px;
  color:var(--brand-blue);
}

/* =====================================================
   IMAGE BLOCKS
===================================================== */

.service-image,
.map-wrap,
.gallery img{
  border-radius:var(--radius);
  box-shadow:var(--shadow-md);
  overflow:hidden;
}

.image-caption{
  font-size:.85rem;
  color:var(--muted);
  text-align:center;
  margin-top:10px;
}

/* =====================================================
   MAP
===================================================== */

.map-wrap{
  height:280px;
}

.map-wrap img{
  height:100%;
  object-fit:cover;
}

/* =====================================================
   FOOTER
===================================================== */

.footer{
  margin-top:80px;
  padding:40px 20px;
  text-align:center;
  font-size:.9rem;
  color:var(--muted);
  border-top:1px solid var(--border);
}

/* =====================================================
   MOBILE POLISH
===================================================== */

@media(max-width:768px){
  section{margin-bottom:48px}
  .card{padding:24px}
  .hero{min-height:380px}
}


/* =====================================================
   CTA ELEVATION — PREMIUM, TRUST-DRIVEN
===================================================== */

/* Universal CTA baseline upgrade */
.btn{
  position:relative;
  font-size:0.95rem;
  letter-spacing:.2px;
  border:1px solid rgba(0,0,0,.08);
  backdrop-filter:saturate(120%);
}

/* Primary CALL button — hero & site-wide */
.btn--call{
  background:
    linear-gradient(
      180deg,
      #ffd75e 0%,
      var(--accent) 100%

    );
  color:#1e1e1e;
  box-shadow:
    0 12px 28px rgba(255,183,0,.35),
    inset 0 1px 0 rgba(255,255,255,.6);
    margin-bottom: 7px;
}

.btn--call:hover{
  transform:translateY(-2px);
  box-shadow:
    0 18px 36px rgba(255,183,0,.45),
    inset 0 1px 0 rgba(255,255,255,.75);
}

/* Secondary CTA (Services etc) */
.btn--primary{
  background:#ffffff;
  color:var(--brand-blue);
  border:1px solid rgba(31,92,255,.25);
  box-shadow:var(--shadow-sm);
}

.btn--primary:hover{
  background:#f8faff;
  box-shadow:var(--shadow-md);
}

/* =====================================================
   CTA GROUP — STRUCTURE & BREATHING ROOM
===================================================== */

.cta-group{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
  margin-bottom:16px;
}

/* Mobile: stack cleanly */
@media(max-width:640px){
  .cta-group{
    flex-direction:column;
  }

  .cta-group .btn{
    width:100%;
  }
}

/* =====================================================
   HERO CTA FRAMING (SUBTLE, PREMIUM)
===================================================== */

.section--hero .cta-group{
  padding:22px;
  background:rgba(255,255,255,.08);
  border-radius:16px;
  backdrop-filter:blur(6px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.15);
}

/* =====================================================
   FINAL CTA SECTION — VISUAL ANCHOR
===================================================== */

.section--cta{
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f7f9ff 100%
    );
  border-radius:var(--radius-lg);
  padding:48px 24px;
  box-shadow:var(--shadow-md);
  text-align:center;
}

.section--cta .heading-lg{
  max-width:22ch;
  margin-inline:auto;
}

.section--cta .cta-group{
  justify-content:center;
}


/* =====================================================
   NAV CARDS — CLEAN, UNAMBIGUOUS, TRUST-LED
===================================================== */

.nav-grid{
  display:grid;
  gap:24px;
}

@media(min-width:720px){
  .nav-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* Entire card is the action */
.nav-card{
  display:block;
  background:#ffffff;
  border-radius:18px;
  padding:32px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:var(--shadow-sm);
  transition:transform .2s ease, box-shadow .2s ease;
}

/* Hover = lift the whole card */
.nav-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}

/* Label */
.nav-label{
  display:inline-block;
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--brand-blue);
  margin-bottom:8px;
}

/* Headline */
.nav-card h3{
  margin:6px 0 10px;
  font-size:1.4rem;
  font-weight:900;
  letter-spacing:-.3px;
  color:var(--text);
}

/* Description */
.nav-card p{
  margin:0 0 18px;
  color:var(--muted);
  max-width:42ch;
}

/* Directional hint — NOT a button */
.nav-cta{
  font-weight:800;
  font-size:.95rem;
  color:var(--brand-blue);
  display:inline-flex;
  align-items:center;
  gap:6px;
}

/* Subtle arrow motion only */
.nav-card:hover .nav-cta{
  transform:translateX(4px);
}

/* =====================================================
   HELPFUL LINKS — LOW-INTENT INTERNAL NAV
===================================================== */

.section--helpful{
  max-width:65ch;
  margin:48px auto 0;
  padding-top:24px;
  border-top:1px solid rgba(0,0,0,.08);
  text-align: center;
}

.section--helpful .heading-sm{
  font-size:.95rem;
  font-weight:800;
  color:var(--text);
  margin-bottom:12px;
}

.helpful-links{
  list-style:none;
  padding:0;
  margin:0;
}

.helpful-links li{
  margin-bottom:8px;
}

.helpful-links a{
  font-size:.95rem;
  color:var(--brand-blue);
  font-weight:600;
}

.helpful-links a:hover{
  text-decoration:underline;
}



/* =====================================================
   GLOBAL HERO CONTENT ALIGNMENT FIX
   Keeps H1s aligned with body content across all pages
===================================================== */

.section--hero .hero-content,
.section--hero .hero-overlay {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 32px);
}




@media (min-width: 1024px) {
  .section--hero .hero-content,
  .section--hero .hero-overlay {
    padding-inline: 40px;
  }
}



/* =====================================================
   DESKTOP FLOW & ALIGNMENT FIX
   (Append-only, safe override)
===================================================== */

/* -------------------------------------
   1. GLOBAL SECTION WIDTH ANCHOR
------------------------------------- */

.section{
  max-width:var(--max);
  margin-inline:auto;
  padding-inline:clamp(16px, 4vw, 32px);
}

/* -------------------------------------
   2. HERO DESKTOP STRUCTURE FIX
------------------------------------- */

.section--hero{
  display:grid;
  align-items:center;
  padding:64px 0;
}

@media (min-width: 900px){
  .section--hero{
    grid-template-columns: 1.1fr 0.9fr;
    gap:48px;
  }
}

.hero-media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-md);
}

.hero-media img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  object-position:center;
}

.hero-content{
  padding-inline:clamp(16px, 3vw, 32px);
}

/* -------------------------------------
   3. IMAGE GRID DISCIPLINE (DESKTOP)
------------------------------------- */

.image-grid{
  display:grid;
  gap:24px;
}

@media (min-width: 768px){
  .image-grid{
    grid-template-columns:repeat(3, 1fr);
  }
}

/* right here mate */
.image-grid img{
  height:260px;
  object-fit: contain;
  border-radius:var(--radius);
}

/* -------------------------------------
   4. CONTENT ROW CONTAINMENT
------------------------------------- */

.layout-row{
  max-width:var(--max);
  margin-inline:auto;
}


.local-plant-visuals {
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
}

.plant-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.image-caption {
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* Desktop enhancement */
@media (min-width: 768px) {
  .local-plant-visuals {
    grid-template-columns: 1fr 1fr;
  }
}


/* Image block for process section on service page */
.image-block {
  margin: 1.5rem 0;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.image-caption {
  margin-top: 0.5rem;
  color: #666;
}


/* HELPFUL LINKS / BLOG LINKS */
.blog-link{
  color:blue;
  font-weight: 600;
  text-decoration:underline;
  
}

.blog-link:hover{
  text-decoration:none;
  opacity:.85;
}

.external-link {
  color: #1a0dab;
  text-decoration: underline;
  cursor: pointer;

}
.external-link:hover {

  opacity: 0.85;

}





