*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f5f5f5;
}

.hero{
position:relative;
min-height:100vh;
background:url("images/kerala-hero.jpg") center center/cover;
display:flex;
align-items:center;
padding:60px 20px;
}

.overlay{
position:absolute;
inset:0;
background:rgba(255,255,255,.25);
backdrop-filter:blur(2px);
}

.container{
max-width:1300px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
gap:40px;
position:relative;
z-index:2;
}

.hero-content{
width:60%;
}

.logo{
width:140px;
margin-bottom:20px;
}

.sub-heading{
font-size:65px;
font-family:cursive;
color:#178e34;
}

.hero-content h1{
font-size:90px;
font-weight:800;
line-height:1;
color:#0a4f2f;
}

.tagline{
display:inline-block;
background:#0a4f2f;
color:#fff;
padding:10px 20px;
margin:15px 0;
font-weight:600;
}

.hero-content p{
font-size:18px;
line-height:1.8;
margin-bottom:30px;
color:#222;
}

.features{
display:flex;
flex-wrap:wrap;
gap:25px;
margin-bottom:35px;
}

.feature{
display:flex;
flex-direction:column;
align-items:center;
gap:10px;
width:100px;
text-align:center;
}

.feature i{
font-size:28px;
color:#178e34;
}

.feature span{
font-size:14px;
}

.price-section{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:25px;
}

.price-section h3{
font-size:50px;
color:#178e34;
}

.buttons{
display:flex;
gap:15px;
}

.btn{
padding:15px 25px;
text-decoration:none;
border-radius:8px;
font-weight:600;
}

.green-btn{
background:#074212;
color:white;
}

.whatsapp-btn{
background:#ff8c00;
color:white;
}

.hero-form{
width:380px;
}

.rating-box{
background:white;
padding:12px;
border-radius:10px;
margin-bottom:15px;
display:flex;
justify-content:center;
gap:8px;
align-items:center;
}

.rating-box i{
color:#0fb14d;
}

.form-box{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.form-box h2{
text-align:center;
margin-bottom:20px;
}

.form-box h2 span{
display:block;
color:#178e34;
}

.form-box form{
display:flex;
flex-direction:column;
gap:12px;
}

.form-box input,
.form-box select,
.form-box textarea{
padding:14px;
border:1px solid #ddd;
border-radius:8px;
outline:none;
}

.form-box button{
background:#074212;
color:white;
border:none;
padding:16px;
border-radius:8px;
font-size:16px;
font-weight:600;
cursor:pointer;
}

.stats{
max-width:1300px;
margin:-50px auto 60px;
background:white;
border-radius:20px;
display:grid;
grid-template-columns:repeat(4,1fr);
padding:35px;
box-shadow:0 10px 30px rgba(0,0,0,.1);
position:relative;
z-index:5;
}

.stat-box{
text-align:center;
}

.stat-box h3{
color:#178e34;
font-size:35px;
}

@media(max-width:991px){

.container{
flex-direction:column;
}

.hero-content{
width:100%;
text-align:center;
}

.hero-form{
width:100%;
max-width:500px;
}

.hero-content h1{
font-size:60px;
}

.sub-heading{
font-size:45px;
}

.stats{
grid-template-columns:repeat(2,1fr);
gap:20px;
}
}

@media(max-width:576px){

.hero-content h1{
font-size:45px;
}

.sub-heading{
font-size:35px;
}

.features{
justify-content:center;
}

.buttons{
flex-direction:column;
width:100%;
}

.stats{
grid-template-columns:1fr;
}
}
.hero{
    background-image:url("https://images.unsplash.com/photo-1602216056096-3b40cc0c9944?q=80&w=1920");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.hero::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:75%;
    height:100%;
    z-index:1;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.85) 25%,
        rgba(255,255,255,0.55) 50%,
        rgba(255,255,255,0.15) 75%,
        rgba(255,255,255,0) 100%
    );
}
/* WHY KERALA */

.why-kerala{
    max-width:1300px;
    margin:70px auto;
    padding:0 20px;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading h2{
    font-size:38px;
    font-weight:700;
    color:#16324f;
}

.section-heading p{
    color:#666;
    margin-top:10px;
}

.kerala-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.kerala-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    text-align:center;
    position:relative;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
    padding-bottom:20px;
}

