    :root {
        --primary: #0b3d2e;
        --primary-dark: #072a20;
        --gold: #d4af37;
        --gold-light: #f3e5ab;
        --text-main: #2c3e50;
        --text-light: #7f8c8d;
        --bg-soft: #f9fbfb;
        --white: #ffffff;
        --transition: all 0.4s ease;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text-main); background: var(--bg-soft); overflow-x: hidden; }
    h1, h2, h3, .logo { font-family: 'Marcellus', serif; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    .section { padding: 80px 0;  margin-top: 50px; }
    .bg-light { background: var(--white); }
    .bg-dark { background: var(--primary-dark); }
    .text-center { text-align: center; }
    .gold-text { color: var(--gold); }
    .white { color: var(--white); }

    /* Buttons */
    .main-btn { background: var(--gold); color: var(--white); border: none; padding: 12px 30px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: var(--transition); }
    .main-btn:hover { background: #b8962d; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); }
    .full-width { width: 100%; }
    .outline-btn-white { background: transparent; border: 2px solid var(--white); color: var(--white); padding: 12px 30px; border-radius: 50px; font-weight: 600; cursor: pointer; transition: var(--transition); }
    .outline-btn-white:hover { background: var(--white); color: var(--primary); }

    /* Top Bar */
    .top-bar { background: var(--primary-dark); color: #ccc; font-size: 0.85rem; padding: 10px 0; }
    .top-bar-content { display: flex; justify-content: space-between; align-items: center; }
    .divider { margin: 0 10px; color: #555; }
    .top-right a { margin-left: 15px; transition: 0.3s; }
    .top-right a:hover { color: var(--gold); }

 .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    padding: 20px 0; /* Taller initial padding */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

/* When scrolling, JavaScript adds this class */
.navbar.scrolled {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif; /* Or your main font */
    font-size: 1.8rem;
    color: var(--primary);
}

.nav-links { display: flex; gap: 40px; }

.nav-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    opacity: 0.7;
    transition: 0.3s;
}

.nav-links a:hover { opacity: 1; font-size: 1.2rem; }

/* The Dot Hover Effect */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    font-size: 1.2rem;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-links a:hover::after {
    transform: translateX(-50%) scale(1);
      font-size: 1.2rem;
}
    /* Hero Slider */
    .hero { height: 150vh; position: relative; display: flex; align-items: center; color: var(--white); overflow: hidden; }
    .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; z-index: -2; }
    .slide.active { opacity: 1; transform: scale(1.05); animation: zoomEffect 20s infinite; }
    .slider-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(rgba(11, 61, 46, 0.7), rgba(11, 61, 46, 0.4)); z-index: -1; }
    .hero-text { max-width: 700px; padding-top: 50px; }
    .hero-text h1 { font-size: 4rem; line-height: 1.1; margin: 20px 0; }
    .hero-text h1 span { color: var(--gold); }
    .badge-pill { background: rgba(255,255,255,0.2); padding: 5px 15px; border-radius: 20px; display: inline-block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }
    .hero-btns { margin-top: 30px; display: flex; gap: 15px; }

    @keyframes zoomEffect { 0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); } }

    /* Sidebar */
    .sidebar { position: fixed; right: -350px; top: 0; width: 320px; height: 100vh; background: var(--white); z-index: 2000; box-shadow: -5px 0 30px rgba(0,0,0,0.1); transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
    .sidebar.active { right: 0; }
    .sidebar-inner { padding: 40px 20px; }
    .close-sidebar { position: absolute; top: 20px; right: 20px; font-size: 1.5rem; cursor: pointer; }
    .profile-header { text-align: center; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid #eee; }
    .profile-icon-large { font-size: 5rem; color: #ddd; margin-bottom: 15px; }
    .sidebar-menu a { display: block; padding: 15px; color: var(--text-main); font-weight: 600; border-radius: 10px; transition: 0.3s; display: flex; align-items: center; gap: 15px; }
    .sidebar-menu a:hover { background: var(--bg-soft); color: var(--gold); transform: translateX(5px); }

    /* Features Grid (Why Us) */
    .section-header { margin-bottom: 50px; }
    .sub-heading { color: var(--gold); text-transform: uppercase; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; }
    .section-header h2 { font-size: 2.5rem; margin-top: 10px; }
    .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
    .feature-card { background: var(--white); padding: 30px; border-radius: 20px; text-align: center; transition: 0.4s; border: 1px solid #f0f0f0; }
    .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); border-color: var(--gold); }
    .feature-card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }

    /* Trust Logos */
    .trust-section { background: var(--white); padding: 40px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; text-align: center; }
    .trust-section p { color: #888; font-size: 0.9rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
    .logos-grid { 
    display: flex; 
    justify-content: center; 
    gap: 50px; 
    align-items: center; 
    flex-wrap: wrap; 
    /* Removed opacity from here so individual items can control their own transparency */
}

.logos-grid img { 
    height: 40px; 
    transition: all 0.3s ease; /* Smooths the zoom effect */
    opacity: 0.6; /* Default state is faded */
    cursor: pointer; /* Changes cursor to pointer on hover */
}

.logos-grid img:hover {
    transform: scale(1.2); /* Zooms the image by 20% */
    opacity: 1; /* Makes the image fully visible */
}

    /* Packages Cards */
    .packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .package-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s; position: relative; }
    .package-card:hover { transform: translateY(-10px); }
    .highlight-card { border: 2px solid var(--gold); transform: scale(1.05); }
    .badge-corner { position: absolute; top: 15px; right: 15px; background: var(--gold); color: var(--white); padding: 5px 12px; border-radius: 5px; font-size: 0.8rem; font-weight: bold; }
    .pkg-img { position: relative; height: 200px; }
    .pkg-img img { width: 100%; height: 100%; object-fit: cover; }
    .price-tag { position: absolute; bottom: 15px; left: 15px; background: var(--white); padding: 5px 15px; border-radius: 50px; font-weight: 700; color: var(--primary); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .pkg-content { padding: 25px; }
    .pkg-features li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; color: #555; font-size: 0.95rem; }
    .pkg-features i { color: var(--gold); width: 20px; }

    /* Special Layout */
    .special-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .special-img { position: relative; }
    .special-img img { width: 100%; border-radius: 20px; }
    .feature-list { margin: 30px 0; }
    .f-item { display: flex; gap: 20px; margin-bottom: 20px; }
    .f-item i { font-size: 1.5rem; color: var(--gold); background: rgba(212, 175, 55, 0.1); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
    .floating-card { position: absolute; bottom: 30px; left: -30px; background: var(--white); padding: 20px; border-radius: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 15px; font-weight: 700; color: var(--primary); }

    /* Recent Passengers (Marquee) */
    .passenger-scroller { overflow: hidden; margin-top: 30px; }
    .passenger-track { display: flex; gap: 40px; animation: scroll 20s linear infinite; width: max-content; }
    .p-card { display: flex; align-items: center; gap: 15px; background: rgba(255,255,255,0.1); padding: 10px 25px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
    .p-card img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gold); }
    @keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* Testimonials */
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
    .testi-card { background: var(--bg-soft); padding: 30px; border-radius: 20px; border: 1px solid #eee; }
    .stars { color: #f1c40f; margin-bottom: 15px; }
    .testi-card p { font-style: italic; color: #555; margin-bottom: 20px; }
    .user-info { display: flex; align-items: center; gap: 15px; }
    .user-info img { width: 50px; height: 50px; border-radius: 50%; }

    /* Blog */
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .blog-card { background: var(--white); border-radius: 15px; overflow: hidden; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .blog-card img { width: 100%; height: 200px; object-fit: cover; transition: 0.4s; }
    .blog-card:hover img { transform: scale(1.1); }
    .blog-content { padding: 20px; }
    .blog-content span { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; font-weight: bold; }
    .blog-content h4 { margin: 10px 0; font-size: 1.2rem; }
    .blog-content a { font-size: 0.9rem; font-weight: 600; color: var(--primary); }

    /* --- Footer Styling --- */
    .footer-section {
        position: relative;
        /* Background Image: Mosque/Travel theme */
        background-image: url('https://www.islamic-relief.org.uk/wp-content/uploads/2022/11/hajj-hero-2.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #ffffff;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding-top: 70px;
    }

    /* Dark Overlay (Taake text image ke upar clear nazar aaye) */
    .footer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(61, 56, 56, 0.95), rgba(0, 0, 0, 0.98)); /* Teal Overlay */
        z-index: 1;
    }

    .footer-section .container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        padding-bottom: 50px;
    }

    /* Columns */
    .footer-col {
        flex: 1;
        min-width: 200px;
    }

    .footer-col.about-col {
        flex: 1.5; /* Logo wala column thora bara */
        min-width: 280px;
    }

    /* Headings */
    .footer-col h3 {
        color: #ff9f43; /* Orange Color from image */
        font-size: 1.2rem;
        margin-bottom: 25px;
        font-weight: 600;
    }

    /* Logo Box */
    .footer-logo-box {

        padding: 10px;
        border-radius: 10px;
        display: inline-block;
        margin-bottom: 20px;
        max-width: 180px;
    }

    .footer-logo-box img {
        width: 100%;
        display: block;
    }

    /* Text & Links */
    .about-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 20px;
        color: #e0e0e0;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 0.95rem;
        transition: 0.3s;
    }

    .footer-col ul li a:hover {
        color: #ff9f43;
        padding-left: 5px;
    }

    /* Social Icons (Circles) */
    .social-links {
        display: flex;
        gap: 10px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.1rem;
        transition: 0.3s;
        text-decoration: none;
    }

    .social-links a:hover {
        background: #ff9f43;
        transform: translateY(-3px);
    }

    /* Contact Info */
    .contact-info li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 0.9rem;
    }

    .contact-info i {
        color: #ff9f43;
        margin-top: 4px;
    }

    /* Copyright Bar */
    .copyright-area {
        position: relative;
        z-index: 2;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 0;
        text-align: center;
        font-size: 0.85rem;
        color: #ccc;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
        }
    }

    /* --- Floating Buttons --- */
    .float-whatsapp {
        position: fixed;
        bottom: 30px;
        left: 30px;
        background: #25d366;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        z-index: 100;
        transition: 0.3s;
    }

    .float-whatsapp:hover {
        transform: scale(1.1);
    }

    .scroll-top-btn {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: #007bff; /* Blue like image */
        color: white;
        width: 45px;
        height: 45px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
        z-index: 100;
        display: none; /* Hidden initially */
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    /* Responsive */
    @media (max-width: 992px) {
        .special-layout { grid-template-columns: 1fr; }
        .blog-grid { grid-template-columns: 1fr; }
        .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
        .nav-links { display: none; }
        .hero-text h1 { font-size: 2.5rem; }
        .footer-grid { grid-template-columns: 1fr; }
    }
    /* --- Modern Grid Layout --- */
    .modern-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Auto Responsive */
        gap: 30px;
        padding: 20px 0;
    }

    /* --- Card Design --- */
    .card-modern {
        position: relative;
        width: 400px;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        min-height: 600px; 

    }

    .card-modern:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(11, 61, 46, 0.2);
    }

    /* Image Background */
    .card-bg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .card-modern:hover .card-bg {
        transform: scale(1.1); /* Zoom effect */
    }

    /* Gradient Overlay */
    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;
        background: linear-gradient(to top, rgba(7, 42, 32, 0.9), transparent);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 25px;
        z-index: 2;
    }

    /* Card Content */
    .card-info h3 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 5px;
        font-family: 'Marcellus', serif;
    }

    .card-info .duration {
        color: #d4af37; /* Gold */
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        display: block;
    }

    .card-price {
        font-size: 1.2rem;
        color: #fff;
        font-weight: 700;
    }

    /* Button Hidden by default, shows on hover */
    .view-btn-wrap {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .card-modern:hover .view-btn-wrap {
        max-height: 60px; /* Expands to show button */
        margin-top: 15px;
    }

    .view-btn {
        background: #d4af37;
        color: #0b3d2e;
        padding: 10px 25px;
        border-radius: 50px;
        font-weight: bold;
        border: none;
        width: 100%;
        cursor: pointer;
    }

    /* --- Detail Modal Styling --- */
    .modal-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.8);
        display: none; /* Hidden by default */
        justify-content: center;
        align-items: center;
        z-index: 3000;
        backdrop-filter: blur(5px);
    }

    .glass-modal {
        background: #fff;
        width: 90%;
        max-width: 900px;
        height: 85vh;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        display: flex;
        flex-direction: column;
        animation: slideUp 0.4s ease;
    }

    .close-modal-btn {
        position: absolute;
        top: 20px; right: 20px;
        background: #f1f1f1;
        border: none;
        width: 40px; height: 40px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 10;
    }

    /* Modal Content Structure */
    .modal-layout {
        display: flex;
        height: 100%;
    }

    .modal-img-side {
        width: 40%;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .modal-details-side {
        width: 60%;
        padding: 40px;
        overflow-y: auto;
    }

    .detail-header {
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .detail-header h2 { font-size: 2rem; color: #0b3d2e; }
    .detail-price { font-size: 1.5rem; color: #d4af37; font-weight: bold; margin-top: 10px; }

    .detail-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .detail-box {
        background: #f9f9f9;
        padding: 15px;
        border-radius: 10px;
    }

    .detail-box h4 { font-size: 0.9rem; color: #777; margin-bottom: 5px; }
    .detail-box p { font-weight: 600; color: #333; }

    .breakdown-list li {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .book-now-btn {
        background: #0b3d2e;
        color: #fff;
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        cursor: pointer;
        margin-top: 20px;
    }

    @keyframes slideUp {
        from { transform: translateY(50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* Mobile Fix */
    @media (max-width: 768px) {
        .modal-layout { flex-direction: column; }
        .modal-img-side { width: 100%; height: 200px; }
        .modal-details-side { width: 100%; }
    }   
    /* --- Blog Section Styling --- */
    .blog-section {
        padding: 60px 0;
        background-color: #f8f9fa; /* Light grey background for contrast */
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        padding: 20px 0;
    }

    /* Card Container */
    .blog-card {
        background: #ffffff;
        border-radius: 20px; /* Rounded corners like image */
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Soft shadow */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid #eee;
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    /* Image Area */
    .blog-img-wrapper {
        width: 100%;
        height: 220px; /* Fixed height for uniformity */
        overflow: hidden;
    }

    .blog-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures image fills box without stretching */
        transition: transform 0.5s ease;
    }

    .blog-card:hover .blog-img-wrapper img {
        transform: scale(1.05); /* Subtle zoom on hover */
    }

    /* Content Area */
    .blog-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* The Tag (GUIDE, HISTORY, TRAVEL) */
    .blog-tag {
        color: #d4af37; /* Gold Color */
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        display: inline-block;
    }

    /* The Title */
    .blog-content h3 {
        font-size: 1.3rem;
        color: #2c3e50; /* Dark Blue/Grey */
        margin-bottom: 20px;
        line-height: 1.4;
        font-family: 'Plus Jakarta Sans', sans-serif; /* Using your font */
        font-weight: 700;
    }

    /* Read More Link */
    .read-more {
        margin-top: auto; /* Pushes link to bottom */
        color: #0b3d2e; /* Dark Green */
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: gap 0.3s ease;
    }

    .read-more i {
        font-size: 0.8rem;
    }

    .read-more:hover {
        gap: 12px; /* Arrow moves slightly on hover */
        color: #d4af37; /* Changes to Gold on hover */
    }
    /* --- Navbar & Buttons --- */
    .profile-btn {
        background: transparent;
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.1rem;
        color: var(--primary);
        transition: 0.3s;
        margin-left: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .profile-btn:hover {
        background: var(--primary);
        color: var(--gold);
        border-color: var(--primary);
    }

    /* Hide Hamburger on Desktop (Fix for your issue) */
    .mobile-menu-btn {
        display: none; /* Hidden by default */
        background: none;
        border: none;
        font-size: 1.5rem;
        margin-left: 10px;
        cursor: pointer;
        color: var(--primary);
    }

    /* Show Hamburger ONLY on Mobile */
    @media (max-width: 768px) {
        .nav-links { display: none; } /* Hide text links */
        .mobile-menu-btn { display: block; } /* Show hamburger */
    }

    /* --- Sidebar Auth Design --- */
    .auth-header {
        margin-bottom: 30px;
        text-align: center;
    }
    .auth-header h3 { color: var(--primary); font-size: 1.8rem; }
    .auth-header p { color: #777; font-size: 0.9rem; }

    .sidebar-form .form-group {
        margin-bottom: 20px;
    }
    .sidebar-form label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--text-main);
    }
    .sidebar-form input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        outline: none;
    }
    .sidebar-form input:focus {
        border-color: var(--gold);
    }

    .auth-footer {
        margin-top: 20px;
        text-align: center;
        font-size: 0.9rem;
    }
    .auth-footer a {
        color: var(--primary);
        font-weight: bold;
        text-decoration: underline;
    }

    /* --- Sidebar User Menu --- */
    .gold-bg { background: var(--gold); color: white; padding: 2px 10px; font-size: 0.7rem; border-radius: 10px; vertical-align: middle; }
    .menu-title {
        color: #999;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 25px 0 10px 0;
    }
    .count-badge {
        background: var(--gold);
        color: #fff;
        font-size: 0.7rem;
        padding: 2px 6px;
        border-radius: 50%;
        margin-left: auto;
    }
    .sidebar-menu a {
        justify-content: flex-start; /* Align icons left */
    }
    .logout-link { color: #e74c3c !important; }
    .logout-link:hover { background: #fee !important; }

    /* --- Detail Page Styling --- */

    .detail-hero {
        background: linear-gradient(rgba(11, 61, 46, 0.9), rgba(11, 61, 46, 0.8)), url('https://images.unsplash.com/photo-1564769662533-4f00a87b4056?auto=format&fit=crop&w=1920');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 80px 0;
        text-align: center;
    }

    .hero-price {
        font-size: 2.5rem;
        color: var(--gold);
        font-weight: 700;
        margin-top: 10px;
    }

    /* Stats Bar */
    .stats-bar {
        background: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        margin-top: -40px;
        position: relative;
        border-radius: 15px;
        padding: 30px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-grid {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-box {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .stat-box i {
        font-size: 2rem;
        color: var(--gold);
    }

    .stat-box strong { display: block; font-size: 0.8rem; color: #777; text-transform: uppercase; }
    .stat-box span { font-size: 1.1rem; font-weight: bold; color: var(--primary); }

    /* Gallery Grid */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }

    .gallery-grid img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        transition: 0.3s;
        cursor: pointer;
    }

    .gallery-grid img:hover { transform: scale(1.03); }

    /* Activities */
    .activities-list {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .activity-item {
        background: white;
        padding: 15px 25px;
        border-radius: 50px;
        border: 1px solid #eee;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .activity-item i { color: var(--gold); }

    /* Booking Form */
    .form-wrapper { max-width: 800px; margin: 0 auto; }
    .booking-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .booking-grid input, .booking-grid textarea {
        padding: 15px;
        border-radius: 8px;
        border: none;
        font-family: inherit;
    }

    @media (max-width: 768px) {
        .stats-grid { flex-direction: column; align-items: flex-start; }
        .booking-grid { grid-template-columns: 1fr; }
        .booking-grid input[style], .booking-grid textarea[style] { grid-column: span 1 !important; }
    }
    /* --- Hero Alignment Fix --- */
    .hero-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start; /* Align Left */
        height: 100%;
        padding-top: 80px;
    }

    .hero-text {
        text-align: left; /* Text Left */
        max-width: 800px;
        margin-bottom: 40px;
    }

  .booking-widget {
    background: rgba(255, 255, 255, 0.98); /* Thora solid kiya taake text clear ho */
    padding: 25px;
    min-height: 300px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 1100px; /* Thora wide kiya */
    margin: 0 auto; /* Center alignment */
    margin-bottom: 180px;
    position: relative;
    z-index: 10;
}

/* --- Main Form Layout (The Fix for 150% Zoom) --- */
#flight-form {
    display: flex;
    flex-wrap: wrap; /* 🔥 YE SABSE ZAROORI HAI: Jagah kam honay par neechay aana */
    gap: 15px;
    align-items: flex-end; /* Inputs aur Button bottom align rahain */
}

/* --- Individual Input Groups --- */
.form-group {
    flex: 1 1 180px; /* Grow: Yes, Shrink: Yes, Base Width: 180px */
    min-width: 160px; /* Is se chota nahi hoga, neechay shift ho jayega */
    position: relative;
    margin-bottom: 0; /* Gap property sambhal legi */
}

/* Labels */
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0b3d2e;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap; /* Label toote na */
}

  .form-group label i { 
    color: #d4af37; 
    margin-right: 6px; 
}

/* Inputs Styling */
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    background: #fff;
    color: #333;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: 0.3s;
    height: 50px; /* Fixed height taake button ke barabar rahay */
}
.form-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* --- Search Button Styling --- */
/* --- Find .search-btn and REPLACE with this --- */
.search-btn {
    background: var(--gold);
    color: #0b3d2e;
    border: none;
    padding: 0 30px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    height: 50px;
    
    /* --- Yahan Changes Ki Hain --- */
    position: relative;    /* Absolute hata diya */
    left: auto;            /* Fixed position hata di */
    top: auto;             /* Fixed position hata di */
    margin-top: 23px;      /* Label ki jagah adjust karne k liye gap */
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex: 1;               /* Button ko baki inputs k barabar karta hai */
    min-width: 150px;
}

.search-btn:hover {
    background: #0b3d2e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(11, 61, 46, 0.3);
}

    .form-input:focus { border-color: var(--gold); }

    /* Autocomplete List */
    .suggestions-list {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: white;
        list-style: none;
        border: 1px solid #eee;
        border-radius: 8px;
        max-height: 200px;
        overflow-y: auto;
        display: none; /* Hidden by default */
        z-index: 50;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .suggestions-list li {
        padding: 10px;
        cursor: pointer;
        border-bottom: 1px solid #f9f9f9;
        font-size: 0.9rem;
        color: #333;
    }

    .suggestions-list li:hover { background: #f0f0f0; }

    /* Passenger Counter Dropdown */
    .passenger-summary {
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #fff;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #333;
    }

    .passenger-box {
        position: absolute;
        top: 105%; left: 0; width: 250px;
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        display: none; /* Hidden */
        z-index: 50;
    }

    .passenger-box.show { display: block; }

    .p-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        color: #333;
    }

    .counter-controls {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .counter-controls button {
        width: 30px; height: 30px;
        border-radius: 50%;
        border: 1px solid #ddd;
        background: #f9f9f9;
        cursor: pointer;
        font-weight: bold;
        color: var(--primary);
    }

    .counter-controls button:hover { background: var(--gold); color: white; border-color: var(--gold); }

    .done-btn {
        width: 100%;
        background: var(--primary);
        color: white;
        border: none;
        padding: 8px;
        border-radius: 5px;
        cursor: pointer;
    }

    /* Search Button */
    .search-btn {
        background: var(--gold);
        color: white;
        border: none;
        padding: 14px 30px;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
        height: 48px; /* Match input height */
    }

    .search-btn:hover { background: #b8962d; transform: translateY(-2px); }

    /* Mobile */
    @media (max-width: 992px) {
        #flight-form { flex-direction: column; align-items: stretch; }
        .hero-text { text-align: center; margin: 0 auto 30px auto; }
        .hero-container { align-items: center; }
    }
    /* --- Trip Type Radio Buttons Style --- */
    .trip-type-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
        padding-left: 5px;
    }

    .radio-custom {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
        font-weight: 600;
        font-size: 0.9rem;
        color: #333;
    }

    /* Asli radio button chupa rahe hain */
    .radio-custom input { display: none; } 

    /* Apna custom gol button bana rahe hain */
    .radio-mark {
        width: 18px;
        height: 18px;
        border: 2px solid var(--gold);
        border-radius: 50%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Jab select ho to beech mein dot aye */
    .radio-custom input:checked + .radio-mark::after {
        content: '';
        width: 10px;
        height: 10px;
        background: var(--gold);
        border-radius: 50%;
    }

    /* --- Return Date Disable Effect --- */
    .disabled-field {
        opacity: 0.5;
        pointer-events: none; /* Click nahi hoga */
    }

    /* Spinner (Gol ghoomne wala loader) */
    .spinner-loader {
        width: 20px; height: 20px;
        border: 2px solid #f3f3f3;
        border-top: 2px solid var(--gold);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        position: absolute;
        right: 15px; top: 12px;
    }
    @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

    /* Suggestion List Scroll Fix */
    .suggestions-list {
        max-height: 250px; /* Is se zyada lambi list nahi hogi */
        overflow-y: auto;
    }
    .suggestion-item {
        display: flex;
        justify-content: space-between;
        font-size: 0.85rem;
    }
    .suggestion-code { font-weight: bold; color: var(--gold); }
    .suggestion-city { color: #555; }
    /* --- Flatpickr Gold Theme --- */
    .flatpickr-calendar {
        font-family: 'Plus Jakarta Sans', sans-serif !important;
        border: none !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    }
    .flatpickr-months {
        background: #0b3d2e !important; /* Green Header */
        color: #fff !important;
        fill: #fff !important;
        padding: 10px !important;
    }
    .flatpickr-current-month input.cur-year, .flatpickr-current-month .flatpickr-monthDropdown-months {
        color: #fff !important;
        font-weight: bold !important;
    }
    .flatpickr-weekdays {
        background: #0b3d2e !important;
    }
    span.flatpickr-weekday {
        color: #d4af37 !important; /* Gold Days */
    }
    .flatpickr-day.selected, .flatpickr-day.selected:hover {
        background: #d4af37 !important; /* Gold Selection */
        border-color: #d4af37 !important;
    }
    .flatpickr-day:hover {
        background: #f0f0f0 !important;
    }
    /* --- Flight Results Styling --- */
    .flight-results-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 1100px;
        margin: 0 auto;
        width: 900px;
    }

    .flight-card {
        background: #fff;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #eee;
        transition: transform 0.3s ease;
    }

    .flight-card:hover {
        transform: translateY(-5px);
        border-color: var(--gold);
    }

    .airline-info {
        display: flex;
        align-items: center;
        gap: 10px;
        flex: 1;
    }

    .airline-logo {
        width: 60px;
        height: 60px;
        object-fit: contain;
        border-radius: 50%;
        border: 1px solid #eee;
        padding: 5px;
    }

    .route-info {
        text-align: center;
        flex: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .route-time h4 { font-size: 1.2rem; font-weight: 800; color: var(--primary); margin: 0; }
    .route-time p { font-size: 0.85rem; color: #777; margin: 0; }

    .duration-line {
        text-align: center;
        position: relative;
        width: 100px;
    }
    .duration-line::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background: #ddd;
        margin-top: 5px;
    }
    .duration-line small { font-size: 0.75rem; color: #999; }

    .price-action {
        text-align: right;
        flex: 1;
    }

    .price-tag-large {
        font-size: 1.5rem;
        color: var(--gold);
        font-weight: 800;
        display: block;
        margin-bottom: 10px;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .flight-card { flex-direction: column; gap: 20px; text-align: center; }
        .airline-info { flex-direction: column; }
        .route-info { flex-direction: column; gap: 10px; }
        .price-action { text-align: center; width: 100%; border-top: 1px solid #eee; padding-top: 15px; }
    }
    /* --- Filter Sidebar Styling --- */
.row-grid {
    display: grid !important;
    /* Isay 2fr ki jagah 1.5fr kar dein */
    grid-template-columns: 1fr 1fr !important; 
    gap: 10px;
    align-items: start;
}
    /* Radio Custom Style */
    .radio-filter {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 0.95rem;
        color: #555;
    }

    .radio-filter input {
        accent-color: #d4af37; /* Gold Radio Button */
        width: 18px;
        height: 18px;
    }

    .filter-label {
        font-weight: 700;
        color: #0b3d2e;
        display: block;
        margin-bottom: 15px;
    }

    /* Range Slider */
    .range-slider {
        width: 100%;
        height: 6px;
        background: #ddd;
        border-radius: 5px;
        outline: none;
        
    }

    .range-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        background: #d4af37;
        border-radius: 50%;
        cursor: pointer;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
        .row-grid {
            grid-template-columns: 1fr !important; /* Mobile par sidebar upar */
        }
    }
    /* --- Timeline Design --- */
    /* style.css mein */
    .timeline-item {
        position: relative;
        padding-left: 40px;
        /* Isay barha kar 60px ya 80px kar dein */
        padding-bottom: 80px; 
        border-left: 2px dashed #ddd;
    }

    .timeline-item:last-child {
        border-left: none;
        padding-bottom: 0;
    }

    /* Dots (Circles) */
    .timeline-dot {
        position: absolute;
        left: -9px;
        top: 0;
        width: 16px;
        height: 16px;
        background: white;
        border: 3px solid var(--primary);
        border-radius: 50%;
        z-index: 2;
    }

    .timeline-dot.destination {
        background: var(--primary);
        border-color: var(--gold);
    }

    /* Flight Segment Box */
    .flight-segment {
        background: #fff;
        margin-bottom: 20px;
    }

    .flight-meta {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    /* Layover Box (The special feature) */
    .layover-box {
        background: #fdf8e8; /* Light Gold/Yellow */
        border: 1px solid #fae6b1;
        border-radius: 12px;
        padding: 20px;
        margin: 10px 0 30px 0;
        position: relative;
    }

    .layover-box::before {
        content: 'STOP';
        position: absolute;
        top: -10px;
        left: 20px;
        background: #d4af37;
        color: white;
        font-size: 0.7rem;
        padding: 2px 8px;
        border-radius: 4px;
        font-weight: bold;
    }

    /* Amenities Grid */
    .amenities-grid {
        display: flex;
        gap: 15px;
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .amenity-pill {
        font-size: 0.8rem;
        color: #555;
        background: #f4f7f6;
        padding: 5px 12px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .amenity-pill i { color: var(--gold); }
    /* --- Flight Timeline Styling --- */
    .timeline-item {
        position: relative;
        padding-left: 40px;
        padding-bottom: 40px; /* Is se height control hoti hai */
        border-left: 2px dashed #ccc; /* Dotted Line */
    }

    /* Aakhri item ke neechay line nahi honi chahiye */
    .timeline-item:last-child {
        border-left: none;
        padding-bottom: 0;
    }

    /* Gol Daira (Dot) */
    .timeline-dot {
        position: absolute;
        left: -9px;
        top: 0;
        width: 16px;
        height: 16px;
        background: white;
        border: 3px solid #0b3d2e;
        border-radius: 50%;
        z-index: 2;
    }

    /* Destination wala Dot alag rang ka */
    .timeline-dot.destination {
        background: #0b3d2e;
        border-color: var(--gold);
    }

    .flight-meta {
        display: flex;
        justify-content: space-between;
    }

    /* Yellow Layover Box */
    .layover-box {
        background: #fdf8e8;
        border: 1px solid #fae6b1;
        border-radius: 12px;
        padding: 20px;
        margin-top: 10px;
    }

    /* Amenities Pills */
    .amenities-grid {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .amenity-pill {
        font-size: 0.8rem;
        color: #555;
        background: #f4f7f6;
        padding: 6px 12px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .amenity-pill i { color: var(--gold); }




    /* --- Dropdown Menu Styling --- */

/* Parent Item Positioning */
.dropdown-item {
    position: relative;
    padding-bottom: 10px; /* Slight buffer to prevent mouse gap issues */
    margin-bottom: -10px;
}

/* The Dropdown Box (Hidden by Default) */
.dropdown-menu {
    position: absolute;
    top: 100%; /* Shows directly below the link */
    left: 0;
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    border-top: 3px solid var(--gold); /* Gold Top Border */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 10px 0;
    z-index: 1100;
}

/* Show Dropdown on Hover */
.dropdown-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Links */
.dropdown-menu li {
    margin: 0;
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-main);
    font-style: bold;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    border-bottom: 1px solid #f5f5f5;
}

/* Remove border from last item */
.dropdown-menu li:last-child a {
    border-bottom: none;
}

/* Hover Effect for Links */
.dropdown-menu li a:hover {
    background: #f9fdfc; /* Very light teal bg */
}

/* Remove default underline effect from parent link if needed */
.dropdown-item > a::after {
    display: none; /* Optional: Hides the gold underline on the main 'Services' link if preferred */
}
/* =========================================
   MODERN PACKAGES STYLING
========================================= */

/* --- Grid Layouts --- */
.modern-pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* --- Category Header --- */
.pkg-category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cat-icon {
    width: 40px; height: 40px;
    background: #7f8c8d; /* Default gray for economy */
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}

.pkg-category-header h3 {
    font-size: 1.4rem;
    color: var(--text-main);
    margin: 0;
}

.cat-stars {
    font-size: 0.9rem;
    font-weight: 400;
    color: #777;
}

/* --- Card Base Style --- */
.pkg-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); /* Very subtle shadow */
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Lift effect */
    border-color: #e0e0e0;
}

/* Luxury Card Highlight */
.pkg-card.card-luxury {
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.pkg-card.card-luxury:hover {
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* --- Image Section --- */
.pkg-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.pkg-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pkg-card:hover .pkg-image img {
    transform: scale(1.08); /* Gentle zoom */
}

/* Glassmorphism Badge */
.glass-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    color: #333;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.glass-badge.green { color: var(--primary); }
.glass-badge.gold { background: var(--gold); color: #fff; }

/* --- Content Section --- */
.pkg-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.pkg-details h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-main);
}

/* Star Rating */
.rating {
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.rating i.filled { color: #f1c40f; }
.rating i.filled.gold { color: var(--gold); }
.rating i { color: #ddd; }

/* Itinerary Grid */
.itinerary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.itinerary-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.itinerary-item i {
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0.8;
}

.itinerary-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.itinerary-item strong { font-size: 0.9rem; color: #333; }
.itinerary-item span { font-size: 0.75rem; color: #777; }

/* Price Row */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.price-label { font-size: 0.85rem; color: #777; }
.price-val { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.price-val.gold { color: var(--gold); }

/* Buttons */
.card-actions {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10px;
    margin-top: auto;
}

.btn-outline {
    border: 1px solid #ddd;
    background: transparent;
    color: #555;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: #f0fffa; }

.btn-fill {
    border: none;
    background: #333; /* Default gray/black for economy */
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}
.btn-fill:hover { background: #000; transform: translateY(-2px); }

.btn-fill.green { background: var(--primary); }
.btn-fill.green:hover { background: #072a20; }

.btn-fill.gold { background: var(--gold); color: #fff; }
.btn-fill.gold:hover { background: #c59d2e; }

/* Bottom Text Link */
.details-link-wrapper {
    text-align: center;
    margin-top: 15px;
}
.details-link-wrapper a {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
    transition: 0.3s;
}
.details-link-wrapper a:hover { color: var(--primary); gap: 5px; }

/* Responsive */
@media (max-width: 576px) {
    .modern-pkg-grid { grid-template-columns: 1fr; }
}
/* --- Packages Hero Adjustment --- */
.packages-hero {
    align-items: center; /* Centers content vertically */
}

/* Ensure text is strictly centered on this page */
.packages-hero .hero-container {
    align-items: center;
    justify-content: center;
    text-align: center;
}

.packages-hero .hero-text {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}
.stats-container {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Soft shadow like image */
    padding: 40px 20px;
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Responsive wrapping */
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 180px; /* Ensures items don't squish too much */
    margin: 15px 0;
}

.stat-number {
    display: block;
    font-size: 3rem; /* Large number */
    font-weight: 800;
    color: #f79f1f; /* Bright Orange matching image */
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Vertical Divider Lines */
.stat-divider {
    width: 1px;
    height: 60px;
    background-color: #e0e0e0; /* Light grey line */
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column; /* Stack items vertically on mobile */
        gap: 20px;
    }

    .stat-divider {
        width: 60%; /* Horizontal line on mobile */
        height: 1px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Left side narrower than right grid */
    gap: 60px;
    align-items: start;
}

/* Left Side Styling */
.trust-content h2.section-title {
    font-size: 2.5rem;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Marcellus', serif;
}

.trust-img-wrapper {
    width: 100%;
    height: 450px; /* Tall vertical image */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.trust-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trust-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Right Side (Feature Grid) */
.trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 30px;
}

/* Feature Card Styling */
.trust-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Soft shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f9f9f9;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Circular Icon */
.trust-card .icon-box {
    width: 70px;
    height: 70px;
    background: #1a7e73; /* Teal color from screenshot */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 1.8rem;
}

.trust-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.trust-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .trust-grid {
        grid-template-columns: 1fr; /* Stack vertically on tablets */
        gap: 40px;
    }
    
    .trust-img-wrapper {
        height: 300px; /* Shorter image on mobile */
        margin-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .trust-features {
        grid-template-columns: 1fr; /* Stack cards 1 by 1 on mobile phones */
    }
}
/* --- 1. Process Section Styles --- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
    position: relative;
}

.process-item {
    padding: 20px;
    position: relative;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: #fdf8e8; /* Light Gold */
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    position: relative;
    font-size: 2rem;
    color: var(--primary);
    transition: 0.4s;
}

.step-num {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--gold);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.process-item:hover .step-icon {
    background: var(--gold);
    color: #fff;
    transform: rotateY(180deg);
}

.process-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.process-item p {
    color: #666;
    line-height: 1.6;
}

/* --- 2. Ziyarat Gallery Styles --- */
.ziyarat-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.z-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.z-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Large item takes 2 rows and 2 columns */
.z-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.z-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.3s;
}

.z-item:hover img { transform: scale(1.1); }
.z-item:hover .z-overlay { transform: translateY(0); opacity: 1; }

.z-overlay h4 { font-family: 'Marcellus', serif; margin-bottom: 5px; font-size: 1.2rem; }
.z-overlay span { font-size: 0.85rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }

/* Mobile adjustments for gallery */
@media (max-width: 768px) {
    .ziyarat-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .z-item { height: 200px; }
    .z-item.large { grid-column: span 2; height: 300px; }
}

/* --- 3. Newsletter Section Styles --- */
.newsletter-section {
    padding: 60px 0;
}

.newsletter-box {
    background: var(--primary);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
    background-image: url('https://www.transparenttextures.com/patterns/arabesque.png'); /* Subtle pattern */
}

.nl-content {
    flex: 1;
    min-width: 300px;
    color: white;
}

.nl-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.nl-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Marcellus', serif;
}

.nl-content p {
    color: #e0e0e0;
    font-size: 1rem;
}

.nl-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    gap: 10px;
}

.nl-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-family: inherit;
}

.nl-form button {
    background: var(--gold);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.nl-form button:hover {
    background: #fff;
    color: var(--primary);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .newsletter-box { padding: 30px; flex-direction: column; text-align: center; }
    .nl-form { width: 100%; flex-direction: column; }
    .nl-form input, .nl-form button { width: 100%; }
}
.book-now{
    background: var(--gold);
    width: 200px;
    height: 60px;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    margin-left: 10px;
    padding: 15px 30px;
    
}
* Grid Layout */
.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Composition Container */
.image-composition {
    position: relative;
    height: 500px; /* Fixed height to manage absolute positioning */
    width: 100%;
}

/* Main Image (Back) */
.comp-main-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%; /* Takes up right side of the container */
    height: 85%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Small Image (Front Overlay) */
.comp-small-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border-radius: 20px;
    border: 8px solid var(--white); /* Thick white border like screenshot */
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Floating Badge */
.exp-badge {
    position: absolute;
    bottom: 40px;
    right: 15%; /* Positioned relative to container */
    background: var(--gold); /* Or use #f39c12 if you want the exact orange from image */
    color: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    border: 6px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.exp-number {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 5px;
    text-transform: capitalize;
}

/* Text Side Styling */
.commitment-text h2.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-main);
    font-family: 'Marcellus', serif;
}

.commitment-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .image-composition {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }

    .comp-main-img {
        width: 85%;
    }

    .comp-small-img {
        width: 50%;
    }
    
    .exp-badge {
        right: 5%;
        padding: 15px 20px;
    }
    
    .commitment-text {
        text-align: center;
    }
    
    .commitment-text p {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .image-composition {
        height: 300px;
    }
    
    .comp-small-img {
        border-width: 4px;
    }
    
    .exp-badge {
        bottom: 20px;
        padding: 10px 15px;
        border-width: 3px;
    }
    
    .exp-number { font-size: 1.5rem; }
    .exp-text { font-size: 0.7rem; }
    
    .commitment-text h2.section-title {
        font-size: 1.8rem;
    }
}
.cta-banner {
    /* Background Image: Architecture similar to Makkah/Madinah hotels */
    background-image: url('https://images.unsplash.com/photo-1565552629477-e254f3a39326?w=1920&q=80');
    background-size: cover;
    background-position: center;
    /* Fixed attachment creates the Parallax scrolling effect */
    background-attachment: fixed;
    position: relative;
    padding: 100px 0;
    color: var(--white);
    display: flex;
    align-items: center;
}

/* Dark Overlay to make text readable */
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 42, 32, 0.75); /* Dark Green tint matching theme */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Marcellus', serif;
    color: var(--white);
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: #f0f0f0;
    line-height: 1.6;
    font-weight: 300;
}

/* Specific Button Style for this section */
.cta-btn {
    display: inline-block;
    background: #f79f1f; /* Bright Orange to match screenshot */
    color: var(--white);
    padding: 15px 40px;
    border-radius: 6px; /* Slightly squared corners as per image */
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(247, 159, 31, 0.3);
}

.cta-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 159, 31, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .cta-banner {
        padding: 70px 0;
        background-attachment: scroll; /* Disable parallax on mobile for better performance */
    }
}
.vision-mission-section {
    background-color: #f9f9f9; /* Light grey background for the whole section */
    padding: 80px 0;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Top Half (Colored Background) */
.vm-top {
    padding: 40px 30px 60px 30px; /* Extra padding bottom for icon overlap */
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Specific Colors for Top Halves */
.vision-bg {
    background-color: #1a7e73; /* Teal Green from image */
}

.mission-bg {
    background-color: #033730; /* Darker Green from image */
}

/* Icon Wrapper & Circle */
.vm-icon-wrapper {
    position: relative;
    height: 0; /* Allows overlap without taking up flow space */
    display: flex;
    justify-content: center;
    top: -40px; /* Pulls icon up to overlap the boundary */
    z-index: 2;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 2rem;
}

/* Bottom Half (White Background) */
.vm-bottom {
    background: white;
    padding: 50px 30px 40px 30px; /* Padding top accounts for icon overlap space */
    flex-grow: 1; /* Ensures equal height if content differs slightly */
}

.vm-bottom h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.vm-bottom p {
    color: #777;
    font-size: 0.9rem;
    max-width: 80%;
    margin: 0 auto;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr; /* Stack vertically on tablets/mobile */
        gap: 50px; /* More space between stacked cards */
    }
    
    .vm-card {
        max-width: 600px;
        margin: 0 auto; /* Center the cards */
    }
}
/* =========================================

/* 🔥 CALENDAR (Flatpickr) WHITE THEME - DROPDOWN FIXED */
.flatpickr-calendar {
    background: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border-radius: 12px !important;
}

/* Months Dropdown Text Color (Ab saaf nazar ayega) */
.flatpickr-monthDropdown-months {
    background: #0b3d2e!important;
    color: #333333 !important; /* Dark text for visibility */
    font-weight: 700 !important;
    padding: 2px !important;
}

/* Year Input Fix */
.cur-year {
    color: #333333 !important;
    font-weight: 700 !important;
}

/* Arrow Icons (Prev/Next Month) */
.flatpickr-prev-month svg, .flatpickr-next-month svg {
    fill: #0b3d2e !important; /* Dark Green Arrows */
}

/* Selected Day */
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange {
    background: #0b3d2e !important;
    color: #ffffff !important;
    border-color: #0b3d2e !important;
}

/* Hover on days */
.flatpickr-day:hover {
    background: #f0f0f0 !important;
}
    /* --- 2. AUTOCOMPLETE LIST STYLING --- */
    .suggestions-list {
        list-style: none; padding: 0; margin: 0;
        position: absolute; width: 100%; background: white;
        border: 1px solid #ddd; border-top: none; z-index: 1000;
        max-height: 250px; overflow-y: auto; border-radius: 0 0 8px 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1); display: none;
    }
    .suggestions-list li {
        padding: 12px 15px; cursor: pointer; border-bottom: 1px solid #f5f5f5;
        display: flex; justify-content: space-between; align-items: center;
        transition: 0.2s;
    }
    .suggestions-list li:hover { background: #f9f9f9; color: #0b3d2e; padding-left: 20px; }
    .suggestion-city { font-weight: 600; font-size: 0.9rem; }
    .suggestion-code { background: #0b3d2e; color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; }


/* ========================
   👤 CONTACT INPUTS STYLING
   ======================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 3 Barabar Columns */
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

/* Icons aur Labels ko Khubsurat banana */
.contact-grid label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0b3d2e; /* Dark Green */
    margin-bottom: 5px;
    display: block;
}

.contact-grid label i {
    color: #d4af37; /* Gold Icon */
    margin-right: 5px;
}

/* Mobile ke liye (Agar screen choti ho to neechay aa jaye) */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Mobile par 1 column */
    }
}
/* --- PROGRESS BAR STEPPER --- */
.stepper-wrapper {
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px; /* Thoda side gap */
}

/* Gray Line behind steps */
.stepper-wrapper::before {
    content: "";
    position: absolute;
    top: 15px; /* Circle ke center mein */
    left: 40px;
    right: 40px;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    z-index: 2;
}

.step-counter {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #e0e0e0;
    color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-bottom: 6px;
    transition: 0.3s;
    font-size: 0.9rem;
}

.step-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #999;
    text-align: center;
}

/* --- ACTIVE STATE (Current Page) --- */
.stepper-item.active .step-counter {
    border-color: #dba11c; /* Gold Border */
    background: #dba11c;
    color: #fff;
    transform: scale(1.1);
}
.stepper-item.active .step-name {
    color: #0b3d2e; /* Green Text */
    font-weight: 800;
}

/* --- COMPLETED STATE (Pichle Pages) --- */
.stepper-item.completed .step-counter {
    background: #0b3d2e; /* Green Background */
    border-color: #0b3d2e;
    color: #fff;
}
.stepper-item.completed::after {
    content: "\f00c"; /* FontAwesome Checkmark */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
}
/* Number chupa kar checkmark dikhana */
.stepper-item.completed .step-counter span { display: none; }
.stepper-item.completed .step-name { color: #0b3d2e; }

/* Responsive Text Hide on Mobile */
@media (max-width: 500px) {
    .step-name { font-size: 0.7rem; }
}
/* 🔥 SIMPLE FLIGHT CARD STYLE */
.flight-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border: 1px solid #eee;
    overflow: hidden;
}
.card-header-simple {
    background: #f8f9fa;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.card-body-simple {
    padding: 20px;
}
.flight-row-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}
.flight-row-simple:last-child { margin-bottom: 0; border: none; padding-bottom: 0; }
.time-simple { font-size: 1.2rem; font-weight: 800; color: #333; }
.route-line { color: #999; font-size: 0.9rem; }
.price-simple { font-size: 1.5rem; font-weight: 800; color: #0b3d2e; }
.btn-simple {
    background: #0b3d2e; color: white; border: none;
    padding: 10px 25px; border-radius: 5px; cursor: pointer;
}
#flight-results-section { display: none; padding: 40px 0; background: #f4f7f6; }
    
    /* --- 2. SIMPLE & CLEAN CARD STYLE --- */
    .flight-card {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        margin-bottom: 20px;
        overflow: hidden;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    /* Card Header (Airline + Round Trip Tag) */
    .card-header-simple {
        background: #0b3d2e; /* Dark Green Header */
        color: #fff;
        padding: 12px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .airline-info { display: flex; align-items: center; gap: 10px; font-weight: bold; }
    .trip-tag { background: #dba11c; color: #000; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; }

    /* Card Body (Flight Rows) */
    .card-body-simple { padding: 20px; }

    .flight-row-simple {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px dashed #ccc;
    }
    .flight-row-simple:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    /* Badge (Outbound/Return) */
    .badge-simple { font-size: 0.7rem; font-weight: 800; padding: 3px 6px; border-radius: 4px; text-transform: uppercase; display: inline-block; margin-bottom: 5px; }
    .badge-out { background: #e0f2f1; color: #00695c; border: 1px solid #00695c; }
    .badge-ret { background: #fff3e0; color: #e65100; border: 1px solid #e65100; }

    /* Time & Route */
    .time-big { font-size: 1.2rem; font-weight: 800; color: #333; }
    .code-small { font-size: 0.9rem; color: #777; font-weight: 600; }
    .route-center { text-align: center; flex: 1; padding: 0 15px; }
    .line-visual { height: 2px; background: #ddd; width: 100%; position: relative; margin: 5px 0; }
    .plane-icon { position: absolute; top: -8px; left: 45%; background: #fff; color: #999; padding: 0 5px; font-size: 12px; }

    /* Footer (Price & Button) */
    .card-footer-simple {
        background: #f9f9f9;
        padding: 15px 20px;
        border-top: 1px solid #eee;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
    }
    .total-price { font-size: 1.5rem; font-weight: 800; color: #0b3d2e; }
    .select-btn {
        background: #dba11c; color: #000; border: none;
        padding: 10px 25px; border-radius: 6px; font-weight: 700; cursor: pointer;
    }
    .select-btn:hover { background: #bfa11c; }

    /* --- 3. AUTOCOMPLETE LIST (Fixed) --- */
    .suggestions-list {
        position: absolute; background: white; width: 100%; z-index: 999;
        list-style: none; padding: 0; margin: 0; border: 1px solid #ddd;
        max-height: 200px; overflow-y: auto; display: none;
    }
    .suggestions-list li { padding: 10px; cursor: pointer; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; }
    .suggestions-list li:hover { background: #f0f0f0; }
    /* --- 1. RESULTS SECTION --- */
    #flight-results-section { display: none; padding: 50px 0; background: #f8f9fa; }
    
    /* --- 2. PREMIUM CARD CONTAINER --- */
    .flight-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: 16px; /* Smooth Corners */
        box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Soft Shadow */
        margin-bottom: 25px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        overflow: hidden;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }
    .flight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        border-color: #dba11c; /* Gold Border on Hover */
    }

    /* --- 3. HEADER (Airline Name) --- */
    .card-header-simple {
        background: #fff;
        padding: 15px 25px;
        border-bottom: 1px solid #f0f0f0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .airline-brand { 
        display: flex; align-items: center; gap: 12px; 
        font-weight: 700; color: #0b3d2e; font-size: 1.1rem; 
    }
    .airline-brand img { width: 40px; height: 40px; object-fit: contain; }
    .trip-tag { 
        background: #f0f0f0; color: #666; padding: 4px 10px; 
        border-radius: 20px; font-size: 0.75rem; font-weight: 600; 
    }

    /* --- 4. FLIGHT ROW (Jana / Aana) --- */
    .card-body-simple { padding: 5px 25px 20px; }

    .flight-row-simple {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        border-bottom: 1px dashed #e0e0e0;
    }
    .flight-row-simple:last-of-type { border-bottom: none; } /* Last row no border */

    /* Badges (Outbound/Return) */
    .badge-simple { 
        font-size: 0.7rem; font-weight: 800; padding: 4px 8px; 
        border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px;
        display: inline-block; margin-bottom: 5px;
    }
    .badge-out { background: #e8f5e9; color: #0b3d2e; } /* Green Light */
    .badge-ret { background: #fff3e0; color: #e65100; } /* Orange Light */

    /* Times & Visuals */
    .time-group { text-align: center; min-width: 90px; }
    .time-txt { font-size: 1.4rem; font-weight: 800; color: #333; line-height: 1; }
    .code-txt { font-size: 0.9rem; color: #888; font-weight: 600; margin-top: 4px; }
    
    .route-visual { 
        flex: 1; text-align: center; padding: 0 30px; position: relative; 
        display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .dur-txt { font-size: 0.8rem; color: #999; font-weight: 500; margin-bottom: 5px; }
    .line-visual { 
        height: 2px; background: #e0e0e0; width: 100%; position: relative; 
    }
    .plane-icon { 
        position: absolute; top: -10px; left: 50%; transform: translateX(-50%); 
        background: #fff; padding: 0 8px; color: #ccc; font-size: 14px; 
    }
    .stops-txt { font-size: 0.8rem; font-weight: 700; margin-top: 5px; }

    /* --- 5. FOOTER (Price & Button) --- */
    .card-footer-simple {
        background: #fcfcfc;
        padding: 15px 25px;
        border-top: 1px solid #eee;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 20px;
    }
    .total-price { font-size: 1.8rem; font-weight: 800; color: #0b3d2e; }
    .select-btn {
        background: #0b3d2e; color: white; border: none;
        padding: 12px 35px; border-radius: 50px; font-weight: 700; cursor: pointer;
        transition: 0.3s; box-shadow: 0 4px 10px rgba(11, 61, 46, 0.3);
    }
    .select-btn:hover { background: #dba11c; color: #000; transform: translateY(-2px); }
/* --- RESPONSIVE MEDIA QUERY --- */
/* Ye code tab chalega jab screen size 768px ya us se kam hoga (Mobile/Tablet) */

@media screen and (max-width: 768px) {
    
    /* 1. Hero Section ki height auto karein taake content cut na ho */
    .hero {
        height: auto !important;    
        min-height: 100vh;          /* Screen cover kare, magar fix na ho */
        padding-bottom: 50px;       /* Neechay thori jagah */
    }

    /* 2. Booking Widget (White Box) ko content ke hisaab se barhnay dein */
    .booking-widget {
        height: auto !important;    /* 🔥 Fixed height (900px) khatam karein */
        padding: 20px 20px 40px 20px; /* Neechay extra padding dein taake button na katay */
        margin-bottom: 50px;        /* WhatsApp button ke liye jagah */
    }

    /* 3. Inputs ke darmian gap */
    .form-group {
        margin-bottom: 15px;        /* Har input ke baad gap */
        width: 100%;                /* Full width */
    }
    /* --- MOBILE FLIGHT CARD STYLING --- */
@media screen and (max-width: 768px) {

    /* 1. Card Container Grid Fix */
    .flight-results-grid {
        width: 100% !important;
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* 2. Main Card Layout (Row -> Column) */
    .flight-card {
        flex-direction: column;      /* Elements upar-neechay aa jayenge */
        padding: 20px;
        gap: 20px;                   /* Beech mein gap */
        text-align: center;          /* Text center alignment */
        width: 100%;
    }

    /* 3. Airline Info (Logo + Name) */
    .airline-info {
        width: 100%;
        flex-direction: row;         /* Logo aur Name side-by-side hi rahen */
        justify-content: flex-start; /* Left align (ya center bhi kar sakte hain) */
        align-items: center;
        border-bottom: 1px dashed #eee; /* Neechay line taake separation ho */
        padding-bottom: 15px;
    }

    /* 4. Route Info (Time & Duration) */
    .route-info {
        width: 100%;
        flex-direction: row;         /* Time abhi bhi aik line me acha lagega */
        justify-content: space-between; /* Phail jaye */
        gap: 10px;
        margin: 10px 0;
    }

    /* Duration Line Adjustment */
    .duration-line {
        width: 60px;                 /* Line thori choti karein mobile k liye */
    }
    .duration-line small {
        font-size: 0.7rem;           /* Text thora chota */
    }

    /* Time Text Adjustment */
    .route-time h4 {
        font-size: 1.1rem;           /* Time thora chota karein */
    }

    /* 5. Price & Button Section */
    .price-action {
        width: 100%;
        text-align: center;
        border-top: 1px dashed #eee; /* Upar line separation ke liye */
        padding-top: 15px;
        display: flex;
        flex-direction: column;      /* Price upar, Button neechay */
        gap: 15px;
    }

    /* Price Tag Styling */
    .price-tag-large, .total-price {
        font-size: 1.8rem;
        display: block;
        margin-bottom: 5px;
    }

    /* 6. Button Full Width (Easy to Tap) */
    .select-btn, .btn-fill {
        width: 100%;                 /* Pori width lega */
        padding: 15px;               /* Finger tap ke liye easy */
        font-size: 1rem;
    }
}
}