


/* ==================================================
WHY NATURE CLUB
================================================== */

.why-nature-club{
    padding:100px 0;
    background:#ffffff;
}

.section-heading{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.section-heading h2{
    color:#163c2d;
    margin-top:15px;
}

.why-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.why-content p{
    margin-bottom:25px;
    line-height:1.9;
    color:#555;
    font-size:17px;
}
/* ==========================================
WHY FEATURES
========================================== */

.why-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.feature-box{
    background:#fff;
    padding:35px 30px;
    border-radius:20px;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.06);
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:all .4s ease;
}

.feature-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:linear-gradient(
        180deg,
        #c8a35d 0%,
        #e2c48b 100%
    );
}

.feature-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.feature-box i{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f8f4ec;
    color:#c8a35d;
    font-size:28px;
    border-radius:50%;
    margin-bottom:20px;
}

.feature-box h3{
    font-size:24px;
    color:#163c2d;
    margin-bottom:12px;
    line-height:1.3;
}

.feature-box p{
    color:#666;
    line-height:1.8;
    margin:0;
    font-size:15px;
}

/* ==========================================
TABLET
========================================== */

@media(max-width:992px){

    .why-features{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

    .why-features{
        grid-template-columns:1fr;
        gap:18px;
    }

    .feature-box{
        padding:25px;
    }

    .feature-box h3{
        font-size:20px;
    }

}
/* ==================================================
RESPONSIVE
================================================== */

@media(max-width:992px){

    .why-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .why-nature-club{
        padding:70px 0;
    }

  

    .section-heading{
        margin-bottom:40px;
    }

    .why-content p{
        font-size:15px;
    }

}



/* ==================================================
FARMHOUSE ALTERNATIVE
================================================== */

.farmhouse-alternative{
    padding:100px 0;
    background:#f8f8f8;
}

.farmhouse-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:60px;
    align-items:center;
}

.farmhouse-content p{
    margin-bottom:25px;
    line-height:1.9;
    color:#555;
}

.comparison-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.comparison-header{
    display:grid;
    grid-template-columns:1fr 1fr;
    background:#163c2d;
    color:#fff;
    font-weight:600;
}

.comparison-header div{
    padding:20px;
    text-align:center;
}

.comparison-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    border-bottom:1px solid #eee;
}

.comparison-row:last-child{
    border-bottom:none;
}

.comparison-row span{
    padding:18px 20px;
    text-align:center;
}

.comparison-row span:last-child{
    color:#1d7c4f;
    font-weight:600;
}

.comparison-row i{
    margin-right:8px;
}

/* ======================================
RESPONSIVE
====================================== */

@media(max-width:992px){

    .farmhouse-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .farmhouse-alternative{
        padding:70px 0;
    }

    .comparison-header div,
    .comparison-row span{
        padding:15px 10px;
        font-size:14px;
    }

}




/* ==================================================
SAHYADRI SECTION
================================================== */

.sahyadri-section{
    padding:100px 0;
    background:#f9f9f9;
}

.sahyadri-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.sahyadri-image{
    overflow:hidden;
    border-radius:25px;
}

.sahyadri-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:25px;
    transition:.5s;
}

.sahyadri-image:hover img{
    transform:scale(1.05);
}

.sahyadri-content h2{
    margin:15px 0 25px;
    line-height:1.2;
}

.sahyadri-content p{
    margin-bottom:20px;
    line-height:1.9;
    color:#555;
}

.nature-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}

.highlight-item{
    background:#fff;
    padding:18px 20px;
    border-radius:15px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.highlight-item i{
    color:#c8a35d;
    font-size:22px;
}

.highlight-item span{
    font-weight:500;
    color:#163c2d;
}

/* =====================================
RESPONSIVE
===================================== */

@media(max-width:992px){

    .sahyadri-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .sahyadri-image img{
        height:450px;
    }

}

@media(max-width:768px){

    .sahyadri-section{
        padding:70px 0;
    }

    .sahyadri-image img{
        height:300px;
    }

    .nature-highlights{
        grid-template-columns:1fr;
    }

}



/* ==================================================
WHY CHOOSE MANTRA
================================================== */

.choose-mantra{
    padding:100px 0;
    background:#ffffff;
}

.section-heading.center{
    text-align:center;
    max-width:850px;
    margin:auto auto 60px;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.choose-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    border:1px solid #eee;
}

.choose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.choose-card i{
    font-size:42px;
    color:#c8a35d;
    margin-bottom:20px;
}

.choose-card h3{
    margin-bottom:15px;
    color:#163c2d;
    font-size:24px;
}

.choose-card p{
    color:#666;
    line-height:1.8;
}

/* ======================================
TABLET
====================================== */

@media(max-width:992px){

    .choose-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ======================================
MOBILE
====================================== */

@media(max-width:768px){

    .choose-mantra{
        padding:70px 0;
    }

    .choose-grid{
        grid-template-columns:1fr;
    }

    .choose-card{
        padding:25px;
    }

}




/* ==================================================
FACILITIES & EXPERIENCES
================================================== */

.facilities-experience{
    padding:100px 0;
    background:#f8f9f7;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.facility-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.facility-card:hover{
    transform:translateY(-10px);
}

.facility-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.facility-content{
    padding:25px;
}

.facility-content h3{
    margin-bottom:15px;
    color:#163c2d;
    font-size:24px;
}

.facility-content p{
    color:#666;
    line-height:1.8;
}

/* ======================
TABLET
====================== */

@media(max-width:992px){

    .facility-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* ======================
MOBILE
====================== */

@media(max-width:768px){

    .facilities-experience{
        padding:70px 0;
    }

    .facility-grid{
        grid-template-columns:1fr;
    }

    .facility-card img{
        height:220px;
    }

}




/* ==================================================
FAQ SECTION
================================================== */

.seo-faq{
    padding:100px 0;
    background:#f8f9f7;
}

.faq-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.faq-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.faq-card:hover{
    transform:translateY(-5px);
}

.faq-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:22px;
    line-height:1.4;
}

.faq-card p{
    color:#666;
    line-height:1.8;
}

/* Tablet */

@media(max-width:992px){

    .faq-grid{
        grid-template-columns:1fr;
    }

}

/* Mobile */

@media(max-width:768px){

    .seo-faq{
        padding:70px 0;
    }

    .faq-card{
        padding:25px;
    }

    .faq-card h3{
        font-size:20px;
    }

}