/* Import all Poppins font weights (300–900) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --bg:#f7f6f2;
    --surface:#ffffff;
    --ink:#17311f;
    --muted:#506356;
    --brand:#2f7a3f;
    --brand-2:#e8f3ea;
    --line:#e6e3da;
    --shadow: 0 18px 40px rgba(0,0,0,.08);
    --radius: 18px;
    --radius-lg: 28px;
    --max: 1440px;
    --pad: 18px;
    --pad-y: 12px;
    --topbar-height: 52px;
}

*{box-sizing:border-box}
iframe{
  border: 0 none;
}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:var(--ink);
    background:var(--surface);
    line-height:1.45;
}

a{color:var(--brand); text-decoration:none;}

img{max-width:100%; display:block}

.material-symbols-outlined{
  font-variation-settings:
  'FILL' 0,
  'wght' 600,
  'GRAD' 0,
  'opsz' 24;
  font-size: 20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}

.container{max-width:var(--max); margin:0 auto; padding:var(--pad-y) var(--pad)}

p {
  font-weight: 400;
  padding-bottom: 20px;
}

/* Reusable section background themes */
.section--white {
  background: #fff;
}

.section--green {
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(22, 101, 52, 0.10), transparent 55%),
    var(--background, #f5fbf6);
}


/*Header Topbar*/
.topbar{
    position: sticky;
    top: 0;
    z-index: 9999;
    background:#224b30;
    color:#eaf3ec;
    font-size:13px;
    min-height: var(--topbar-height);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.topbar__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px var(--pad);
    gap:20px;
    flex-wrap:wrap;
}
.topbar__left,
.topbar__right{
    display:flex;
    align-items:center;
    gap:18px;
}
.topbar__left a,
.topbar__right a{
    color:#f7fbf8;
    font-weight:300;
    letter-spacing:0.02em;
    display:flex;
    align-items:center;
}
.topbar__icon{margin-right:10px; font-size:18px; line-height:1;}
.topbar__left{
    justify-content:flex-start;
}
.topbar__right{
    justify-content:flex-end;
}
.topbar__right a{
    position:relative;
    transform:translateY(2px);
    opacity:0.95;
    transition:transform 0.25s ease, opacity 0.25s ease;
    animation: topbar-link-in 0.45s ease forwards;
}
.topbar__right a:nth-child(1){animation-delay:0.05s;}
.topbar__right a:nth-child(2){animation-delay:0.12s;}
.topbar__right a:hover{
    transform:translateY(-1px);
    opacity:1;
}
.topbar__right a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:rgba(255,255,255,0.9);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 0.25s ease;
}
.topbar__right a:hover::after{
    transform:scaleX(1);
}
.topbar__dash{
    width:1px;
    height:20px;
    border-left:1px dashed rgba(255,255,255,0.55);
}
.topbar__divider{
    width:1px;
    height:16px;
    background:rgba(255,255,255,0.65);
}
.topbar__icon{margin-right:10px; font-size:18px; line-height:1;}

@keyframes topbar-link-in{
    from{opacity:0; transform:translateY(8px);}
    to{opacity:0.95; transform:translateY(2px);}
}

.site-header{
    background:var(--bg);
}
.header__inner{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:14px var(--pad-y);
}
.brand__logo{
    height:80px;
    width:auto;
    display:block;
}

@media (max-width: 720px){
    .topbar__inner{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
        padding:12px var(--pad) 14px;
    }
    .topbar__left,
    .topbar__right{
        width:100%;
        justify-content:center;
        gap:14px;
        flex-wrap:wrap;
    }
    .topbar__left{
        flex-wrap:nowrap;
        gap:10px;
        padding-bottom:12px;
        border-bottom:1px solid rgba(255,255,255,0.35);
    }
    .topbar__left a{white-space:nowrap;}
    .topbar__dash{display:none;}
    .topbar__dash,
    .topbar__divider{
        height:14px;
    }
    .topbar__right a{
        animation:none;
        transform:translateY(0);
  }
  .topbar__right a:hover{
      transform:translateY(-1px);
  }
}

/* Tighter icon sizing for topbar so it doesn't dominate on small screens */
.topbar .material-symbols-outlined.topbar__icon{
  font-size: 18px;
  margin-right: 8px;
}

@media (max-width: 540px){
    .container{padding:var(--pad-y) calc(var(--pad) * 0.75);}
    .topbar{font-size:13px;}
    .topbar__icon{margin-right:8px;}
}

@media (max-width: 480px){
    .topbar__inner{
        padding: 8px 10px;
        gap: 8px;
    }
    .topbar__left{
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: center;
        min-width: 0;
    }
    .topbar__left a{
        white-space: nowrap;
        word-break: normal;
        line-height: 1.25;
        font-size: 12px;
        letter-spacing: 0;
    }
    .topbar__icon{
        font-size: 13px;
        margin-right: 4px;
    }
}


/* Header */

