/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Body */
body{
    font-family:Arial, sans-serif;
    background:#f5f5f5;
    padding-top:100px;
}

.container{
    width:90%;
    max-width:1400px;
    margin:0 auto;
}

.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Header */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* Logo */
.logo img{
    height:90px;
}

/* Navigation */
.menu ul{
    list-style:none;
    display:flex;
    gap:35px;
}

.menu ul li{
    margin:0;
}

.menu ul li a{
    text-decoration:none;
    color:#333;
    font-weight:bold;
    transition:.3s;
}

.menu ul li a:hover{
    color:#0b5ed7;
}
/* =========================
   Hero Section
========================= */

.hero{
    height:600px;
    background:linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.45)),
               url("../images/hero.png");

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:white;
}

.hero-content{
    width:700px;
}

.hero h1{
    font-size:55px;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
    color:white;
}

.btn{
    display:inline-block;
    background:#0b5ed7;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:6px;
    font-size:18px;
    transition:.3s;
}

.btn:hover{
    background:#084298;
}
/* =========================
   Featured Destinations
========================= */

.destinations{
    padding:90px 0;
    background:#f8f9fb;
}

.destinations h2{
    text-align:center;
    font-size:46px;
    color:#222;
    margin-bottom:15px;
}

.destination-subtitle{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:55px;
}

.cards{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;    
   box-shadow:0 12px 30px rgba(0,0,0,.12);
    width:32%;
   transition:.45s ease;
}

.card:hover{
    transform:translateY(-12px) scale(1.03);
    box-shadow:0 25px 50px rgba(0,0,0,.22);
}

.card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

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

.card h3{
    padding:20px 20px 10px;
    font-size:26px;
}

.card p{
    padding:0 20px 25px;
    color:#666;
    line-height:1.6;
}
/*==============================
      Journey Section
==============================*/

.journey{
    padding:80px 0;
    background:#fff;
}

.journey h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.journey-grid{
    display:flex;
    gap:40px;
}

.journey-card{
    flex:1;
    height:350px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    color:white;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
    background-size:cover;
    background-position:center;
}

.domestic{
    background-image:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url('../images/domestic.jpg');
}

.international{
    background-image:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url('../images/international.jpg');
}

.journey-card h3{
    font-size:34px;
    margin-bottom:15px;
}

.journey-card p{
    margin-bottom:25px;
    line-height:1.7;
}

.journey-card a{
    display:inline-block;
    background:#0b5ed7;
    color:#fff;
   padding:15px 38px;
font-size:18px;
font-weight:bold;
    border-radius:50px;
    text-decoration:none;
    width:fit-content;
}
/* ===================================
   Popular Packages
=================================== */

.packages{
    padding:80px 0;
    background:#f8f9fa;
}

.packages h2{
    text-align:center;
    font-size:42px;
    margin-bottom:15px;
}

.package-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:50px;
}

.package-grid{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.package-card{
    background:#fff;
    width:32%;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.4s;
}

.package-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.20);
}

.package-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.package-info{
    padding:25px;
}

.package-info h3{
    font-size:28px;
    margin-bottom:10px;
}

.package-info p{
    color:#666;
    margin-bottom:20px;
}

.price{
    display:block;
    font-size:28px;
    color:#0b5ed7;
    font-weight:bold;
    margin-bottom:20px;
}
/* ==========================
      WHY CHOOSE US
========================== */

.why-us{
    padding:90px 0;
    background:#f8f9fb;
}

.why-us h2{
    text-align:center;
    font-size:42px;
    color:#222;
    margin-bottom:15px;
}

.why-subtitle{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:60px;
}

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

.why-card{
    width:100%;
    padding:35px 25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.10);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.icon{
    font-size:55px;
    color:#0b5ed7;
    margin-bottom:25px;
    transition:.4s;
}

.why-card:hover .icon{
    transform:scale(1.2);
    color:#ff9800;
}

.why-card p{
    color:#666;
    line-height:1.7;
}
/* ==========================
      Header Right
========================== */

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.phone{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:16px;
    font-weight:600;
    color:#333;
}

