:root {
    --theme: #23CD00;
    --theme-dg: #196552;
    --off-white: #F8F8F8;
    --cta: #FFA200;
    --text-dg: #261F13;
    --text-mg: #e0e0e0;
    --theme-font: "Magra";
    --body-font: "Nunito";
    --hero-head-size: clamp(3rem, 2.4718rem + 1.6901vw, 4.5rem);
    --heading-font-size: clamp(2.25rem, 1.6338rem + 1.9718vw, 4rem);
    --med-head-size: clamp(1.75rem, 1.3099rem + 1.4085vw, 3rem);
    --small-head-size: clamp(1.125rem, 0.993rem + 0.4225vw, 1.5rem);
    --body-font-size: clamp(0.875rem, 0.831rem + 0.1408vw, 1rem);
    --section-py:       clamp(2rem, 8vw, 4rem);
    --radius-sm:        4px;
    --radius-md:        8px;
    --shadow-card:      0 4px 24px rgba(0,0,0,0.08);
}

* {
    box-sizing: border-box;    
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: var(--off-white);
}

body p {
    font-size: var(--body-font-size);
}

.content-container {
    width: 100%;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    display: block;
}

.img-wrapper {
    display: block;
    overflow: hidden;
}

.img-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    user-select: none;
}
.img-wrapper.contain img {
    object-fit: contain;
}

.flex {
    display: flex;
}

.flex.column {
    flex-direction: column;
}

.flex.center-justify{
    justify-content: center;
}

.flex-center-align {
    align-items: center;
}

.flex.between {
    justify-content: space-between;
}

.gap-1rm {
    gap: 1rem;
}

.grid {
    display: grid;
}

.heading {
    font-family: var(--theme-font);
    font-size: var(--heading-font-size);
    color: var(--theme-blue);
    letter-spacing: -0.03em;
    line-height: 0.95;
    font-weight: 700;
}

.hero-heading {
    font-size: var(--hero-head-size);
    color: var(--theme);
    font-weight: 800;
}

.heading-medium {
    font-size: var(--med-head-size) !important;
    font-family: var(--theme-font);
    font-weight: 700;
}

.heading-small {
    font-size: var(--small-head-size);
    font-family: var(--theme-font);
    font-weight: 600;
}

.centered {
    text-align: center;
}

.auto-margin {
    margin: auto;
}

.mt-sm  { margin-top: 0.5rem; }
.mt-md  { margin-top: 1rem; }
.mt-lg  { margin-top: 2rem; }
.mt-xl  { margin-top: 4rem; }
.mb-sm  { margin-bottom: 0.5rem; }
.mb-md  { margin-bottom: 1rem; }
.mb-lg  { margin-bottom: 1rem; }

.med-scale {
    font-size: clamp(1rem, 0.912rem + 0.2817vw, 1.25rem) !important;
}

.plain-btn {
    text-decoration: none;
}

.semi-bold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.extra-bold {
    font-weight: 800;
}

.white-font {
    color: var(--off-white) !important;
}
.dg-font {
    color: var(--text-dg) !important;
}
.mg-font {
    color: var(--text-mg) !important;
}
.green-font {
    color: var(--theme-dg) !important;
}

 .cta-btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      color: var(--off-white); background-color: var(--cta);
      padding: 0 1.5rem; border-radius: var(--radius-sm);
      position: relative; overflow: hidden; transition: all 0.3s ease;
      cursor: pointer; font-weight: 800; font-family: var(--body-font);
      text-decoration: none; height: 48px; font-size: 0.95rem; border: none;
    }
    .cta-btn::before {
      content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.5s ease;
    }
    .cta-btn:hover::before { left: 100%; }
    .cta-btn:hover { box-shadow: 0 4px 20px rgba(255, 162, 0, 0.45); }
    .cta-btn-lg { height: 56px; padding: 0 2rem; font-size: 1rem; }
 
    .cta-btn-green {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      color: var(--text-dg); background-color: var(--theme);
      padding: 0 1.75rem; border-radius: var(--radius-sm);
      position: relative; overflow: hidden; transition: background 0.2s;
      cursor: pointer; font-weight: 800; font-family: var(--theme-font);
      text-decoration: none; height: 52px; font-size: 0.95rem;
      text-transform: uppercase; letter-spacing: 0.04em; border: none;
    }
    .cta-btn-green:hover { background: #1db800; }
 
    .outline-btn-dark {
      display: inline-flex; align-items: center; gap: 8px;
      height: 52px; padding: 0 1.75rem;
      background: transparent; color: var(--text-dg);
      font-family: var(--theme-font); font-size: 0.9rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.04em;
      border: 2px solid var(--text-dg); border-radius: var(--radius-sm);
      transition: background 0.2s, color 0.2s;
    }
    .outline-btn-dark:hover { background: var(--text-dg); color: var(--off-white); }

/*-----------------------------*/
/*           HEADER           */
/*-----------------------------*/
header {
    width: 100%;
}

.header-top {
    background-color: #23CD00;
    padding: 1rem;
}

.header-top-phn-holder {
    display: grid;
    grid-template-columns: 15px 1fr;
    gap: 0.5rem;
    place-items: center;
}

.header-top-phn {
    min-width: 15px;
    aspect-ratio: 1 / 1;
    display: grid;
    
}

.header-soc-icon {
    max-width: 25px;
}

.header {
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    height: 90px;
}

.header-left {
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    max-width: 100px;
}

.header-right {
    height: 100%;
    gap: 2rem;
}

.header-right > nav {
    gap: 2rem;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-dg);
}

