/* ===========================
   DESTINATION HERO
=========================== */

.destination-hero{

    position:relative;

    height:80vh;

    background:url("images/destination-banner.jpg") center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

.destination-hero .overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    color:#fff;

    max-width:800px;

    padding:20px;

}

.hero-content h1{

    font-size:60px;

    margin-bottom:20px;

}

.hero-content p{

    font-size:20px;

    line-height:1.8;

    margin-bottom:30px;

}

.hero-content .btn{

    display:inline-block;

    padding:15px 35px;

    background:#ff9800;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.hero-content .btn:hover{

    background:#e68900;

}

/* ==========================
   DESTINATIONS
========================== */

.destinations{
    padding:80px 8%;
    background:#f8fafc;
}

.destinations h5{
    color:#ff9800;
    text-align:center;
    letter-spacing:2px;
    margin-bottom:10px;
}

.destinations h2{
    text-align:center;
    font-size:40px;
    margin-bottom:50px;
}

.destination-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(270px,1fr));
    gap:30px;
}

.destination-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    transition:.4s;
}

.destination-card:hover{
    transform:translateY(-10px);
}

.destination-card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.destination-content{
    padding:25px;
}

.destination-content h3{
    margin-bottom:15px;
}

.destination-content p{
    color:#666;
    line-height:1.6;
}

.destination-content span{
    display:block;
    margin:20px 0;
    font-weight:bold;
    color:#ff9800;
}

.destination-content .btn{
    display:inline-block;
    background:#0b5ed7;
    color:#fff;
    padding:10px 25px;
    border-radius:8px;
    text-decoration:none;
}

/*==============================
WHY VISIT
===============================*/

.why-visit{

padding:100px 8%;

background:#ffffff;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h5{

color:#ff9800;

letter-spacing:2px;

margin-bottom:15px;

}

.section-title h2{

font-size:42px;

color:#0a2342;

margin-bottom:20px;

}

.section-title p{

max-width:750px;

margin:auto;

line-height:1.8;

color:#666;

}

.visit-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.visit-box{

background:#fff;

padding:35px;

border-radius:18px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

}

.visit-box:hover{

transform:translateY(-12px);

}

.visit-icon{

font-size:55px;

margin-bottom:20px;

}

.visit-box h3{

margin-bottom:15px;

color:#0a2342;

}

.visit-box p{

color:#666;

line-height:1.8;

}

/*==============================
DESTINATION GALLERY
===============================*/

