/*============================

MISS ADAH TRAVELS

Premium Travel Website

=============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    }
    
    body{
    
    font-family:'Poppins',sans-serif;
    
    background:#f8f9fb;
    
    color:#222;
    
    overflow-x:hidden;
    
    line-height:1.6;
    
    }
    
    img{
    
    width:100%;
    
    display:block;
    
    }
    
    a{
    
    text-decoration:none;
    
    }
    
    ul{
    
    list-style:none;
    
    }
    
    .container{
    
    width:90%;
    
    max-width:1200px;
    
    margin:auto;
    
    }
    
    /* NAVBAR */
    
    header{
    
    position:fixed;
    
    top:0;
    
    left:0;
    
    width:100%;
    
    z-index:999;
    
    background:rgba(0,0,0,.55);
    
    backdrop-filter:blur(12px);
    
    }
    
    .navbar{
    
    padding:18px 0;
    
    }
    
    .navbar .container{
    
    display:flex;
    
    justify-content:space-between;
    
    align-items:center;
    
    }
    
    .logo{
        font-size:30px;
        font-weight:700;
        color:#fff;
        text-decoration:none;
        display:flex;
        align-items:center;
    }
    

    .logo span{
    
    color:#d4af37;
    
    }
    
    .nav-links{
    
    display:flex;
    
    gap:35px;
    
    }
    
    .nav-links a{
    
    color:#fff;
    
    font-weight:500;
    
    transition:.3s;
    
    }
    
    .nav-links a:hover{
    
    color:#d4af37;
    
    }
    
    .book-btn{
    
    background:#d4af37;
    
    color:#111;
    
    padding:12px 28px;
    
    border-radius:40px;
    
    font-weight:600;
    
    transition:.3s;
    
    }
    
    .book-btn:hover{
    
    background:#fff;
    
    transform:translateY(-3px);
    
    }
    
    .menu-btn{
    
    display:none;
    
    font-size:28px;
    
    color:#fff;
    
    cursor:pointer;
    
    }
    
    /* HERO */
    
    .hero{
    
    height:100vh;
    
    background:url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600") center/cover no-repeat;
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    position:relative;
    
    }
    
    .overlay{
    
    position:absolute;
    
    top:0;
    
    left:0;
    
    width:100%;
    
    height:100%;
    
    background:rgba(0,0,0,.55);
    
    }
    
    .hero-content{
    
    position:relative;
    
    z-index:2;
    
    text-align:center;
    
    color:#fff;
    
    max-width:900px;
    
    padding:20px;
    
    }
    
    .hero-content h1{
    
    font-size:65px;
    
    line-height:1.2;
    
    margin-bottom:25px;
    
    }
    
    .hero-content span{
    
    color:#d4af37;
    
    }
    
    .hero-content p{
    
    font-size:20px;
    
    margin-bottom:40px;
    
    }
    
    .hero-buttons{
    
    display:flex;
    
    justify-content:center;
    
    gap:20px;
    
    flex-wrap:wrap;
    
    }
    
    .primary-btn{
    
    background:#d4af37;
    
    color:#111;
    
    padding:16px 40px;
    
    border-radius:40px;
    
    font-weight:600;
    
    transition:.3s;
    
    }
    
    .primary-btn:hover{
    
    transform:translateY(-5px);
    
    background:#fff;
    
    }
    
    .secondary-btn{
    
    border:2px solid #fff;
    
    color:#fff;
    
    padding:16px 40px;
    
    border-radius:40px;
    
    transition:.3s;
    
    }
    
    .secondary-btn:hover{
    
    background:#fff;
    
    color:#111;
    
    }
    
    /* STATS */
    
    .stats{
    
    padding:80px 0;
    
    background:#fff;
    
    }
    
    .stats .container{
    
    display:grid;
    
    grid-template-columns:repeat(4,1fr);
    
    gap:30px;
    
    }
    
    .stat-box{
    
    background:#fff;
    
    padding:40px;
    
    text-align:center;
    
    border-radius:18px;
    
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    
    transition:.3s;
    
    }
    
    .stat-box:hover{
    
    transform:translateY(-10px);
    
    }
    
    .stat-box h2{
    
    font-size:42px;
    
    color:#d4af37;
    
    margin-bottom:10px;
    
    }
    
    .stat-box p{
    
    font-size:18px;
    
    }
    
    /* SECTION TITLE */
    
    .section-title{
    
    text-align:center;
    
    margin-bottom:60px;
    
    }
    
    .section-title h2{
    
    font-size:42px;
    
    margin-bottom:10px;
    
    }
    
    .section-title p{
    
    color:#666;
    
    font-size:18px;
    
    }