.site-header {
  position: sticky;
  top: var(--topbar-height);
  z-index: 9999;
  background: rgba(247, 246, 242, 0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  position: relative;
  gap: 18px;
}
.nav__bar{
  display:flex;
  align-items:center;
  gap:18px;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #1f5c2f);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(47, 122, 63, 0.25);
  color: white;
  font-weight: 900;
}
nav > ul {
  list-style: none;
  display: flex;
  gap: 60px;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav > ul > li {position:relative;}
nav a {
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  opacity: 0.9;
  position: relative;
  padding-bottom: 4px;
  transition: color .2s ease;
}
nav a:hover {
  opacity: 1;
  color: var(--brand);
}
.dropdown__toggle::after,
nav > ul > li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 60%;
  height: 2px;
  background: var(--brand);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease;
  opacity: 0;
}
nav > ul > li:hover > a::after,
.dropdown:hover > .dropdown__toggle::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

.dropdown {position: relative;}
.dropdown__toggle {display:inline-flex; align-items:center; gap:6px;}
.dropdown__icon {font-size:11px; transition: transform .18s ease;}
.dropdown__menu {
  display: block;
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  box-shadow: 0 18px 30px rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 12px 0;
  list-style: none;
  margin: 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 99;
}
.dropdown__menu li {display:block;}
.dropdown__menu li a {
  display: block;
  padding: 10px 18px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  opacity: .9;
  white-space: nowrap;
}
.dropdown__menu li a:hover {
  opacity: 1;
  background: var(--brand-2);
}
.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown:hover .dropdown__icon,
.dropdown.open .dropdown__icon {transform: rotate(180deg);}
.dropdown.open .dropdown__menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn {
  font-family: "Poppins", sans-serif;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 12px 25px;
  border-radius: 999px;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn:hover {
  transform: translateY(-1px);  
}
.btn.primary {
  border-color: transparent;
  background: var(--brand);
  color: white;
  letter-spacing: 0.5px;
}

.btn.outline,
.btn.secondary,
.hero-actions__secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.btn.outline:hover,
.btn.secondary:hover,
.hero-actions__secondary:hover {
  background: #f3faf5;
}
.btn.primary:hover {
  box-shadow: 0 14px 24px rgba(47, 122, 63, 0.28);
}
.btn__icon {
  font-size: 12px;
  transition: transform .18s ease;
}
.btn:hover .btn__icon {
  transform: translateX(4px);
}

.hamburger {
  display: none;
}


/* Header Mobile */
@media (max-width: 960px){
    .nav{
      flex-direction:column;
      align-items:stretch;
      gap:12px;
    }
    .nav__bar{
      width:100%;
      justify-content:space-between;
    }
    .brand__logo{height:96px;}
    .hamburger{
      display:inline-flex;
      border:none;
      background:transparent;
  padding:8px 10px;
  color:var(--ink);
  font-size:24px;
  gap:6px;
}
.hamburger .icon-close{display:none;}
.hamburger.is-open .icon-bars{display:none;}
.hamburger.is-open .icon-close{display:inline-block;}
    nav > ul{
      display:none;
      position:static;
      background: var(--surface);
      border:1px solid var(--line);
      border-radius: 18px;
      box-shadow: var(--shadow);
      padding: 12px;
      flex-direction:column;
      align-items:stretch;
      gap: 8px;
      z-index: 200;
    }
    nav > ul.open{display:flex}
    nav > ul > li{width:100%;}
    nav a{padding: 10px 12px; border-radius: 12px; display:flex; justify-content:space-between; align-items:center;}
    nav a:hover{background: #fbfbf8; text-decoration:none}
    .dropdown__menu{
      position:static;
      border:1px solid var(--line);
      box-shadow:none;
      border-radius:12px;
      background:var(--surface);
      padding:6px 0;
      margin-top:6px;
      min-width:unset;
      display:none;
      opacity:1;
      visibility:visible;
      transform:none;
    }
    .dropdown.open .dropdown__menu{display:block;}
    .dropdown__menu li a{padding:10px 14px;}
    .actions{
      width:100%;
      order:3;
    }
    .actions .btn.primary{
      display:inline-flex;
      width:100%;
      justify-content:center;
      font-size: 17px;
    }
    .row{grid-template-columns: 1fr}
}


/* Hero */
    .hero{
      padding: 30px 0 30px;
    }
    .hero-card{
      overflow:hidden;      
    }
    .hero-inner{display:grid; grid-template-columns: 1.15fr .85fr; gap:48px}
    .hero-left{padding: 0; max-width: 640px;}    
    .hero-left h1{padding: 10px 0 25px; font-size: 28px; line-height: 1.25; font-weight: 700; color: var(--ink); letter-spacing:-0.2px;}
    .hero-left h1 .accent{color: var(--brand);}
    .hero-left .sub{
      margin: 0 0 22px;
      font-size: 20px;
      line-height: 1.6;
      font-weight: 500;
      color: #2f352d;
    }
    .highlight-banner{display:flex; align-items:center; gap:14px; padding: 10px 0 15px 0;}
    .highlight-banner__icon{position:relative; width:60px; height:60px; border-radius:50%; background: var(--brand); display:grid; place-items:center; color:#fff; font-size:20px; overflow:visible;}
    .highlight-banner__icon .material-symbols-outlined{font-size:30px; z-index:1;}
    .highlight-banner__text{font-size: 20px; font-weight: 700; color: var(--ink); letter-spacing:-0.1px;}
    .highlight-banner__lead{color: var(--brand); margin-right:8px;}

    .bullets{
      display: grid;
      gap: 20px;
      padding: 15px 20px 15px 25px;
      list-style: none;
    }
    .bullet{display:flex; gap:8px; align-items:center; color:var(--ink)}
    .bullet__icon{width:30px; height:30px; color: #5bb543; display:grid; place-items:center; font-size:20px; background: transparent;}
    .bullet__text{font-size:17px; font-weight:500; color:#3b3f47; letter-spacing:-0.1px;}
    .dot{display:none}

    .pill-row{display:flex; flex-wrap:wrap; gap:20px; padding: 20px 0;}
    .pill-row .btn:not(.primary){
      padding: 16px 32px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 600;
      gap: 10px;
    }
    .pill-row .btn.primary{
      padding: 16px 32px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 400;
      gap: 10px;
    }
    .pill-row .btn .btn__icon{font-size:20px;}
    .pill-row .btn.primary .btn__icon{
      width:28px;
      height:28px;
      border-radius:50%;
      background:#fff;
      color: var(--ink);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      margin-left:4px;
    }

.trust-badges{
  display:flex;
  gap:16px;
  align-items:center;
  margin-top: 20px;
  color: var(--brand);
  font-weight:600;
  flex-wrap:wrap;
}
.trust-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e8f3ea;
  border: 1px solid #d2e6d7;
}
.trust-badge .material-symbols-outlined{
  font-size:18px;
  color: var(--brand);
}

    .hero-right{padding: 0; display:grid; place-items:center; align-self:center;}
  .custom-frame {
    width: clamp(340px, 48vw, 656px);
    aspect-ratio: 656 / 774;
    overflow: hidden;
    /* Top-left | Top-right | Bottom-right | Bottom-left */
    border-radius: 
      25px
      120px
      25px
      120px;
  }

.custom-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*Hero Map icon animation effect*/
 .highlight-banner__icon::before{
    content:"";
    position:absolute;
    inset:10px;
    border:2px solid rgba(255,255,255,0.7);
    border-radius:50%;
    animation: pulse-ring 1.9s ease-out infinite;
    animation-delay: .25s;
  }
.highlight-banner__icon::after{
    content:"";
    position:absolute;
    inset:6px;
    border:2px solid rgba(255,255,255,0.8);
    border-radius:50%;
    animation: pulse-ring 1.8s ease-out infinite;
  }
@keyframes pulse-ring{
  0%{transform:scale(0.9); opacity:0.8;}
  70%{transform:scale(1.2); opacity:0;}
  100%{transform:scale(1.25); opacity:0;}
}

/* Popular Services */
#services{
  padding: 60px 0 50px;
  background: #ffffff;
}
.services-hero{
  margin-bottom: 40px;
}
.services-copy{
  text-align:center;
}
.services-copy h2{
  margin:0 0 18px;
  font-size: 34px;
  line-height:1.2;
  color: var(--ink);
}
.services-copy p{
  margin:0;
  font-size: 18px;
  line-height:1.6;
  color:#2f3540;
}
.services-hero__image{
  width:100%;
  border-radius: 36px 120px 36px 120px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.services-hero__image img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
}

.page-hero {
  --page-hero-image: none;
  position: relative;
  background-color: #1f3e2c;
  background-image: var(--page-hero-image);
  background-size: cover;
  background-position: center;
  color: #fff;
  min-height: clamp(240px, 30vw, 380px);
  padding: clamp(40px, 8vw, 64px) 0;
  display: flex;
  align-items: center;
}


.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  text-align: center;
}
.services-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
}
.service-card{
  background: #f5fbf6;
  border: 1px solid #d8e8db;
  border-radius: 18px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
  min-height: 280px;
}
.service-card__body{
  padding: 18px 18px 12px;
   min-height: 130px;
}
.service-card h3{
  margin:0 0 8px;
  font-size: 20px;
  color: var(--ink);
}
.service-card p{
  margin:0;
  font-size: 16px;
  line-height:1.5;
  color:#3f454c;
}
.service-card__image{
  flex:1;
  overflow:hidden;
}
.service-card__image img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

@media (max-width: 960px){
  .services-hero{
    grid-template-columns: 1fr;
  }
  .services-hero__image{
    order:-1;
    justify-self:center;
    max-width: 640px;
  }
}

/* Steps (Booking) start */
#process{
  padding: 50px 0 50px;
  background-color: #ffffff;
}
.steps__head{
  text-align:center;
  max-width: 720px;
  margin: 0 auto 32px;
}
.steps__head h2{
  margin:0 0 12px;
  font-size: 32px;
  color: var(--ink);
}
.steps__head p{
  margin:0;
  font-size: 16px;
  line-height:1.6;
  color:#3b3f47;
}
.steps__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:14px;
  margin-bottom: 26px;
}
.step-card{
  background:#fff;
  border:1px solid #e1e6de;
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.step-card__badge{
  width:36px;
  height:36px;
  border-radius:50%;
  background: var(--brand);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
  font-size:16px;
}
.step-card h3{
  margin:0;
  font-size: 18px;
  color: var(--ink);
}
.step-card p{
  margin:0;
  font-size: 15px;
  line-height:1.6;
  color:#3f454c;
}
.steps__cta{
  border:1px solid #d8e8db;
  border-radius: 18px;
  text-align:center;
  padding: 24px 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
}
.steps__cta h3{
  margin:0 0 8px;
  font-size: 20px;
  color: var(--ink);
}
.steps__cta p{
  margin:0 0 16px;
  font-size: 15px;
  color:#3f454c;
}
.steps__cta .btn.primary{
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 720px){
  .steps__head h2{font-size:28px;}
  .steps__cta .btn.primary{width:100%;}
}

/* Steps (Booking) end */

/* Services grid start */
#our-services{
  padding: 40px 0 40px;
  background: #f5fbf6;
}
.service-block__head{
  text-align:center;
  max-width: 720px;
  margin: 0 auto 32px;
}
.service-block__head h2{
  margin:0 0 12px;
  font-size: 32px;
  color: var(--ink);
}
.service-block__head p{
  margin:0;
  font-size: 16px;
  line-height:1.6;
  color:#3b3f47;
}
.service-block__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap:14px;
}
.service-tile{
  background:#fff;
  border:1px solid #e1e6de;
  border-radius: 18px;
  padding: 18px 18px 22px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
}
.service-tile__icon{
  width:42px;
  height:42px;
  border-radius:50%;
  background: #e8f3ea;
  color: var(--brand);
  display:grid;
  place-items:center;
  margin-bottom: 12px;
}