.destination-gallery{

    padding:100px 8%;

    background:#f8f9fc;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

/*==============================
TRAVELLER REVIEWS
===============================*/

.traveller-reviews{

padding:100px 8%;

background:#ffffff;

}

.review-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.review-card{

background:#fff;

padding:35px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.4s;

}

.review-card:hover{

transform:translateY(-10px);

}

.review-card img{

width:90px;

height:90px;

border-radius:50%;

object-fit:cover;

margin-bottom:20px;

}

.review-card h3{

margin-bottom:10px;

color:#0a2342;

}

.stars{

font-size:22px;

margin-bottom:15px;

}

.review-card p{

color:#666;

line-height:1.8;

}

/*==============================
FILM SHOOTING
===============================*/

.film-services{

padding:100px 8%;

background:#f8f9fc;

}

.film-content{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.film-text h5{

color:#ff9800;

letter-spacing:2px;

margin-bottom:15px;

}

.film-text h2{

font-size:42px;

color:#0a2342;

margin-bottom:25px;

}

.film-text p{

line-height:1.9;

color:#666;

margin-bottom:25px;

}

.film-text ul{

list-style:none;

padding:0;

margin-bottom:35px;

}

.film-text li{

margin-bottom:15px;

font-size:17px;

}

.film-image img{

width:100%;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/*==============================
DESTINATION CTA
===============================*/

.destination-cta{

    padding:100px 8%;

    background:linear-gradient(135deg,#0a2342,#114b8b);

    text-align:center;

    color:#fff;

}

.destination-cta h2{

    font-size:45px;

    margin-bottom:20px;

}

.destination-cta p{

    max-width:700px;

    margin:0 auto 40px;

    line-height:1.8;

    font-size:18px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    padding:15px 35px;

    background:#ff9800;

    color:#fff;

    text-decoration:none;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.cta-buttons .btn:hover{

    background:#e68900;

}

.btn-outline{

    background:transparent !important;

    border:2px solid #fff;

}

.btn-outline:hover{

    background:#fff !important;

    color:#0a2342 !important;

}

/*==============================
FOOTER
===============================*/

.footer{

    background:#081b33;
    color:#fff;
    padding:70px 8% 25px;

}

.footer-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;

}

.footer-logo{

    width:170px;
    margin-bottom:20px;

}

.footer-box h3{

    color:#ff9800;
    margin-bottom:20px;

}

.footer-box p{

    color:#d9d9d9;
    line-height:1.8;

}

.footer-box ul{

    list-style:none;
    padding:0;

}

.footer-box ul li{

    margin-bottom:12px;

}

.footer-box ul li a{

    color:#d9d9d9;
    text-decoration:none;
    transition:.3s;

}

.footer-box ul li a:hover{

    color:#ff9800;
    padding-left:5px;

}

.footer hr{

    border:none;
    height:1px;
    background:rgba(255,255,255,.15);
    margin:45px 0 20px;

}

.footer-bottom{

    text-align:center;
    color:#bfbfbf;

}

@media(max-width:992px){

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;
text-align:center;

}

.footer-logo{

margin:auto;
display:block;
margin-bottom:20px;

}

}

.gallery-item{

    position:relative;

    overflow:hidden;

}

.gallery-item img{

    transition:.6s ease;

}

.gallery-item:hover img{

    transform:scale(1.1);

}

.btn{

transition:.4s;

}

.btn:hover{

transform:translateY(-5px);

box-shadow:0 10px 25px rgba(0,0,0,.25);

}

.destination-card{

transition:.4s;

}

.destination-card:hover{

transform:translateY(-10px);

}

nav ul li a{

    transition:.3s;

}

nav ul li a:hover{

    color:#ffb400;

}

.logo img{

    transition:.4s;

}

.logo img:hover{

    transform:scale(1.08);

}

/*==============================
BACK TO TOP
===============================*/

#backToTop{

position:fixed;

bottom:30px;

right:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#ff9800;

color:#fff;

font-size:24px;

cursor:pointer;

display:none;

box-shadow:0 10px 25px rgba(0,0,0,.25);

transition:.4s;

z-index:999;

}

#backToTop:hover{

background:#0a2342;

transform:translateY(-5px);

}

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* Google Modern Font Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

.destination-content {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    padding: 16px !important;
}

.destination-content span:first-of-type {
    font-size: 11px !important;
    font-weight: 800 !important;
    color: #e67e00 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    margin-bottom: 4px !important;
    display: block;
}

.destination-content h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1d20 !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -0.3px !important;
}

.destination-content p {
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #4a5568 !important;
    line-height: 1.5 !important;
    margin: 0 0 14px 0 !important;
}

.destination-content span {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #d97706 !important;
    display: block;
    margin-bottom: 14px !important;
}

.destinations-section, 
section {
    padding-top: 20px !important;
    padding-bottom: 30px !important;
}

/* Heading Spacing Fix */
.destinations-section h5, 
.sub-heading {
    margin-top: 0 !important;
    margin-bottom: 5px !important;
}

.destinations-section h2, 
.main-heading {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}

.destination-grid, 
.cards-container {
    margin-top: 15px !important;
}

.why-choose-card img,
.feature-card img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    margin-bottom: 15px !important;
}

.why-choose-section p {
    color: #4a5568 !important;
    font-weight: 500 !important;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn{

    position:fixed;

    bottom:25px;

    right:25px;

    width:65px;

    height:65px;

    background:#25D366;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.3s;

}

.whatsapp-btn img{

    width:35px;

    height:35px;

}

.whatsapp-btn:hover{

    transform:scale(1.1);

}

#backToTop{

    position:fixed;

    bottom:25px;

    left:25px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#ffb703;

    color:#fff;

    font-size:24px;

    cursor:pointer;

    display:none;

    z-index:9999;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}

#backToTop:hover{

    background:#ffb703;

    color:#000;

    transform:translateY(-5px);

}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px; /* Side-by-side spacing */
    row-gap: 15px;    /* Top-bottom spacing kam ho jayega */
}


@media screen and (max-width: 768px) {

    footer, 
    section[style*="width: 100vw"] {
        width: 100% !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    footer > div, 
    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
        padding: 30px 15px !important;
    }

    footer > div > div, 
    .footer-column {
        width: 100% !important;
        max-width: 100% !important;
    }

    .navbar {
        flex-direction: column !important;
        padding: 10px !important;
    }

    .navbar ul, 
    .nav-links {
        padding: 0 !important;
        margin: 10px 0 !important;
        gap: 8px !important;
    }

    .social-links {
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }

    .social-links a {
        width: 90% !important;
    }

    section form {
        flex-direction: column !important;
        width: 90% !important;
    }

    section form input, 
    section form button {
        width: 100% !important;
    }
}