.link {
    text-decoration: none;
    color: var(--theme-dg);
    cursor: pointer;
    transition: font-weight 0.3s;
    display: flex;
    align-items: center;
    height: 100%;
    min-width: 75px;
    justify-content: center;
}

.header-contact {
    color: var(--off-white);
    background-color: var(--cta);
    padding: 0.5rem 1rem;
    border: solid 2px var(--cta);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    font-weight: 800;
    text-decoration: none;
    height: 45px;
    display: grid;
    place-items: center;
    transition: transform 0.3s ease color 0.3s;
    z-index: 2;
}

.header-contact.green {
    background-color: var(--theme);
    border: solid 2px var(--theme);

    &:hover {
        color: var(--theme)
    }
}

.header-contact:hover {
    color: var(--cta);
}


.h-con-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.header-contact::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--off-white);
    z-index: 0;
    transition: bottom 0.315s ease;
}

.header-contact:hover::before {
    bottom: 0;
}

.header-contact:hover .h-con-text {
    transform: rotateX(360deg);
}

/* Wrapper around SERVICES */
.dropdown {
    position: relative;
    display: grid;
    place-items: center;
    height: 90px;
}

/* Submenu hidden by default */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 160px;
    background: #ebebeb;
    box-shadow: 5px 5px 10px #4646465b;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1000;
    color: var(--theme);
    transform: scaleY(0);
    display: flex;
    transition: transform 0.2s ease;
    transform-origin: top;
    z-index: 5;
}

/* Show submenu on hover */
.dropdown:hover .dropdown-menu {
    transform: scaleY(1);
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dg);
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: #f3f3f3;
}

.dropdown-menu::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--theme);
    z-index: 2;
    transform: scaleX(0);
    transition: transform 0.2s ease 0.15s;
    transform-origin: left;
}

/* Optional arrow indicator */
.dropdown > a::after {
    position: relative;
    top: -2px;
    content: " ▶";
    font-size: 0.7rem;
    margin-left: 4px;
    margin-top: 4px;
    display: inline-block;  
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.dropdown:hover > a::after {
    transform: rotate(90deg);
    color: var(--theme-blue);
}

.dropdown:hover .dropdown-menu::after {
    transform: scaleX(1);
}

.selected {
    font-weight: 800;
    border-bottom: solid 3px var(--theme)
}

.hamburger {
    display: none;
    position: relative;
    border-radius: 5px;
    padding: 0.25rem;
    height: 50px;
    width: 50px;
    cursor: pointer;
    align-self: center;
    border: none;
    background: none;
}

.hamburger-line {
    position: absolute;
    left: 50%;
    width: 60%;
    height: 2px;
    background-color: var(--theme-dg);
    transform-origin: center center;
    pointer-events: none;
}

.hamburger-line:nth-child(1) { top: 30%; transform: translateX(-50%); }
.hamburger-line:nth-child(2) { top: 50%; transform: translateX(-50%) translateY(-50%); }
.hamburger-line:nth-child(3) { top: 68%; transform: translateX(-50%); }

.hamburger.active .hamburger-line:nth-child(1) { animation: .5s ease 0.15s forwards burgerTwistA }
.hamburger.active .hamburger-line:nth-child(2) { transition: opacity 0.1s 0.20s ease; opacity: 0% }
.hamburger.active .hamburger-line:nth-child(3) { animation: .5s ease 0.15s forwards burgerTwistB }

.hamburger.inactive .hamburger-line:nth-child(1) { animation: .5s ease backwards burgerUntwistA }
.hamburger.inactive .hamburger-line:nth-child(2) { transition: opacity 0.1s 0.20s ease; opacity: 100% }
.hamburger.inactive .hamburger-line:nth-child(3) { animation: .5s ease backwards burgerUntwistB }

/* Mobile Menu Styles */
.mobile-nav {
    width: 100%;
    z-index: 5;
    background-color: var(--off-white);
    box-shadow: 5px 10px 10px #2929293f;
    border-radius: 0 0 15px 15px;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 100px) scaleY(0);
    transition: opacity 0.15s ease, transform 0.3s ease, width 0.3s ease, visibility 0.3s ease, top 0.3s ease;
    position: fixed;
    top: 0px;
    left: 50%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-origin: top;
}

.header.active .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 100px) scaleY(100%);;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
    width: 100vw;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--body-font);
}

.mobile-nav a {
    text-decoration: none;
    color: var(--theme-dg);
}

.mobile-dropdown-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.mobile-dropdown-link > a {
    cursor: pointer;
}

.mobile-dropdown {
    position: relative;
    top: 100%;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    background-color:var(--theme-dg);
    padding: 0rem;
    margin-top: 0rem;
    border-radius: 20px;
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
}

.mobile-dropdown ul {
    gap: 0.75rem;
    visibility: hidden;
}

.mobile-dropdown ul li {
    text-align: center;
}

.dropdown-link {
    color: var(--off-white) !important;
}

.mobile-dropdown.active {
    visibility: visible;
    opacity: 1;
    height: auto;
    padding: 2rem;
    margin-top: 0.5rem;
}

.mobile-dropdown.active ul {
    height: auto;
    visibility: visible;
}


/*------------HERO------------*/

