@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root{
    --green: #2ecc71;
    --darkGreen: #1e8f4d;
    --softGreen: #eafaf1;
    --black: #111;
    --gray: #666;
    --white: #fff;
    --shadow: 0 1rem 2rem rgba(0,0,0,.08);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
}

html{
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body{
    background: var(--softGreen);
}

/* Header ====================== */
.gHeader{
    position: fixed;
    top: 0; left: 0; right: 0;
    width: 100%;
    padding: 1.8rem 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    box-shadow: var(--shadow);
}

.gLogo{
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--black);
}

.gLogo span{
    color: var(--darkGreen);
}

.gLogo i{
    color: var(--green);
    margin-left: .6rem;
}

.gNavbar{
    display: flex;
    gap: 2.2rem;
}

.gNavbar a{
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gray);
    position: relative;
}

.gNavbar a:hover{
    color: var(--darkGreen);
}

.gNavbar a::after{
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--green);
    transition: 0.3s;
}

.gNavbar a:hover::after{
    width: 100%;
}

/* Action Button */
.gAction{
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.gBtn{
    padding: 1rem 1.8rem;
    border-radius: 14px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    box-shadow: 0 .8rem 1.6rem rgba(46,204,113,.25);
}

.gBtn:hover{
    transform: translateY(-2px);
}

.gMenuBtn{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(46,204,113,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
}

.gMenuBtn i{
    font-size: 2rem;
    color: var(--darkGreen);
}

/* Responsive ===================== */
@media(max-width: 991px){
    html{
        font-size: 56%;
    }

    .gHeader{
        padding: 1.6rem 4%;
    }
}

@media(max-width: 768px){
    .gMenuBtn{
        display: flex;
    }

    .gNavbar{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow);
        border-radius: 0 0 20px 20px;
        overflow: hidden;

        opacity: 0;
        pointer-events: none;
        transform: translateY(-25px);
    }

    .gNavbar.active{
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0px);
    }

    .gNavbar a{
        padding: 1.6rem 2rem;
        font-size: 1.9rem;
        border-bottom: 1px solid rgba(0,0,0,.06);
    }

    .gNavbar a:hover{
        background: rgba(46,204,113,.08);
    }
}

@media(max-width: 560px){
    html{
        font-size: 50%;
    }

    .gBtn{
        display: none;
    }
}

/* Hero Section ====================== */
.gHero{
    padding-top: 12rem;
    padding-bottom: 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, rgba(46,204,113,.15), rgba(255,255,255,.85));
    position: relative;
    overflow: hidden;
}

.gHeroRow{
    width: 100%;
    padding: 0 9%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Hero Content */
.gHeroBadge{
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1.6rem;
    border-radius: 30px;
    background: rgba(46,204,113,.18);
    color: var(--darkGreen);
    font-size: 1.4rem;
    font-weight: 700;
}

.gHeroBadge i{
    color: var(--green);
}

.gHeroContent h1{
    margin-top: 2rem;
    font-size: 5.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--black);
}

.gHeroContent h1 span{
    color: var(--darkGreen);
}

.gHeroContent p{
    margin-top: 1.8rem;
    font-size: 1.6rem;
    color: var(--gray);
    line-height: 1.9;
    max-width: 55rem;
}

/* Hero Buttons */
.gHeroBtn{
    margin-top: 2.6rem;
    display: flex;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.gBtnMain{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    box-shadow: 0 .9rem 1.8rem rgba(46,204,113,.25);
}

.gBtnMain:hover{
    transform: translateY(-2px);
}

.gBtnOutline{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: 1.1rem 2.2rem;
    border-radius: 14px;
    font-size: 1.6rem;
    font-weight: 800;
    border: 2px solid rgba(30,143,77,.35);
    color: var(--darkGreen);
    background: rgba(255,255,255,.6);
}

.gBtnOutline:hover{
    background: rgba(46,204,113,.10);
    transform: translateY(-2px);
}

/* Mini Cards */
.gHeroMini{
    margin-top: 3.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.gMiniCard{
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
    padding: 1.6rem 1.6rem;
    border-radius: 18px;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 .7rem 1.6rem rgba(0,0,0,.06);
}

.gMiniCard i{
    font-size: 2.2rem;
    color: var(--darkGreen);
    background: rgba(46,204,113,.15);
    width: 45px;
    height: 45px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gMiniCard h4{
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--black);
}

.gMiniCard p{
    margin-top: .5rem;
    font-size: 1.35rem;
    color: var(--gray);
}

/* Hero Image */
.gHeroImage{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gHeroCircle{
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(46,204,113,.35), transparent 70%);
    z-index: 1;
}

.gHeroImage img{
    width: 100%;
    z-index: 2;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,.18));
    animation: plantFloat 4s ease-in-out infinite;
}

