:root{

--green:#6aa84f;
--dark:#111111;
--light:#ffffff;
--gray:#f5f5f5;
--bg-dark:#0f1318;
--card-bg:#181d24;
--green:#76b852;
--white:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
}
html
{
    scroll-behavior: smooth;
}
body{
font-family:'Poppins',sans-serif;
   background:
    radial-gradient(
        circle at top left,
        rgba(118,184,82,.06),
        transparent 35%
    ),

    radial-gradient(
        circle at bottom right,
        rgba(118,184,82,.04),
        transparent 40%
    ),

    #0f1318;

    color:white;
}
.container{
    max-width:1400px;
    margin:auto;
    padding:0 40px;

}
.navbar{

position:fixed;
width:100%;
top:20px;
z-index:1002;
padding:0 30px;

}

.nav-container{
max-width:1400px;
margin:auto;
position:relative;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 30px;
background:rgba(255,255,255,.12);
backdrop-filter:blur(20px);
border-radius:24px;
border:1px solid rgba(255,255,255,.15);

}

.logo img{
height:55px;
}

.nav-menu{

display:flex;
gap:35px;
align-items:center;

}

.nav-menu a{

text-decoration:none;
color:white;
font-weight:500;

transition:.3s;

}

.nav-menu a:hover{
color:var(--green);
}

.nav-dropdown{
position:relative;
display:flex;
align-items:center;
}

.nav-dropdown-toggle{
border:none;
background:none;
font:inherit;
color:inherit;
cursor:pointer;
display:inline-flex;
align-items:center;
gap:8px;
}