.phone i{
    color:#0b5ed7;
}

.header-btn{
    background:#0b5ed7;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.header-btn:hover{
    background:#084298;
}
/* ===========================
   Testimonials
=========================== */

./* ===========================
   Testimonials
=========================== */

.testimonials{
    padding:100px 0;
    background:#ffffff;
}

.testimonials h2{
    text-align:center;
    font-size:44px;
    color:#222;
    margin-bottom:15px;
}

.testimonial-subtitle{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:60px;
}

.testimonial-grid{
    display:flex;
    justify-content:space-between;
    gap:30px;
}

.testimonial-card{

    background:#f8f9fb;
    width:32%;
    min-height:280px;

    padding:40px;
    border-radius:20px;

    border-top:5px solid #0b5ed7;

    box-shadow:0 12px 30px rgba(0,0,0,.10);

    transition:.45s ease;

}

.testimonial-card:hover{

    transform:translateY(-12px) scale(1.03);

    box-shadow:0 25px 50px rgba(0,0,0,.18);

}

.stars{

    font-size:30px;
    color:#FFC107;
    letter-spacing:3px;
    margin-bottom:25px;

}

.testimonial-card p{

    color:#555;
    line-height:1.9;
    font-size:17px;
    margin-bottom:30px;

}

.testimonial-card h4{
    color:#0b5ed7;
    font-size:22px;
    font-weight:700;
    margin-top:15px;
}
/* ===========================
   Call To Action
=========================== */

.cta{

    padding:88px 0;

    background:
    linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("../images/hero.png");

    background-size:cover;
    background-position:center;

    text-align:center;
    color:#fff;

}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
    color:#ffffff;
}

.cta p{

    width:70%;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    margin-bottom:45px;

}

.cta-buttons{
    margin-top:45px;
}

.btn-outline{

    background:transparent;
    border:2px solid #fff;

}

.btn-outline:hover{

    background:#fff;
    color:#0b5ed7;

}
.cta .btn:hover{
    transform:translateY(-3px);
}

.btn-outline{
    transition:.4s ease;
}

.btn-outline:hover{
    background:#ffffff;
    color:#0b5ed7;
    transform:translateY(-3px);
}
/* ==========================
        FOOTER
========================== */
.footer{
    background:#08111F;
    color:#fff;
    padding:90px 0 30px;
}

.footer-grid{
    display:flex;
    justify-content:space-between;
    gap:50px;
}

.footer-column{
    flex:1;
}
.footer-logo{
    width:130px;
    margin-bottom:25px;
}


.footer-column h3{
    margin-bottom:20px;
    font-size:24px;
}

.footer-column p{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-column ul{
    list-style:none;
    padding:0;
}

.footer-column ul li{
    margin-bottom:12px;
}

.footer-column ul li a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-column ul li a:hover{
    color:#ffffff;
    padding-left:5px;
}

.footer-contact p{
    margin-top:12px;
}

.footer-contact i{
    color:#3b82f6;
    margin-right:10px;
}

.social-icons{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.social-icons a{

    width:50px;
    height:50px;
    font-size:18px;
    background:#1e293b;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;

}

.social-icons a:hover{
    background:#0b5ed7;
    color:#fff;
    transform:translateY(-8px) scale(1.12);
    box-shadow:0 10px 25px rgba(11,94,215,.35);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:50px;
    padding-top:25px;
    text-align:center;
}

.footer-bottom p{
    color:#94a3b8;
    font-size:15px;
}
.footer-column a{
    transition:.3s;
}

.footer-column a:hover{
    color:#0b5ed7;
}
.footer a{
    color:#F8FAFC;
    text-decoration:none;
}

.footer a:hover{
    color:#FFD166;
}
/*==============================
     PACKAGES HERO
==============================*/

.packages-hero{

    height:500px;

    background:
linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.25)),
url("../images/packages-hero.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    color:#fff;

}

.packages-hero h1{

    font-size:60px;
    margin-bottom:20px;

}

.packages-hero p{

    font-size:22px;
    width:800px;
    margin:auto;
    margin-bottom:35px;
    line-height:1.6;

}

.hero-buttons{

    display:flex;
    justify-content:center;
    gap:20px;

}

.btn-outline{

    background:transparent;
    border:2px solid #fff;

}

.btn-outline:hover{

    background:#fff;
    color:#0b5ed7;

}

.tour-section{
    padding:90px 0;
    background:#f8f9fb;
}

.tour-section h2{
    text-align:center;
    font-size:44px;
    color:#222;
    margin-bottom:15px;
}

.section-subtitle{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:60px;
}

.tour-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(320px,1fr));
    gap:30px;
}
.tour-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.35s;
}

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

