/* ===========================
   GOOGLE FONT
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

/* ===========================
   LIGHT THEME
=========================== */

:root{

    --bg-color:#ffffff;
    --secondary-bg:#f8f8f8;

    --primary:#c1121f;
    --primary-hover:#a80f1b;

    --text:#222222;
    --white:#ffffff;

    --nav-bg:#c1121f;

}

/* ===========================
   DARK THEME
=========================== */

.dark-mode{

    --bg-color:#121212;
    --secondary-bg:#1d1d1d;

    --primary:#ff3b4d;
    --primary-hover:#ff5d6b;

    --text:#f2f2f2;
    --white:#ffffff;

    --nav-bg:#181818;

}

/* ===========================
   BODY
=========================== */

body{

    background:var(--bg-color);
    color:var(--text);

    transition:0.4s;

}

/* ===========================
   HEADER
=========================== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 8%;

    background:transparent;

    transition:all .4s ease;

    z-index:1000;

}
/* Navbar after scrolling */

header.scrolled{

    background:rgba(150,0,15,.55);

    -webkit-backdrop-filter:blur(20px) saturate(180%);
    backdrop-filter:blur(20px) saturate(180%);

    border-bottom:1px solid rgba(255,255,255,.14);

    box-shadow:0 10px 35px rgba(0,0,0,.25);

}

.logo h2{

    color:var(--white);
    font-size:28px;

}

/* ===========================
   NAVIGATION
=========================== */

nav ul{

    display:flex;
    list-style:none;
    gap:30px;

}

nav a{

    position:relative;

    color:var(--white);

    text-decoration:none;

    font-weight:500;

    transition:.35s;

    padding-bottom:6px;

}

nav a:hover{

    color:#ffffff;

}
nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:#ffffff;

    transition:.35s;

}

nav a:hover::after{

    width:100%;

}

/* ===========================
   THEME BUTTON
=========================== */

#theme-toggle{

    background:var(--white);

    color:var(--primary);

    border:none;

    padding:10px 16px;

    border-radius:8px;

    cursor:pointer;

    font-size:18px;

    transition:0.3s;

}

#theme-toggle:hover{

    transform:scale(1.08);

}

/* ===========================
   HERO
=========================== */

/* ===========================
   HERO
=========================== */

.hero{

    position:relative;

    height:100vh;

    background-image:url("../images/hero1.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    transition:background-image 1s ease;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

}
/* ===========================
   HERO SLIDER
=========================== */

.hero-slider{

    position:absolute;

    inset:0;

    background-image:url("../images/hero1.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    transition:background-image 1s ease;

    animation:zoomHero 20s linear infinite;

}

@keyframes zoomHero{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.1);

    }

}
.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.hero-content{

    position:relative;

    z-index:2;

    color:white;

    max-width:900px;

    padding:20px;

}

.hero-tagline{

    color:#ffb3b3;

    text-transform:uppercase;

    letter-spacing:5px;

    font-weight:600;

    margin-bottom:20px;

}

.hero h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-description{

    font-size:22px;

    max-width:700px;

    margin:auto;

    line-height:1.7;

    margin-bottom:45px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline{

    padding:16px 35px;

    border:2px solid white;

    color:white;

    text-decoration:none;

    border-radius:8px;

    transition:.3s;

}

.btn-outline:hover{

    background:white;

    color:#c1121f;

}

/* ===========================
   SCROLL INDICATOR
=========================== */

.scroll-indicator{

    position:absolute;

    bottom:35px;

    left:50%;

    transform:translateX(-50%);

    z-index:2;

}

.scroll-indicator span{

    display:block;

    width:26px;

    height:42px;

    border:2px solid white;

    border-radius:20px;

    position:relative;

}

.scroll-indicator span::before{

    content:"";

    position:absolute;

    left:50%;

    top:8px;

    width:6px;

    height:6px;

    background:white;

    border-radius:50%;

    transform:translateX(-50%);

    animation:scroll 1.8s infinite;

}

@keyframes scroll{

    0%{

        opacity:1;
        top:8px;

    }

    100%{

        opacity:0;
        top:24px;

    }

}
/* ===========================
   BUTTON
=========================== */

.btn{

    position:relative;

    display:inline-block;

    padding:16px 35px;

    color:white;

    background:var(--primary);

    text-decoration:none;

    border-radius:8px;

    overflow:hidden;

    z-index:1;

    transition:.3s;

}

.btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:white;

    transition:.4s ease;

    z-index:-1;

}