.nav-dropdown-toggle::after{
content:"▾";
font-size:.75rem;
line-height:1;
transition:.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after{
transform:rotate(180deg);
}

.nav-dropdown-menu{
position:absolute;
top:100%;
left:0;
min-width:220px;
padding:14px 0 0;
border-radius:18px;
background:rgba(17,17,17,.96);
border:1px solid rgba(255,255,255,.12);
box-shadow:0 24px 50px rgba(0,0,0,.28);
display:grid;
gap:8px;
opacity:0;
visibility:hidden;
transform:translateY(12px);
pointer-events:none;
transition:.25s ease;
z-index:1000;
}

.nav-dropdown-menu a{
margin:0 12px;
padding:10px 12px;
border-radius:12px;
white-space:nowrap;
}

.nav-dropdown-menu a:hover{
background:rgba(255,255,255,.08);
color:var(--green);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu{
opacity:1;
visibility:visible;
transform:translateY(0);
pointer-events:auto;
}

.nav-btn{
background:var(--green);
color:white;
padding:14px 28px;
border-radius:50px;
text-decoration:none;
font-weight:600;
transition:.3s;

}

.nav-btn:hover{

transform:translateY(-3px);

}

.hamburger{
    display:none;
    position:relative;
    z-index:1003;
    width:45px;
    height:45px;
    border:none;
    background:none;
    cursor:pointer;
    flex-direction:column;
    justify-content:center;
    gap:5px;

}

.hamburger span{

    width:28px;
    height:3px;
    background:white;
    border-radius:50px;
    transition:.3s;

}




.hamburger.active span:nth-child(1){

    transform:
    rotate(45deg)
    translate(6px,6px);

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:
    rotate(-45deg)
    translate(6px,-6px);

}

.nav-dropdown-toggle{

    appearance:none;
    -webkit-appearance:none;

    background:none;
    border:none;

    color:white;
    font-weight:500;
    font-size:inherit;
    font-family:inherit;

    cursor:pointer;

    padding:0;

}

.hero{

position:relative;
height:100vh;
overflow:hidden;
display:flex;
align-items:center;
padding:120px 50px;

}

.hero-overlay{
position:absolute;
background:
linear-gradient(
90deg,
rgba(0,0,0,.78),
rgba(0,0,0,.40)
);
inset:0;
z-index:2;
}

.hero-content{
position:relative;
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:
1fr 1fr;
gap:60px;
align-items:center;

}

.hero-left{

color:white;
animation:fadeUp 1s ease;

}

.hero-badge{

display:inline-block;
padding:12px 22px;
background:rgba(255,255,255,.15);
backdrop-filter:blur(10px);
border-radius:50px;
margin-bottom:25px;
font-size:.9rem;

}

.hero-left h1{
font-size:clamp(3rem,6vw,6rem);
line-height:1.05;
margin-bottom:25px;
font-weight:800;

}

.hero-left h1 span{
color:var(--green);

}

.hero-left p{
font-size:1.1rem;
line-height:1.8;
max-width:650px;
opacity:.9;
margin-bottom:35px;
}

.hero-buttons{

display:flex;
gap:20px;
margin-bottom:50px;

}

.btn-primary{
background:var(--green);
padding:18px 35px;
border-radius:60px;
text-decoration:none;
color:white;
font-weight:600;
transition:.4s;
}

.btn-primary:hover{
transform:translateY(-4px);
}

.btn-secondary{
border:1px solid rgba(255,255,255,.3);
padding:18px 35px;
border-radius:60px;
color:white;
text-decoration:none;
backdrop-filter:blur(10px);
}


/* Removed unused/statistical image card rules to simplify stylesheet. */

@keyframes fadeUp{

from{
opacity:0;
transform:translateY(60px);
}

to{
opacity:1;
transform:none;
}

}

@keyframes float{

0%,100%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

}

.hero{

position:relative;
height:100vh;
overflow:hidden;

}

.slider{

position:absolute;
inset:0;

}

.slide{
position:absolute;
inset:0;
opacity:0;
transition:
opacity 1.5s ease;
}

.slide.active{
opacity:1;
z-index:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
animation:
zoomHero 10s linear forwards;
}

@keyframes zoomHero{

from{
transform:scale(1);
}

to{
transform:scale(1.12);
}

}


.hero-content{

position:relative;
z-index:3;
max-width:1400px;
height:100%;
margin:auto;
display:flex;
align-items:center;
padding:0 50px;
}

.slider-dots{
position:absolute;
bottom:50px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:12px;
z-index:10;
}

.dot{
width:12px;
height:12px;
border-radius:50%;
background:white;
opacity:.4;
cursor:pointer;
transition:.3s;

}

.dot.active{
opacity:1;
width:35px;
border-radius:20px;
background:#6aa84f;
}

.navbar{
transition:.4s;
}

.navbar.active .nav-container{
background:
rgba(17, 17, 17, 0.658);
}

.floating-review{
    position:absolute;
    right:70px;
    bottom:90px;
    width:380px;
    z-index:5;
    padding:28px;
    border-radius:28px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(25px);
    -webkit-backdrop-filter:blur(25px);
    border:1px solid rgba(255,255,255,.15);
    box-shadow:
    0 20px 50px rgba(0,0,0,.25);
    color:white;
    animation:
    floatingCard 3s ease-in-out infinite;
}

.review-stars{
    font-size:1.3rem;
    color:#ffd700;
    margin-bottom:15px;
    letter-spacing:3px;
}

.floating-review h4{
    font-size:1.3rem;
    margin-bottom:12px;
    font-weight:700;
}

.floating-review p{
    line-height:1.7;
    opacity:.9;
    margin-bottom:20px;
}

.review-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.review-badge{
    background:rgba(106,168,79,.25);
    border:1px solid rgba(106,168,79,.4);
    padding:10px 15px;
    border-radius:50px;
    font-size:.85rem;
    font-weight:600;

}

.review-projects{
    font-weight:700;
    color:#6aa84f;
}

@keyframes floatingCard{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

}






.services-v2{
    position:relative;
    padding:140px 0;
    overflow:hidden;
}

.services-glow{
    position:absolute;
    width:700px;
    height:700px;
    background:#76b852;
    filter:blur(280px);
    opacity:.08;
    top:-300px;
    left:-200px;
}

.services-header{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.services-tag{
    display:inline-flex;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(118,184,82,.12);
    color:#76b852;
    margin-bottom:25px;
}

.services-header h2{
    color:white;
    font-size:clamp(3rem,5vw,5rem);
    line-height:1.1;
    margin-bottom:20px;
}

.services-header h2 span{
    display:block;
    color:#76b852;
}

.services-header p{
    color:#b8c0cc;
    line-height:1.9;
}

.category-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-top:100px;
    margin-bottom:40px;
    color:white;
    font-size:1.3rem;
    font-weight:700;
}

.category-header span{
    width:45px;
    height:4px;
    background:#76b852;
    border-radius:50px;
}

.premium-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.premium-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    min-height:500px;
    text-decoration:none;
}

.premium-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.premium-card:hover img{
    transform:scale(1.1);
}

.premium-overlay{
    position:absolute;
    inset:0;
    padding:35px;
    display:flex;
    align-items:flex-end;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.9),
        rgba(0,0,0,.1)
    );
}

.premium-overlay > div{
    transform:translateY(28px);
    transition:.5s ease;
}

.premium-card:hover .premium-overlay > div,
.premium-card:focus-visible .premium-overlay > div,
.premium-card:focus-within .premium-overlay > div{
    transform:translateY(0);
}

.premium-overlay small{
    color:#76b852;
    display:block;
    opacity:0;
    transform:translateY(14px);
    transition:.4s ease;
}

.premium-overlay h3{
    color:white;
    font-size:1.8rem;
    margin:10px 0;
    transform:translateY(18px);
    transition:.5s ease;
}

.premium-card:hover .premium-overlay h3,
.premium-card:focus-visible .premium-overlay h3,
.premium-card:focus-within .premium-overlay h3{
    transform:translateY(0);
}

.premium-overlay p{
    color:#d6d6d6;
    opacity:0;
    transform:translateY(14px);
    transition:.4s ease;
}

.premium-card:hover .premium-overlay small,
.premium-card:focus-visible .premium-overlay small,
.premium-card:focus-within .premium-overlay small,
.premium-card:hover .premium-overlay p,
.premium-card:focus-visible .premium-overlay p,
.premium-card:focus-within .premium-overlay p{
    opacity:1;
    transform:translateY(0);
}