.kerala-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.kerala-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    transition:.6s;
}

.kerala-card:hover img{
    transform:scale(1.08);
}

.icon-circle{
    width:58px;
    height:58px;
    background:#169b45;
    border-radius:50%;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    margin:-30px auto 15px;
    position:relative;
    border:4px solid #fff;
}

.orange{
    background:#ff8c00;
}

.kerala-card h3{
    font-size:18px;
    margin-bottom:10px;
    color:#16324f;
}

.kerala-card p{
    font-size:14px;
    color:#666;
    line-height:1.6;
    padding:0 15px;
}
@media(max-width:1200px){

.kerala-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.kerala-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-heading h2{
    font-size:30px;
}

}

@media(max-width:576px){

.kerala-grid{
    grid-template-columns:1fr;
}

.kerala-card img{
    height:220px;
}

}
.tour-packages{
    max-width:1300px;
    margin:80px auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:38px;
    font-weight:700;
    color:#16324f;
}

.tour-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.tour-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.tour-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.tour-image{
    overflow:hidden;
}

.tour-image img{
    width:100%;
    height:190px;
    object-fit:cover;
    transition:.6s;
}

.tour-card:hover .tour-image img{
    transform:scale(1.1);
}

.tour-content{
    padding:18px;
}

.tour-content h3{
    font-size:22px;
    margin-bottom:10px;
    color:#16324f;
}

.tour-content p{
    color:#666;
    font-size:14px;
    margin-bottom:15px;
}

.tour-info{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    font-size:13px;
    color:#666;
    margin-bottom:15px;
}

.tour-info i{
    color:#178e34;
}

.price{
    font-size:16px;
    margin-bottom:20px;
}

.price span{
    color:#178e34;
    font-size:18px;
    font-weight:700;
}

.tour-btn{
    display:block;
    text-align:center;
    background:#178e34;
    color:#fff;
    text-decoration:none;
    padding:14px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.tour-btn:hover{
    background:#0f7c29;
}
@media(max-width:1200px){

.tour-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.tour-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:30px;
}

}

@media(max-width:576px){

.tour-grid{
    grid-template-columns:1fr;
}

.tour-image img{
    height:220px;
}

.section-title h2{
    font-size:26px;
}

}
.included-extension-section{
    width:min(1280px,92%);
    margin:80px auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.included-card,
.extension-card{
    background:#fdfbf7;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #ececec;
}

.included-card h2,
.extension-card h2{
    padding:25px 25px 10px;
    color:#1c3c2f;
    font-size:28px;
    font-weight:800;
}

.extension-card h2{
    color:#ff8c00;
}

.included-content,
.extension-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
}

.included-list,
.extension-list{
    padding:20px 25px 30px;
}

.item,
.tour-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:8px;
    font-size:16px;
    color:#444;
}

.item i{
    color:#2ea44f;
}

.tour-item i{
    color:#ff8c00;
}

.included-image img,
.extension-image img{
    width:250px;
    height: 200px;;
    object-fit:cover;
    display:block;
}
.included-image,
.extension-image{
    position:relative;
    overflow:hidden;
}

/* Image */

.included-image img,
.extension-image img{
    width:300px;
    height:220px;
    object-fit:cover;
    display:block;
}

/* Left side blur/fade */

.included-image,
.extension-image{
    position:relative;
}