.btn:hover::before{

    left:0;

}

.btn:hover{

    color:var(--primary);

}
/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:900px){

    header{

        flex-direction:column;
        gap:20px;

    }

    nav ul{

        flex-wrap:wrap;
        justify-content:center;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-content p{

        font-size:18px;

    }

}
/* =====================================
   LOGO
===================================== */

.logo{

    display:flex;
    align-items:center;
    gap:15px;

}

.logo img{

    height:65px;
    width:65px;

    object-fit:cover;

    border-radius:50%;

    background:white;

}

.logo-text h2{

    color:white;
    font-size:22px;
    letter-spacing:1px;

}

.logo-text span{

    color:#f3f3f3;
    font-size:14px;
    font-style:italic;

}

/* =====================================
   HEADER ACTIONS
===================================== */

.header-actions{

    display:flex;
    align-items:center;
    gap:15px;

}

/* =====================================
   BOOK BUTTON
===================================== */

.book-btn{

    position:relative;

    display:inline-block;

    padding:12px 24px;

    color:var(--primary);

    background:white;

    border-radius:30px;

    text-decoration:none;

    font-weight:600;

    overflow:hidden;

    z-index:1;

    transition:.3s;

}

.book-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:var(--primary);

    transition:.4s;

    z-index:-1;

}

.book-btn:hover::before{

    left:0;

}

.book-btn:hover{

    color:white;

}

/* =====================================
   NAV HOVER EFFECT
===================================== */

nav a{

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:white;

    transition:.3s;

}

nav a:hover::after{

    width:100%;

}
/* ===========================
   WHY CHOOSE US
=========================== */

.why-us{

    padding:100px 8%;

    background:var(--bg-color);

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:15px;

}

.section-title p{

    color:var(--text);

    font-size:18px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.card{

    background:var(--secondary-bg);

    padding:35px;

    border-radius:15px;

    transition:.35s;

    cursor:pointer;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.card h3{

    color:var(--primary);

    margin-bottom:15px;

}

.card p{

    line-height:1.7;

}
/* ===========================
   PAGE BANNER
=========================== */

.page-banner{

    position:relative;

    height:55vh;

    background:url("../images/about-banner.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

}

.page-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.page-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:white;

}

.page-content h1{

    font-size:60px;

    margin-bottom:15px;

}

.page-content p{

    font-size:22px;

    letter-spacing:3px;

}
.about-story{

    padding:100px 10%;

}

.container{

    max-width:1100px;

    margin:auto;

}

.about-story h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:30px;

}

.about-story p{

    font-size:19px;

    line-height:2;

}
.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.about-image img{

    width:100%;

    border-radius:18px;

    box-shadow:0 25px 45px rgba(0,0,0,.15);

    transition:.4s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.about-text h2{

    font-size:46px;

    margin-bottom:25px;

    color:var(--primary);

}

.about-text p{

    font-size:19px;

    line-height:2;

}
/* ===========================
   MISSION & VISION
=========================== */

.mission-vision{

    padding:100px 8%;

    background:#f8f8f8;

}

.dark-mode .mission-vision{

    background:#141414;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:40px;

    margin-top:60px;

}

.mission-card{

    background:var(--secondary-bg);

    padding:45px;

    border-radius:20px;

    text-align:center;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.mission-card:hover{

    transform:translateY(-12px);

}

.icon-circle{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;

}

.mission-card h3{

    margin-bottom:20px;

    color:var(--primary);

    font-size:28px;

}

.mission-card p{

    line-height:1.8;

}
/* ===========================
   TIMELINE
=========================== */

.timeline{

    padding:100px 8%;

}

.timeline-item{

    display:flex;

    align-items:flex-start;

    gap:30px;

    margin-bottom:50px;

}

.circle{

    width:22px;

    height:22px;

    border-radius:50%;

    background:var(--primary);

    margin-top:8px;

    flex-shrink:0;

    box-shadow:0 0 15px rgba(193,18,31,.4);

}

.timeline-content{

    border-left:3px solid var(--primary);

    padding-left:30px;

}

.timeline-content h3{

    color:var(--primary);

    margin-bottom:12px;

    font-size:28px;

}

.timeline-content p{

    line-height:1.8;

}
/* ===========================
   STATISTICS
=========================== */

.stats{

    padding:100px 8%;

    background:#f7f7f7;

}

.dark-mode .stats{

    background:#141414;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.stat-card{

    background:var(--secondary-bg);

    text-align:center;

    padding:45px 25px;

    border-radius:20px;

    transition:.4s;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.stat-card:hover{

    transform:translateY(-10px);

}

.stat-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:20px;

}

.stat-card h2{

    font-size:42px;

    color:var(--primary);

    margin-bottom:10px;

}

.stat-card p{

    font-size:18px;

}
/* ===========================
   TRUST BAR
=========================== */

.trust-bar{

    padding:70px 8%;

    background:#fafafa;

}

.dark-mode .trust-bar{

    background:#111;

}

.trust-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

}

.trust-item{

    background:var(--secondary-bg);

    padding:35px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

    border:2px solid transparent;

}

.trust-item:hover{

    transform:translateY(-8px);

    border-color:var(--primary);

    box-shadow:0 20px 35px rgba(193,18,31,.15);

}

.trust-item i{

    font-size:40px;

    color:var(--primary);

    margin-bottom:20px;

}

.trust-item h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:10px;

}

.trust-item p{

    font-size:17px;

    line-height:1.6;

}
/* ===========================
   SERVICES
=========================== */

.services{
    padding:100px 8%;
    background:#fff;
}

.dark-mode .services{
    background:#0f0f0f;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    margin-top:60px;
}

.service-card{
    background:var(--secondary-bg);
    padding:40px 30px;
    border-radius:20px;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    border-top:4px solid transparent;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:var(--primary);
    transition:.4s;
}

.service-card:hover::before{
    left:0;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 45px rgba(0,0,0,.15);
}

.service-card i:first-child{
    font-size:42px;
    color:var(--primary);
    margin-bottom:20px;
    transition:.3s;
}

.service-card:hover i:first-child{
    transform:scale(1.15);
}

.service-card h3{
    margin-bottom:15px;
    font-size:26px;
}

.service-card p{
    line-height:1.8;
    margin-bottom:25px;
}

.service-card a{
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
}

.service-card a i{
    margin-left:6px;
    transition:.3s;
}

.service-card:hover a i{
    transform:translateX(6px);
}
.service-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    display:block;

}