.solutions-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.solution-card{
    text-decoration:none;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:25px;
    padding:35px;
    min-height:220px;
    display:flex;
    transition:.4s;
}

.solution-card:hover{
    transform:translateY(-8px);
    border-color:#76b852;
}

.solution-icon{
    font-size:2.5rem;
    margin-bottom:20px;
    opacity:0;
    transform:translateY(14px);
    transition:.4s ease;
}

.solution-content{
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    transform:translateY(30px);
    transition:.5s ease;
}

.solution-card:hover .solution-content,
.solution-card:focus-visible .solution-content,
.solution-card:focus-within .solution-content{
    transform:translateY(0);
}

.solution-card h3{
    color:white;
    margin-bottom:10px;
}

.solution-card p{
    color:#bfc6cf;
    opacity:0;
    transform:translateY(14px);
    transition:.4s ease;
}

.solution-card:hover .solution-icon,
.solution-card:focus-visible .solution-icon,
.solution-card:focus-within .solution-icon,
.solution-card:hover p,
.solution-card:focus-visible p,
.solution-card:focus-within p{
    opacity:1;
    transform:translateY(0);
}

.maintenance-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:45px;
    border-radius:30px;
    background:linear-gradient(
        135deg,
        rgba(118,184,82,.15),
        rgba(255,255,255,.04)
    );
    border:1px solid rgba(118,184,82,.15);
}

.maintenance-content h3{
    color:white;
    font-size:2rem;
    margin:10px 0;
}

.maintenance-content p{
    color:#bfc6cf;
    max-width:700px;
}

.maintenance-content small{
    color:#76b852;
}

.maintenance-content ul{
    display:flex;
    gap:20px;
    margin-top:25px;
    flex-wrap:wrap;
}

.maintenance-content li{
    color:white;
    list-style:none;
}

.maintenance-btn{
    white-space:nowrap;
    background:#76b852;
    color:white;
    text-decoration:none;
    padding:18px 35px;
    border-radius:60px;
    font-weight:600;
}

.services-cta{
    margin-top:100px;
    text-align:center;
}

.services-cta h3{
    color:white;
    font-size:2.5rem;
    margin-bottom:15px;
}

.services-cta p{
    color:#bfc6cf;
    margin-bottom:30px;
}

.services-cta a{
    display:inline-flex;
    padding:18px 35px;
    border-radius:60px;
    background:#76b852;
    color:white;
    text-decoration:none;
}

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:none;
}
.solution-card
{
    position: relative;
}
.drain::before
{
    content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-image: url('/img/drain/d\ \(1\).jpg');
          background-size: cover;
          background-position: 50%;
          background-repeat: no-repeat;
          filter: brightness(50%);
          z-index: -1;
}
.sod::before
{
    content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-image: url('/img/sod/s\ \(3\).jpg');
          background-size: cover;
          background-position: 50%;
          background-repeat: no-repeat;
          filter: brightness(50%);
          z-index: -1;
}
.fence::before
{
    content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-image: url('/img/fence/f\ \(6\).jpg');
          background-size: cover;
          background-position: 50%;
          background-repeat: no-repeat;
          filter: brightness(50%);
          z-index: -1;
}
.deck::before
{
    content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-image: url('/img/deck/d\ \(3\).jpg');
          background-size: cover;
          background-position: 50%;
          background-repeat: no-repeat;
          filter: brightness(50%);
          z-index: -1;
}

















/*  */
.testimonials-section {
    position: relative;
    background:
    linear-gradient(
    180deg,
    #f5f3ee,
    #ffffff
    );
    padding: 140px 0 0;
    overflow: hidden;
}

/* Glow */

.reviews-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #76b852;
    filter: blur(220px);
    opacity: .08;
    top: -200px;
    right: -150px;
}

/* Layout */

.testimonials-grid {
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: 70px;
    align-items: center;

}

/* Left */

.reviews-info h2 {
    font-size:
    clamp(3rem,5vw,5rem);
    line-height: 1.1;
    color: #111;
    margin-bottom: 25px;
}

.reviews-info h2 span {
    color: #76b852;
}

.reviews-info p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

/* Stats */

.review-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 24px;
    box-shadow:
    0 15px 40px rgba(0,0,0,.06);
    transition: .4s;
}

.stat-card:hover {
    transform: translateY(-8px);
}

.stat-card h3 {
    color: #76b852;
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-card span {
    color: #666;
}

/* Button */

.reviews-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 35px;
    border-radius: 60px;
    background: #76b852;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.reviews-btn:hover {
    transform: translateY(-4px);
}

/* Widget */

.widget-container {
    background:
    rgba(255,255,255,.75);
    backdrop-filter: blur(25px);
    border-radius: 32px;
    padding: 25px;
    box-shadow:
    0 30px 70px rgba(0,0,0,.08);
}

/* Marquee */