.service-tile__header.is-layout-flex > .service-tile__icon{
  margin-bottom: 12px !important;
}
.service-tile__icon .material-symbols-outlined{
  font-size:22px;
  font-variation-settings:'wght' 600;
}
.service-tile h3{
  margin:0 0 8px;
  font-size: 18px;  
}
.service-tile p{
  margin:0;
  font-size: 15px;
  line-height:1.5;
  color:#3f454c;
}
.service-block__cta{
  text-align:center;
  margin-top: clamp(40px, 3vw, 50px);
}
.service-block__cta .btn.primary{
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 720px){
  #our-services{
    padding: 44px 0 56px;
  }
  .service-block__head h2{
    font-size: 28px;
  }
}
/* Services grid end */

/* Why choose us start */
.why-choose{
  padding: 40px 0 0;
  background: #f5fbf6;
}
.why-choose__head{
  text-align:center;
  max-width: 720px;
  margin: 0 auto 32px;
}
.why-choose__head h2{
  margin:0 0 10px;
  font-size: 32px;
  color: var(--ink);
}
.why-choose__head p{
  margin:0;
  font-size: 16px;
  line-height:1.5;
  color:#3b3f47;
}
.why-choose__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.why-choose__card{
  text-align:center;
  padding: 14px;
}
.why-choose__icon{
  width:62px;
  height:62px;
  border-radius:50%;
  background: #e8f3ea;
  color: var(--brand);
  display:grid;
  place-items:center;
  margin: 0 auto 12px;
}
.why-choose__icon .material-symbols-outlined{
  font-size:28px;
  font-variation-settings:'wght' 600;
}
.why-choose__card h3{
  margin:0 0 6px;
  font-size: 17px;
  color: var(--ink);
}
.why-choose__card p{
  margin:0;
  font-size: 14px;
  line-height:1.5;
  color:#3f454c;
}