.hero {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position:absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.hero-bg::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
    background: linear-gradient(145deg, #000000c9, #075007a1) ;
}

.hero-bg picture > img {
    object-position: 50% 50%;
}

.hero-container {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr 500px;
    gap: 2rem;
    padding: 1rem;
}

.contact-form-container {
    margin: auto;
    max-width: 700px;
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 0.25rem;
}

.form-row input {
    height: 2rem;
    outline: none;
    border: 1px solid #dbdbdb;
    border-radius: 5px;
    padding-left: 0.25rem;
}

.email-body textarea {
    width: 100%;
    margin-top: 0.75rem;
    padding-left: 0.25rem;
    padding-top: 0.25rem;
    border-radius: 5px;
    border: 1px solid #dbdbdb;
    outline: none;
}

.form-row input:focus {
    border: 2px solid var(--cta);
}

.email-body textarea:focus {
    border: 2px solid var(--cta);
}

.hero-contact-left {
    position: relative;
}

.google-chip {
    background: #ffffff5d;
    max-width: 175px;
    border-radius: 50px;
    grid-template-columns: 3fr 8fr;
    padding: 0.25rem;
    align-self: end;
    margin-top: 3rem;
}

.g-chip-img {
    height: 100%;
}

.g-chip-text {
    padding-left: 0.5rem;
}

.services-section {
    padding-top: 2rem;
}

.section-label {
    color: var(--cta);
    margin-bottom: -0.5rem;
    font-family: var(--theme-font);
}
    .section-label.light { background: rgba(255,255,255,0.15); color: var(--off-white); }

.section-header {
    display: flex; flex-direction: column;
    margin-bottom: 3rem;
}
.section-header.centered { align-items: center; text-align: center; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex; flex-direction: column;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.service-card-img {
    height: 200px; width: 100%;
    background: #d4edcc;
    overflow: hidden; position: relative;
}
.service-card-img img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }

/* Colored placeholder backgrounds for service cards (no image) */
.service-card-img.svc-lawn    { background: linear-gradient(135deg, #2d7a22, #4fa33e); }
.service-card-img.svc-mulch   { background: linear-gradient(135deg, #7a4b22, #b06b35); }
.service-card-img.svc-trim    { background: linear-gradient(135deg, #1a5e38, #2e8f5a); }
.service-card-img.svc-cleanup { background: linear-gradient(135deg, #c67b14, #e8a830); }
.service-card-img.svc-design  { background: linear-gradient(135deg, #23558a, #3a82c4); }
.service-card-img.svc-leaves  { background: linear-gradient(135deg, #9e4b14, #c87030); }

.svc-placeholder {
    width: 100%; height: 100%;
    display: grid; place-items: center;
    font-size: 3rem; opacity: 0.7;
}

.service-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    flex: 1; display: flex; flex-direction: column;
}
.service-card-body h3 {
    font-family: var(--theme-font);
    font-size: var(--small-head-size); font-weight: 700;
    color: var(--text-dg); margin-bottom: 0.5rem;
}
.service-card-body p { font-size: 0.875rem; color: #666; line-height: 1.65; flex: 1; }
.svc-learn {
    margin-top: 1rem; font-size: 0.8rem; font-weight: 800;
    color: var(--theme-dg); display: flex; align-items: center; gap: 5px;
    transition: gap 0.2s;
}
.service-card:hover .svc-learn { gap: 9px; }

.why-section {
    padding: var(--section-py) 0;
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-img-stack {
    position: relative; height: 480px;
}
.why-img-main {
    position: absolute; bottom: 0; left: 0;
    width: 80%; height: 90%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    background: linear-gradient(135deg, #2d7a22, #1a5e38);
}
.why-img-main .img-placeholder { width: 100%; height: 100%; display: grid; place-items: center; font-size: 4rem; opacity: 0.3; color: #fff; }
.why-img-accent {
    position: absolute; top: 0; right: 0;
    width: 55%; height: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    background: linear-gradient(135deg, #c67b14, #e8a830);
    border: 5px solid #fff;
}
.why-img-accent .img-placeholder { width: 100%; height: 100%; display: grid; place-items: center; font-size: 3rem; opacity: 0.4; color: #fff; }

/* Badge overlay */
.why-badge {
    position: absolute; bottom: 2rem; right: -1rem;
    background: var(--theme-dg);
    color: #fff; border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    text-align: center; min-width: 120px;
}
.why-badge .badge-num { font-family: var(--theme-font); font-size: 2.2rem; font-weight: 700; color: var(--theme); line-height: 1; }
.why-badge .badge-label { font-size: 0.72rem; color: rgba(255,255,255,0.8); margin-top: 2px; }

.why-right {}
.why-pillars {
    display: flex; flex-direction: column;
    gap: 1.25rem; margin-top: 2rem;
}
.why-pillar {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--theme);
    transition: border-color 0.2s, background 0.2s;
}
.why-pillar:hover { border-left-color: var(--cta); background: #fffdf7; }
.why-pillar-icon {
    width: 38px; height: 38px; flex-shrink: 0;
    background: #e8fce3; border-radius: 50%;
    display: grid; place-items: center; font-size: 1.1rem;
}
.why-pillar-text h4 {
    font-family: var(--theme-font); font-size: 0.95rem; font-weight: 700;
    color: var(--text-dg); margin-bottom: 3px;
}
.why-pillar-text p { font-size: 0.82rem; color: #777; line-height: 1.55; }

.area-section {
    padding: 2rem 0;
    background: var(--text-dg);
    position: relative; overflow: hidden;
}
.area-section::before {
    content: '';
    position: absolute; top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(35,205,0,0.06), transparent 70%);
}
.area-section::after {
    content: '';
    position: absolute; bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,162,0,0.05), transparent 70%);
}

.area-inner {
    position: relative; z-index: 1;
}

.area-intro {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: end; margin-bottom: 3rem;
}

.area-tagline {
    font-size: 0.85rem; color: rgba(255,255,255,0.55);
    line-height: 1.7; margin-top: 1rem;
}

.area-cta-blurb { align-self: center; }
.area-cta-blurb p { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; }

/* Featured towns */
.towns-featured {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1rem; margin-bottom: 2rem;
}
.town-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    cursor: default;
}
.town-card:hover {
    background: rgba(35,205,0,0.1);
    border-color: rgba(35,205,0,0.3);
    transform: translateY(-3px);
}
.town-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.town-name {
    font-family: var(--theme-font); font-size: 1.05rem; font-weight: 700;
    color: var(--off-white); margin-bottom: 0.35rem;
}
.town-county { font-size: 0.72rem; color: var(--theme); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.town-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; line-height: 1.5; }

/* Also serve strip */
.area-also {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.area-also .also-label {
    font-family: var(--theme-font); font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); white-space: nowrap;
}
.also-towns { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.also-tag {
    background: rgba(255,255,255,0.08); border-radius: 50px;
    padding: 4px 12px; font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.15s, color 0.15s;
}
.also-tag:hover { background: rgba(35,205,0,0.15); color: var(--theme); }

.faq-section {
padding: var(--section-py) 0;
background: var(--off-white);
}

.faq-layout {
display: grid;
grid-template-columns: 1fr 1.8fr;
gap: 4rem;
align-items: start;
}

/* Left sticky sidebar */
.faq-sidebar {
position: sticky;
top: 110px;
}

.faq-sidebar .section-label { margin-bottom: 1rem; }

.faq-sidebar h2 {
font-family: var(--theme-font);
font-size: var(--med-head-size);
font-weight: 700;
color: var(--text-dg);
line-height: 1.1;
margin-bottom: 1rem;
}

.faq-sidebar p {
font-size: var(--body-font-size);
color: #777;
line-height: 1.7;
margin-bottom: 1.75rem;
}

/* Category tabs */
.faq-tabs {
display: flex;
flex-direction: column;
gap: 0.4rem;
margin-bottom: 2rem;
}

.faq-tab {
display: flex;
align-items: center;
gap: 10px;
padding: 0.7rem 1rem;
border-radius: var(--radius-sm);
border: 1.5px solid transparent;
font-size: 0.82rem;
font-weight: 700;
font-family: var(--theme-font);
color: #888;
cursor: pointer;
background: transparent;
transition: all 0.2s;
text-align: left;
letter-spacing: 0.02em;
}

.faq-tab:hover {
background: #f0fced;
color: var(--theme-dg);
border-color: rgba(35,205,0,0.2);
}

.faq-tab.active {
background: #e8fce3;
color: var(--theme-dg);
border-color: var(--theme);
}

.faq-tab .tab-icon {
font-size: 1rem;
flex-shrink: 0;
}

/* Sidebar CTA card */
.faq-cta-card {
background: var(--theme-dg);
border-radius: var(--radius-md);
padding: 1.5rem;
color: #fff;
}

.faq-cta-card p {
color: rgba(255,255,255,0.75);
font-size: 0.82rem;
margin-bottom: 1rem;
}

.faq-cta-card .faq-cta-name {
font-family: var(--theme-font);
font-size: 1rem;
font-weight: 700;
color: #fff;
margin-bottom: 0.25rem;
}

.faq-cta-card .faq-cta-phone {
color: var(--theme);
font-family: var(--theme-font);
font-size: 1.15rem;
font-weight: 700;
display: block;
margin-bottom: 1rem;
text-decoration: none;
}

.faq-cta-card .faq-cta-phone:hover {
color: #1db800;
}

.faq-cta-card .cta-btn {
width: 100%;
display: flex;
justify-content: center;
background-color: var(--cta);
font-size: 0.85rem;
}

/* Right: accordion panels */
.faq-panels {}

.faq-group {
display: none;
}

.faq-group.active {
display: block;
}

.faq-group-title {
font-family: var(--theme-font);
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--theme-dg);
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 2px solid #e8fce3;
display: flex;
align-items: center;
gap: 8px;
}

.faq-group-title::before {
content: '';
display: inline-block;
width: 20px;
height: 2px;
background: var(--theme);
border-radius: 2px;
}

/* Accordion item */
.faq-item {
border-bottom: 1px solid #ebebeb;
}

.faq-item:first-of-type {
border-top: 1px solid #ebebeb;
}

.faq-question {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 1rem;
padding: 1.25rem 0;
cursor: pointer;
font-family: var(--theme-font);
font-size: clamp(0.9rem, 0.87rem + 0.1vw, 1rem);
font-weight: 700;
color: var(--text-dg);
background: none;
border: none;
width: 100%;
text-align: left;
transition: color 0.2s;
line-height: 1.4;
}

.faq-question:hover {
color: var(--theme-dg);
}

.faq-item.open .faq-question {
color: var(--theme-dg);
}

.faq-toggle {
width: 28px;
height: 28px;
flex-shrink: 0;
border-radius: 50%;
background: #f0f0f0;
display: grid;
place-items: center;
font-size: 1.1rem;
font-weight: 400;
color: #888;
transition: background 0.2s, color 0.2s, transform 0.25s;
line-height: 1;
margin-top: 1px;
font-family: monospace;
}

.faq-item.open .faq-toggle {
background: var(--theme);
color: var(--text-dg);
transform: rotate(45deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer {
max-height: 600px;
}

.faq-answer-inner {
padding: 0 0 1.5rem 0;
font-size: var(--body-font-size);
color: #666;
line-height: 1.75;
}

.faq-answer-inner strong {
color: var(--text-dg);
font-weight: 700;
}

.faq-answer-inner a {
color: var(--theme-dg);
font-weight: 700;
text-decoration: underline;
text-underline-offset: 2px;
}

.faq-answer-inner a:hover {
color: var(--theme);
}

/* Answer highlight callout */
.faq-callout {
background: #e8fce3;
border-left: 3px solid var(--theme);
border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
padding: 0.75rem 1rem;
margin-top: 0.75rem;
font-size: 0.82rem;
color: var(--theme-dg);
font-weight: 600;
display: flex;
align-items: flex-start;
gap: 8px;
}

.reviews-section {
    padding: var(--section-py) 0;
    background: var(--off-white);
}

.reviews-top {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 2.5rem; gap: 2rem; flex-wrap: wrap;
}

.review-score-block { display: flex; align-items: center; gap: 1.5rem; }
.review-big-num {
    font-family: var(--theme-font);
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 700; color: var(--theme); line-height: 1;
}
.review-stars { font-size: 1.4rem; color: var(--cta); letter-spacing: 2px; }
.review-count { font-size: 0.8rem; color: #999; margin-top: 4px; }
.review-platform { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.g-badge {
    background: #fff; border: 1px solid #e0e0e0;
    border-radius: 4px; padding: 4px 10px;
    display: flex; align-items: center; gap: 6px;
    font-size: 0.75rem; font-weight: 700; color: #555;
}
.g-badge .g-dot { width: 8px; height: 8px; border-radius: 50%; background: #4285F4; }

.reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.review-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 1.5rem; box-shadow: var(--shadow-card);
    display: flex; flex-direction: column; gap: 1rem;
    transition: transform 0.2s;
}
.review-card:hover { transform: translateY(-4px); }
.review-card-top { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    display: grid; place-items: center;
    font-family: var(--theme-font); font-size: 1rem; font-weight: 700;
    color: #fff; flex-shrink: 0;
}
.reviewer-info .reviewer-name { font-family: var(--theme-font); font-size: 0.9rem; font-weight: 700; }
.reviewer-info .reviewer-town { font-size: 0.72rem; color: #999; }
.review-card-stars { font-size: 0.85rem; color: var(--cta); letter-spacing: 1px; }
.review-card-text { font-size: 0.85rem; color: #555; line-height: 1.7; font-style: italic; }
.review-card-text::before { content: '"'; font-size: 1.4rem; color: var(--theme); font-style: normal; line-height: 0; vertical-align: -0.3em; margin-right: 3px; }
.review-card-meta { font-size: 0.7rem; color: #bbb; margin-top: auto; }

/* ══════════════════════════════════════════
    CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
    background: var(--theme);
    padding: 5rem 0;
    position: relative; overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute; top: -50%; right: -5%;
    width: 50vw; height: 200%;
    background: rgba(0,0,0,0.05);
    transform: skewX(-12deg);
}
.cta-banner .content-container {
    position: relative; z-index: 1;
    display: flex; align-items: center;
    justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.cta-banner-text h2 {
    font-family: var(--theme-font);
    font-size: var(--med-head-size); font-weight: 700;
    color: var(--text-dg); line-height: 1.1; margin-bottom: 0.5rem;
}
.cta-banner-text p { font-size: 0.95rem; color: rgba(38,31,19,0.7); }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.cta-btn-dark {
    display: inline-flex; align-items: center;
    height: 52px; padding: 0 2rem;
    background: var(--text-dg); color: var(--off-white);
    font-family: var(--theme-font); font-size: 0.95rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    border-radius: var(--radius-sm); border: none; cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}
.cta-btn-dark:hover { background: #3a3228; }

.cta-phone-link {
    display: inline-flex; align-items: center; gap: 8px;
    height: 52px; padding: 0 1.5rem;
    background: rgba(38,31,19,0.12);
    color: var(--text-dg);
    font-family: var(--theme-font); font-size: 0.95rem; font-weight: 700;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    text-decoration: none;
}
.cta-phone-link:hover { background: rgba(38,31,19,0.2); }



/* ══════════════════════════════════════════
    FOOTER
══════════════════════════════════════════ */
footer {
    background: #1a1510;
    padding: 4rem 0 0;
    color: rgba(255,255,255,0.65);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .footer-logo-name {
    font-family: var(--theme-font); font-size: 1.3rem; font-weight: 700;
    color: #fff; margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 280px; margin-bottom: 1.25rem; }

.footer-social { display: flex; gap: 0.6rem; }
.soc-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: grid; place-items: center;
    font-size: 0.9rem; color: rgba(255,255,255,0.6);
    transition: background 0.2s, color 0.2s;
    border: 1px solid rgba(255,255,255,0.1);
}
.soc-btn:hover { background: var(--theme); color: #000; }

.footer-col h4 {
    font-family: var(--theme-font); font-size: 0.85rem; font-weight: 700;
    color: #fff; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
    font-size: 0.82rem; color: rgba(255,255,255,0.55);
    transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--theme); }

.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 0.85rem;
}
.footer-contact-item .fc-icon { font-size: 0.9rem; color: var(--theme); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item .fc-text { font-size: 0.82rem; line-height: 1.55; }
.footer-contact-item .fc-text a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
.footer-contact-item .fc-text a:hover { color: var(--theme); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.25rem 0;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.15s; }
.footer-bottom a:hover { color: var(--theme); }

    .service-hero {
      position: relative;
      min-height: 420px;
      display: flex; align-items: flex-end;
      overflow: hidden;
    }
    .service-hero-bg {
      position: absolute; inset: 0; z-index: 0;
    }
    .service-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
    .service-hero-bg::after {
      position: absolute; content: ''; inset: 0; z-index: 1;
      background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(7,60,7,0.45) 55%, rgba(0,0,0,0.1) 100%);
    }
    .service-hero-content {
      position: relative; z-index: 2;
      width: 100%; padding: 3rem 0 3.5rem;
    }
    .service-hero-content .content-container {
      display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    }
    .service-hero-left { max-width: 680px; }
    .service-icon-badge {
      width: 60px; height: 60px; border-radius: var(--radius-md);
      background: var(--theme); display: grid; place-items: center;
      font-size: 1.75rem; margin-bottom: 1.25rem;
      box-shadow: 0 4px 16px rgba(35,205,0,0.4);
    }
    .service-hero-content h1 {
      font-family: var(--theme-font);
      font-size: var(--hero-head-size);
      font-weight: 800; color: var(--off-white);
      line-height: 1.05; letter-spacing: -0.02em;
      margin-bottom: 0.75rem;
    }
    .service-hero-content h1 em { font-style: normal; color: var(--theme); }
    .service-hero-tagline {
      font-size: clamp(0.9rem, 0.85rem + 0.16vw, 1.1rem);
      color: rgba(255,255,255,0.8); line-height: 1.65; max-width: 540px;
    }
    .service-hero-right { display: flex; flex-direction: column; gap: 1rem; align-items: flex-end; }
    .hero-rating {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50px; padding: 8px 16px 8px 10px; backdrop-filter: blur(4px);
    }
    .g-logo-sm { width: 26px; height: 26px; background: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 0.7rem; font-weight: 800; color: #4285F4; flex-shrink: 0; }
    .hero-rating-text .stars { color: var(--cta); font-size: 0.78rem; letter-spacing: 1px; }
    .hero-rating-text .label { font-size: 0.68rem; color: rgba(255,255,255,0.7); font-weight: 600; }
 
    /* ══════════════════════════════════════════
       QUICK-INCLUDE BAR
    ══════════════════════════════════════════ */
    .include-bar {
      background: var(--theme-dg);
      padding: 0;
    }
    .include-bar .content-container {
      display: flex; flex-wrap: wrap;
      min-height: 72px;
    }
    .include-item {
      display: flex; align-items: center; gap: 10px;
      padding: 1rem 1.75rem;
      border-right: 1px solid rgba(255,255,255,0.1);
      flex: 1 1 auto;
    }
    .include-item:last-child { border-right: none; }
    .inc-icon { font-size: 1.1rem; flex-shrink: 0; }
    .inc-text { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.9); font-family: var(--theme-font); }
 
    /* ══════════════════════════════════════════
       MAIN BODY LAYOUT
    ══════════════════════════════════════════ */
    .service-body { padding: var(--section-py) 0; }
    .service-layout {
      display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem; align-items: start;
    }
 
    /* ── Left main content ── */
    .service-main {}
 
    .service-section { margin-bottom: 3.5rem; }
    .service-section:last-child { margin-bottom: 0; }
 
    .service-section h2 {
      font-family: var(--theme-font); font-size: var(--small-head-size);
      font-weight: 700; color: var(--text-dg);
      margin-bottom: 1rem; padding-bottom: 0.75rem;
      border-bottom: 2px solid #ebebeb;
      display: flex; align-items: center; gap: 10px;
    }
    .service-section h2 .s-icon { font-size: 1.2rem; }
 
    .service-section p {
      font-size: var(--body-font-size); color: #555; line-height: 1.8;
      margin-bottom: 1rem;
    }
    .service-section p:last-child { margin-bottom: 0; }
    .service-section strong { color: var(--text-dg); font-weight: 700; }
 
    /* What's Included grid */
    .included-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
      margin-top: 1.25rem;
    }
    .included-item {
      display: flex; align-items: flex-start; gap: 10px;
      background: #fff; border-radius: var(--radius-sm);
      padding: 0.9rem 1rem;
      border: 1px solid #ebebeb;
      border-left: 3px solid var(--theme);
      transition: border-left-color 0.2s, background 0.15s;
    }
    .included-item:hover { border-left-color: var(--cta); background: #fffdf7; }
    .ii-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
    .ii-text h4 { font-family: var(--theme-font); font-size: 0.875rem; font-weight: 700; color: var(--text-dg); margin-bottom: 2px; }
    .ii-text p { font-size: 0.78rem !important; color: #888; line-height: 1.5; margin: 0 !important; }
 
    /* Process steps */
    .process-steps {
      display: flex; flex-direction: column; gap: 0; margin-top: 1.25rem;
      position: relative;
    }
    .process-steps::before {
      content: ''; position: absolute; left: 19px; top: 38px; bottom: 38px;
      width: 2px; background: #e8fce3; z-index: 0;
    }
    .process-step {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.25rem 0; position: relative; z-index: 1;
    }
    .step-num {
      width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
      background: var(--theme); color: var(--text-dg);
      font-family: var(--theme-font); font-size: 1rem; font-weight: 700;
      display: grid; place-items: center;
      box-shadow: 0 0 0 4px #e8fce3;
    }
    .step-content h4 { font-family: var(--theme-font); font-size: 0.95rem; font-weight: 700; color: var(--text-dg); margin-bottom: 4px; }
    .step-content p { font-size: 0.82rem !important; color: #777; line-height: 1.6; margin: 0 !important; }
 
    /* Local expertise callout */
    .local-callout {
      background: linear-gradient(135deg, var(--theme-dg), #0f3d2a);
      border-radius: var(--radius-md); padding: 2rem;
      margin-top: 1.5rem; color: #fff; position: relative; overflow: hidden;
    }
    .local-callout::before {
      content: '📍'; position: absolute; right: 1.5rem; top: 1rem;
      font-size: 4rem; opacity: 0.1;
    }
    .local-callout h4 {
      font-family: var(--theme-font); font-size: 1rem; font-weight: 700;
      color: var(--theme); margin-bottom: 0.6rem;
    }
    .local-callout p { font-size: 0.85rem !important; color: rgba(255,255,255,0.8); line-height: 1.7; margin: 0 !important; }
 
    /* ── Right sidebar ── */
    .service-sidebar {
      position: sticky; top: 110px;
      display: flex; flex-direction: column; gap: 1.25rem;
    }
 
    .sidebar-card {
      background: #fff; border-radius: var(--radius-md);
      box-shadow: var(--shadow-card); overflow: hidden;
    }
 
    .sc-header {
      background: var(--theme-dg); padding: 1.25rem 1.5rem;
    }
    .sc-header h3 {
      font-family: var(--theme-font); font-size: 1rem; font-weight: 700;
      color: #fff; margin-bottom: 0.25rem;
    }
    .sc-header p { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
    .sc-body { padding: 1.25rem 1.5rem; }
    .sc-body .cta-btn { width: 100%; margin-top: 0.5rem; display: flex; }
 
    .sc-phone {
      display: flex; align-items: center; gap: 10px;
      font-family: var(--theme-font); font-size: 1.2rem; font-weight: 700;
      color: var(--theme-dg); margin-bottom: 0.75rem;
      padding: 0.75rem 1rem; background: #f0fced; border-radius: var(--radius-sm);
    }
 
    .sc-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1rem; }
    .sc-feature {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.8rem; font-weight: 600; color: #555;
    }
    .sc-feature .check { color: var(--theme); font-size: 0.9rem; }
 
    /* Seasonal guide card */
    .season-card { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card); overflow: hidden; }
    .season-title { padding: 1rem 1.5rem; background: var(--off-white); border-bottom: 1px solid #ebebeb; font-family: var(--theme-font); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #888; }
    .season-rows { display: flex; flex-direction: column; }
    .season-row {
      display: flex; align-items: center; gap: 12px;
      padding: 0.75rem 1.5rem; border-bottom: 1px solid #f5f5f5;
    }
    .season-row:last-child { border-bottom: none; }
    .season-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
    .season-name { font-family: var(--theme-font); font-size: 0.8rem; font-weight: 700; color: var(--text-dg); min-width: 64px; }
    .season-note { font-size: 0.75rem; color: #888; line-height: 1.4; }
 
    /* Related services */
    .related-svc {
      display: flex; align-items: center; gap: 12px;
      padding: 0.85rem 1.5rem; border-bottom: 1px solid #f5f5f5;
      transition: background 0.15s;
    }
    .related-svc:last-child { border-bottom: none; }
    .related-svc:hover { background: #f5fff3; }
    .rs-icon { font-size: 1.2rem; flex-shrink: 0; }
    .rs-name { font-family: var(--theme-font); font-size: 0.85rem; font-weight: 700; color: var(--text-dg); flex: 1; }
    .rs-arrow { font-size: 0.7rem; color: var(--theme-dg); }
 
    /* ══════════════════════════════════════════
       AREA CALLOUT BANNER
    ══════════════════════════════════════════ */
    .area-banner {
      background: var(--text-dg); padding: 3.5rem 0;
      position: relative; overflow: hidden;
    }
    .area-banner::before {
      content: ''; position: absolute; right: -5%; top: -50%;
      width: 40vw; height: 200%; background: rgba(255,255,255,0.02);
      transform: skewX(-12deg);
    }
    .area-banner .content-container { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
    .area-banner-text h2 { font-family: var(--theme-font); font-size: var(--med-head-size); font-weight: 700; color: var(--off-white); line-height: 1.1; margin-bottom: 0.5rem; }
    .area-banner-text p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
    .area-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
    .area-tag { background: rgba(35,205,0,0.12); border: 1px solid rgba(35,205,0,0.25); color: var(--theme); font-size: 0.78rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }


    .page-hero {
      background: var(--text-dg);
      padding: 4rem 0 4.5rem;
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(145deg, rgba(0,0,0,0.6), rgba(7,60,7,0.5));
      z-index: 0;
    }
    .page-hero-bg {
      position: absolute; inset: 0; z-index: 0;
    }
    .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; opacity: 0.35; }
    .page-hero .content-container { position: relative; z-index: 1; }
    .page-hero h1 { font-family: var(--theme-font); font-size: clamp(2.5rem, 2rem + 1.6vw, 4rem); font-weight: 800; color: #fff; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
    .page-hero h1 em { font-style: normal; color: var(--theme); font-family: var(--theme-font) }
    .page-hero p { font-size: clamp(0.9rem, 0.85rem + 0.16vw, 1.05rem); color: rgba(255,255,255,0.75); max-width: 520px; line-height: 1.7; }
    .page-hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(35,205,0,0.18); border: 1px solid rgba(35,205,0,0.35); color: var(--theme); font-family: var(--theme-font); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; width: fit-content; margin-bottom: 1.25rem; }

    /* ── CONTACT LAYOUT ── */
    .contact-section { padding: var(--section-py) 0; }
    .contact-layout { display: grid; grid-template-columns: 1fr 480px; gap: 4rem; align-items: start; }

    /* ── INFO SIDE ── */
    .contact-info {}
    .contact-info h2 { font-family: var(--theme-font); font-size: var(--med-head-size); font-weight: 700; color: var(--text-dg); line-height: 1.1; margin-bottom: 1rem; }
    .contact-info .intro-text { font-size: var(--body-font-size); color: #666; line-height: 1.8; margin-bottom: 2.5rem; }

    .contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
    .contact-method {
      display: flex; align-items: flex-start; gap: 1rem;
      background: #fff; border-radius: var(--radius-md);
      padding: 1.25rem 1.5rem; box-shadow: var(--shadow-card);
      border-left: 3px solid var(--theme);
      transition: border-left-color 0.2s;
    }
    .contact-method:hover { border-left-color: var(--cta); }
    .cm-icon { width: 44px; height: 44px; border-radius: 50%; background: #e8fce3; display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
    .cm-content {}
    .cm-label { font-family: var(--theme-font); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--theme-dg); margin-bottom: 3px; }
    .cm-value { font-family: var(--theme-font); font-size: 1.1rem; font-weight: 700; color: var(--text-dg); }
    .cm-value a { color: var(--text-dg); transition: color 0.15s; }
    .cm-value a:hover { color: var(--theme-dg); }
    .cm-sub { font-size: 0.78rem; color: #999; margin-top: 2px; }

    .hours-block { background: var(--theme-dg); border-radius: var(--radius-md); padding: 1.5rem; color: #fff; margin-bottom: 2rem; }
    .hours-block h4 { font-family: var(--theme-font); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1rem; }
    .hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; }
    .hours-row:last-child { border-bottom: none; }
    .hours-row .day { font-weight: 700; color: rgba(255,255,255,0.85); }
    .hours-row .time { color: var(--theme); font-weight: 700; }

    .trust-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
    .trust-pill { display: flex; align-items: center; gap: 6px; background: #fff; border: 1px solid #ebebeb; border-radius: 50px; padding: 6px 14px; font-size: 0.78rem; font-weight: 700; color: var(--text-dg); }
    .trust-pill .tp-icon { color: var(--theme); }
    .contact-form-container-2 {
      background: #fff; border-radius: var(--radius-md);
      box-shadow: 0 8px 40px rgba(0,0,0,0.1);
      overflow: hidden;
      position: sticky; top: 110px;
    }
    .form-header { background: var(--theme-dg); padding: 1.75rem 2rem; }
    .form-header p { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin-top: 0.35rem; }
    .contact-container2 { padding: 2rem; }
    .email-form2 {}
    .form-group2 { display: flex; flex-direction: column; gap: 0.75rem; }
    .form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .form-row2 input { height: 44px; outline: none; border: 1.5px solid #ddd; border-radius: var(--radius-sm); padding: 0 0.85rem; font-family: var(--body-font); font-size: 0.875rem; color: var(--text-dg); background: #fafafa; transition: border-color 0.2s; }
    .form-row2 input:focus { border-color: var(--cta); background: #fff; }
    .email-body2 textarea { width: 100%; padding: 0.75rem 0.85rem; border-radius: var(--radius-sm); border: 1.5px solid #ddd; outline: none; font-family: var(--body-font); font-size: 0.875rem; color: var(--text-dg); background: #fafafa; resize: vertical; min-height: 130px; transition: border-color 0.2s; }
    .email-body2 textarea:focus { border-color: var(--cta); background: #fff; }
    .form-note { font-size: 0.72rem; color: #aaa; text-align: center; margin-top: 0.75rem; }

@media (max-width: 960px) {
    .service-layout { grid-template-columns: 1fr; }
    .service-sidebar { position: static; }
    .contact-layout { grid-template-columns: 1fr; } 
    .contact-form-container-2 { position: static; }
}

@media (max-width: 930px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .header-top {
        display: none !important;
    }

    .header {
        padding: 0 1rem;
        height: 100px;
    }
    
    .header-left {
        height: 100px;
    }
    
    .header-right .link {
        margin: 0 0.25rem;
    }

    .header-right .large {
        display: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    .area-intro { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .cta-banner .content-container { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .why-grid { grid-template-columns: 1fr; }
    .include-bar .content-container { flex-direction: column; }
    .include-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0.75rem 1.5rem; }
    .include-item:last-child { border-bottom: none; }
    .included-grid { grid-template-columns: 1fr; }
    .service-hero-content .content-container { flex-direction: column; align-items: flex-start; }
    .area-banner .content-container { flex-direction: column; }
    .form-row2 { grid-template-columns: 1fr; }
}

@media screen and (max-width: 500px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    .faq-tab {
      min-width: 100%;
    }
    .services-grid { grid-template-columns: 1fr; }
    .towns-featured { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .trust-strip .content-container { flex-direction: column; gap: 0.75rem; }
    .trust-divider { display: none; }
    .contact-method:nth-child(2) a { font-size: 0.85rem; text-wrap: wrap; }
}

@font-face {
    font-family: 'Magra';
    src: url(/fonts/Magra-Bold.woff2);
}

@font-face {
    font-family: 'Nunito';
    src: url(/fonts/Nunito-VariableFont_wght.woff2);
}

@keyframes burgerTwistA {
    0% { top: 30%; transform: translateX(-50%) rotateZ(0) }
    50% { top: 50%; transform: translateX(-50%) rotateZ(0) }
    100% { top: 50%; transform: translateX(-50%) rotateZ(45deg) }
}

@keyframes burgerUntwistA {
    0% { top: 50%; transform: translateX(-50%) rotateZ(45deg) }
    50% { top: 50%; transform: translateX(-50%) rotateZ(0) }
    100% { top: 30%; transform: translateX(-50%) rotateZ(0) }
}

@keyframes burgerTwistB {
    0% { top: 68%; transform: translateX(-50%) rotateZ(0) }
    50% { top: 50%; transform: translateX(-50%) rotateZ(0) }
    100% { top: 50%; transform: translateX(-50%) rotateZ(-45deg) }
}

@keyframes burgerUntwistB {
    0% { top: 50%; transform: translateX(-50%) rotateZ(-45deg) }
    50% { top: 50%; transform: translateX(-50%) rotateZ(0) }
    100% { top: 68%; transform: translateX(-50%) rotateZ(0) }
}