.service-content{

    padding:30px;

}
.service-card{

    overflow:hidden;

}

.service-image{
    position:relative;
    overflow:hidden;
    height:220px;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

.service-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.05)
    );
    transition:0.6s ease;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-card:hover .service-image::after{
    background:linear-gradient(
        to top,
        rgba(193,18,31,.35),
        rgba(0,0,0,.10)
    );
}
.service-image{

    position:relative;

}

.service-image::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.45),
        rgba(0,0,0,.05)
    );

}
.solid-header{
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.dark-mode .solid-header{

    background:rgba(193,18,31,.95);

    backdrop-filter:blur(10px);

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}
/* ===========================
   CONTACT PAGE
=========================== */

.contact-hero{

    height:55vh;

    background:url("../images/contact-banner.jpg") center/cover no-repeat;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.page-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.page-content{

    position:relative;

    color:white;

    text-align:center;

}

.page-content h1{

    font-size:60px;

    margin-bottom:15px;

}

.page-content p{

    font-size:20px;

}

.contact-section{

    padding:100px 8%;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:60px;

}

.contact-card{

    background:var(--secondary-bg);

    padding:40px 30px;

    text-align:center;

    border-radius:20px;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.contact-card:hover{

    transform:translateY(-10px);

}

.contact-card i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:15px;

}
/* ===========================
   CONTACT FORM
=========================== */

.contact-main{

    padding:0 8% 100px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

}

.contact-form{

    background:var(--secondary-bg);

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.contact-form h2{

    margin-bottom:30px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    padding:16px;

    border:1px solid #ddd;

    border-radius:12px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    background:transparent;

    color:inherit;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 10px rgba(193,18,31,.15);

}

.contact-form textarea{

    resize:vertical;

}

.map-section{

    background:var(--secondary-bg);

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.map-section h2{

    margin-bottom:25px;

}

.map-section iframe{

    width:100%;

    height:420px;

    border:none;

    border-radius:15px;

}

@media(max-width:900px){

    .contact-main{

        grid-template-columns:1fr;

    }

}
/* ===========================
   FLOATING WHATSAPP
=========================== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(37,211,102,.4);

    z-index:9999;

    transition:.35s;

}

.whatsapp-float:hover{

    transform:scale(1.12);

    box-shadow:0 18px 40px rgba(37,211,102,.55);

}
/* ===========================
   FOOTER
=========================== */

.footer{

    background:#111;

    color:#fff;

    padding-top:70px;

}

.footer-container{

    width:90%;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:50px;

}

.footer-logo{

    width:80px;

    margin-bottom:20px;

}

.footer-box h3{

    color:#c1121f;

    margin-bottom:20px;

    font-size:22px;

}

.footer-box p{

    line-height:1.8;

    color:#ccc;

    margin-bottom:10px;

}

.footer-box ul{

    list-style:none;

    padding:0;

}

.footer-box ul li{

    margin:14px 0;

}

.footer-box ul li a{

    color:#ccc;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#c1121f;

    padding-left:8px;

}

.socials{

    margin-top:20px;

}

.socials a{

    width:45px;

    height:45px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:#1d1d1d;

    color:white;

    border-radius:50%;

    margin-right:10px;

    transition:.35s;

    text-decoration:none;

}

.socials a:hover{

    background:#c1121f;

    transform:translateY(-6px);

}

.footer-bottom{

    text-align:center;

    margin-top:60px;

    padding:25px;

    border-top:1px solid rgba(255,255,255,.1);

    color:#aaa;

}
/* ===========================
   CTA SECTION
=========================== */

.cta{

    position:relative;

    padding:120px 20px;

    text-align:center;

    background:url("../images/cta-bg.jpg") center/cover no-repeat;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.cta-content{

    position:relative;

    z-index:2;

    max-width:800px;

    margin:auto;

    color:white;

}

.cta-content h2{

    font-size:52px;

    margin-bottom:25px;

}

.cta-content p{

    font-size:19px;

    line-height:1.8;

    margin-bottom:40px;

    color:#f1f1f1;

}
.service-section{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

    padding:100px 8%;

}

.service-image img{

    width:100%;

    border-radius:20px;

    transition:.5s;

}

.service-image:hover img{

    transform:scale(1.05);

}

.service-text span{

    color:var(--primary);

    font-weight:600;

    letter-spacing:2px;

}

.service-text h2{

    font-size:42px;

    margin:20px 0;

}

.service-text p{

    line-height:1.9;

    margin-bottom:25px;

}

.service-text ul{

    margin-bottom:30px;

    line-height:2;

}

@media(max-width:900px){

.service-section{

grid-template-columns:1fr;

}

}
.inner-page-hero{

    height:60vh;

    padding-top:100px;

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}
.service-section.reverse{

    direction:rtl;

}

.service-section.reverse .service-text{

    direction:ltr;

}

.service-section.reverse .service-image{

    direction:ltr;

}
/* ===========================
   ABOUT PAGE
=========================== */

.about-story{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    padding:100px 8%;

}

.about-image img{

    width:100%;

    border-radius:20px;

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.05);

}

.about-text span{

    color:var(--primary);

    letter-spacing:2px;

    font-weight:600;

}

.about-text h2{

    font-size:42px;

    margin:20px 0;

}

.about-text p{

    line-height:1.9;

    margin-bottom:20px;

}

@media(max-width:900px){

.about-story{

grid-template-columns:1fr;

}

}
/* ===========================
   INNER PAGE HERO IMAGES
=========================== */

.about-hero{

    background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../images/about-hero.jpg") center/cover no-repeat;

}

.services-hero{

    background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../images/services-hero.jpg") center/cover no-repeat;

}

.contact-hero{

    background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../images/contact-banner.jpg") center/cover no-repeat;

}

.gallery-hero{

    background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../images/gallery-hero.jpg") center/cover no-repeat;

}

.packages-hero{

    background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../images/packages-hero.jpg") center/cover no-repeat;

}
/*==============================
PRELOADER
==============================*/

#preloader{

    position:fixed;

    inset:0;

    background:var(--bg);

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:999999;

    transition:.8s;

}

.loader-content{

    text-align:center;

}

.loader-content img{

    width:110px;

    animation:popLogo 1s ease;

}

.loader-content h2{

    margin-top:25px;

    color:var(--primary);

}

.loader-content p{

    margin-top:8px;

}

.loader-line{

    width:0;

    height:4px;

    background:var(--primary);

    margin:30px auto 0;

    border-radius:10px;

    animation:loading 2s forwards;

}

@keyframes loading{

    to{

        width:220px;

    }

}

@keyframes popLogo{

    from{

        transform:scale(.6);

        opacity:0;

    }

    to{

        transform:scale(1);

        opacity:1;

    }

}
/*==============================
AIRLINE PARTNERS
==============================*/

.airline-partners{

    padding:100px 0;

    overflow:hidden;

}

.logo-slider{

    overflow:hidden;

    margin-top:60px;

}

.logo-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:scrollLogos 30s linear infinite;

}

.logo-track img{

    width:160px;

    margin:0 45px;

    filter:grayscale(100%);

    opacity:.7;

    transition:.35s;

}

.logo-track img:hover{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}

@keyframes scrollLogos{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}
/*==============================
GOOGLE REVIEWS
==============================*/

.google-reviews{

    padding:100px 8%;

    text-align:center;

}

.reviews-box{

    max-width:700px;

    margin:50px auto 0;

    padding:50px;

    border-radius:25px;

    background:var(--card-bg);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

}

.reviews-box:hover{

    transform:translateY(-8px);

}

.reviews-box i{

    font-size:60px;

    color:#FFD700;

    margin-bottom:20px;

}

.reviews-box h3{

    margin-bottom:20px;

}

.reviews-box p{

    line-height:1.9;

    margin-bottom:30px;

}
.btn-secondary{

    display:inline-block;

    margin-left:15px;

    padding:14px 30px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.4s;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}
/*==============================
GALLERY
==============================*/

.gallery-section{

    padding:100px 8%;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:25px;

    margin-top:60px;

}

.gallery-item{

    overflow:hidden;

    border-radius:18px;

    position:relative;

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

    display:block;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.35);

    opacity:0;

    transition:.4s;

    z-index:1;

}

.gallery-item:hover::before{

    opacity:1;

}

.gallery-item::after{

    content:"\f00e";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    color:#fff;

    font-size:30px;

    opacity:0;

    transition:.4s;

    z-index:2;

}

.gallery-item:hover::after{

    opacity:1;

}
/*==============================
PACKAGES
==============================*/

.packages-section{

    padding:100px 8%;

    background:var(--bg);

}

#loading-packages{

    text-align:center;

    padding:60px;

    font-size:22px;

    color:var(--primary);

}

