* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
html{
    scroll-behavior:smooth;
}
body {
    background: #fff;
    color: #222;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 50;
}

.logo-img {
    height: 85px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}

.proposal-btn {
    padding: 10px 18px;
    background: #0a8a38;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

/* HERO */
.hero{
    width:100%;
    overflow:hidden;
}

.hero img{
    width:100%;
    height:auto;
    display:block;
}

/* LAND CARDS */
.lands-section {
    padding: 80px 5%;
}

.lands-section h2 {
    font-size: 32px;
    text-align: center;
}

.subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.land-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.land-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 25px rgba(0,0,0,0.1);
    padding-bottom:20px;
    position:relative;
    transition:.35s;
    cursor:pointer;
}

.land-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,.15);
}

.land-card img{
    width:100%;
    height:190px;
    object-fit:cover;
    transition:transform .7s ease;
}

.land-card:hover img{
    transform:scale(1.08);
}

.roi-tag {
    position: absolute;
    background: #0a8a38;
    color: #fff;
    padding: 8px 12px;
    top: 15px;
    left: 15px;
    border-radius: 6px;
    font-size: 14px;
}

.land-card h3 {
    margin: 15px;
    font-size: 20px;
}

.land-card p {
    margin: 0 15px 10px;
    color: #555;
    font-size: 16px;
}

.land-card ul {
    margin: 0 15px 15px;
    padding-left: 18px;
    color: #444;
}

/* WHY SECTION */
.why-section {
    padding: 80px 5%;
    background: #f9f9f9;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 25px;
}

.why-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

/* SOLUTIONS */
.solutions {
    padding: 80px 5%;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
}

.sol-card {
    background: #0a8a38;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
}

/* CONTACT */
.contact-section {
    padding: 80px 5%;
    background: #f9f9f9;
}

.contact-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:40px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    padding:12px;
    border:1px solid #ccc;
    border-radius:6px;
}

.contact-form textarea{
    grid-column:span 2;
    min-height:150px;
}

.contact-form button{
    grid-column:span 2;
    padding:12px;
    background:#0a8a38;
    color:white;
    border:none;
    border-radius:6px;
    cursor:pointer;
}
@media(max-width:768px){

    .contact-form{
        grid-template-columns:1fr;
    }

    .contact-form textarea,
    .contact-form button{
        grid-column:span 1;
    }

}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px;
    background: #0a8a38;
    color: white;
}

/* PAYMENT */

.pay-box{
    background:linear-gradient(
        135deg,
        #ffffff,
        #f7fff9
    );
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    width:100%;
    max-width:900px;
    margin:auto;
    border:1px solid rgba(10,138,56,.15);
}

.pay-box h3{
    margin-bottom:25px;
    color:#0a8a38;
    font-size:28px;
}

.account-card{
    background:#fff;
    padding:18px;
    margin-bottom:15px;
    border-left:5px solid #0a8a38;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.account-card span{
    display:block;
    color:#888;
    font-size:13px;
    margin-bottom:5px;
}

.account-card h4{
    color:#0a8a38;
    font-size:20px;
}

/* ABOUT */

.about-section{
    padding:80px 5%;
}

.about-section h2{
    margin-bottom:20px;
}

.about-section p{
    margin-bottom:15px;
    line-height:1.8;
}

/* REASONS */

.reasons-section{
    padding:80px 5%;
    background:#f9f9f9;
}

.reason-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:30px;
}

.reason-card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 6px 20px rgba(0,0,0,.07);
}

/* FAQ */

.faq-section{
    padding:80px 5%;
}

.faq-card{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faq-card p{
    margin-bottom:15px;
}

/* GALLERY */

.gallery-section{
    padding:80px 5%;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:35px;
}

.gallery-box{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.gallery-box img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.gallery-box h4{
    padding:15px;
}
/* =========================
   ACCOUNT COPY BUTTONS
========================= */

.account-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.account-row h4{
    margin:0;
}

.account-row button{
    min-width:90px;
    background:#0a8a38;
    color:#fff;
    border:none;
    padding:10px 16px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.account-row button:hover{
    background:#07692b;
    transform:translateY(-2px);
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    z-index:999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.12);
}

/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:32px;
    cursor:pointer;
    color:#0a8a38;
}

/* DESKTOP */

@media(min-width:769px){

    .menu-toggle{
        display:none;
    }

    #mobileMenu{
        display:flex !important;
        position:static;
        flex-direction:row;
        align-items:center;
        width:auto;
        padding:0;
        box-shadow:none;
        background:none;
    }

}

/* TABLET */

@media(max-width:992px){

    .lands-section,
    .why-section,
    .solutions,
    .contact-section,
    .faq-section,
    .about-section,
    .gallery-section,
    .reasons-section{
        padding:60px 20px;
    }

    .contact-form{
        grid-template-columns:1fr;
    }

    .contact-form button{
        grid-column:span 1;
    }

    .pay-box{
        max-width:100%;
    }

    .gallery-grid{
        grid-template-columns:1fr 1fr;
    }

    .logo-img{
        height:70px;
    }

}

/* MOBILE */

@media(max-width:768px){

    .header{
        flex-direction:row;
        justify-content:space-between;
        align-items:center;
        padding:15px 20px;
        position:relative;
    }

    .logo-img{
        height:55px;
    }

    .menu-toggle{
        display:block;
    }

    #mobileMenu{
        position:absolute;
        top:85px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:25px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
        display:none;
        z-index:999;
    }

    #mobileMenu.show{
        display:flex;
    }

    #mobileMenu a{
        width:100%;
        text-align:center;
        margin:0;
    }

    .proposal-btn{
        width:100%;
        max-width:250px;
        text-align:center;
    }

    .hero img{
        width:100%;
        height:auto;
        display:block;
    }

    .land-grid,
    .why-grid,
    .solution-grid,
    .reason-grid,
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .lands-section,
    .why-section,
    .solutions,
    .contact-section,
    .faq-section,
    .about-section,
    .gallery-section,
    .reasons-section{
        padding:60px 20px;
    }

    .account-row{
    flex-direction:column;
    align-items:flex-start;
}

    h2{
        font-size:28px !important;
    }

    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:24px;
        right:15px;
        bottom:15px;
    }
}

/* SMALL PHONES */

@media(max-width:480px){

    .logo-img{
        height:50px;
    }

    h2{
        font-size:24px !important;
    }

    .account-card h4{
        font-size:15px;
        word-break:break-word;
    }

    .footer{
        font-size:14px;
    }
}
@media (min-width:769px){

    .menu-toggle{
        display:none !important;
    }

    .header{
        justify-content:space-between;
    }

}