/*==============================
DESTINATIONS
==============================*/

.destinations{
    padding:100px 0;
    background:#f8f9fb;
    }
    
    .destination-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    }
    
    .card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.4s;
    }
    
    .card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    }
    
    .card img{
    height:260px;
    object-fit:cover;
    transition:.5s;
    }
    
    .card:hover img{
    transform:scale(1.08);
    }
    
    .card-content{
    padding:25px;
    }
    
    .card-content h3{
    font-size:28px;
    margin-bottom:10px;
    }
    
    .card-content p{
    color:#666;
    margin-bottom:25px;
    }
    
    .card-content a{
    display:inline-block;
    padding:12px 30px;
    background:#d4af37;
    color:#111;
    border-radius:35px;
    font-weight:600;
    transition:.3s;
    }
    
    .card-content a:hover{
    background:#111;
    color:#fff;
    }
    
    
    /*==============================
    PACKAGES
    ==============================*/
    
    .packages{
    padding:100px 0;
    background:#fff;
    }
    
    .package-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:35px;
    }
    
    .package-card{
    background:#fff;
    overflow:hidden;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.4s;
    }
    
    .package-card:hover{
    transform:translateY(-12px);
    }
    
    .package-card img{
    height:250px;
    object-fit:cover;
    }
    
    .package-tag{
    position:absolute;
    top:20px;
    left:20px;
    background:#d4af37;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    }
    
    .package-content{
    padding:28px;
    }
    
    .package-content h3{
    font-size:30px;
    margin-bottom:10px;
    }
    
    .package-content p{
    color:#666;
    margin-bottom:20px;
    }
    
    .package-content ul{
    margin-bottom:25px;
    }
    
    .package-content ul li{
    margin:12px 0;
    font-size:16px;
    }
    
    .package-content ul i{
    color:#d4af37;
    margin-right:8px;
    }
    
    .price{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
    color:#111;
    }
    
    .package-btn{
    display:inline-block;
    width:100%;
    text-align:center;
    padding:16px;
    background:#d4af37;
    color:#111;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
    }
    
    .package-btn:hover{
    background:#111;
    color:#fff;
    }
    
    
    /*==============================
    WHY US
    ==============================*/
    
    .why-us{
    padding:100px 0;
    background:#f8f9fb;
    }
    
    .why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    }
    
    .why-card{
    background:#fff;
    padding:45px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    }
    
    .why-card:hover{
    transform:translateY(-10px);
    }
    
    .why-card i{
    font-size:55px;
    color:#d4af37;
    margin-bottom:25px;
    }
    
    .why-card h3{
    margin-bottom:15px;
    font-size:24px;
    }
    
    .why-card p{
    color:#666;
    line-height:1.8;
    }
    
    
    /*==============================
    ABOUT
    ==============================*/
    
    .about{
    padding:100px 0;
    background:#fff;
    }
    
    .about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    }
    
    .about-image img{
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.12);
    }
    
    .about-content h2{
    font-size:46px;
    margin-bottom:25px;
    }
    
    .about-content p{
    margin-bottom:20px;
    font-size:17px;
    color:#666;
    line-height:1.9;
    }
    
    .about-content .primary-btn{
    display:inline-block;
    margin-top:20px;
    }

/*==============================
TESTIMONIALS
==============================*/