#loading-packages i{

    font-size:45px;

    margin-bottom:20px;

}

#packages-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

    margin-top:50px;

}
.package-card{

    background:var(--card);

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.12);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.package-card:hover{

    transform:translateY(-10px);

}

.package-image{

    height:220px;

    overflow:hidden;

}

.package-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.package-card:hover img{

    transform:scale(1.08);

}

.package-content{

    padding:25px;

}

.package-content h3{

    margin-bottom:15px;

}

.package-price{

    font-size:28px;

    font-weight:700;

    color:var(--primary);

    margin:20px 0;

}

.package-features{

    list-style:none;

    padding:0;

    margin:20px 0;

}

.package-features li{

    margin:10px 0;

}

.package-btn{

    display:block;

    text-align:center;

    background:var(--primary);

    color:#fff;

    padding:15px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.package-btn:hover{

    transform:translateY(-3px);

}
.packages-grid{

    display:grid;

    grid-template-columns:repeat(3,minmax(0,1fr));

    gap:25px;

    margin-top:50px;

}

@media(max-width:1100px){

.packages-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.packages-grid{

    grid-template-columns:1fr;

}

}

.package-card{

    background:var(--white);

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

    display:flex;

    flex-direction:column;

}

.dark-mode .package-card{

    background:#1d1d1d;

}

.package-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.18);

}
.package-header{

    background:linear-gradient(135deg,#c1121f,#e63946);

    color:white;

    padding:25px;

}

.package-header h3{

    margin-bottom:10px;

    font-size:26px;

}

.package-airline{

    opacity:.9;

}
.package-body{

    padding:25px;

}

.package-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:15px;

}