.trust-marquee {
    margin-top: 120px;
      background:
    radial-gradient(
        circle at top left,
        rgba(118, 184, 82, 0.26),
        transparent 35%
    ),

    radial-gradient(
        circle at bottom right,
        rgba(118, 184, 82, 0.26),
        transparent 40%
    ),

    #0f1318;

    color:white;
    overflow: hidden;
    padding: 24px 0;
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation:
    marquee 30s linear infinite;
}

.marquee-track span {
    color: white;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes marquee {

    from {

        transform:
        translateX(0);

    }

    to {

        transform:
        translateX(-50%);

    }

}

/* Reveal */

.reveall {

    opacity: 0;

    transform:
    translateY(60px);

    transition:
    1s ease;

}

.reveall.activee {

    opacity: 1;

    transform:
    translateY(0);

}
.trust-badges{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px;

    margin-top:30px;

}

.trust-badge{

    display:flex;

    align-items:flex-start;

    gap:15px;

    padding:20px;

    background:white;

    border-radius:20px;

    border:1px solid rgba(0,0,0,.05);

    transition:.4s ease;

}

.trust-badge:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

}

.trust-icon{

    width:50px;
    height:50px;

    flex-shrink:0;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:14px;

    background:
    rgba(118,184,82,.12);

    color:#76b852;

    font-size:1.2rem;

    font-weight:700;

}

.trust-badge h4{

    color:#111;

    margin-bottom:5px;

    font-size:1rem;

}

.trust-badge p{

    margin:0;

    color:#666;

    line-height:1.5;

    font-size:.9rem;

}

.trust-badge{

    opacity:0;

    transform:translateY(30px);

}

.trust-badge.active{

    opacity:1;

    transform:translateY(0);

    transition:
    .7s ease;
}




/*  */
.service-areas{

    position:relative;

    background:#0f1318;

    padding:140px 0;

    overflow:hidden;

}

.areas-glow{

    position:absolute;

    width:700px;
    height:700px;

    background:#76b852;

    opacity:.08;

    filter:blur(250px);

    top:-200px;
    right:-200px;

}

.areas-layout{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:50px;

    margin-top:80px;

}

/* MAP */

.map-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.35);

}

.map-wrapper iframe{

    width:100%;
    height:700px;

    border:none;

}

.map-badge{

    position:absolute;

    top:25px;
    left:25px;

    background:
    rgba(15,19,24,.9);

    backdrop-filter:blur(20px);

    color:white;

    padding:15px 20px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:10px;

    z-index:5;

}

.map-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#76b852;

    animation:pulse 2s infinite;

}

/* RIGHT SIDE */

.areas-content h3{

    color:white;

    font-size:2rem;

    margin-bottom:10px;

}

.areas-description{

    color:#b8b8b8;

    line-height:1.8;

    margin-bottom:25px;

}

/* CITY GRID */

.city-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:12px;

}

.city-card{

    border:none;

    background:
    rgba(255,255,255,.05);

    border:1px solid
    rgba(255,255,255,.08);

    color:white;

    padding:18px;

    border-radius:16px;

    cursor:pointer;

    transition:.35s;

    font-size:.95rem;

}

.city-card:hover,
.city-card.activeee{

    background:#76b852;

    transform:
    translateY(-4px);

}

/* COVERAGE CARD */

.coverage-card{

    margin-top:30px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid
    rgba(255,255,255,.08);

    border-radius:28px;

    padding:30px;

    transition:.4s;

}

.coverage-top{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.coverage-icon{

    width:60px;
    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
    rgba(118,184,82,.12);

    font-size:1.3rem;

}

.coverage-card h4{

    color:white;

    margin-bottom:5px;

}

.coverage-subtitle{

    color:#76b852;

    font-size:.9rem;

}

.coverage-card ul{

    list-style:none;

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:12px;

}

.coverage-card li{

    color:#d8d8d8;

    padding-left:20px;

    position:relative;

}

.coverage-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#76b852;

    font-weight:bold;

}

.coverage-footer{

    margin-top:25px;

    padding-top:20px;

    border-top:1px solid
    rgba(255,255,255,.08);

}

.coverage-footer span{

    color:#76b852;

    font-weight:600;

}

/* BUTTON */

.areas-btn{

    display:inline-flex;

    margin-top:30px;

    padding:18px 34px;

    border-radius:50px;

    background:#76b852;

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.areas-btn:hover{

    transform:translateY(-4px);

}

/* ANIMATIONS */

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(118,184,82,.7);
    }

    70%{
        box-shadow:0 0 0 14px rgba(118,184,82,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(118,184,82,0);
    }

}


.service-areas{

    position:relative;

    background:#0f1318;

    padding:140px 0;

    overflow:hidden;

}

.areas-glow{

    position:absolute;

    width:700px;
    height:700px;

    background:#76b852;

    opacity:.08;

    filter:blur(250px);

    top:-200px;
    right:-200px;

}

.areas-layout{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:50px;

    margin-top:80px;

}

/* MAP */

.map-wrapper{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.35);

}

.map-wrapper iframe{

    width:100%;
    height:700px;

    border:none;

}