@media (max-width: 720px){
  .why-choose{
    padding: 44px 0 0;
  }
  .why-choose__head h2{
    font-size: 28px;
  }
}
/* Why choose us end */
@media (max-width: 640px){
  #services{
    padding: 44px 0 40px;
  }
  .services-copy h2{
    font-size: 28px;
    text-align:center;
  }
  .services-copy p{
    text-align:center;
  }
  .services-hero{
    gap:28px;
  }
  .services-grid{
    gap:30px;
  }
}
/*Hero section responsive*/
@media (max-width: 900px){
  .hero{
    padding: 20px 0 30px;
  }
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-left{
    max-width: 100%;
  }
  .hero-left h1{
    font-size: 28px;
    text-align: center;
    padding-top: 0;
    padding-bottom: 10px;
  }
  .hero-left .sub{
    text-align: center;
    margin: 0 0 18px;
    font-size: 16px;
  }
  .highlight-banner{
    justify-content: center;
    text-align: center;
  }
  .highlight-banner__text{
    display:inline-block;
    text-align: left;
    font-size: 20px;
  }
  .highlight-banner__icon{
    width: 70px;
    height: 50px;
  }
  .bullets{
    margin: 10px 0 26px 0;
    gap: 14px;
  }
  .hero-right{
    order:-1;
  }
.custom-frame{
    width: clamp(280px, 90vw, 540px);
    border-radius: 24px 80px 24px 80px;
    justify-self: center;
  }
  .pill-row{
    justify-content:center;
    width:100%;
  }
  .pill-row .btn{
    width:100%;
    justify-content:center;
  }
  .pill-row .btn.primary,
  .pill-row .btn:not(.primary){
    text-align:center;
    font-size: 18px;
  }
}