.package-price{

    font-size:28px;

    font-weight:700;

    color:var(--primary);

}
.seat-badge{

    display:inline-flex;

    align-items:center;

    gap:6px;

    padding:8px 14px;

    border-radius:40px;

    font-weight:600;

    margin-top:15px;

    border:1px solid transparent;

    transition:.3s;

}

/* Plenty of seats */
.seat-green{

    background:#ecfdf5 !important;

    color:#16a34a !important;

    border:1px solid #bbf7d0 !important;

}

.seat-yellow{

    background:#fffbeb !important;

    color:#d97706 !important;

    border:1px solid #fde68a !important;

}

/* Almost sold out */
.seat-red{

    background:#fef2f2 !important;

    color:#dc2626 !important;

    border:1px solid #fecaca !important;

}
.package-buttons{

    display:flex;

    gap:15px;

    margin-top:25px;

}

.package-buttons a{

    flex:1;

    text-align:center;

}

/* ===========================================================
   iOS-STYLE GLASSY NAVIGATION
   Frosted-glass header, animated hamburger, glass dropdown menu
=========================================================== */

/* Always-on glass base for the header (subtle before scroll,
   stronger once header.scrolled is applied by script.js) */
header{
    -webkit-backdrop-filter:blur(14px) saturate(160%);
    backdrop-filter:blur(14px) saturate(160%);
}