.tour-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.tour-info{
    padding:25px;
}

.tour-info h3{
    font-size:22px;
    font-weight:700;
}


.tour-location{
    color:#0b5ed7;
    font-weight:600;
    margin-bottom:12px;
}

.tour-info p{
    color:#666;
    margin-bottom:12px;
    line-height:1.6;
}

.tour-price{
    color:#0b5ed7;
    font-size:24px;
    font-weight:700;
}
.tour-card{
    display:flex;
    flex-direction:column;
   }

.tour-info{
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.tour-info .btn{
    margin-top:auto;
}
.tour-card{
    transition:0.4s ease;
}

.tour-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 45px rgba(0,0,0,.18);
}

.tour-card img{
    transition:.5s;
}

.tour-card:hover img{
    transform:scale(1.08);
}
/* ===========================
   HERO SLIDER
=========================== */

.hero-slider{
    margin-top:80px;
    position:relative;
    width:100%;
    height:calc(100vh - 80px);
}

.heroSwiper,
.heroSwiper .swiper-slide{
    width:100%;
    height:100vh;
}

.heroSwiper .swiper-slide{
    background-size:cover;
    background-position:center;
    position:relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    width:90%;
    max-width:900px;
    z-index:5;
}

.hero-content h1{
    font-size:64px;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    line-height:1.6;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-buttons .btn{
    padding:15px 35px;
    border-radius:50px;
}

.hero-buttons .btn-outline{
    border:2px solid #fff;
    color:#fff;
    background:transparent;
}

.hero-buttons .btn-outline:hover{
    background:#fff;
    color:#0b5ed7;
}

.swiper-button-next,
.swiper-button-prev{
    color:#fff;
}

.swiper-pagination-bullet{
    background:#fff;
    opacity:.8;
}

.swiper-pagination-bullet-active{
    background:#0b5ed7;
}
/* ===========================
   BOOKING SEARCH PANEL
=========================== */

.booking-search{
    position: relative;
    margin-top: -95px;
    z-index: 100;
}

.search-box{
    background:rgba(255,255,255,.92);
backdrop-filter:blur(18px);
-webkit-backdrop-filter:blur(18px);
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    padding:30px;
    display:grid;
    grid-template-columns:2fr 1.5fr 1fr auto;
    gap:20px;
    align-items:end;
}

.search-item{
    display:flex;
    flex-direction:column;
}

.search-item label{
    font-size:14px;
    font-weight:600;
    color:#555;
    margin-bottom:8px;
}

.search-item select,
.search-item input{
    height:52px;
    padding:0 15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.search-item select:focus,
.search-item input:focus{
    border-color:#0b5ed7;
}

.search-btn{
    height:52px;
    padding:0 30px;
    background:#0b5ed7;
    color:#fff;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.search-btn:hover{
    background:#084298;
    transform:translateY(-2px);
}
/*==================================
      POPULAR DESTINATIONS
===================================*/

.popular-destinations{
    padding:100px 0;
    background:#f8f9fb;
}

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

.section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    font-size:18px;
    color:#666;
}

.destination-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.destination-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.10);
    transition:.4s;
    position:relative;
}

.destination-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.destination-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

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

.destination-content{
    padding:22px;
}

.destination-content h3{
    font-size:28px;
    margin-bottom:10px;
    color:#222;
}