/* Reviews */
.reviews{
  padding: 42px 0 78px;
  background: #f5fbf6;
}
.reviews__head{
  text-align:center;
  max-width: 840px;
  margin: 0 auto 28px;
}
.reviews__head h2{
  margin:0 0 12px;
  font-size: 32px;
  color: var(--ink);
}
.reviews__rating{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 14px;
  margin-bottom: 8px;
}
.reviews__stars{
  display:flex;
  gap:6px;
}
.reviews__stars .material-symbols-outlined{
  font-family: "Material Symbols Rounded" !important;
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24 !important;
  color: #fbbc05 !important;
  font-size: 28px;
}
.reviews__score{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
}
.reviews__value{
  font-size: 34px;
  font-weight: 700;
  color: #2ad26f;
  line-height: 1;
}
.reviews__outof{
  font-size: 12px;
  color: #7b8594;
}
.reviews__sub{
  margin:0;
  font-size: 15px;
  color: #525d6d;
}
.reviews__sub strong{color: var(--ink);}
.google-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 26px;
  height: 26px;
}
.google-icon svg{
  width: 100%;
  height: 100%;
  display:block;
}
.reviews__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.review-card{
  background:#fff;
  border:1px solid #e3e6ed;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.04);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.review-card__head{
  display:flex;
  align-items:center;
  gap: 12px;
}
.review-card__head img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid #e6eaef;
}
.review-card__name{
  margin:0 0 4px;
  font-weight: 700;
  color: #1f2c38;
  padding-bottom: 3px;
}
.review-card__stars{
  display:flex;
  gap:4px;
}
.review-card__stars .material-symbols-outlined{
  font-family: "Material Symbols Rounded" !important;
  font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 24 !important;
  color: #fbbc05 !important;
  font-size:18px;
}
.review-card__quote{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #2d343d;
}
.review-card__meta{
  margin: 0;
  font-size: 13px;
  color: #7b8594;
}
.reviews__cta{
  text-align:center;
  margin-top: 36px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.reviews__btn{
  border-color: var(--brand);
  background: transparent;
  color: var(--brand);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 16px;
  gap: 12px;
  box-shadow: none;
  width: auto;
  align-self: center;
}
.reviews__btn:hover{
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  background: #f3f8f5;
  transform: translateY(-1px);
}
.google-icon--pill{
  padding: 0;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border: 1px solid #e1e6de;
}
.reviews__footnote{
  margin: 0;
  font-size: 14px;
  color: #727c8b;
}

/* About + Coverage */
.about-section{
  padding: 40px 0;
  background: #ffffff;
}
.about{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 46px);
  align-items:start;
}
.about__copy h2{
  margin: 0 0 10px;
  font-size: 34px;
  color: var(--ink);
}
.about__heading{
  display:flex;
  align-items:center;
  gap: 18px;
  margin-bottom: 20px;
}
.about__titles h2{
  margin: 0;
  font-size: 34px;
}
.about__titles .about__sub{
  margin: 4px 0 0;
}
.about__sub{
  margin: 0 0 16px;
  font-size: 18px;
  color: #334152;
  font-weight: 600;
}
.about__copy p{
  margin: 0 0 14px;
  color: #2f3540;
  font-size: 16px;
  line-height: 1.6;
}
.about__badge{
    min-width: 120px;
    height: 120px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding: 10px;
    border-radius: 50%;
    background: #e9f5e9;
    color: #0f3c24;  
    animation: badgePulse 2.6s ease-in-out infinite;
}
.about__years{font-weight:700; font-size: 30px; line-height:1.1;}
.about__years-label{
  font-size:11px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  text-align:center;
  font-weight:700;
  display:flex;
  flex-direction:column;
  align-items:center;
  line-height:1.1;
  gap: 2px;
}

@keyframes badgePulse{
  0%, 100%{transform: translateY(0) scale(1);}
  50%{transform: translateY(-2px) scale(1.03);}
}
.about__areas h3{
  margin: 10px 0 12px;
  font-size: 20px;
  color: var(--ink);
}
.about__areas {
    margin-bottom: 30px;
}
.about__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px 18px;
}
.about__list li{
  display:flex;
  align-items:center;
  gap:6px;
  font-weight:600;
  color: #1f2c38;
}
.about__list .material-symbols-outlined{
  color: var(--brand);
  font-size:18px;
}
.about__cta{
  margin-top: 18px;
  padding: 14px 26px;
  box-shadow: 0 14px 28px rgba(47,122,63,0.22);
}
.about__visual{
  background: #ffffff;
  border: 1px solid #e6eaef;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.07);
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap: 12px;
}
.about__frame{  
  overflow:hidden;  
}
.about__frame img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.about__legend{
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap:wrap;
  color: #2f3540;
  font-size: 14px;
  padding: 6px 4px 2px;
}
.legend-dot{
  width: 12px;
  height: 12px;
  border-radius:50%;
  display:inline-block;
  margin-right:6px;
}
.legend-dot--cities{background: #1b7a3f;}
.legend-dot--service{background: #33c26a;}
.legend-line{
  width: 36px;
  height: 10px;
  border: 2px dashed #5fd98a;
  border-radius: 999px;
  display:inline-block;
  margin-right:6px;
}
@media (max-width: 960px){
  .about{
    grid-template-columns: 1fr;
  }
  .about__visual{
    order:-1;
  }
}
@media (max-width: 720px){
  .about-section{
    padding: 54px 0 60px;
  }
  .about__heading{
      flex-wrap: nowrap;
  }
  .about__titles h2{
    font-size: 28px;
  }
}

/* Brands */
.brands{
  padding: 50px 0 0;
  background: #ffffff;
}
.brands__inner{
  text-align:center;
}
.brands__head h2{
  margin: 0 0 10px;
  font-size: 32px;
  color: var(--ink);
}
.brands__head p{
  margin: 0 0 24px;
  font-size: 17px;
  color: #2f3540;
}
.brands__grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  align-items:center;
  justify-items:center;
  margin-bottom: 12px;
}
.brand-card{
  width: 160px;
  height: 90px;
  background: #f8fafb;
  border: 1px solid #e6eaef;
  border-radius: 14px;
  display:grid;
  place-items:center;
  padding: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  filter: grayscale(1);
}
.brand-card img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.brand-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.07);
  filter: grayscale(0);
}
@media (max-width: 640px){
  .brands{
    padding: 48px 0 0;
  }
  .brands__head h2{
    font-size: 28px;
  }
  .brands__head p{
    font-size: 16px;
  }
  .brand-card{
    width: 140px;
    height: 82px;
  }
}
@media (max-width: 720px){
  .reviews{
    padding: 40px 0;
  }
  .reviews__head h2{
    font-size: 28px;
  }
  .reviews__rating{
    gap: 10px;
  }
  .reviews__value{
    font-size: 30px;
  }
}