/* Animated hamburger -> X button, iOS control-center style */
.menu-toggle{

    display:none;

    position:relative;

    width:44px;
    height:44px;

    border:none;
    border-radius:14px;

    background:rgba(255,255,255,.16);
    -webkit-backdrop-filter:blur(10px) saturate(180%);
    backdrop-filter:blur(10px) saturate(180%);
    border:1px solid rgba(255,255,255,.28);

    cursor:pointer;

    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;

    transition:background .3s ease, transform .25s ease;

}

.menu-toggle:hover{
    background:rgba(255,255,255,.26);
}

.menu-toggle:active{
    transform:scale(.92);
}

.menu-toggle .bar{

    display:block;
    width:20px;
    height:2px;
    border-radius:2px;

    background:var(--white);

    transition:transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;

}

.menu-toggle.active .bar:nth-child(1){
    transform:translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2){
    opacity:0;
    transform:scaleX(0);
}

.menu-toggle.active .bar:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
}

/* Contrast fix for the solid (non-transparent) header variant, e.g. about.html */
.solid-header .menu-toggle{
    background:rgba(0,0,0,.06);
    border:1px solid rgba(0,0,0,.10);
}

.solid-header .menu-toggle:hover{
    background:rgba(0,0,0,.10);
}

.solid-header .menu-toggle .bar{
    background:var(--primary);
}

.dark-mode .solid-header .menu-toggle .bar{
    background:var(--white);
}

/* Backdrop dimmer behind the glass panel */
.nav-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.25);
    -webkit-backdrop-filter:blur(2px);
    backdrop-filter:blur(2px);

    opacity:0;
    visibility:hidden;

    transition:opacity .35s ease, visibility .35s ease;

    z-index:998;

}

.nav-overlay.active{
    opacity:1;
    visibility:visible;
}

/* ===========================================================
   Responsive: collapse the nav into an iOS-style glass sheet
=========================================================== */

@media (max-width:900px){

    .menu-toggle{
        display:flex;
    }

    nav#navMenu{

        position:fixed;

        top:14px;
        left:14px;
        right:14px;

        max-height:0;
        overflow:hidden;

        background:rgba(20,10,10,.55);
        -webkit-backdrop-filter:blur(28px) saturate(200%);
        backdrop-filter:blur(28px) saturate(200%);

        border:1px solid rgba(255,255,255,.18);
        border-radius:26px;

        box-shadow:0 20px 60px rgba(0,0,0,.35);

        opacity:0;
        transform:translateY(-14px) scale(.96);

        transition:max-height .5s cubic-bezier(.4,0,.2,1),
                   opacity .35s ease,
                   transform .45s cubic-bezier(.34,1.56,.64,1);

        z-index:999;

        pointer-events:none;

    }

    nav#navMenu.open{

        max-height:70vh;
        opacity:1;
        transform:translateY(0) scale(1);

        pointer-events:auto;

    }

    nav#navMenu ul{

        flex-direction:column;
        align-items:stretch;
        gap:2px;

        padding:18px;

    }

    nav#navMenu ul li{
        list-style:none;
    }

    nav#navMenu ul li a{

        display:block;

        padding:14px 18px;
        border-radius:16px;

        font-size:17px;

        opacity:0;
        transform:translateY(10px);

        transition:background .25s ease, opacity .4s ease, transform .4s ease;

    }

    nav#navMenu.open ul li a{
        opacity:1;
        transform:translateY(0);
    }

    /* Staggered entrance for each link */
    nav#navMenu.open ul li:nth-child(1) a{ transition-delay:.06s; }
    nav#navMenu.open ul li:nth-child(2) a{ transition-delay:.11s; }
    nav#navMenu.open ul li:nth-child(3) a{ transition-delay:.16s; }
    nav#navMenu.open ul li:nth-child(4) a{ transition-delay:.21s; }
    nav#navMenu.open ul li:nth-child(5) a{ transition-delay:.26s; }
    nav#navMenu.open ul li:nth-child(6) a{ transition-delay:.31s; }

    nav#navMenu ul li a:hover,
    nav#navMenu ul li a.active-link{
        background:rgba(255,255,255,.18);
    }

    nav#navMenu ul li a::after{
        display:none;
    }

}