.map-badge{

    position:absolute;

    top:25px;
    left:25px;

    background:
    rgba(15,19,24,.9);

    backdrop-filter:blur(20px);

    color:white;

    padding:15px 20px;

    border-radius:50px;

    display:flex;

    align-items:center;

    gap:10px;

    z-index:5;

}

.map-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#76b852;

    animation:pulse 2s infinite;

}

/* RIGHT SIDE */

.areas-content h3{

    color:white;

    font-size:2rem;

    margin-bottom:10px;

}

.areas-description{

    color:#b8b8b8;

    line-height:1.8;

    margin-bottom:25px;

}

/* CITY GRID */

.city-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:12px;

}

.city-card{

    border:none;

    background:
    rgba(255,255,255,.05);

    border:1px solid
    rgba(255,255,255,.08);

    color:white;

    padding:18px;

    border-radius:16px;

    cursor:pointer;

    transition:.35s;

    font-size:.95rem;

}

.city-card:hover,
.city-card.active{

    background:#76b852;

    transform:
    translateY(-4px);

}

/* COVERAGE CARD */

.coverage-card{

    margin-top:30px;

    background:
    rgba(255,255,255,.05);

    backdrop-filter:blur(20px);

    border:1px solid
    rgba(255,255,255,.08);

    border-radius:28px;

    padding:30px;

    transition:.4s;

}

.coverage-top{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.coverage-icon{

    width:60px;
    height:60px;

    border-radius:18px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
    rgba(118,184,82,.12);

    font-size:1.3rem;

}

.coverage-card h4{

    color:white;

    margin-bottom:5px;

}

.coverage-subtitle{

    color:#76b852;

    font-size:.9rem;

}

.coverage-card ul{

    list-style:none;

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:12px;

}

.coverage-card li{

    color:#d8d8d8;

    padding-left:20px;

    position:relative;

}

.coverage-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#76b852;

    font-weight:bold;

}

.coverage-footer{

    margin-top:25px;

    padding-top:20px;

    border-top:1px solid
    rgba(255,255,255,.08);

}

.coverage-footer span{

    color:#76b852;

    font-weight:600;

}

/* BUTTON */

.areas-btn{

    display:inline-flex;

    margin-top:30px;

    padding:18px 34px;

    border-radius:50px;

    background:#76b852;

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.areas-btn:hover{

    transform:translateY(-4px);

}

/* ANIMATIONS */

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(118,184,82,.7);
    }

    70%{
        box-shadow:0 0 0 14px rgba(118,184,82,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(118,184,82,0);
    }

}







.estimate-section{

    position:relative;

    padding:140px 0;

    background:#f5f3ee;

    overflow:hidden;

}

.estimate-glow{

    position:absolute;

    width:700px;
    height:700px;

    background:#76b852;

    opacity:.08;

    filter:blur(250px);

    top:-200px;
    right:-200px;

}

.estimate-header{

    max-width:900px;

    margin:0 auto 80px;

    text-align:center;

}

.estimate-header-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 20px;

    border-radius:50px;

    background:
    rgba(118,184,82,.1);

    border:
    1px solid rgba(118,184,82,.2);

    color:#4f8d2d;

    font-weight:600;

    margin-bottom:25px;

}

.estimate-header-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#76b852;

    animation:pulse 2s infinite;

}

.estimate-header h2{

    font-size:
    clamp(3rem,6vw,5.5rem);

    line-height:1.05;

    color:#1d2329;

    margin-bottom:25px;

}

.estimate-header h2 span{

    display:block;

    color:#76b852;

}

.estimate-header p{

    max-width:750px;

    margin:auto;

    color:#66707a;

    font-size:1.15rem;

    line-height:1.9;

}

.estimate-highlights{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-top:40px;

    flex-wrap:wrap;
    color:#1d2329
}

.highlight{

    background:white;

    padding:18px 25px;

    border-radius:20px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

}

.highlight strong{

    display:block;

    color:#76b852;

    font-size:1.6rem;

}

.estimate-wrapper{

    display:grid;

    grid-template-columns:
    .9fr 1.1fr;

    gap:50px;

    margin-top:70px;

}

.trust-card{

    position:relative;

    overflow:hidden;

    background:
    linear-gradient(
    135deg,
    #1b2229,
    #11161c
    );

    color:white;

    border-radius:32px;

    padding:35px;

}

.trust-card::before{

    content:"";

    position:absolute;

    width:300px;
    height:300px;

    background:#76b852;

    opacity:.12;

    border-radius:50%;

    top:-150px;
    right:-150px;

}

.trust-card-top{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:30px;

}

.trust-logo{

    width:70px;
    height:70px;

    border-radius:20px;

    background:#76b852;

    display:flex;

    align-items:center;
    justify-content:center;

    font-weight:700;

    font-size:1.3rem;

}

.trust-card h3{

    color:white;

    margin-bottom:6px;

}

.trust-card span{

    color:#c4c4c4;

}