.testimonials{
    padding:100px 0;
    background:#f7f8fc;
    }
    
    .testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    }
    
    .testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
    }
    
    .testimonial-card:hover{
    transform:translateY(-10px);
    }
    
    .stars{
    font-size:22px;
    margin-bottom:20px;
    }
    
    .testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
    }
    
    .testimonial-card h4{
    font-size:20px;
    color:#111;
    }
    
    
    /*==============================
    BOOKING
    ==============================*/
    
    .booking{
    padding:100px 0;
    background:#fff;
    }
    
    .booking form{
    max-width:950px;
    margin:auto;
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    }
    
    .booking .row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
    }
    
    .booking input,
    .booking select,
    .booking textarea{
    
    width:100%;
    
    padding:18px;
    
    border:1px solid #ddd;
    
    border-radius:12px;
    
    font-size:16px;
    
    font-family:Poppins,sans-serif;
    
    outline:none;
    
    transition:.3s;
    
    }
    
    .booking input:focus,
    .booking select:focus,
    .booking textarea:focus{
    
    border-color:#d4af37;
    
    }
    
    .submit-btn{
    
    width:100%;
    
    padding:18px;
    
    border:none;
    
    background:#d4af37;
    
    font-size:18px;
    
    font-weight:600;
    
    border-radius:12px;
    
    cursor:pointer;
    
    transition:.3s;
    
    }
    
    .submit-btn:hover{
    
    background:#111;
    
    color:#fff;
    
    }
    
    
    /*==============================
    CONTACT
    ==============================*/
    
    .contact{
    
    padding:100px 0;
    
    background:#f7f8fc;
    
    }
    
    .contact-grid{
    
    display:grid;
    
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    
    gap:30px;
    
    }
    
    .contact-card{
    
    background:#fff;
    
    padding:40px;
    
    text-align:center;
    
    border-radius:18px;
    
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    
    transition:.4s;
    
    }
    
    .contact-card:hover{
    
    transform:translateY(-8px);
    
    }
    
    .contact-card i{
    
    font-size:55px;
    
    color:#d4af37;
    
    margin-bottom:20px;
    
    }
    
    .contact-card h3{
    
    margin-bottom:12px;
    
    font-size:24px;
    
    }
    
    
    /*==============================
    FOOTER
    ==============================*/
    
    footer{
    
    background:#0d1b2a;
    
    padding:70px 0;
    
    color:#fff;
    
    text-align:center;
    
    }
    
    footer h2{
    
    font-size:34px;
    
    margin-bottom:15px;
    
    }
    
    .footer-links{
    
    margin:30px 0;
    
    display:flex;
    
    justify-content:center;
    
    gap:30px;
    
    flex-wrap:wrap;
    
    }
    
    .footer-links a{
    
    color:#fff;
    
    transition:.3s;
    
    }
    
    .footer-links a:hover{
    
    color:#d4af37;
    
    }
    
    
    /*==============================
    WHATSAPP
    ==============================*/
    
    .whatsapp{
    
    position:fixed;
    
    right:25px;
    
    bottom:25px;
    
    width:65px;
    
    height:65px;
    
    background:#25D366;
    
    border-radius:50%;
    
    display:flex;
    
    justify-content:center;
    
    align-items:center;
    
    font-size:34px;
    
    color:#fff;
    
    z-index:9999;
    
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    
    transition:.3s;
    
    }
    
    .whatsapp:hover{
    
    transform:scale(1.12);
    
    }
    
    
    /*==============================
    RESPONSIVE
    ==============================*/
    
    @media(max-width:992px){
    
    .hero-content h1{
    
    font-size:46px;
    
    }
    
    .about-grid{
    
    grid-template-columns:1fr;
    
    }
    
    .stats .container{
    
    grid-template-columns:repeat(2,1fr);
    
    }
    
    .booking .row{
    
    grid-template-columns:1fr;
    
    }
    
    .nav-links{
    
    display:none;
    
    }
    
    .menu-btn{
    
    display:block;
    
    }
    
    }
    
    @media(max-width:768px){
    
    .hero{
    
    height:90vh;
    
    }
    
    .hero-content h1{
    
    font-size:38px;
    
    }
    
    .hero-content p{
    
    font-size:16px;
    
    }
    
    .section-title h2{
    
    font-size:32px;
    
    }
    
    .stats .container{
    
    grid-template-columns:1fr;
    
    }
    
    .destination-grid,
    .package-grid,
    .testimonial-grid,
    .contact-grid,
    .why-grid{
    
    grid-template-columns:1fr;
    
    }
    
    .booking form{
    
    padding:25px;
    
    }
    
    .book-btn{
    
    display:none;
    
    }
    
    }
    
    
    /*==============================
    ANIMATIONS
    ==============================*/
    
    .card,
    .package-card,
    .why-card,
    .contact-card,
    .testimonial-card,
    .stat-box{
    
    animation:fadeUp .8s ease;
    
    }
    
    @keyframes fadeUp{
    
    from{
    
    opacity:0;
    
    transform:translateY(40px);
    
    }
    
    to{
    
    opacity:1;
    
    transform:translateY(0);
    
    }
    
    }
    
    .primary-btn,
    .package-btn,
    .book-btn,
    .submit-btn{
    
    transition:.35s;
    
    }
    
    .primary-btn:hover,
    .package-btn:hover,
    .book-btn:hover,
    .submit-btn:hover{
    
    transform:translateY(-4px);
    
    box-shadow:0 15px 30px rgba(0,0,0,.15);
    
    }
/* ===== Mobile Hamburger Menu ===== */

@media(max-width:992px){

    .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    width:260px;
    height:100vh;
    background:#08131d;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    align-items:center;
    padding-top:90px;
    gap:30px;
    transition:.4s;
    z-index:9999;
    }
    
    .nav-links.active{
    right:0;
    }
    
    .menu-btn{
    display:block;
    z-index:10000;
    cursor:pointer;
    font-size:30px;
    }
    
    }