.destination-content p{
    color:#666;
    margin-bottom:15px;
    line-height:1.6;
}

.destination-content .price{
    display:block;
    font-size:22px;
    font-weight:700;
    color:#0b5ed7;
    margin-bottom:20px;
}

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

.destination-badge{
    position:absolute;
    top:18px;
    left:18px;
    padding:8px 15px;
    border-radius:30px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    z-index:5;
}

.best{
    background:#28a745;
}

.new{
    background:#0d6efd;
}

.trending{
    background:#dc3545;
}

.family{
    background:#6f42c1;
}

.budget{
    background:#fd7e14;
}

.theme{
    background:#20c997;
}

.premium{
    background:#111827;
}

.loved{
    background:#e91e63;
}
/*==================================
      FEATURED TOUR PACKAGES
===================================*/

.featured-packages{
    padding:100px 0;
    background:#ffffff;
}

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

.featured-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.10);
    transition:.4s;
    position:relative;
}

.featured-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 45px rgba(0,0,0,.18);
}

.featured-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

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

.featured-content{
    padding:25px;
}

.featured-content h3{
    font-size:28px;
    color:#222;
    margin-bottom:10px;
}

.featured-content p{
    color:#666;
    margin-bottom:12px;
}

.featured-content .price{
    display:block;
    color:#0b5ed7;
    font-size:22px;
    font-weight:700;
    margin:18px 0;
}

.featured-content .btn{
    width:100%;
    text-align:center;
}
/*==============================
        STATISTICS
==============================*/

.stats{
    background:#0b5ed7;
    padding:80px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stat-box{
    color:#fff;
}

.stat-box h2{
    font-size:48px;
    margin-bottom:10px;
    font-weight:700;
}

.stat-box p{
    font-size:18px;
    opacity:.9;
}
/*==================================
        TRUSTED PARTNERS
===================================*/

.partners{
    padding:100px 0;
    background:#ffffff;
}

.partners-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:60px;
    align-items:center;
    justify-items:center;
}

.partners-grid img{
    width:140px;
    height:70px;
    object-fit:contain;
    transition:.3s ease;
}

.partners-grid img:hover{
    transform:scale(1.05);
}
/*==================================
   PREMIUM FLOATING CONTACT BUTTONS
===================================*/

.floating-contact{
    position:fixed;
    right:20px;
    bottom:25px;
    display:flex;
    flex-direction:column;
    gap:15px;
    z-index:9999;
}

.floating-contact a{
    width:60px;
    height:60px;
    border-radius:50px;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#fff;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.20);
    transition:all .35s ease;
    white-space:nowrap;
}

.floating-contact a i{
    min-width:60px;
    text-align:center;
    font-size:26px;
}

.floating-contact a span{
    opacity:0;
    font-weight:600;
    padding-right:20px;
    transition:.3s;
}

.floating-contact a:hover{
    width:190px;
}

.floating-contact a:hover span{
    opacity:1;
}

.whatsapp{
    background:#25D366;
}

.call{
    background:#0b5ed7;
}
/*==================================
        PACKAGE HERO
===================================*/

.package-hero{
    position:relative;
    height:80vh;
    background:url("../vietnam/hero.jpg") center/cover no-repeat;
    display:flex;
    align-items:center;
    color:#fff;
}

.package-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.package-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.package-tag{
    display:inline-block;
    background:#ff9800;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:600;
}

.package-content h1{
    font-size:62px;
    margin-bottom:20px;
}

.package-duration{
    font-size:24px;
    margin-bottom:10px;
}

.package-location{
    font-size:20px;
    margin-bottom:25px;
    opacity:.95;
}

.package-price{
    font-size:22px;
    margin-bottom:35px;
}

.package-price strong{
    font-size:42px;
    color:#ffd54f;
}

.package-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.package-buttons .btn-outline{
    background:transparent;
    border:2px solid #fff;
    color:#fff;
}

.package-buttons .btn-outline:hover{
    background:#fff;
    color:#0b5ed7;
}
/*==================================
      PACKAGE HIGHLIGHTS
===================================*/