@media (min-width:901px){

    nav#navMenu ul li a.active-link{
        color:#ffffff;
    }

    nav#navMenu ul li a.active-link::after{
        width:100%;
    }

}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion:reduce){

    .menu-toggle .bar,
    nav#navMenu,
    nav#navMenu ul li a,
    .nav-overlay{
        transition:none !important;
    }

}
.package-details-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    margin-bottom:35px;

}

.package-details-card h1{

    color:#c00000;

    margin-bottom:8px;

}

.package-details-card h3{

    color:#555;

    margin-bottom:20px;

}

.package-details-card p{

    margin:10px 0;

    font-size:17px;

}

.price-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:20px;

}

.price-box{

    background:#ffffff;

    border-radius:18px;

    padding:25px;

    text-align:center;

    border:1px solid #ececec;

    transition:.3s;

}

.price-box:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.price-box h4{

    color:#c00000;

    margin-bottom:12px;

}

.price-box p{

    font-size:24px;

    font-weight:700;

}
.room-prices{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:12px;

margin-top:18px;

}

.room-box{

background:#ffffff;

border:1px solid #e8e8e8;

border-radius:14px;

padding:14px;

text-align:center;

transition:.3s;

}

.room-box:hover{

transform:translateY(-4px);

box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.room-box small{

display:block;

font-size:13px;

color:#777;

margin-bottom:6px;

}

.room-box strong{

font-size:18px;

color:#c62828;

font-weight:700;

}
.package-header{

display:flex;

align-items:center;

gap:15px;

margin-bottom:18px;

}

.airline-logo img{

width:70px;

height:70px;

object-fit:contain;

border-radius:12px;

background:#fff;

padding:8px;

box-shadow:0 5px 15px rgba(0,0,0,.08);

}


.card-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    background:#b30000;

    color:#fff;

    padding:14px 20px;

}

.date-box{

    display:flex;

    flex-direction:column;

    align-items:center;

    min-width:80px;

}

.date-box small{

    font-size:11px;

    opacity:.8;

    text-transform:uppercase;

    letter-spacing:1px;

}

.date-box strong{

    font-size:18px;

    margin-top:4px;

}

.days-box{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

}

.days-box{

    font-size:15px;

    font-weight:700;

}

.days-box span{

    margin-top:4px;

}

.days-box{

    color:white;

}

.date-label{

    font-size:11px;

    text-transform:uppercase;

    opacity:.8;

    letter-spacing:1px;

}

.date-value{

    font-size:20px;

    font-weight:700;

    margin-top:4px;

}