/* Footer */
.site-footer{
  background: #0f3c24;
  color: #e8f3ea;
  padding: 48px 0 20px;
  margin-top: 0;
}
.footer-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.footer-col h4{
  margin: 0 0 10px;
  font-size: 18px;
  color: #ffffff;
  font-weight: 600;
}
.footer-tagline{
  margin: 0 0 10px;
  color: #cfe4d5;
  font-size: 14px;
  line-height:1.5;
}
.footer-contact{
  display:flex;
  flex-direction:column;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 14px;
}
.footer-link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: #e8f3ea;
  font-weight:500;
  font-size: 14px;
}
.footer-link .material-symbols-outlined{
  font-size:18px;
}
.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.footer-list a{
  color: #e8f3ea;
  font-weight:500;
  font-size: 14px;
}
.footer-list li{
  font-size: 14px;
  color: #e8f3ea;
  font-weight:500;
}
.footer-list a:hover{
  color: #9ce0b1;
}
.footer-bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 8px;
  font-size: 14px;
  color: #cfe4d5;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 30px;
  text-align:center;
}
@media (max-width: 640px){
  .site-footer{
    padding: 40px 0 32px;
  }
}

/* Scroll to top */
.scroll-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(34, 75, 48, 0.92);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 28px rgba(0,0,0,0.16);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
  z-index: 90;
}
.scroll-top .material-symbols-outlined{
  font-size: 22px;
  color: inherit;
}
.scroll-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover{
  background: rgba(47, 122, 63, 0.95);
}
.scroll-top:active{
  transform: translateY(1px);
}
@media (max-width: 640px){
  .scroll-top{
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }
}

/* Inner Page — Irrigation Repair template */

.inner-section--light {
    background-color: #fff;
  }

  .hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #65717c;
  font-weight: 600;
  margin: 12px 0 16px;
}

.hero-location .material-symbols-outlined {
  color: #1f8f60;
  font-size: 26px;
}

.hero-highlight {
  max-width: 560px;
  background: #e7f4ec;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.hero-highlight__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #1f8f60;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hero-highlight__icon {
  background: #d6ecdf;
  color: #1f8f60;
  border-radius: 50%;
  padding: 6px;
  font-size: 18px;
}

.hero-highlight__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
  color: #65717c;
  font-weight: 500;
}

.hero-highlight__list .material-symbols-outlined {
  color: #1f8f60;
  font-size: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 16px;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 40px;
  padding: 14px 22px;
  font-weight: 600;
}

.hero-actions .btn.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.hero-actions__secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}

.hero-actions .btn .btn__icon {
  font-size: 18px;
}

.inner-section {
    padding: 20px 0 20px;
  }


