:root {
    --colorBody: transparent;
    --colorText: #ffffff;
    --colorTextDark: #103315;

    --ColorNumberOne: #1f7a1f;
    --ColorNumber2: #7ed957;
    --ColorNumber3: #0f4d18;
    --ColorNumber4: #edfbe7;
    --ColorNumber5: #b7f27d;
    --ColorNumber6: #16361a;

    --glass: rgba(9, 45, 14, 0.58);
    --glassBorder: rgba(183, 242, 125, 0.25);
    --shadowStrong: 0 18px 42px rgba(0, 0, 0, 0.28);
    --shadowSoft: 0 10px 30px rgba(0, 0, 0, 0.22);
    --radiusLg: 30px;
    --radiusMd: 24px;
    --radiusSm: 18px;
    --container: 92vw;
    --maxw: 1480px;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--colorText);
    font-family: 'Lato', sans-serif;
    background: radial-gradient(circle at top left, rgba(126, 217, 87, 0.22), transparent 35%),
                linear-gradient(130deg, var(--ColorNumber3), var(--ColorNumberOne), var(--ColorNumber2), var(--ColorNumberOne));
    background-size: 250% 250%;
    animation: gradientMove 18s ease infinite;
}

.Body {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    background:
        radial-gradient(circle at top right, rgba(183, 242, 125, 0.10), transparent 18%),
        linear-gradient(rgba(5, 20, 8, 0.48), rgba(5, 20, 8, 0.74));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (orientation: portrait) {
    .Body {
        background:
            radial-gradient(circle at top right, rgba(183, 242, 125, 0.12), transparent 18%),
            linear-gradient(rgba(5, 20, 8, 0.55), rgba(5, 20, 8, 0.78));
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a {
    color: var(--colorText);
    text-decoration: none;
}

a:hover {
    color: var(--ColorNumber5);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    line-height: 1.72;
    font-weight: 300;
    margin: 0;
}

h1, h2, h3, h4 {
    margin: 0;
    font-weight: 700;
}

ul {
    margin: 0;
    padding-left: 1.2rem;
}

.shadow {
    box-shadow: var(--shadowSoft);
}

.glass {
    background: var(--glass);
    border: 1px solid var(--glassBorder);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero {
    min-height: 100vh;
    padding: 0 0 5vh 0;
    display: flex;
    flex-direction: column;
}

.heroTopWrap,
.heroContent,
.section,
#footer {
    width: min(var(--container), var(--maxw));
    margin-left: auto;
    margin-right: auto;
}

.heroTopWrap {
    padding-top: 2vh;
}

.heroTrustBar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(5, 35, 9, 0.52);
    border: 1px solid rgba(183, 242, 125, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.heroTrustBar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}

.heroTrustBar i {
    color: var(--ColorNumber5);
}

.breadcrumbHome {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.94rem;
    color: rgba(255,255,255,0.84);
}

.breadcrumbHome a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.heroContent {
    margin-top: auto;
    margin-bottom: auto;
    padding: 3.5vh 0 4vh;
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.heroCard {
    width: 100%;
    border-radius: var(--radiusLg);
    padding: 42px;
    position: relative;
    overflow: hidden;
}

.heroCard::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(183,242,125,.18), rgba(183,242,125,0));
    pointer-events: none;
}

.heroPhotoWrap {
    border-radius: var(--radiusLg);
    overflow: hidden;
    min-height: 620px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(183, 242, 125, 0.18);
    position: relative;
}

.heroPhotoWrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.15));
    pointer-events: none;
}

.heroPhoto {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
}

.miniTitle {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(183, 242, 125, 0.16);
    color: var(--ColorNumber5);
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: 0.03em;
}

.heroCard h1 {
    font-size: clamp(2rem, 4vw, 4.3rem);
    line-height: 1.05;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-wrap: balance;
}

.heroText {
    font-size: 1.08rem;
    max-width: 760px;
    margin-bottom: 20px;
}

.heroButtons,
.contactButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.heroButtons {
    margin-top: 8px;
}

.heroQuickLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.heroQuickLinks a {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(183,242,125,0.16);
    font-weight: 700;
    font-size: 0.95rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 15px 26px;
    font-weight: 800;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.btnPrimary {
    background: linear-gradient(135deg, var(--ColorNumberOne), var(--ColorNumber2));
    color: white;
    border: 1px solid rgba(255,255,255,0.18);
}

.btnPrimary:hover {
    transform: translateY(-2px);
    color: white;
    filter: brightness(1.03);
}

.btnSecondary {
    background: rgba(255,255,255,0.08);
    color: white;
    border: 1px solid rgba(183, 242, 125, 0.24);
}

.btnSecondary:hover {
    transform: translateY(-2px);
    color: var(--ColorNumber5);
}

.callButton {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--ColorNumberOne), var(--ColorNumber2));
    color: white;
    padding: 16px 22px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 900;
    border: 2px solid rgba(255,255,255,0.25);
}

.callButton:hover {
    color: white;
    transform: scale(1.02);
}

.section {
    margin-bottom: 5vh;
    padding: 28px 0;
}

.sectionTitle {
    text-align: center;
    margin-bottom: 30px;
}

.sectionTitle span {
    display: inline-block;
    color: var(--ColorNumber5);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.sectionTitle h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.15;
    text-wrap: balance;
}

.introGrid,
.servicesGrid,
.faqGrid,
.trustGrid,
.reviewsRow,
.footerGrid {
    display: grid;
    gap: 22px;
}

.introGrid {
    grid-template-columns: repeat(3, 1fr);
}

.card,
.zoneTextCard,
.zoneMapCard,
.contactBox {
    border-radius: 26px;
    padding: 28px;
}

.card h3,
.zoneTextCard h3,
.zoneMapCard h3 {
    margin-bottom: 14px;
    color: var(--ColorNumber5);
    font-size: 1.3rem;
}

.servicesGrid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
}

.serviceCard {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(183, 242, 125, 0.18);
    border-radius: 26px;
    padding: 30px 24px;
    transition: 0.25s ease;
}

.serviceCard:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.11);
}

.serviceIcon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.7rem;
    background: linear-gradient(135deg, var(--ColorNumberOne), var(--ColorNumber2));
    color: white;
}

.serviceCard h3 {
    margin-bottom: 14px;
    font-size: 1.35rem;
    color: white;
}

.middlePhotoBlock,
.widePhotoBanner,
.extraPhotoBlock {
    position: relative;
    border-radius: var(--radiusLg);
    overflow: hidden;
    min-height: 440px;
}

.middlePhoto,
.widePhoto,
.extraPhoto {
    width: 100%;
    height: 440px;
    object-fit: cover;
    filter: brightness(0.70);
}

.middlePhotoOverlay,
.widePhotoText,
.extraPhotoOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 38px 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0.04));
}

.middlePhotoOverlay h3,
.extraPhotoOverlay h2,
.widePhotoText h2 {
    font-size: clamp(1.7rem, 3vw, 3rem);
    margin-bottom: 10px;
    color: white;
    text-wrap: balance;
}

.extraPhotoOverlay span,
.widePhotoText span {
    display: inline-block;
    color: var(--ColorNumber5);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.zoneSection {
    padding-top: 24px;
}

.zoneGrid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.zoneCities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.zoneCities ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.zoneCities li {
    padding: 12px 16px;
    margin-bottom: 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(183, 242, 125, 0.14);
    font-weight: 700;
}

.zoneContactBox {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ColorNumberOne), var(--ColorNumber2));
    font-weight: 900;
    font-size: 1.05rem;
}

.zoneContactBox a,
.zoneContactBox i {
    color: white;
}

.localProofGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.localProofItem {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(183,242,125,0.16);
    text-align: center;
}

.localProofItem strong {
    display: block;
    color: var(--ColorNumber5);
    font-size: 1.15rem;
    font-weight: 900;
}

.localProofItem span {
    font-size: 0.92rem;
    opacity: 0.96;
}