.stat-box{

    background:
    linear-gradient(
    135deg,
    rgba(118,184,82,.12),
    white
    );

    border:1px solid
    rgba(118,184,82,.15);

    text-align:center;

}

.stat-box h4{

    color:#76b852;

    font-size:2.3rem;

    margin-bottom:8px;

}

.stat-box span{

    color:#66707a;

}


.contact-card{

    position:relative;

    overflow:hidden;

    margin-top:25px;

    background:
    linear-gradient(
    135deg,
    #ffffff,
    #f8f8f8
    );

    border-radius:32px;

    padding:30px;

    border:1px solid
    rgba(118,184,82,.15);

    box-shadow:
    0 20px 60px rgba(0,0,0,.05);

}

.contact-card::before{

    content:"";

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:
    rgba(118,184,82,.08);

    right:-100px;
    top:-100px;

}

.contact-card-header{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:30px;

}

.contact-icon{

    width:65px;
    height:65px;

    border-radius:18px;

    background:#76b852;

    color:white;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:1.5rem;

    flex-shrink:0;

}

.contact-card-header h4{

    color:#1d2329;

    margin-bottom:5px;

    font-size:1.15rem;

}

.contact-card-header span{

    color:#66707a;

    font-size:.95rem;

}
.contact-method{

    display:flex;

    align-items:center;

    gap:15px;

    padding:18px;

    border-radius:18px;

    background:white;

    margin-bottom:15px;

    transition:.35s ease;

    border:1px solid
    rgba(118,184,82,.08);

}

.contact-method:hover{

    transform:translateX(8px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);

}

.method-icon{

    width:50px;
    height:50px;

    border-radius:14px;

    background:
    rgba(118,184,82,.12);

    color:#76b852;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:1.1rem;

    flex-shrink:0;

}

.contact-method small{

    display:block;

    color:#66707a;

    margin-bottom:4px;

}

.contact-method a{

    color:#1d2329;

    text-decoration:none;

    font-weight:600;
}

.contact-footer{

    margin-top:25px;

}

.response-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    border-radius:50px;

    background:
    rgba(118,184,82,.1);

    color:#4f8d2d;

    font-weight:600;

}

.response-badge span{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#76b852;

    animation:pulse 2s infinite;

}


.estimate-form{

    background:white;
    color:#111;
    border-radius:32px;

    padding:40px;

    box-shadow:
    0 30px 80px rgba(0,0,0,.08);

}

.form-steps{

    display:flex;

    align-items:center;

    margin-bottom:40px;

}

.step{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

}

.step span{

    width:45px;
    height:45px;

    border-radius:50%;

    background:#ddd;

    display:flex;

    align-items:center;
    justify-content:center;

}

.step.activeeee span{

    background:#76b852;
    color:white;
    box-shadow:
    0 0 25px rgba(118,184,82,.5);


}

.line{

    flex:1;

    height:2px;

    background:#ddd;

}

.form-section{

    margin-bottom:30px;

}

.form-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;

}

input,
textarea,
select{

    width:100%;

    background:
    rgba(255,255,255,.85);

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(118,184,82,.12);

    border-radius:20px;

    padding:20px;

    transition:.35s ease;
    margin-bottom:15px;

    font-family:inherit;

}
input:focus,
textarea:focus,
select:focus{

    outline:none;

    border-color:#76b852;

    box-shadow:
    0 0 0 6px rgba(118,184,82,.12);

    transform:translateY(-2px);

}

.field{

    position:relative;

}

.field label{

    position:absolute;

    left:20px;
    top:20px;

    color:#66707a;

    transition:.3s;

    pointer-events:none;

}

.field input:focus + label,
.field input:valid + label{

    top:-10px;

    left:15px;

    background:white;

    padding:0 8px;

    font-size:.8rem;

    color:#76b852;

}
.service-option{
    color:#111;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;

    min-height:130px;

    background:white;

    border-radius:24px;

    border:
    1px solid rgba(118,184,82,.12);

    cursor:pointer;

    transition:.35s;

}
.service-option:hover{

    transform:
    translateY(-6px);

    border-color:#76b852;

}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:12px;

}

.services-grid label{

    border-radius:12px;

    cursor:pointer;

}

.upload-box{

    border:2px dashed #76b852;

    border-radius:24px;

    padding:40px;

    text-align:center;

}

#uploadBtn{

    margin-top:15px;

    background:#76b852;

    color:white;

    border:none;

    padding:14px 28px;

    border-radius:50px;

    cursor:pointer;

}

#previewContainer{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;

}

.preview-image{

    width:90px;
    height:90px;

    object-fit:cover;

    border-radius:14px;

}

.submit-btn{

    width:100%;

    padding:20px;

    border:none;

    border-radius:60px;

    height:70px;

    background:
    linear-gradient(
    135deg,
    #9cce81,
    #428d22
    );

    font-size:1rem;

    letter-spacing:.5px;
    color:white;

    font-size:1rem;

    font-weight:700;

    cursor:pointer;

    margin-top:20px;
transition:500ms;
}
.submit-btn:hover{
    transition:500ms;
    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px rgba(118,184,82,.3);

}