.days-box i{

    font-size:22px;

    margin-bottom:6px;

}
.admire-header{

    background:linear-gradient(135deg,#b30000,#d71920);

    color:#fff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px;

}

.admire-date-box{

    display:flex;

    flex-direction:column;

    align-items:center;

    min-width:90px;

}

.admire-label{

    font-size:11px;

    text-transform:uppercase;

    opacity:.85;

    letter-spacing:1px;

}

.admire-date{

    font-size:24px;

    font-weight:700;

    margin-top:4px;

}

.admire-center{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:8px;

}

.admire-center i{

    font-size:26px;

}

.admire-center span{

    font-size:16px;

    font-weight:700;

}

.flight-section{

    padding:18px;

}

.flight-row{

    background:#f8f8f8;

    border-radius:12px;

    padding:14px 18px;

    margin-bottom:12px;

    border-left:4px solid #b30000;

}

.flight-route{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:10px;

    color:#b30000;

}

.flight-meta{

    display:flex;

    justify-content:space-between;

    font-size:14px;

    color:#666;

}

.flight-meta span{

    display:flex;

    align-items:center;

    gap:6px;

}
.admire-flight-card{

    padding:18px;

}

.admire-flight{

    background:#f8f8f8;

    border-radius:12px;

    padding:14px 18px;

    margin-bottom:12px;

    border:1px solid #eee;

}

.admire-flight-left{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    font-size:17px;

    color:#b30000;

    margin-bottom:10px;

}

.admire-flight-left i{

    color:#999;

}

.admire-flight-right{

    display:flex;

    justify-content:space-between;

    font-size:14px;

    color:#666;

}

.admire-flight-right span{

    display:flex;

    align-items:center;

    gap:6px;

}
.admire-hotels{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:14px;

    padding:0 24px 18px 18px;

}

.admire-hotel{

    background:#ffffff;

    border:1px solid #ececec;

    border-radius:14px;

    padding:14px;

    display:flex;

    align-items:center;

    gap:14px;

    transition:.3s;

}

.admire-hotel:hover{

    transform:translateY(-2px);

    box-shadow:0 8px 18px rgba(0,0,0,.08);

}

.admire-hotel i{

    width:46px;

    height:46px;

    background:#b30000;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:20px;

}

.admire-hotel strong{

    display:block;

    font-size:15px;

    color:#222;

}

.admire-hotel span{

    color:#777;

    font-size:13px;

}

@media(max-width:768px){

.admire-hotels{

grid-template-columns:1fr;

}

}
.admire-prices{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:12px;

    padding:0 24px 20px 18px;

}

.admire-price{

    background:linear-gradient(135deg,#fafafa,#ffffff);

    border:1px solid #ececec;

    border-radius:14px;

    padding:16px 10px;

    text-align:center;

    transition:.3s;

}

.admire-price:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.admire-price span{

    display:block;

    font-size:13px;

    color:#777;

    margin-bottom:8px;

}

.admire-price strong{

    color:#b30000;

    font-size:16px;

    font-weight:700;

}

@media(max-width:768px){

.admire-prices{

grid-template-columns:repeat(2,1fr);

}

}
.admire-center small{

    margin-top:4px;

    font-size:12px;

    opacity:.9;

    font-weight:500;

}
.admire-hotel i{

    width:50px;
    height:50px;

    min-width:50px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#b30000;
    color:#fff;

    font-size:20px;

    flex-shrink:0;

}
.share-card{

    display:none;

    position:fixed;

    top:50%;
    left:50%;
    transform:translate(-50%,-50%);

    width:700px;

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    font-family:'Poppins',sans-serif;

    box-shadow:0 20px 60px rgba(0,0,0,.25);

    z-index:99999;

}
.share-header{

    background:linear-gradient(135deg,#b30000,#d71920);

    color:#fff;

    text-align:center;

    padding:20px;

}

.share-logo{

    width:80px;

    height:80px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:15px;

    border:4px solid rgba(255,255,255,.3);

}

.share-header h2{

    margin:0;

    font-size:28px;

    font-weight:700;

}

.share-header p{

    margin-top:8px;

    opacity:.9;

    font-size:15px;

}

.share-body{

    padding:20px;

}

.share-body h2{

    color:#b30000;

    text-align:center;

    font-size:30px;

    margin-bottom:25px;

}

.share-line{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:14px;

    font-size:18px;

    color:#333;

}

.share-line i{

    color:#b30000;

}

.share-hotels{

    margin:25px 0;

    padding:18px;

    background:#fafafa;

    border-radius:14px;

    border-left:5px solid #b30000;

}

.share-hotel{

    margin-bottom:6px;

    font-size:16px;

}

.share-hotel:last-child{

    margin-bottom:0;

}

.share-price{

    margin-top:30px;

    text-align:center;

}

.share-price small{

    display:block;

    color:#777;

    margin-bottom:8px;

}

.share-price h1{

    color:#b30000;

    font-size:42px;

    margin:0;

}

.share-footer{

    background:#b30000;

    color:white;

    text-align:center;

    padding:16px;

    font-size:18px;

    font-weight:600;

}