@media (max-width: 640px) {
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.issues-grid {
  display: block;
  gap: 0;
  margin-top: 20px;
}

.issues-panel {
  background: transparent;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.issues-panel.wp-block-group {
  padding: 0;
  display: block;
  background: transparent;
  border-radius: 0;
}

.issues-panel.wp-block-group > .wp-block-group__inner-container {
  background: transparent;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.issues-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.issues-panel__head h3 {
  margin: 0;
  font-size: 20px;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  border-radius: 999px;
  background: #dff0e6;
  color: #0f6a3c;
  border: 1px solid rgba(15, 106, 60, 0.12);
  font-weight: 600;
  font-size: 13px;
}

.pill-label--accent {
  background: #ffe7b3;
  color: #9a6b08;
}

.issues-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.issues-list__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  background: #f3f7ff;
}

.issues-list__icon {
  font-size: 22px;
  color: #2f3c5a;
}

.issues-list__title {
  margin: 0 0 4px;
  font-weight: 700;
  color: #243347;
}

.issues-list__desc {
  margin: 0;
  color: #4d5c70;
}

.issues-panel--list {
  padding: 0;
}

.issues-panel--list.wp-block-group > .wp-block-group__inner-container {
  padding: 0;
}

.issues-panel--list .issues-list__item {
  background: #ffffff;
  border: 1px solid #e1e6de;
}

.issues-list--backflow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .issues-list--backflow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .issues-list--backflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .issues-list--backflow {
    grid-template-columns: 1fr;
  }
}

.cta-inline {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}


@media (max-width: 1024px) {
  .issues-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .issues-list {
    grid-template-columns: 1fr;
  }
}

.inner-two-column {
  display: grid;
  grid-template-columns: 0.5fr 0.5fr;
  column-gap: 20px;
  row-gap: 16px;
  align-items: start;
  margin-top: 20px;
}

.inner-content-left {
  display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
.inner-content-right {
  min-height: 260px;  
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  max-height: 380px;
}

.inner-content-right--problems {
  min-height: auto;
  max-height: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  align-self: start;
  overflow: visible;
}

.inner-media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {  
  .inner-two-column {
    grid-template-columns: 1fr;
  }
}

.seasonal-issues-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.seasonal-issues-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2b3037;
  font-weight: 500;
}

.seasonal-issues-icon.material-symbols-outlined {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: #ffe9e9;
  color: #e53935;
  font-size: 24px;  
  flex-shrink: 0;
  line-height: 1;
  padding: 0;
  margin: 0;  
}

.backflow-problems-grid {
  column-gap: 32px;
  row-gap: 20px;
  margin-top: 24px;
  align-items: start;
}

.backflow-problems-grid .inner-content-left {
  gap: 20px;
}

.inner-content-right--problems strong {
  display: block;
  margin-bottom: 6px;
}

.backflow-problems-grid .seasonal-issues-list {
  gap: 16px;
}

/* Light mint hero Hero-style CTA banner specific to irrigation repair services */

.banner-wrapper{
  padding: clamp(28px, 5vw, 56px) 18px;
  background:
    radial-gradient(circle at 16px 16px, rgba(15, 106, 60, 0.06) 1px, transparent 0) 0 0/32px 32px,
    linear-gradient(180deg, #e9f9f1 0%, #dff4eb 100%);
}
.banner-card{
  margin: 0 auto;
  background:#fff;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  padding: clamp(20px, 3vw, 30px);
}
.banner-content{
  display:grid;
  grid-template-columns: minmax(360px, 1.2fr) minmax(260px, 0.9fr);
  gap: clamp(18px, 3vw, 32px);
  align-items:center;
}
.banner-text{
  display:grid;
  gap:12px;
}
.banner-title{
  margin:0;
  font-size: clamp(26px, 3.5vw, 34px);
  line-height:1.15;
  color: var(--ink);
}
.banner-body{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:#334155;
}
.banner-pills{
  display:flex;
  flex-wrap:nowrap;
  gap:8px;
  margin: 4px 0 6px;
}
.banner-pill{
  display:inline-flex;
  align-items:center;
  white-space: nowrap;
  gap:6px;
  padding:8px 14px;
  background:#eaf5ef;
  color:#0f6a3c;
  border:1px solid rgba(15,106,60,0.14);
  border-radius: 999px;
  font-size:13px;
  font-weight:600;
}
.banner-pill .material-symbols-outlined{
  font-size:16px;
  line-height:1;
  font-variation-settings:'wght' 600;
}
.banner-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top: 8px;
}
.banner-actions .btn{
  min-width: 180px;
  justify-content:center;
}
.banner-media{
  position:relative;
}
.banner-media img{
  width:100%;
  max-height: 320px;
  border-radius:14px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  object-fit:cover;
  aspect-ratio: 4 / 3;
}
@media (max-width: 720px){
  .banner-card{
    padding: 22px;
  }
  .banner-content{
    grid-template-columns: 1fr;
  }
  .banner-pills{
    flex-wrap:wrap;
    width:100%;
    gap:10px;
  }
  .banner-pill{
    width:100%;
    justify-content:flex-start;
  }
  .banner-media img{
    max-height: 220px;
  }
  .banner-actions .btn{
    width:100%;
  }
}


.conclusion-box {
background-color: #e8f5e9;
border-left: 4px solid #2e6b3f;
padding: 24px;
border-radius: 4px;
}
.conclusion-text {
margin: 0;
font-weight: 500;
color: #1a3c26;
font-size: 15px;
}

.intro-text {
font-size: 16px;
color: #6b7280;
margin-bottom: 32px;
line-height: 1.7;
padding: 0;
}


.preventive-note {
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid #dfe6e0;
}

.preventive-note__main {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f6a3c;
  font-weight: 500;
}

.preventive-note__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

.preventive-note__sub {
  margin: 6px 0 0;
  color: #72807a;
  font-size: 13px;
  padding: 0 35px;
}


/* ===== Gutenberg Button -> allow our custom .btn styles ===== */

/* When you add class "btn" to a Button block wrapper */
.wp-block-button.btn .wp-block-button__link,
.wp-block-button.btn .wp-element-button{
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: auto;
  color: inherit;
  text-decoration: none;
  font-size: unset;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

/* Optional: stop Gutenberg forcing full-width in some layouts */
.wp-block-buttons .wp-block-button.btn .wp-block-button__link{
  width: auto;
}

/* Neutralize Gutenberg inner container for step cards */
.step-card > .wp-block-group__inner-container{
  display: contents;
}


/* Sprinkler system repair hero section start */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e8f3ea;
  color: #0f6a3c;
  font-weight: 600;
  font-size: 13px;
  align-self: flex-start;
  margin-bottom: 10px;
}

.hero-pill .material-symbols-outlined {
  font-size: 16px;
}

.hero-title {
  font-size: 36px;
  line-height: 1.15;
  margin: 0;
  padding-bottom: 15px;
  color: #162032;
}

.hero-subtitle {
  font-size: 18px;
  color: #4a5868;
  margin: 0;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #5a6674;
  font-weight: 600;
}

.hero-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-trust__item .material-symbols-outlined {
  color: #1f8f60;
  font-size: 18px;
}

.hero-media {
  border-radius: 18px;
  box-shadow: 0 18px 35px rgba(16, 24, 40, 0.15);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }
}

/* Sprinkler system repair hero section end */

/* Section green alt background start */
.section--green-alt {
  background: #F9FAFB;
}
/* Section green alt background end */

/* Professional sprinkler repair section start */
.repair-services {
  padding: 60px 0;
}

.repair-services__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.repair-services__media img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.12);
}

.repair-services__content h2 {
  margin: 0 0 12px;
  font-size: 32px;
  color: #162032;
}

.repair-services__content p {
  margin: 0 0 20px;
  color: #5a6674;
  line-height: 1.6;
}

.repair-services__lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.repair-services__label {
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #1f8f60;
  font-weight: 700;
}

.repair-services__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #293241;
}