.included-image::before,
.extension-image::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;

    background:
        linear-gradient(to right, #fdfbf7 0%, transparent 12%),
        linear-gradient(to left, #fdfbf7 0%, transparent 12%),
        linear-gradient(to top, #fdfbf7 0%, transparent 12%),
        linear-gradient(to bottom, #fdfbf7 0%, transparent 12%);
}
/* Tablet */

@media(max-width:992px){

.testimonial-grid{
    grid-template-columns:1fr;
}

}

/* Mobile */

@media(max-width:576px){

.section-title h2{
    font-size:28px;
}

.testimonial-top{
    flex-direction:column;
    text-align:center;
    align-items:center;
}

.testimonial-card h4{
    padding-left:0;
    text-align:center;
}

}
/* ==========================
   FAQ + CONTACT
========================== */

.faq-contact-section{
    width:min(1280px,92%);
    margin:80px auto;
    display:grid;
    grid-template-columns:1fr 1.4fr;
    gap:30px;
}

.faq-box{
    background:#074212;
    border-radius:14px;
    overflow:hidden;
}

.faq-box h2{
    color:#fff;
    padding:25px;
    font-size:26px;
}

.faq-item{
    background:#fff;
    border-bottom:1px solid #eee;
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:18px 20px;
    text-align:left;
    display:flex;
    justify-content:space-between;
    cursor:pointer;
    font-weight:600;
}

.faq-answer{
    display:none;
    padding:0 20px 18px;
}

.faq-answer.active{
    display:block;
}

.faq-features{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    padding:20px;
    gap:10px;
}

.feature-item{
    color:#fff;
    text-align:center;
}

.feature-item i{
    display:block;
    font-size:22px;
    margin-bottom:10px;
}

/* Contact */

.contact-box{
    background:#fdfbf7;
    border-radius:14px;
    padding:35px;
    border:1px solid #ececec;
}

.contact-box h2{
    text-align:center;
    color:#0d223f;
    margin-bottom:10px;
}

.contact-box p{
    text-align:center;
    color:#666;
    margin-bottom:25px;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:6px;
    margin-bottom:15px;
}

.contact-form textarea{
    height:52px;
    resize:none;
}

.contact-form button{
    width:100%;
    background:#ff8c00;
    color:#fff;
    border:none;
    padding:16px;
    font-weight:700;
    cursor:pointer;
    border-radius:6px;
}

.contact-box small{
    display:block;
    text-align:center;
    margin-top:15px;
    color:#777;
}
/* ==========================
   FOOTER
========================== */

.footer{
    background:#074212;
    color:#fff;
}

.footer-container{
    width:min(1280px,92%);
    margin:auto;
    padding:60px 0;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-about img{
    width:120px;
    margin-bottom:20px;
}

.footer-about p{
    color:#cfd6df;
    line-height:1.8;
}

.footer h3{
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:#cfd6df;
    text-decoration:none;
    margin-bottom:10px;
}

.footer-contact p{
    margin-bottom:12px;
    color:#cfd6df;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    padding:20px;
    color:#cfd6df;
}
@media(max-width:992px){

.footer-container,
.faq-contact-section{
    grid-template-columns:1fr;
}

.faq-features{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:576px){

.form-grid{
    grid-template-columns:1fr;
}

.faq-features{
    grid-template-columns:repeat(2,1fr);
}

.footer-container{
    text-align:center;
}

}
/* ==========================
   TESTIMONIAL SECTION
========================== */

.testimonials-section{
    width:min(1280px,92%);
    margin:80px auto;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    font-size:42px;
    color:#0d223f;
    font-weight:800;
    margin-bottom:12px;
}

.title-divider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}

.title-divider span{
    width:80px;
    height:2px;
    background:#ddd;
}

.title-divider i{
    color:#9e9e9e;
    font-size:12px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    padding:25px;
    transition:.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.testimonial-top{
    display:flex;
    gap:18px;
    align-items:flex-start;
}

.testimonial-card img{
    width:75px;
    height:75px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.stars{
    color:#f5b301;
    font-size:18px;
    margin-bottom:10px;
}

.testimonial-content p{
    font-size:15px;
    line-height:1.7;
    color:#444;
}

.testimonial-card h4{
    margin-top:18px;
    color:#222;
    font-size:15px;
    font-weight:600;
    padding-left:95px;
}
/* Tablet */

@media(max-width:992px){

.testimonial-grid{
    grid-template-columns:1fr;
}

}

/* Mobile */

@media(max-width:576px){

.section-title h2{
    font-size:28px;
}

.testimonial-top{
    flex-direction:column;
    text-align:center;
    align-items:center;
}

.testimonial-card h4{
    padding-left:0;
    text-align:center;
}

}/* ==========================
   RESPONSIVE
========================== */

/* Laptop */

@media (max-width:1200px){

.hero-content h1{
    font-size:48px;
}

.hero-content h3{
    font-size:36px;
}

.hero-content h4{
    font-size:42px;
}

.form-box{
    width:380px;
}

}

/* Tablet */

@media (max-width:992px){

.hero{
    padding:60px 0;
}

.container{
    flex-direction:column;
    align-items:center;
}

.hero-content{
    width:100%;
    text-align:center;
}

.hero-content p{
    max-width:100%;
}

.features{
    justify-content:center;
}

.cta-row{
    justify-content:center;
}

.form-box{
    width:100%;
    max-width:600px;
}

.hero-content h1{
    font-size:60px;
}

.hero-content h3{
    font-size:40px;
}

.hero-content h4{
    font-size:28px;
}

}

/* Mobile */

@media (max-width:768px){

.hero{
    min-height:auto;
    padding:50px 0;
}

.logo{
    width:100px;
}

.hero-content h3{
    font-size:34px;
}

.hero-content h1{
    font-size:48px;
    line-height:1;
}

.hero-content h4{
    font-size:24px;
}

.hero-content p{
    font-size:18px;
    line-height:1.6;
}

.features{
    gap:20px;
}

.feature{
    width:120px;
}

.feature i{
    font-size:24px;
}

.price-box{
    width:100%;
    text-align:center;
}

.btn{
    width:100%;
    text-align:center;
}

.form-box{
    padding:25px;
}

}

/* Small Mobile */

@media (max-width:576px){

.container{
    padding:0 15px;
}

.logo{
    width:90px;
}

.hero-content h3{
    font-size:28px;
}

.hero-content h1{
    font-size:38px;
}

.hero-content h4{
    font-size:20px;
}

.hero-content p{
    font-size:16px;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature{
    width:100%;
}

.feature span{
    font-size:14px;
}

.price-box h2{
    font-size:30px;
}

.btn{
    padding:15px;
    font-size:14px;
}

.form-box{
    padding:20px;
}

.form-box input,
.form-box select,
.form-box textarea{
    padding:12px;
}

.form-box button{
    padding:14px;
}

}

/* Extra Small Mobile */

@media (max-width:400px){

.hero-content h1{
    font-size:32px;
}

.hero-content h3{
    font-size:24px;
}

.hero-content h4{
    font-size:18px;
}

.features{
    grid-template-columns:1fr 1fr;
}

}
#holidayForm input:invalid,
#holidayForm select:invalid {
    border: 1px solid #ff4d4d;
}

#holidayForm input:valid,
#holidayForm select:valid {
    border: 1px solid #28a745;
}
.tour-item{
    display:flex;
    align-items:center;
    /* gap:10px; */
    text-decoration:none;
    color:inherit;
    /* padding:10px 0; */
}

.tour-item:hover{
    color:#c89b3c;
}
/* =========================
   EXPERIENCE STATS
========================= */

.experience-stats{
    max-width:1200px;
    margin:-50px auto 70px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    display:grid;
    grid-template-columns:repeat(4,1fr);
    overflow:hidden;
    position:relative;
    z-index:10;
}

.stat-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:28px;
    border-right:1px solid #eee;
}

.stat-item:last-child{
    border-right:none;
}

.stat-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#e8f7ec;
    color:#198754;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.stat-icon.orange{
    background:#fff3e8;
    color:#ff8c00;
}

.stat-content h3{
    font-size:22px;
    font-weight:700;
    color:#198754;
    margin-bottom:3px;
}

.stat-content h4{
    font-size:15px;
    font-weight:700;
    color:#222;
    margin-bottom:4px;
}

.stat-content p{
    font-size:13px;
    color:#666;
    line-height:1.4;
}

/* Tablet */

@media(max-width:991px){

    .experience-stats{
        grid-template-columns:repeat(2,1fr);
        margin-top:40px;
    }

    .stat-item:nth-child(2){
        border-right:none;
    }

    .stat-item{
        border-bottom:1px solid #eee;
    }

    .stat-item:nth-last-child(-n+2){
        border-bottom:none;
    }
}

/* Mobile */

@media(max-width:576px){

    .experience-stats{
        grid-template-columns:1fr;
    }

    .stat-item{
        border-right:none;
        border-bottom:1px solid #eee;
        padding:20px;
    }

    .stat-item:last-child{
        border-bottom:none;
    }

    .stat-content h3{
        font-size:26px;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 38px;
    height: 38px;
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }
}