.contact-card,.stat-box{


    border-radius:28px;

    padding:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.05);

}

.trust-items{

    display:grid;

    gap:12px;

    margin-top:20px;

}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;

    margin:20px 0;

}

.contact-card a{

    display:block;

    margin:10px 0;

    color:#111;

    text-decoration:none;

}

.revealll{

    opacity:0;

    transform:translateY(50px);

    transition:.9s ease;

}

.revealll.activeeee{

    opacity:1;
    transform:none;

}




.footer{

    position:relative;

    background:#11161c;

    color:white;

    padding:
    140px 0 40px;

    overflow:hidden;

}

.footer-glow{

    position:absolute;

    width:600px;
    height:600px;

    background:#8DCD3B;

    opacity:.12;


    border-radius:50%;

    top:-250px;
    right:-250px;

    filter:blur(220px);

}
.footer-cta{

    text-align:center;

    max-width:850px;

    margin:
    0 auto 100px;

}

.footer-tag{

    display:inline-block;

    padding:12px 22px;

    border-radius:50px;

    background:
    rgba(118,184,82,.12);

    border:
    1px solid rgba(118,184,82,.2);

    color:#76b852;

    margin-bottom:25px;

}

.footer-cta h2{

    font-size:
    clamp(3rem,5vw,5rem);

    line-height:1.1;

}

.footer-cta h2 span{

    display:block;

    color:#8DCD3B;

}

.footer-cta p{

    color:#b6bcc2;

    max-width:700px;

    margin:
    25px auto;

    line-height:1.8;

}
.footer-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:
    18px 36px;

    border-radius:100px;

    background:
    linear-gradient(
    135deg,
    #76b852,
    #5ea63e
    );

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.footer-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 20px 40px
    rgba(118,184,82,.3);

}

.footer-grid{

    display:grid;

    grid-template-columns:
1.8fr
1fr
1fr
1fr;

    gap:50px;

    padding-bottom:60px;

    border-bottom:
    1px solid rgba(255,255,255,.08);

}

.footer-logo{

    position:relative;
}
.footer-logo::after{
    content:"";

    position:absolute;

    width:200px;
    height:200px;

    background:#99ff62ab;


    border-radius:50%;

    top:-50px;
    left:-50px;

    filter:blur(120px);
}

.footer-badges{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;
    margin-bottom:20px;

}
.footer-badges span{

    padding:10px 16px;

    border-radius:50px;

    background:
    rgba(141,205,59,.1);

    border:
    1px solid rgba(141,205,59,.2);

    color:#8DCD3B;

    font-size:.85rem;

}

.footer-column h4{

    margin-bottom:25px;

    color:white;

}

.footer-column a{

    display:block;

    color:#b6bcc2;

    text-decoration:none;

    margin-bottom:14px;

    transition:.3s;

}

.footer-column a:hover{

    color:#76b852;

    transform:
    translateX(5px);

}