.repair-services__list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
}

.repair-services__list .material-symbols-outlined {
  font-size: 18px;
  color: #1f8f60;
}

.repair-services__list--tools .material-symbols-outlined {
  color: #0f6a3c;
}

@media (max-width: 900px) {
  .repair-services__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .repair-services__lists {
    grid-template-columns: 1fr;
  }

  .repair-services__content h2 {
    font-size: 28px;
  }
}
/* Professional sprinkler repair section end */

/* Why homeowners choose us section start */
.why-choose-hero {
  background: #f7faf9;
  padding: 40px 0;
}

.why-choose-hero__head {
  text-align: center;  
  margin: 0 auto 40px;
}

.why-choose-hero__head h2 {
  margin: 0 0 12px;
  font-size: 32px;
  color: #162032;
}

.why-choose-hero__head p {
  margin: 0;
  color: #5a6674;
  line-height: 1.6;
}

.why-choose-hero__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.why-choose-hero__card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.08);
}

.why-choose-hero__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #e8f5ee;
  color: #1f8f60;
  margin-bottom: 14px;
}

.why-choose-hero__icon .material-symbols-outlined {
  font-size: 22px;
}

.why-choose-hero__card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #162032;
}

.why-choose-hero__card p {
  margin: 0;
  color: #5a6674;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-choose-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .why-choose-hero__grid {
    grid-template-columns: 1fr;
  }

  .why-choose-hero__head h2 {
    font-size: 28px;
  }
}
/* Why homeowners choose us section end */

/* Local responsive sprinkler repair section start */
.local-service {
  padding: 40px 0;
  background: #ffffff;
}

.local-service h2 {
  margin: 0 0 12px;
  font-size: 32px;
  color: #162032;
}

.local-service > .container > p {
  margin: 0 0 28px;
  color: #5a6674;
  line-height: 1.6;
}

.local-service__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.local-service__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.local-service__item .material-symbols-outlined {
  font-size: 22px;
  color: #0f6a3c;
  margin-top: 2px;
}

.local-service__item h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #162032;
}

.local-service__item p {
  margin: 0;
  color: #5a6674;
}

@media (max-width: 720px) {
  .local-service__grid {
    grid-template-columns: 1fr;
  }

  .local-service h2 {
    font-size: 28px;
  }
}
/* Local responsive sprinkler repair section end */

.is-layout-flex {
  align-items: flex-start;
}

/* Override only the service tile header if you want it not flex */
.service-tile__header.is-layout-flex {
  display: block; /* or grid */
}

.inner-content-right--problems.wp-block-group > .wp-block-group__inner-container {
    min-height: auto;
    max-height: none;
    background: transparent;
    border-radius: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: start;
    overflow: visible;
}

/*service-areas*/

.service-areas-hero {
  position: relative;
  background-color: #1b2a1f;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  color: #fff;
}

.service-areas-hero::before {
  content: "";
  position: absolute;
  inset: 0;  
}

.service-areas-hero__content {
  position: relative;
  text-align: center;
  padding: 70px 0;
}

.service-areas-hero__title {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.service-areas-hero__subtitle {
  margin: 0 auto 26px;
  max-width: 980px;
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.5;
}


@media (max-width: 640px) {
  .service-areas-hero {
    min-height: 360px;
  }

  .service-areas-hero__content {
    padding: 56px 0;
  }
}

.service-areas-grid__items {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  display: grid;
}

.areas-section {
  padding: 0;
}
.area-card {
  background-color: #ffffff;
  border: 1px solid var(--line);
  padding: 20px 24px;
  border-radius: 4px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  font-weight: 600;
  color: #2f6b3d;
  font-size: 16px;
  text-decoration: none;
}

.area-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 122, 63, 0.35);
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.12);
}

.area-card:hover::after {
  transform: translateX(4px);
  opacity: 0.85;
}

.area-card::before {
  content: "location_on";
  font-family: "Material Symbols Outlined";
  font-variation-settings:
    "FILL" 0,
    "wght" 600,
    "GRAD" 0,
    "opsz" 24;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0.7;
}

.area-card::after {
  content: "arrow_forward";
  font-family: "Material Symbols Outlined";
  font-variation-settings:
    "FILL" 0,
    "wght" 600,
    "GRAD" 0,
    "opsz" 24;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0.6;
  margin-left: auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Closing Note */
.closing-note {
background-color: #f2f4f1;
padding: 32px;
border-radius: 8px;
text-align: center;
margin-top: 64px;
color: var(--text-main);
font-size: 16px;
}

.closing-note strong {
color: #2f6b3d;
}

section.service-areas-grid {
    padding: clamp(30px, 5vw, 30px) 18px;
}


/*Book Now page*/

.book-now-contact-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.08);
  margin-top: clamp(0px, 2vw, 50px);
}

/* Contact form section start */
.contact-form {
  margin-top: 24px;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form .form-label {
  font-weight: 500;
  color: var(--ink);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e0ddd2;
  border-radius: 16px;
  padding: 12px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: #f8f6f2;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(47, 122, 63, 0.6);
  box-shadow: 0 0 0 3px rgba(47, 122, 63, 0.15);
}

.contact-form .form-actions {
  margin-top: 20px;
  margin-bottom: 20px;
}

.contact-form .button {
  border: none;
  background: #234b2e;
  color: #fff;
  padding: 12px 26px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.contact-form .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.12);
}

@media (max-width: 900px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}
/* Contact form section end */