.mapWrap {
    width: 100%;
    height: 400px;
    margin-top: 18px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(183, 242, 125, 0.20);
    background: rgba(255, 255, 255, 0.06);
}

.mapWrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.mapNote {
    margin-top: 16px;
    font-weight: 700;
}

.mapNote a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.trustGrid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 22px;
}

.reviewsRow {
    grid-template-columns: repeat(3, 1fr);
}

.reviewCard {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(183,242,125,0.14);
}

.reviewStars {
    color: #ffd95e;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.reviewCard h3 {
    margin-bottom: 10px;
    color: white;
}

.reviewCard span {
    display: inline-block;
    margin-top: 12px;
    color: var(--ColorNumber5);
    font-weight: 800;
    font-size: 0.95rem;
}

.altSection {
    padding-bottom: 10px;
}

.faqGrid {
    grid-template-columns: repeat(3, 1fr);
}

.faqItem {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(183, 242, 125, 0.18);
}

.faqItem h3 {
    color: var(--ColorNumber5);
    margin-bottom: 12px;
    font-size: 1.18rem;
}

.contactSection {
    padding-bottom: 7vh;
}

.contactBox {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.contactText {
    max-width: 830px;
    margin: 0 auto 24px auto;
    font-size: 1.08rem;
}

.contactStrong {
    font-weight: 900;
    padding-top: 0;
}

.phoneLarge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ColorNumberOne), var(--ColorNumber2));
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.phoneLarge:hover {
    color: white;
}

.contactButtons {
    justify-content: center;
    margin-bottom: 18px;
}

.contactSmall {
    font-size: 1rem;
    opacity: 0.95;
}

#footer {
    background: rgba(0, 0, 0, 0.38);
    padding: 34px 0 22px;
    border-top: 1px solid rgba(183, 242, 125, 0.14);
}

.footerGrid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 24px;
}

.footerCol h3 {
    color: var(--ColorNumber5);
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.footerCol p {
    margin-bottom: 8px;
}

.footerCol a {
    color: var(--ColorNumber5);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footerBottom {
    text-align: center;
    font-size: 0.95rem;
}

.footerBottom a {
    color: var(--ColorNumber5);
    text-decoration: underline;
}

::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

@media screen and (max-width: 1180px) {
    .heroGrid,
    .introGrid,
    .servicesGrid,
    .faqGrid,
    .trustGrid,
    .reviewsRow,
    .footerGrid {
        grid-template-columns: 1fr 1fr;
    }

    .zoneGrid {
        grid-template-columns: 1fr;
    }

    .heroPhotoWrap,
    .heroPhoto {
        min-height: 460px;
    }
}

@media screen and (max-width: 820px) {
    .heroGrid,
    .introGrid,
    .servicesGrid,
    .faqGrid,
    .trustGrid,
    .reviewsRow,
    .footerGrid,
    .localProofGrid {
        grid-template-columns: 1fr;
    }

    .heroTrustBar {
        border-radius: 24px;
        justify-content: flex-start;
    }

    .heroCard {
        padding: 28px 22px;
    }

    .callButton {
        right: 14px;
        left: 14px;
        bottom: 14px;
        justify-content: center;
        font-size: 1rem;
        padding: 15px 18px;
    }

    .phoneLarge {
        width: 100%;
        justify-content: center;
        font-size: 1.2rem;
    }

    .section,
    .heroContent,
    .heroTopWrap,
    #footer {
        width: 94vw;
    }

    .heroPhotoWrap,
    .heroPhoto,
    .middlePhoto,
    .widePhoto,
    .extraPhoto {
        min-height: 280px;
        height: 280px;
    }

    .middlePhotoOverlay,
    .widePhotoText,
    .extraPhotoOverlay {
        padding: 24px 18px;
    }

    .zoneCities {
        grid-template-columns: 1fr;
    }

    .mapWrap {
        height: 280px;
    }

    .zoneTextCard,
    .zoneMapCard,
    .contactBox,
    .card {
        padding: 22px;
    }

    .heroQuickLinks {
        gap: 10px;
    }

    .heroQuickLinks a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}