@keyframes plantFloat{
    0%, 100%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-18px);
    }
}

/* Hero Responsive ====================== */
@media(max-width: 991px){
    .gHeroRow{
        padding: 0 5%;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gHeroContent p{
        margin-left: auto;
        margin-right: auto;
    }

    .gHeroBtn{
        justify-content: center;
    }

    .gHeroMini{
        align-items: center;
    }

    .gMiniCard{
        max-width: 480px;
        width: 100%;
        text-align: left;
    }
}

@media(max-width: 560px){
    .gHero{
        min-height: auto;
        padding-top: 10rem;
        padding-bottom: 5rem;
    }

    .gHeroContent h1{
        font-size: 3.8rem;
    }

    .gHeroCircle{
        width: 280px;
        height: 280px;
    }

    .gHeroImage img{
        max-width: 280px;
        animation: none;
    }
}


/* About Section ====================== */
.gAbout{
    padding: 9rem 0;
    background: rgba(255,255,255,.6);
}

.gAboutRow{
    padding: 0 9%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
    align-items: flex-start;
}

/* Left Content */
.gAboutBadge{
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1.6rem;
    border-radius: 30px;
    background: rgba(46,204,113,.16);
    color: var(--darkGreen);
    font-size: 1.4rem;
    font-weight: 800;
}

.gAboutBadge i{
    color: var(--green);
}

.gAboutContent h2{
    margin-top: 1.8rem;
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
}

.gAboutContent p{
    margin-top: 1.5rem;
    font-size: 1.55rem;
    color: var(--gray);
    line-height: 1.9;
    max-width: 62rem;
}

/* Right Side */
.gAboutRight{
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

/* Checklist */
.gAboutList{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.gAboutPoint{
    display: flex;
    gap: 1.1rem;
    align-items: center;
    background: rgba(255,255,255,.85);
    padding: 1.4rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 .6rem 1.4rem rgba(0,0,0,.05);
}

.gAboutPoint i{
    font-size: 1.5rem;
    color: var(--white);
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gAboutPoint p{
    margin: 0;
    font-size: 1.45rem;
    font-weight: 600;
    color: #333;
}

/* Stats */
.gAboutStats{
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}

.gStatBox{
    flex: 1 1 140px;
    padding: 1.6rem 1.6rem;
    background: rgba(46,204,113,.12);
    border-radius: 18px;
    border: 1px solid rgba(46,204,113,.18);
    text-align: center;
}

.gStatBox h3{
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--darkGreen);
}

.gStatBox span{
    display: block;
    margin-top: .6rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #444;
}

/* Button */
.gAboutRight .gBtnMain{
    width: fit-content;
}

/* About Responsive ====================== */
@media(max-width: 991px){
    .gAboutRow{
        padding: 0 5%;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gAboutContent p{
        margin-left: auto;
        margin-right: auto;
    }

    .gAboutRight{
        align-items: center;
    }

    .gAboutPoint{
        text-align: left;
        max-width: 520px;
        width: 100%;
    }

    .gAboutStats{
        justify-content: center;
    }
}

@media(max-width: 560px){
    .gAboutContent h2{
        font-size: 3.2rem;
    }

    .gAboutStats{
        flex-direction: column;
        width: 100%;
    }

    .gStatBox{
        width: 100%;
    }

    .gAboutRight .gBtnMain{
        width: 100%;
        justify-content: center;
    }
}


/* Products Section ====================== */
.gProducts{
    padding: 9rem 0;
    background: var(--softGreen);
}

.gSectionTitle{
    padding: 0 9%;
    text-align: center;
    margin-bottom: 4.5rem;
}

.gSectionTitle span{
    display: inline-flex;
    align-items: center;
    gap: .8rem;
    padding: .8rem 1.7rem;
    border-radius: 30px;
    background: rgba(46,204,113,.16);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--darkGreen);
}

.gSectionTitle span i{
    color: var(--green);
}

.gSectionTitle h2{
    margin-top: 1.8rem;
    font-size: 4rem;
    font-weight: 900;
    color: var(--black);
}

.gSectionTitle p{
    margin-top: 1.3rem;
    font-size: 1.55rem;
    line-height: 1.8;
    color: var(--gray);
    max-width: 65rem;
    margin-left: auto;
    margin-right: auto;
}

/* Product Grid */
.gProductGrid{
    padding: 0 9%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.4rem;
}

/* Card */
.gProductCard{
    position: relative;
    background: rgba(255,255,255,.85);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.05);
    box-shadow: 0 1rem 2.2rem rgba(0,0,0,.08);
    transition: 0.3s;
}

.gProductCard:hover{
    transform: translateY(-12px);
    box-shadow: 0 1.8rem 3.2rem rgba(0,0,0,.12);
}

/* Badge */
.gProductBadge{
    position: absolute;
    top: 15px;
    left: 15px;
    padding: .6rem 1.2rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    z-index: 2;
}

.gProductBadge.best{
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.gProductBadge.new{
    background: linear-gradient(90deg, #2ecc71, #1e8f4d);
}

/* Image */
.gProductImg{
    width: 100%;
    height: 220px;
    background: linear-gradient(120deg, rgba(46,204,113,.15), rgba(255,255,255,.75));
    display: flex;
    align-items: center;
    justify-content: center;
}

.gProductImg img{
    max-width: 150px;
    filter: drop-shadow(0px 14px 20px rgba(0,0,0,.10));
    transition: 0.3s;
}

.gProductCard:hover .gProductImg img{
    transform: scale(1.08);
}

/* Info */
.gProductInfo{
    padding: 2.2rem 2rem;
}

.gProductInfo h3{
    font-size: 1.9rem;
    font-weight: 900;
    color: #222;
}

.gProductInfo p{
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #666;
    line-height: 1.7;
    min-height: 55px;
}

/* Price */
.gProductPrice{
    margin-top: 1.6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newPrice{
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--darkGreen);
}

.oldPrice{
    font-size: 1.4rem;
    font-weight: 700;
    color: #888;
    text-decoration: line-through;
}

/* Order Button */
.gOrderBtn{
    margin-top: 1.8rem;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    padding: 1.1rem;
    border-radius: 14px;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    color: #fff;
    box-shadow: 0 .8rem 1.6rem rgba(46,204,113,.22);
}

.gOrderBtn:hover{
    transform: translateY(-2px);
}

/* Products Responsive ====================== */
@media(max-width: 991px){
    .gSectionTitle{
        padding: 0 5%;
    }

    .gProductGrid{
        padding: 0 5%;
    }
}

@media(max-width: 560px){
    .gSectionTitle h2{
        font-size: 3.2rem;
    }

    .gProductInfo p{
        min-height: auto;
    }
}

/* Gallery Section ====================== */
.gGallery{
    padding: 9rem 0;
    background: rgba(255,255,255,.7);
}

.gGalleryGrid{
    padding: 0 9%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

/* Gallery Card */
.gGalleryCard{
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    cursor: pointer;
    box-shadow: 0 1rem 2.2rem rgba(0,0,0,.08);
    border: 1px solid rgba(0,0,0,.05);
}

.gGalleryCard img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.4s;
}

.gGalleryCard:hover img{
    transform: scale(1.12);
}

/* Overlay */
.gGalleryOverlay{
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.35);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.gGalleryOverlay i{
    font-size: 3rem;
    color: #fff;
    background: rgba(46,204,113,.85);
    padding: 1.4rem;
    border-radius: 50%;
}

.gGalleryCard:hover .gGalleryOverlay{
    opacity: 1;
}

/* Modal Popup */
.gModal{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding: 2rem;
}

.gModal.active{
    opacity: 1;
    visibility: visible;
}

.gModalBox{
    position: relative;
    max-width: 800px;
    width: 100%;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 2rem 4rem rgba(0,0,0,.25);
    animation: modalZoom 0.35s ease;
}

@keyframes modalZoom{
    0%{
        transform: scale(.8);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

.gModalBox img{
    width: 100%;
    display: block;
    max-height: 80vh;
    object-fit: cover;
}

.gModalClose{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
}

.gModalClose i{
    font-size: 2rem;
    color: #fff;
}

.gModalClose:hover{
    background: rgba(46,204,113,.9);
}

/* Gallery Responsive ====================== */
@media(max-width: 991px){
    .gGalleryGrid{
        padding: 0 5%;
    }
}

@media(max-width: 560px){
    .gGalleryCard img{
        height: 220px;
    }
}


/* Contact Section ====================== */
.gContact{
    padding: 9rem 0;
    background: rgba(255,255,255,.75);
}

.gContactRow{
    padding: 0 9%;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
    margin-top: 4rem;
    align-items: flex-start;
}

/* Contact Info ====================== */
.gContactInfo{
    background: rgba(255,255,255,.92);
    border-radius: 22px;
    padding: 3rem 2.7rem;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 1.2rem 2.6rem rgba(0,0,0,.08);
}

.gContactInfo h3{
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--black);
}

.gContactInfo p{
    margin-top: 1.4rem;
    font-size: 1.45rem;
    line-height: 1.9;
    color: var(--gray);
}

.gInfoBox{
    margin-top: 1.8rem;
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    padding: 1.5rem 1.6rem;
    border-radius: 18px;
    background: rgba(46,204,113,.08);
    border: 1px solid rgba(46,204,113,.16);
    transition: 0.25s;
}

.gInfoBox:hover{
    background: rgba(46,204,113,.12);
    transform: translateY(-2px);
}

.gInfoBox i{
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.gInfoBox h4{
    font-size: 1.6rem;
    font-weight: 900;
    color: #222;
}

.gInfoBox span{
    display: block;
    margin-top: .4rem;
    font-size: 1.35rem;
    color: #555;
    font-weight: 600;
}

.gContactBtn{
    margin-top: 2.5rem;
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    padding: 1.25rem;
    border-radius: 16px;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    color: #fff;
    box-shadow: 0 1rem 2rem rgba(46,204,113,.22);
    border: none;
}

.gContactBtn:hover{
    transform: translateY(-3px);
    box-shadow: 0 1.4rem 2.8rem rgba(46,204,113,.30);
}

/* Contact Form ====================== */
.gContactForm{
    background: rgba(255,255,255,.92);
    border-radius: 22px;
    padding: 3rem 2.7rem;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 1.2rem 2.6rem rgba(0,0,0,.08);
}

.gContactForm h3{
    font-size: 2.6rem;
    font-weight: 900;
    text-align: center;
    color: var(--black);
    margin-bottom: 2.2rem;
}

/* Input Box */
.gInputBox{
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(46,204,113,.08);
    border: 1px solid rgba(46,204,113,.20);
    border-radius: 18px;
    padding: 1.4rem 1.6rem;
    margin-bottom: 1.6rem;
    transition: 0.25s;
}

.gInputBox:hover{
    background: rgba(46,204,113,.11);
    border: 1px solid rgba(46,204,113,.32);
}

.gInputBox:focus-within{
    background: rgba(46,204,113,.14);
    border: 1px solid rgba(46,204,113,.55);
    box-shadow: 0 0 0 4px rgba(46,204,113,.18);
}

.gInputBox i{
    font-size: 1.9rem;
    color: var(--darkGreen);
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(46,204,113,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .2rem;
}

/* Input */
.gInputBox input,
.gInputBox textarea{
    width: 100%;
    background: transparent;
    font-size: 1.5rem;
    color: #222;
    resize: none;
    outline: none;
    border: none;
    padding: .6rem .2rem;
}

.gInputBox textarea{
    height: 140px;
    padding-top: .4rem;
}

.gInputBox input::placeholder,
.gInputBox textarea::placeholder{
    color: rgba(0,0,0,.45);
    font-weight: 500;
}

/* Send Button */
.gSendBtn{
    width: 100%;
    padding: 1.35rem;
    border-radius: 18px;
    font-size: 1.65rem;
    font-weight: 900;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    box-shadow: 0 1rem 2rem rgba(46,204,113,.25);
    border: none;
    transition: 0.25s;
}

.gSendBtn:hover{
    transform: translateY(-3px);
    box-shadow: 0 1.4rem 2.6rem rgba(46,204,113,.32);
}

.gSendBtn:active{
    transform: scale(.98);
}

/* Footer ====================== */
.gFooter{
    background: linear-gradient(120deg, #0f2f1c, #0b1f14);
    padding: 7rem 9% 2rem;
    color: #fff;
}

.gFooterGrid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
}

.gFooterBox h2,
.gFooterBox h3{
    font-size: 2.1rem;
    font-weight: 900;
    margin-bottom: 1.6rem;
}

.gFooterLogo{
    font-size: 2.7rem;
    font-weight: 900;
}

.gFooterLogo span{
    color: var(--green);
}

.gFooterLogo i{
    color: var(--green);
    margin-left: .6rem;
}

.gFooterBox p{
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255,255,255,.78);
    margin-bottom: 1.2rem;
}

.gFooterBox a{
    display: block;
    font-size: 1.45rem;
    margin-bottom: 1.1rem;
    color: rgba(255,255,255,.8);
}

.gFooterBox a i{
    margin-right: .8rem;
    color: var(--green);
}

.gFooterBox a:hover{
    transform: translateX(7px);
    color: var(--green);
}

.gFooterBox p i{
    margin-right: .8rem;
    color: var(--green);
}

/* Social */
.gFooterSocial{
    display: flex;
    gap: 1.2rem;
    margin-top: 1.6rem;
}

.gFooterSocial a{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.6rem;
}

.gFooterSocial a:hover{
    background: var(--green);
    color: #111;
    transform: translateY(-4px);
}

/* Footer Bottom */
.gFooterBottom{
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.12);
}

.gFooterBottom p{
    font-size: 1.35rem;
    color: rgba(255,255,255,.7);
}

/* WhatsApp Floating ====================== */
.gWaFloat{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    box-shadow: 0 1.2rem 2.2rem rgba(0,0,0,.25);
}

.gWaFloat i{
    font-size: 3rem;
    color: #fff;
}

.gWaFloat:hover{
    transform: scale(1.08);
}

/* Responsive ====================== */
@media(max-width: 991px){
    .gContactRow{
        padding: 0 5%;
        grid-template-columns: 1fr;
    }

    .gFooter{
        padding: 7rem 5% 2rem;
        text-align: center;
    }

    .gFooterSocial{
        justify-content: center;
    }
}

@media(max-width: 560px){
    .gContactForm,
    .gContactInfo{
        padding: 2.6rem 2rem;
    }

    .gContactForm h3{
        font-size: 2.3rem;
    }

    .gContactInfo h3{
        font-size: 2.3rem;
    }
}


/* Popup Buy Template ====================== */
.gPopupOverlay{
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
    backdrop-filter: blur(7px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.gPopupOverlay.active{
    opacity: 1;
    visibility: visible;
}

.gPopupBox{
    width: 100%;
    max-width: 460px;
    background: rgba(255,255,255,.96);
    border-radius: 22px;
    padding: 3.2rem 2.6rem;
    position: relative;
    text-align: center;
    box-shadow: 0 2rem 4rem rgba(0,0,0,.25);
    animation: gPopupZoom 0.4s ease;
}

@keyframes gPopupZoom{
    0%{
        transform: scale(.8);
        opacity: 0;
    }
    100%{
        transform: scale(1);
        opacity: 1;
    }
}

.gPopupClose{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0,0,0,.06);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gPopupClose i{
    font-size: 1.8rem;
    color: #333;
}

.gPopupClose:hover{
    background: rgba(46,204,113,.18);
}

.gPopupIcon{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(46,204,113,.14);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 1.8rem;
}

.gPopupIcon i{
    font-size: 3rem;
    color: var(--darkGreen);
}

.gPopupBox h2{
    font-size: 2.5rem;
    font-weight: 900;
    color: #111;
}

.gPopupBox p{
    margin-top: 1.4rem;
    font-size: 1.45rem;
    line-height: 1.8;
    color: #666;
}

.gPopupPrice{
    margin-top: 2rem;
    padding: 1.6rem;
    border-radius: 18px;
    background: rgba(46,204,113,.10);
    border: 1px solid rgba(46,204,113,.18);
}

.gPopupPrice span{
    font-size: 1.4rem;
    font-weight: 700;
    color: #555;
}

.gPopupPrice h3{
    margin-top: .6rem;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--darkGreen);
}

.gPopupBtns{
    margin-top: 2.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.gPopupBuy{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    padding: 1.2rem;
    border-radius: 14px;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--green), var(--darkGreen));
    color: #fff;
    box-shadow: 0 .9rem 1.8rem rgba(46,204,113,.25);
}

.gPopupBuy:hover{
    transform: translateY(-3px);
}

.gPopupLater{
    padding: 1.2rem;
    border-radius: 14px;
    font-size: 1.55rem;
    font-weight: 800;
    background: rgba(0,0,0,.06);
    color: #333;
    cursor: pointer;
}

.gPopupLater:hover{
    background: rgba(0,0,0,.1);
}

.gPopupFooter{
    margin-top: 2rem;
    font-size: 1.2rem;
    color: #777;
}

/* Popup Responsive */
@media(max-width: 480px){
    .gPopupBox{
        padding: 2.8rem 2rem;
    }

    .gPopupBox h2{
        font-size: 2.2rem;
    }

    .gPopupPrice h3{
        font-size: 2.3rem;
    }
}
