: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);
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--colorText);
    font-family: 'Lato', sans-serif;
    background: 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:
        linear-gradient(rgba(5, 20, 8, 0.50), rgba(5, 20, 8, 0.70));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (orientation: portrait) {
    .Body {
        background:
            linear-gradient(rgba(5, 20, 8, 0.55), rgba(5, 20, 8, 0.76));
        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.7;
    font-weight: 300;
    margin: 0;
}

h1,
h2,
h3 {
    margin: 0;
    font-weight: 700;
}

ul {
    margin: 0;
    padding-left: 1.2rem;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.glass {
    background: var(--glass);
    border: 1px solid var(--glassBorder);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero {
    min-height: 100vh;
    padding: 0 0 5vh 0;
    display: flex;
    flex-direction: column;
}

.topbar {
    width: 92vw;
    margin: 2vh auto 0 auto;
    padding: 18px 24px;
    border-radius: 24px;
    background: rgba(5, 35, 9, 0.55);
    border: 1px solid rgba(183, 242, 125, 0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    border-radius: 16px;
    background: white;
    padding: 6px;
}

.brandText {
    display: flex;
    flex-direction: column;
}

.brandTitle {
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--ColorNumber5);
}

.brandSub {
    font-size: 0.95rem;
    opacity: 0.95;
}

.navActions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.navActions a {
    font-weight: 700;
    font-size: 1rem;
    color: white;
}

.heroContent {
    width: 92vw;
    margin: auto;
    padding: 4vh 0;
}

.heroGrid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
    align-items: center;
}

.heroCard {
    width: 100%;
    border-radius: 30px;
    padding: 42px;
}

.heroPhotoWrap {
    border-radius: 30px;
    overflow: hidden;
    min-height: 540px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(183, 242, 125, 0.18);
}

.heroPhoto {
    width: 100%;
    height: 100%;
    min-height: 540px;
    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: 700;
    margin-bottom: 18px;
}

.heroCard h1 {
    font-size: clamp(2rem, 4.3vw, 4.4rem);
    line-height: 1.08;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.heroText {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 28px;
}

.heroButtons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 15px 26px;
    font-weight: 700;
    transition: 0.25s ease;
}

.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;
}

.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 {
    width: 92vw;
    margin: 0 auto 5vh auto;
    padding: 30px 0;
}

.sectionTitle {
    text-align: center;
    margin-bottom: 28px;
}

.sectionTitle.left {
    text-align: left;
}

.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.7rem, 3vw, 3rem);
    line-height: 1.2;
}

.introGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    border-radius: 26px;
    padding: 28px;
}

.card h3 {
    margin-bottom: 14px;
    color: var(--ColorNumber5);
    font-size: 1.3rem;
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    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 {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 420px;
}

.middlePhoto {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: brightness(0.72);
}

.middlePhotoOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 36px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0.05));
}

.middlePhotoOverlay h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.middlePhotoOverlay p {
    max-width: 760px;
}

.splitSection {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}

.zoneList,
.checkList {
    margin-top: 18px;
}

.zoneList li,
.checkList li {
    margin-bottom: 10px;
}

.altSection {
    padding-bottom: 10px;
}

.faqGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.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.2rem;
}

.widePhotoBanner {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 420px;
}

.widePhoto {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: brightness(0.68);
}

.widePhotoText {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 36px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.04));
}

.widePhotoText span {
    display: inline-block;
    color: var(--ColorNumber5);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.widePhotoText h2 {
    max-width: 800px;
    font-size: clamp(1.6rem, 3vw, 3rem);
}

.contactSection {
    padding-bottom: 8vh;
}

.contactBox {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 40px 28px;
    text-align: center;
}

.contactText {
    max-width: 760px;
    margin: 0 auto 24px auto;
    font-size: 1.08rem;
}

.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: 18px;
}

.phoneLarge:hover {
    color: white;
}

.contactSmall {
    font-size: 1rem;
    opacity: 0.95;
}

#footer {
    background: rgba(0, 0, 0, 0.4);
    padding: 22px;
    text-align: center;
    border-top: 1px solid rgba(183, 242, 125, 0.14);
}

#footer p {
    text-align: center;
    font-size: 0.95rem;
}

#footer 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: 1100px) {
    .heroGrid,
    .introGrid,
    .servicesGrid,
    .faqGrid,
    .splitSection {
        grid-template-columns: 1fr 1fr;
    }

    .splitSection {
        grid-template-columns: 1fr;
    }

    .heroPhotoWrap,
    .heroPhoto {
        min-height: 420px;
    }
}

@media screen and (max-width: 780px) {
    .topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navActions {
        gap: 12px;
    }

    .heroGrid,
    .introGrid,
    .servicesGrid,
    .faqGrid {
        grid-template-columns: 1fr;
    }

    .heroCard {
        padding: 28px 22px;
    }

    .brand img {
        width: 68px;
        height: 68px;
    }

    .brandTitle {
        font-size: 1.3rem;
    }

    .brandSub {
        font-size: 0.85rem;
    }

    .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 {
        width: 94vw;
    }

    .heroContent {
        width: 94vw;
    }

    .heroPhotoWrap,
    .heroPhoto,
    .middlePhoto,
    .widePhoto {
        min-height: 280px;
        height: 280px;
    }

    .middlePhotoOverlay,
    .widePhotoText {
        padding: 24px 18px;
    }

    .middlePhotoOverlay h3 {
        font-size: 1.4rem;
    }
}

.mapWrap {
    width: 100%;
    height: 360px;
    margin-top: 20px;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(183, 242, 125, 0.20);
    background: rgba(255, 255, 255, 0.06);
}

.mapWrap iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.mapNote {
    margin-top: 16px;
}

@media screen and (max-width: 780px) {
    .mapWrap {
        height: 280px;
    }
}

.zoneSection {
    padding-top: 30px;
}

.zoneGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.zoneTextCard,
.zoneMapCard {
    border-radius: 28px;
    padding: 30px;
}

.zoneTextCard h3,
.zoneMapCard h3 {
    font-size: 1.5rem;
    color: var(--ColorNumber5);
    margin-bottom: 18px;
}

.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: 10px;
    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 {
    color: white;
}

.zoneContactBox i {
    color: white;
}

.mapWrap {
    width: 100%;
    height: 380px;
    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;
}

@media screen and (max-width: 980px) {
    .zoneGrid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 780px) {
    .zoneCities {
        grid-template-columns: 1fr;
    }

    .mapWrap {
        height: 280px;
    }

    .zoneTextCard,
    .zoneMapCard {
        padding: 22px;
    }
}


.extraPhotoBlock {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 420px;
}

.extraPhoto {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: brightness(0.70);
}

.extraPhotoOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 36px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.05));
}

.extraPhotoOverlay span {
    display: inline-block;
    color: var(--ColorNumber5);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.extraPhotoOverlay h2 {
    max-width: 800px;
    font-size: clamp(1.6rem, 3vw, 3rem);
    margin-bottom: 10px;
}

.extraPhotoOverlay p {
    max-width: 760px;
}

@media screen and (max-width: 780px) {
    .extraPhoto {
        min-height: 280px;
        height: 280px;
    }

    .extraPhotoOverlay {
        padding: 24px 18px;
    }
}