/*==============================
FAQ
==============================*/

.faq{

    padding:100px 0;
    
    background:#fff;
    
    }
    
    .faq-container{
    
    max-width:900px;
    
    margin:auto;
    
    }
    
    .faq-item{
    
    background:#f8f9fb;
    
    margin-bottom:18px;
    
    border-radius:12px;
    
    overflow:hidden;
    
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    
    }
    
    .faq-question{
    
    width:100%;
    
    padding:22px;
    
    font-size:18px;
    
    font-weight:600;
    
    border:none;
    
    background:#fff;
    
    cursor:pointer;
    
    display:flex;
    
    justify-content:space-between;
    
    align-items:center;
    
    }
    
    .faq-question span{
    
    font-size:26px;
    
    color:#d4af37;
    
    }
    
    .faq-answer{
    
    max-height:0;
    
    overflow:hidden;
    
    transition:.4s;
    
    background:#fff;
    
    }
    
    .faq-answer p{
    
    padding:20px;
    
    color:#666;
    
    line-height:1.8;
    
    }
    
    .faq-item.active .faq-answer{
    
    max-height:220px;
    
    }
    
    .faq-item.active span{
    
    transform:rotate(45deg);
    
    display:inline-block;
    
    }
/*=========================
Back To Top
=========================*/

#topBtn{

    position:fixed;
    
    bottom:30px;
    
    right:25px;
    
    width:50px;
    
    height:50px;
    
    border:none;
    
    border-radius:50%;
    
    background:#0d6efd;
    
    color:#fff;
    
    font-size:20px;
    
    cursor:pointer;
    
    display:none;
    
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    
    transition:.3s;
    
    z-index:999;
    
    }
    
    #topBtn:hover{
    
    transform:translateY(-5px);
    
    background:#ffc107;
    
    color:#000;
    
    }

/*=========================================
        TRIP COST CALCULATOR
=========================================*/

.trip-calculator{
    padding:90px 8%;
    background:linear-gradient(135deg,#f4f9ff,#eef6ff);
}

.trip-card{
    max-width:1000px;
    margin:auto;
    background:#fff;
    border-radius:20px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.trip-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:25px;
}

.trip-field{
    display:flex;
    flex-direction:column;
}

.trip-field label{
    font-weight:600;
    margin-bottom:8px;
    color:#333;
}

.trip-field select{
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
    font-size:16px;
    outline:none;
    transition:.3s;
    background:#fff;
}

.trip-field select:focus{
    border-color:#0d6efd;
    box-shadow:0 0 10px rgba(13,110,253,.15);
}

.trip-options{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin:25px 0;
}

.trip-options label{
    background:#f8f9fa;
    padding:12px 18px;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
    font-size:15px;
}

.trip-options label:hover{
    background:#0d6efd;
    color:#fff;
}

.calc-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#0d6efd,#0a58ca);
    color:#fff;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.calc-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(13,110,253,.25);
}

.trip-result{
    margin-top:35px;
    background:#f8fbff;
    border-radius:16px;
    padding:30px;
    text-align:center;
    border:2px dashed #d9e8ff;
}

.trip-result h3{
    margin-bottom:10px;
    color:#333;
}

.trip-result h1{
    font-size:48px;
    color:#0d6efd;
    margin:15px 0;
}

#tripDetails{
    margin:20px 0;
    line-height:2;
    color:#555;
    font-size:16px;
}

.note{
    margin-top:18px;
    font-size:13px;
    color:#777;
}

@media(max-width:768px){

.trip-card{
    padding:25px;
}

.trip-result h1{
    font-size:36px;
}

.trip-options{
    flex-direction:column;
}

}

/*=========================
PACKAGE CARD UPGRADE
=========================*/

.package-rating{

    margin:12px 0;
    
    font-size:15px;
    
    color:#ff9800;
    
    font-weight:600;
    
    }
    
    .package-rating span{
    
    color:#666;
    
    font-size:14px;
    
    }
    
    .package-start{
    
    font-size:13px;
    
    color:#777;
    
    margin-top:10px;
    
    text-transform:uppercase;
    
    letter-spacing:1px;
    
    }
    
    .price{
    
    font-size:32px;
    
    font-weight:700;
    
    color:#0d6efd;
    
    margin:10px 0;
    
    }
    
    .price span{
    
    font-size:15px;
    
    font-weight:500;
    
    color:#666;
    
    }

    .trust-line{

        font-size:13px;
        
        color:#28a745;
        
        margin-bottom:15px;
        
        font-weight:500;
        
        }