.package-highlights{
    padding:90px 0;
    background:#f8f9fc;
}

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

.section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    font-size:18px;
}

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

.highlight-card{
    background:#fff;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

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

.highlight-card i{
    font-size:48px;
    color:#0b5ed7;
    margin-bottom:20px;
}

.highlight-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.highlight-card p{
    color:#666;
    line-height:1.6;
}
/*==================================
      ITINERARY
===================================*/

.itinerary{
    padding:90px 0;
    background:#fff;
}

.timeline{
    max-width:900px;
    margin:auto;
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    left:90px;
    top:0;
    width:4px;
    height:100%;
    background:#0b5ed7;
}

.timeline-item{
    display:flex;
    gap:40px;
    margin-bottom:45px;
    position:relative;
}

.day{
    min-width:90px;
    height:90px;
    background:#0b5ed7;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
    font-size:22px;
    z-index:2;
}

.timeline-content{
    background:#f8f9fc;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    flex:1;
}

.timeline-content h3{
    margin-bottom:12px;
    color:#0b5ed7;
}

.timeline-content p{
    color:#555;
    line-height:1.7;
}
/*==================================
        HOTEL SECTION
===================================*/

.hotel-section{
    padding:90px 0;
    background:#f8f9fc;
}

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

.hotel-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

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

.hotel-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.hotel-info{
    padding:25px;
}

.hotel-city{
    display:inline-block;
    background:#0b5ed7;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.hotel-info h3{
    margin-bottom:10px;
}

.hotel-info p{
    color:#666;
}
/*==================================
    PACKAGE INFO
===================================*/

.package-info{
    padding:90px 0;
    background:#fff;
}

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

.info-card{
    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.info-card h3{
    margin-bottom:25px;
    font-size:28px;
}

.include h3{
    color:#28a745;
}

.exclude h3{
    color:#dc3545;
}

.info-card ul{
    list-style:none;
    padding:0;
}

.info-card ul li{
    padding:12px 0;
    border-bottom:1px solid #eee;
    color:#555;
}

.info-card ul li:last-child{
    border-bottom:none;
}
/*==================================
        GALLERY
===================================*/

.gallery-section{
    padding:90px 0;
    background:#f8f9fc;
}

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

.gallery-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    cursor:pointer;
    box-shadow:0 12px 25px rgba(0,0,0,.12);
}

.gallery-grid img:hover{
    transform:scale(1.05);
}
/*==============================
      PACKAGE BADGES
===============================*/

.badge{
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    color:#fff;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.best{
    background:#28a745;
}

.new{
    background:#ff9800;
}

.hot{
    background:#e53935;
}

.family{
    background:#8e24aa;
}

.luxury{
    background:#1565c0;
}
.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.footer-contact p i {
    width: 25px;
    flex-shrink: 0;
}

.footer-contact p a {
    display: inline;
    color: inherit;
    text-decoration: none;
}

/* =========================================================
   IMPERIAL INDIAN JOURNEY — PREMIUM HOMEPAGE OVERRIDES
   ========================================================= */
:root{
  --iij-navy:#071a2b;--iij-blue:#0b5ed7;--iij-blue-dark:#084298;
  --iij-gold:#d6a84f;--iij-text:#18212b;--iij-muted:#64748b;
  --iij-light:#f6f8fb;--iij-shadow:0 18px 50px rgba(7,26,43,.12);
}
html{scroll-behavior:smooth}
body{font-family:"Inter","Segoe UI",Arial,sans-serif;color:var(--iij-text);background:#fff;line-height:1.6}
.container{width:min(92%,1400px)}
.header{height:88px;background:rgba(255,255,255,.94);box-shadow:0 6px 30px rgba(7,26,43,.08)}
.header .container{height:88px;gap:28px}
.logo img{height:68px;width:auto;object-fit:contain}
.menu ul{gap:28px;align-items:center}
.menu ul li a{position:relative;font-size:15px;color:#253244}
.menu ul li a::after{content:"";position:absolute;left:0;bottom:-8px;width:0;height:2px;background:var(--iij-gold);transition:width .25s}
.menu ul li a:hover::after{width:100%}
.menu ul li a:hover{color:var(--iij-blue)}
.header-right{gap:14px}.phone{font-size:14px;white-space:nowrap}
.header-btn{padding:12px 22px;background:var(--iij-blue);box-shadow:0 8px 20px rgba(11,94,215,.22)}
.header-btn:hover{background:var(--iij-blue-dark);transform:translateY(-2px)}

.hero-slider{margin-top:0;height:calc(100vh - 88px);min-height:650px}
.heroSwiper,.heroSwiper .swiper-slide{height:calc(100vh - 88px);min-height:650px}
.heroSwiper .swiper-slide{background-position:center}
.hero-overlay{background:linear-gradient(90deg,rgba(3,13,24,.72),rgba(3,13,24,.42) 48%,rgba(3,13,24,.18))}
.hero-content{top:50%;left:8%;transform:translateY(-50%);width:min(90%,850px);max-width:850px;text-align:left}
.hero-content h1{font-size:clamp(42px,5.2vw,72px);line-height:1.08;letter-spacing:-1.5px;margin-bottom:22px;text-shadow:0 5px 25px rgba(0,0,0,.28)}
.hero-content p{max-width:720px;font-size:clamp(17px,1.8vw,22px);line-height:1.55;margin-bottom:32px;color:rgba(255,255,255,.94)}
.hero-buttons{justify-content:flex-start;gap:14px}
.hero-buttons .btn{min-width:170px;padding:14px 26px;font-size:15px;font-weight:700;box-shadow:0 10px 25px rgba(0,0,0,.18)}
.hero-buttons .btn:first-child{background:var(--iij-blue)}
.hero-buttons .btn:first-child:hover{background:var(--iij-gold);color:#111}
.swiper-button-next,.swiper-button-prev{width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,.14);backdrop-filter:blur(8px)}
.swiper-button-next::after,.swiper-button-prev::after{font-size:18px}
.swiper-pagination-bullet{width:9px;height:9px}
.swiper-pagination-bullet-active{width:28px;border-radius:10px}

.booking-search{margin-top:-70px}
.search-box{padding:22px;border:1px solid rgba(255,255,255,.8);box-shadow:var(--iij-shadow)}
.search-item label{color:#334155;font-size:13px;text-transform:uppercase;letter-spacing:.7px}
.search-btn{min-width:170px;background:var(--iij-navy)}
.search-btn:hover{background:var(--iij-blue)}

.section-title{margin-bottom:48px}
.section-title h2,.destinations h2,.featured-packages h2,.why-us h2,.testimonials h2{font-size:clamp(30px,3.2vw,44px);line-height:1.15;letter-spacing:-.7px}
.section-title p{max-width:700px;margin:0 auto;line-height:1.7}

.destinations,.popular-destinations{background:var(--iij-light);padding:92px 0}
.destination-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:24px}
.destination-card,.featured-card{border:1px solid #e8edf3;box-shadow:0 10px 30px rgba(7,26,43,.08)}
.destination-card img,.featured-card img{height:230px}
.destination-content{padding:22px}.destination-content h3,.featured-content h3{font-size:24px}
.destination-content p{min-height:52px;font-size:15px}
.destination-content .btn,.featured-content .btn{font-size:14px;padding:12px 16px}
.destination-badge{top:14px;left:14px;box-shadow:0 5px 14px rgba(0,0,0,.18)}

.featured-packages{padding:92px 0;background:#fff}
.featured-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}

.journey{padding:92px 0;background:#fff}
.journey h2{font-size:clamp(30px,3.2vw,44px);letter-spacing:-.7px}
.journey-grid{gap:24px}
.journey-card{min-height:390px;height:390px;border-radius:22px;box-shadow:var(--iij-shadow)}
.journey-card::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(2,12,22,.72),rgba(2,12,22,.08));z-index:0}
.journey-card>*{position:relative;z-index:1}
.journey-card a{background:var(--iij-blue);padding:12px 24px;font-size:15px}
.journey-card a:hover{background:var(--iij-gold);color:#111}

.why-us{padding:92px 0;background:var(--iij-light)}
.why-grid{gap:24px}
.why-card{background:#fff;border:1px solid #e8edf3;box-shadow:0 10px 30px rgba(7,26,43,.07)}
.why-card .icon{color:var(--iij-blue)}.why-card:hover .icon{color:var(--iij-gold)}

.testimonials{padding:92px 0;background:#fff}
.testimonial-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.testimonial-card{width:auto;min-height:300px;border:1px solid #e8edf3;border-top:4px solid var(--iij-gold);box-shadow:0 10px 30px rgba(7,26,43,.07)}
.testimonial-card h4{color:var(--iij-navy)}

.stats{padding:68px 0;background:linear-gradient(120deg,var(--iij-navy),#0c3152)}
.stat-box h2{font-size:44px}.stat-box p{font-size:15px}
.partners{padding:86px 0}.partners-grid{gap:36px}
.partners-grid img{width:150px;height:62px;filter:grayscale(100%);opacity:.72}
.partners-grid img:hover{filter:none;opacity:1}

.cta{padding:105px 0;background:linear-gradient(90deg,rgba(3,13,24,.78),rgba(3,13,24,.5)),url("../images/hero.png") center/cover no-repeat}
.cta h2{font-size:clamp(32px,4vw,50px);letter-spacing:-.8px}
.cta p{max-width:780px;width:90%;font-size:18px}
.cta-buttons{display:flex;justify-content:center;gap:14px;margin-top:0}
.cta-buttons .btn{font-size:15px;padding:14px 26px}

.footer{padding:76px 0 25px;background:#06111e}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:44px}
.footer-column h3{font-size:19px}.footer-logo{width:125px}
.social-icons a{width:44px;height:44px;font-size:16px}
.footer-bottom{margin-top:42px}
.floating-contact{right:18px;bottom:18px;gap:12px}
.floating-contact a{width:54px;height:54px}.floating-contact a i{min-width:54px;font-size:22px}
.floating-contact a:hover{width:180px}

@media (max-width:1100px){
  .menu ul{gap:18px}.phone{display:none}
  .destination-grid{grid-template-columns:repeat(2,1fr)}
  .featured-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:repeat(2,1fr)}
  .search-box{grid-template-columns:1.5fr 1.2fr 1fr}
  .search-btn{grid-column:1/-1;width:100%}
}
@media (max-width:768px){
  body{padding-top:76px}.header{height:76px}.header .container{height:76px}
  .logo img{height:56px}.menu ul{gap:12px}.menu ul li a{font-size:13px}.header-right{display:none}
  .hero-slider,.heroSwiper,.heroSwiper .swiper-slide{height:calc(100svh - 76px);min-height:560px}
  .hero-content{left:6%;width:88%;max-width:none;text-align:center}
  .hero-content h1{font-size:clamp(34px,9vw,48px);letter-spacing:-.8px}
  .hero-content p{font-size:16px}.hero-buttons{justify-content:center}
  .hero-buttons .btn{min-width:145px;padding:12px 18px}
  .swiper-button-next,.swiper-button-prev{display:none}
  .booking-search{margin-top:-45px}
  .search-box{grid-template-columns:1fr;padding:18px;border-radius:16px}
  .search-btn{grid-column:auto;width:100%}
  .destinations,.popular-destinations,.featured-packages,.journey,.why-us,.testimonials,.partners{padding:68px 0}
  .destination-grid,.featured-grid,.testimonial-grid{grid-template-columns:1fr}
  .destination-card img,.featured-card img{height:220px}
  .journey-grid{display:grid;grid-template-columns:1fr}.journey-card{min-height:330px;height:330px}
  .why-grid{grid-template-columns:1fr}
  .stats{padding:55px 0}.stats-grid{grid-template-columns:repeat(2,1fr);gap:28px 15px}.stat-box h2{font-size:36px}
  .partners-grid{grid-template-columns:repeat(2,1fr);gap:25px}
  .footer-grid{grid-template-columns:1fr;gap:32px}.cta{padding:78px 0}
  .cta-buttons{flex-direction:column;align-items:center}.cta-buttons .btn{width:min(100%,300px)}
}
@media (max-width:520px){
  .container{width:92%}.menu ul{gap:9px}.menu ul li a{font-size:12px}.logo img{height:50px}
  .hero-content h1{font-size:34px}.hero-content p{font-size:15px;margin-bottom:24px}
  .hero-buttons{flex-direction:column;align-items:center}.hero-buttons .btn{width:min(100%,270px)}
  .booking-search{margin-top:-30px}
  .section-title h2,.destinations h2,.featured-packages h2,.why-us h2,.testimonials h2{font-size:32px}
  .section-title{margin-bottom:34px}.stats-grid{grid-template-columns:1fr 1fr}.stat-box h2{font-size:30px}
  .floating-contact{right:12px;bottom:12px}
}
/* =========================
   HIMACHAL HERO
========================= */

.himachal-hero {
    min-height: 560px;
    background:
        linear-gradient(rgba(0, 25, 55, 0.35), rgba(0, 25, 55, 0.55)),
        url("../images/himachal.jpg") center center / cover no-repeat;

    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
}

.himachal-hero-overlay {
    width: 100%;
    padding: 120px 20px 80px;
}

.himachal-hero h1 {
    font-size: 58px;
    margin: 20px 0;
    color: #fff;
}

.himachal-hero p {
    max-width: 850px;
    margin: 0 auto 30px;
    font-size: 21px;
    line-height: 1.7;
    color: #fff;
}

.himachal-hero .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

@media (max-width: 768px) {

    .himachal-hero {
        min-height: 500px;
    }

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

    .himachal-hero p {
        font-size: 17px;
    }

    .himachal-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

}
/* =========================
   TOP SOCIAL MEDIA
========================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #0b5ed7;
    color: #fff;

    text-decoration: none;
    font-size: 15px;

    transition: all 0.3s ease;
}

.top-social a:hover {
    background: #084298;
    transform: translateY(-2px);
}

@media (max-width: 900px) {

    .top-social {
        display: none;
    }

}
/* =========================================
   HIMACHAL PACKAGE CARD FIX
========================================= */

.package-list-section .container,
.combination-section .container,
.special-section .container,
#destinations .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.package-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
}

.package-card {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
}

.package-card-content {
    padding: 28px !important;
    width: 100%;
    box-sizing: border-box;
}

.package-card h3 {
    font-size: 21px !important;
    line-height: 1.35 !important;
    margin-bottom: 12px !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.package-card p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.package-route {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
}

.package-card .btn {
    display: inline-block !important;
    width: auto !important;
    min-width: 130px;
    text-align: center;
    white-space: nowrap;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .package-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .package-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .package-card-content {
        padding: 22px !important;
    }

}

/* FINAL HIMACHAL CARD FIX */

.himachal-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 30px !important;
    width: 100% !important;
    align-items: stretch !important;
}

.himachal-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 35px rgba(0,0,0,.10) !important;
}

.himachal-card-image {
    position: relative !important;
    width: 100% !important;
    height: 240px !important;
    flex: 0 0 240px !important;
    overflow: hidden !important;
}

.himachal-card-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.himachal-card-content {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 25px !important;
}

.himachal-card-content h3 {
    margin: 0 0 10px !important;
}

.himachal-card-content .card-route {
    margin-bottom: 12px !important;
}

.himachal-card-content p {
    margin-bottom: 18px !important;
}

.himachal-card-content .card-btn {
    align-self: flex-start !important;
    margin-top: auto !important;
}

@media (max-width: 1000px) {
    .himachal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 650px) {
    .himachal-grid {
        grid-template-columns: 1fr !important;
    }

    .himachal-card-image {
        height: 220px !important;
        flex-basis: 220px !important;
    }
}
