/* =====================================================
   CORE THEME — PREMIUM LOCAL SERVICE
===================================================== */
:root{
  --brand-black:#1f2933;
  --brand-blue:#1f4fd8;
  --brand-light:#4f6fe8;
  --accent:#1f4fd8;

  --bg:#f5f7fb;
  --card:#ffffff;
  --border:#d6deee;

  --text:#1f2933;
  --muted:#6b7280;

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

  --shadow-sm:0 6px 16px rgba(31,79,216,.08);
  --shadow-md:0 16px 36px rgba(31,79,216,.14);

  --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(0,0,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),var(--brand-light));
  color:#fff;
  box-shadow:0 10px 22px rgba(0,0,255,.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,255,.18);
  backdrop-filter:saturate(120%);
}

/* Primary CALL button — hero & site-wide */
.btn--call{
  background:
    linear-gradient(
      180deg,
      var(--brand-light) 0%,
      var(--accent) 100%
    );
  color:#ffffff;
  box-shadow:
    0 12px 28px rgba(0,0,255,.35),
    inset 0 1px 0 rgba(255,255,255,.4);
    margin-bottom: 7px;
}

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

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

.btn--primary:hover{
  background:#f3f5ff;
  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(65,105,225,.12);
  border-radius:16px;
  backdrop-filter:blur(6px);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,255,.25);
}

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

.section--cta{
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #eef2ff 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,255,.18);
  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,255,.18);
  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
===================================================== */

.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
===================================================== */

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

.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);
}

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

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

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

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

/* -------------------------------------
   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: var(--muted);
  margin-top: 0.4rem;
  line-height: 1.4;
}

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

.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: var(--muted);
}


/* =====================================================
   BLOG AUTHORITY LINKS — CLEAN, TRUSTED
===================================================== */

.blog-link{
  color:var(--brand-blue);
  font-weight:600;
  text-decoration:underline;
}

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


/* =====================================================
   HERO IMAGE — MOBILE UX POLISH
===================================================== */

/* Mobile-first hero balance */
@media (max-width: 768px) {

  .section--hero{
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .hero-media{
    margin-bottom: 18px;
  }

  .hero-media img{
    min-height: 260px;              /* reduce visual dominance */
    height: 38vh;                  /* responsive but controlled */
    max-height: 360px;             /* prevent overfill */
    object-fit: cover;
    object-position: center 40%;   /* reveal more natural framing */
  }

  .hero-content{
    padding-inline: 16px;
  }

}


/* =====================================================
   HEADER CTA — MOBILE UX POLISH
===================================================== */

@media (max-width: 640px) {

  .site-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
    text-align: center;
  }

  .site-brand{
    font-size: 0.95rem;
  }

  .site-header .btn--call{
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin-top: 4px;
  }

}

/* ===============================
   BLUE AUTHORITY + UX FRAME
   =============================== */

:root {
  --accent-blue: #1f6fff;
  --soft-blue: rgba(31,111,255,.08);
}

/* Page containment */
.page {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 34px);
}

/* Section spacing */
.section {
  padding: clamp(48px, 8vw, 90px) 0;
}

/* HERO FRAME */
.section--hero {
  position: relative;
  padding-top: clamp(32px, 6vw, 72px);
  border-left: 6px solid var(--accent-blue);
  padding-left: clamp(18px, 4vw, 36px);
}

/* Hero image authority */
.hero-media {
  margin-bottom: 26px;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--accent-blue);
  box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

.hero-media img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

/* Hero content spacing */
.hero-content {
  padding-inline: clamp(10px, 3vw, 24px);
}

/* BLUE SIDE PANELS */
.card {
  position: relative;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 18px;
  background: #fff;
  border-left: 5px solid var(--accent-blue);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

/* Eyebrow authority */
.eyebrow {
  color: var(--accent-blue);
  letter-spacing: .05em;
  font-weight: 600;
}

/* TRUST BAR POP */
.trust-bar {
  border-top: 3px solid var(--accent-blue);
  border-bottom: 3px solid var(--accent-blue);
}

.trust-icon {
  color: var(--accent-blue);
}

/* BUTTON POWER */
.btn--call {
  box-shadow: 0 12px 30px rgba(31,111,255,.35);
}

.btn--primary {
  border: 2px solid var(--accent-blue);
}

/* NAV CARDS */
.nav-card {
  border: 2px solid rgba(31,111,255,.25);
  border-left: 6px solid var(--accent-blue);
}

.nav-cta {
  color: var(--accent-blue);
}

/* GALLERY FRAME */
.section--gallery {
  border-left: 6px solid var(--accent-blue);
  padding-left: clamp(18px, 4vw, 36px);
}

/* IMAGE POLISH */
.image-grid img {
  border-radius: 14px;
  border: 2px solid rgba(31,111,255,.25);
}

/* CTA SECTION */
.section--cta {
  border-top: 4px solid var(--accent-blue);
}

/* MOBILE TUNING */
@media (max-width: 640px) {
  .section--hero,
  .section--gallery {
    padding-left: 16px;
    border-left-width: 4px;
  }

  .card {
    border-left-width: 4px;
  }
}