.social-links{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.social-links a{

    width:50px;
    height:50px;
    text-align: center;
    font-size: 2.5rem;
    border-radius:50%;

    backdrop-filter:blur(20px);

    background:
    rgba(255,255,255,.05);
    color:white;

}

.social-links a:hover{

    background:#76b852;

}

.footer-trust{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:15px;

    margin:
    50px 0;

}

.footer-trust div{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.06);

    padding:18px;

    border-radius:18px;

    text-align:center;

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.footer-bottom p{

    color:#8b949e;

}

.footer-bottom a{

    color:#8b949e;

    text-decoration:none;

    margin-left:20px;

}
.footer-logo img{

    width:130px;

    height:auto;

}


@media (max-width: 1100px){
    .premium-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .solutions-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{

        grid-template-columns:
        1fr 1fr;

    }

    .footer-trust{

        grid-template-columns:
        repeat(2,1fr);

    }

.estimate-wrapper{

        grid-template-columns:1fr;

    }


 .areas-layout{

        grid-template-columns:1fr;

    }

    .testimonials-grid{

    grid-template-columns:1fr;

}

.reviews-widget{

    order:-1;

}

.hero-content{

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:left;

    padding-top:140px;

}

.hero-left{

    max-width:700px;

}

}

@media(max-width:991px){

    .featured-services{

    grid-template-columns:1fr;

}

.medium{

    margin-top:0;

}

.service-grid{

    grid-template-columns:1fr 1fr;

}

.services-stats{

    gap:40px;

    flex-wrap:wrap;

}

    .nav-menu{

    position:fixed;

    top:0;
    right:-200%;

    width:min(320px, 100vw);
    height:100vh;

    background:#111;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:flex-start;

    gap:35px;

    padding:110px 32px 32px;

    overflow-y:auto;

    transition:.4s;

}

.nav-menu.active{

    right:0;

}

.hamburger{

    display:flex;

}

.nav-btn{

    display:none;

}

.nav-menu > a{
    width:100%;
    text-align:center;
}

.nav-dropdown{
    width:100%;
    flex-direction:column;
    align-items:center;
}

.nav-dropdown-toggle{
    width:100%;
    justify-content:center;
}

.nav-dropdown-menu{
    position:static;
    min-width:0;
    width:100%;
    margin-top:12px;
    padding:0;
    border:none;
    border-left:none;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;
    display:none;
    justify-items:center;
}

.nav-dropdown-menu a{
    margin:0;
    width:100%;
    text-align:center;
}

.nav-dropdown.open .nav-dropdown-menu{
    display:grid;
}

    .floating-review{

        position:relative;

        right:auto;
        bottom:auto;

        width:100%;

        max-width:500px;

        margin:40px auto 0;

    }
     .nav-dropdown{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
    }

    .nav-dropdown-toggle{
        width:100%;
        text-align:left;
        padding:12px 0;
    }

    .nav-dropdown-menu{
        position:static;
        width:100%;
        margin-top:10px;

        opacity:1;
        visibility:visible;

        transform:none;

        display:none;

        pointer-events:auto;

        background:rgba(255,255,255,.04);
        border:none;
        box-shadow:none;
    }

    .nav-dropdown.open .nav-dropdown-menu{
        display:grid;
    }


}

@media(max-width:576px){
    

    .floating-review{
display:none;
    }

    .hero-left h1{

    font-size:2.2rem;

    }


    .review-footer{

        flex-direction:column;

        align-items:flex-start;

    }

}


@media (max-width:768px){

     .footer-grid{

        grid-template-columns:
        1fr;

    }

    .footer-trust{

        grid-template-columns:
        1fr;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

.form-grid,
    .services-grid{

        grid-template-columns:1fr;

    }

.city-grid{

        grid-template-columns:1fr;

    }

    .coverage-card ul{

        grid-template-columns:1fr;

    }

    .map-wrapper iframe{

        height:450px;

    }
.trust-badges{

    grid-template-columns:1fr;

}
.testimonials-section{

    padding-top:100px;

}

.reviews-info h2{

    font-size:2.7rem;

}

.review-stats{

    flex-direction:column;

}

.stat-card{

    width:100%;

}

.widget-container{

    padding:15px;

}

.marquee-track{

    gap:40px;

}


.container{

    padding:0 20px;

}

.service-grid{

    grid-template-columns:1fr;

}

.services-stats{

    flex-direction:column;

    text-align:center;

    gap:25px;

}

.service-card{

    min-height:400px;

}

.section-header h2{

    font-size:2.7rem;

}

.topbar{

    display:none;

}

.nav-container{

    height:80px;

}

.hero{

    min-height:auto;

    padding-top:130px;
    padding-bottom:80px;

}

.hero-content{

    padding:0 25px;

}

.hero-left{

    width:100%;

}

.hero-left h1{

    font-size:2.5rem;

    line-height:1.1;

}

.hero-left p{

    font-size:1rem;

}

.hero-buttons{

    flex-direction:column;

    width:100%;

}

.btn-primary,
.btn-secondary{

    width:100%;

    text-align:center;

}

.hero-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:15px;

}

.floating-review{

    position:relative;

    width:100%;

    margin-top:40px;

    right:auto;
    bottom:auto;

}
 .premium-grid,
    .solutions-grid{
        grid-template-columns:1fr;
    }

    .maintenance-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .maintenance-btn{
        width:100%;
        text-align:center;
    }

    .category-header{
        font-size:1.1rem;
    }

    .premium-card:hover img,
    .premium-card:hover .premium-overlay > div,
    .premium-card:hover .premium-overlay h3,
    .premium-card:hover .premium-overlay small,
    .premium-card:hover .premium-overlay p,
    .premium-card:focus-visible img,
    .premium-card:focus-visible .premium-overlay > div,
    .premium-card:focus-visible .premium-overlay h3,
    .premium-card:focus-visible .premium-overlay small,
    .premium-card:focus-visible .premium-overlay p,
    .premium-card:focus-within img,
    .premium-card:focus-within .premium-overlay > div,
    .premium-card:focus-within .premium-overlay h3,
    .premium-card:focus-within .premium-overlay small,
    .premium-card:focus-within .premium-overlay p{
        transform:none;
        opacity:1;
    }

    .premium-overlay > div,
    .premium-overlay small,
    .premium-overlay h3,
    .premium-overlay p,
    .solution-content,
    .solution-icon,
    .solution-card p{
        opacity:1;
        transform:none;
        transition:none;
    }

    .premium-card:hover img{
        transform:none;
    }

    .solution-card:hover{
        transform:none;
        border-color:rgba(255,255,255,.08);
    }

    .solution-card:hover .solution-content,
    .solution-card:focus-visible .solution-content,
    .solution-card:focus-within .solution-content,
    .solution-card:hover .solution-icon,
    .solution-card:focus-visible .solution-icon,
    .solution-card:focus-within .solution-icon,
    .solution-card:hover p,
    .solution-card:focus-visible p,
    .solution-card:focus-within p{
        transform:none;
        opacity:1;
    }


}





