/* --- BRANADED BASIC & COLOR SETUP --- */
* {
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-saffron: #FF6F00; 
    --secondary-gold: #FFD54F; 
    --dark-maroon: #4A0000; 
    --light-cream: #FFFDE7; 
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}
/* सिर्फ मोबाइल स्क्रीन के लिए कॉलेप्स का सही व्यवहार */
@media (max-width: 991.98px) {
    .navbar-collapse.collapse:not(.show) {
        display: none !important; /* जब तक 'show' क्लास न हो, तब तक छुपा रहे */
    }
}



.custom-toggler {
    border-color: var(--primary-saffron) !important;
}/* --- PREMIUM RE-DESIGNED HERO SECTION STYLES --- */
.hero-section {
    height: 90vh; /* बढ़िया और बड़ी विज़िबिलिटी */
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #0b0101;
}

.slider-img {
    object-fit: cover;
    object-position: center;
}

/* Luxury Multi-layer Overlay */
.hero-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(26, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(26, 0, 0, 0.8) 100%);
    z-index: 1;
}

.z-index-top {
    z-index: 2;
}

/* Glassmorphism Effect for better contrast */
.hero-glass-card {
    background: rgba(43, 1, 1, 0.45); /* हल्का मरून शेड */
    border: 1px solid rgba(255, 213, 79, 0.15);
    
    -webkit-backdrop-filter: blur(8px);
}

/* Radhe Radhe Tag Styling */
.sub-title-radhe {
    color: #ffd54f !important;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Custom Title Optimization */
.main-title-custom {
    font-size: calc(1.8rem + 1.5vw); /* Responsive Font Size */
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.tagline-premium {
    font-size: 17px !important;
    font-weight: 400;
    color: #f5f5f5 !important;
}

/* Premium Buttons Styling */
.btn-premium-saffron {
    background-color: #ff6f00 !important;
    color: #fff !important;
    border: none !important;
    transition: 0.3s ease-in-out;
}

.btn-premium-saffron:hover {
    background-color: #b30000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 111, 0, 0.4) !important;
}

.btn-premium-outline-gold {
    border: 1.5px solid #ffd54f !important;
    background: transparent !important;
    transition: 0.3s;
}

.btn-premium-outline-gold:hover {
    background-color: #ffd54f !important;
    color: #2b0101 !important;
    transform: translateY(-2px);
}

/* Modern Bottom Pills Navigation */
.quick-tabs-premium {
    z-index: 3;
}

.tab-pill-item {
    background: rgba(255, 255, 255, 0.95);
    color: #4a0000;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-block;
    border: 1px solid rgba(255, 213, 79, 0.4);
    transition: 0.3s;
}

.tab-pill-item:hover {
    background: #ff6f00;
    color: #fff;
    transform: translateY(-3px);
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .hero-glass-card {
        padding: 25px 15px !important;
        background: rgba(43, 1, 1, 0.6); /* मोबाइल पर थोड़ा और डार्क ताकि साफ़ दिखे */
    }
    .main-title-custom {
        font-size: 24px !important;
    }
    .tagline-premium {
        font-size: 14px !important;
    }
}
/* --- CUSTOM HERO SLIDER ARROWS & DOTS --- */
.custom-slider-arrow {
    background-color: rgba(74, 0, 0, 0.6); /* हल्का मरून ट्रांसपेरेंट बैकग्राउंड */
    padding: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255, 213, 79, 0.3);
    transition: 0.3s ease;
}

.carousel-control-prev:hover .custom-slider-arrow,
.carousel-control-next:hover .custom-slider-arrow {
    background-color: #ff6f00; /* होवर करने पर केसरिया रंग */
    transform: scale(1.1);
}

/* डॉट्स का स्टाइल (इंडीकेटर्स) */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ffd54f; /* गोल्डन डॉट्स */
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: #ff6f00; /* एक्टिव होने पर केसरिया */
    width: 25px; /* थोड़ा लंबा इफ़ेक्ट */
    border-radius: 10px;
}

/* Floating Quick access tabs on big devices */
.quick-tabs {
    position: absolute;
    bottom: 30px;
    background: rgba(255, 253, 231, 0.95);
    padding: 8px 18px;
    border-radius: 50px;
    gap: 15px;
    border: 2px solid var(--secondary-gold);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.tab-item {
    color: var(--dark-maroon);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
}

.tab-item i {
    color: var(--primary-saffron);
}

/* --- 3. ATTRACTIONS SECTION STYLES (COMPACT GRID) --- */
.attractions-section {
    background-color: var(--light-cream);
}

.section-sub {
    color: var(--primary-saffron);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
}

.section-title {
    font-family: 'Yatra One', cursive;
    color: var(--dark-maroon);
    font-size: 30px;
}

.title-divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-saffron);
}

/* Filter Tab Buttons */
.filter-btn {
    background-color: var(--white);
    border: 1.5px solid var(--primary-saffron);
    color: var(--dark-maroon);
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    transition: 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-saffron);
    color: var(--white);
    box-shadow: 0 3px 8px rgba(255, 111, 0, 0.2);
}

.max-grid-width {
    max-width: 1340px;
}

/* Compact Card Styles */
.b-card {
    border: none !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-saffron) !important;
    transition: 0.3s ease;
}

.b-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(74, 0, 0, 0.12);
}

.sant-border {
    border-bottom: 3px solid #d84315 !important;
}

.card-img-box {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Badges */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
}

.mandir-badge { background-color: var(--primary-saffron); }
.sant-badge { background-color: #d84315; border: 1px solid var(--secondary-gold); }

/* Card Content Adjustments */
.card-title {
    font-size: 16px;
    color: var(--dark-maroon);
}

.loc-text {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.loc-text i {
    color: var(--primary-saffron);
}

.small-desc {
    font-size: 12.5px;
    line-height: 1.5;
}

.card-btn {
    background-color: transparent !important;
    color: var(--primary-saffron) !important;
    border: 1.5px solid var(--primary-saffron) !important;
    font-weight: 600;
    font-size: 13px;
    padding: 5px 10px !important;
    width: 100%;
}

.card-btn:hover {
    background-color: var(--primary-saffron) !important;
    color: var(--white) !important;
}

/* Mobile Adjustments for Hero Top Margin */
@media screen and (max-width: 991px) {
    .hero-section {
        padding-top: 130px; /* Pushes content down on mobile flawlessly */
    }
}
/* --- 4. FAMOUS BRADAJ FOOD SECTION STYLES --- */
.food-section {
    background-color: #ffffff; /* मंदिर सेक्शन पीले बैकग्राउंड पर था, इसलिए इसे सफेद रखा है ताकि वैरायटी दिखे */
    padding: 70px 4%;
}

.text-maroon {
    color: var(--dark-maroon);
}

/* Food Cards Styles */
.food-card {
    border: 1px solid rgba(255, 111, 0, 0.15) !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    transition: 0.3s ease-in-out;
}

.food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(255, 111, 0, 0.12);
    border-color: var(--primary-saffron) !important;
}

.food-img-box {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.food-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.food-card:hover .food-img-box img {
    transform: scale(1.1);
}

/* Food Tag Style */
.food-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(7A, 0, 0, 0.85); /* डार्क मरून पारदर्शी */
    color: var(--secondary-gold);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid var(--secondary-gold);
    letter-spacing: 0.5px;
}

/* Extra Info / Places details at bottom of card */
.food-meta {
    background-color: var(--light-cream);
    color: var(--dark-maroon);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 6px;
    margin-top: 12px;
    display: inline-block;
    border: 1px dashed var(--primary-saffron);
}

/* --- 5. MAIN TOUR PACKAGES SECTION STYLES --- */
.packages-section {
    background-color: var(--light-cream); /* हल्का पीला धार्मिक बैकग्राउंड */
    padding: 70px 4%;
}

.bg-saffron {
    background-color: var(--primary-saffron) !important;
}

.text-saffron {
    color: var(--primary-saffron) !important;
}

/* Package Card Base */
.pkg-card {
    border: none !important;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    background-color: var(--white);
    transition: 0.3s ease-in-out;
    position: relative;
}

/* बीच वाले 'लोकप्रिय' कार्ड को थोड़ा बड़ा और आकर्षक दिखाना */
.featured-pkg {
    border: 2px solid var(--primary-saffron) !important;
    transform: scale(1.02);
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 0, 0, 0.12);
}

.pkg-img-box {
    position: relative;
    height: 200px;
}

.pkg-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Duration tag style */
.pkg-duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--dark-maroon);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

/* Best Seller Ribbon */
.ribbon {
    position: absolute;
    top: 15px;
    right: -10px;
    background-color: #d32f2f;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 15px;
    transform: rotate(0deg);
    border-radius: 4px 0 0 4px;
    box-shadow: -2px 2px 5px rgba(0,0,0,0.2);
}

/* Features checklist styles */
.pkg-features li {
    font-size: 13.5px;
    color: #444;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-features li i {
    font-size: 14px;
}

/* Price block */
.pkg-price-box {
    background-color: #fafafa;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
}

.price-label {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
}

.price-amount {
    font-weight: 700;
    color: var(--dark-maroon);
    margin: 0;
}

/* Buttons */
.pkg-btn {
    background-color: transparent !important;
    color: var(--primary-saffron) !important;
    border: 2px solid var(--primary-saffron) !important;
    font-weight: 700;
    border-radius: 6px !important;
    padding: 8px 20px !important;
    transition: 0.3s;
}

.pkg-btn:hover {
    background-color: var(--primary-saffron) !important;
    color: var(--white) !important;
}

.pkg-btn-active {
    background-color: var(--primary-saffron) !important;
    color: var(--white) !important;
    font-weight: 700;
    border-radius: 6px !important;
    padding: 8px 20px !important;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.3);
}

.pkg-btn-active:hover {
    background-color: var(--dark-maroon) !important;
    color: var(--white) !important;
}

/* Mobile responsive fixes */
@media screen and (max-width: 767px) {
    .featured-pkg {
        transform: scale(1); /* मोबाइल पर ओवर-लैपिंग रोकने के लिए नॉर्मल साइज */
    }
}

/* --- 5. ULTRA PREMIUM FILTERABLE PACKAGES STYLES --- */
.packages-section {
    background-color: var(--light-cream);
    padding: 60px 4%;
}

/* Filter Buttons Layout */
.pkg-filter-btn {
    background-color: var(--white);
    border: 1.5px solid var(--primary-saffron);
    color: var(--dark-maroon);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    transition: 0.3s;
}

.pkg-filter-btn:hover, .pkg-filter-btn.active {
    background-color: var(--primary-saffron);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.15);
}

/* Compact Premium Card Setup */
.pkg-card {
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    background-color: var(--white);
    transition: 0.3s ease;
}

.pkg-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 0, 0, 0.12);
}

.featured-pkg {
    border: 2px solid var(--primary-saffron) !important;
}

.pkg-img-box {
    position: relative;
    height: 140px;
}

.pkg-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.duration-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--dark-maroon);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.dest-text {
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

/* Buttons inside card */
.btn-view, .btn-enq {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 0 !important;
    border-radius: 4px !important;
}

.btn-view {
    border: 1px solid #ccc !important;
    background-color: #fafafa !important;
    color: #444 !important;
}

.btn-view:hover {
    background-color: #eee !important;
}

.btn-enq {
    border: 1px solid var(--primary-saffron) !important;
    background-color: transparent !important;
    color: var(--primary-saffron) !important;
}

.btn-enq:hover {
    background-color: var(--primary-saffron) !important;
    color: var(--white) !important;
}

.btn-enq-active {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 0 !important;
    border-radius: 4px !important;
    background-color: var(--primary-saffron) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary-saffron) !important;
}

.btn-enq-active:hover {
    background-color: var(--dark-maroon) !important;
}

/* Modal Popup Custom Styling */
.custom-modal {
    border-top: 5px solid var(--primary-saffron) !important;
    border-radius: 12px !important;
}
/* --- 6. PREMIUM BOOKING FORM STYLES --- */
.booking-section {
    background: linear-gradient(rgba(74, 0, 0, 0.9), rgba(74, 0, 0, 0.92)), url('https://images.unsplash.com/photo-1598977123418-45f04b616a0e?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 60px 4%;
}

.font-yatra {
    font-family: 'Yatra One', cursive;
}

.text-light-white {
    color: #e0e0e0;
}

.trust-box {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 213, 79, 0.2);
    padding: 15px 10px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.trust-box:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-gold);
}

.trust-box h6 {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 600;
}

/* Card Form Styles */
.form-card {
    background-color: var(--white);
    border-radius: 12px !important;
}

.custom-input {
    border: 1.5px solid #ddd !important;
    font-size: 13.5px !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
}

.custom-input:focus {
    border-color: var(--primary-saffron) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 111, 0, 0.15) !important;
}

.btn-submit-form {
    background-color: var(--primary-saffron) !important;
    border: none !important;
    font-size: 15px;
    transition: 0.3s;
}

.btn-submit-form:hover {
    background-color: var(--dark-maroon) !important;
    box-shadow: 0 4px 12px rgba(255, 111, 0, 0.3);
}

/* --- 7. MAIN FOOTER STYLES --- */
.main-footer {
    background-color: #1a0000; /* एकदम गहरा ब्लैक-मरून */
    border-top: 4px solid var(--secondary-gold);
}

.text-muted-white {
    color: #cccccc;
    font-size: 13px;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

/* Social Media Icons Styling */
.social-icons a {
    width: 34px;
    height: 34px;
    background-color: rgba(255,255,255,0.06);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.social-icons a:hover {
    background-color: var(--primary-saffron);
    color: var(--white);
}
/* --- SEO CONTENT BLOCKS GLOBAL STYLES --- */
.seo-content-block {
    background-color: #ffffff;
    border-left: 4px solid var(--primary-saffron);
    padding: 30px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.seo-content-block p {
    font-size: 14.5px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

.seo-content-block em {
    color: var(--dark-maroon);
    font-weight: 600;
    font-style: normal;
}

.seo-content-block strong {
    color: var(--primary-saffron);
    font-weight: 700;
}

/* मोबाइल रिस्पॉन्सिव स्पेसिंग */
@media screen and (max-width: 767px) {
    .seo-content-block {
        padding: 20px 15px;
        margin-left: 10px;
        margin-right: 10px;
    }
}
/* --- 5.1 WHY CHOOSE US & TIMELINE --- */
.why-choose-section {
    padding: 50px 4%;
}

.badge-experience {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--dark-maroon);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.2;
}

.custom-check-list li {
    font-size: 14px;
    margin-bottom: 12px;
    color: #444;
}

/* --- 5.2 TESTIMONIALS STYLES --- */
.review-card {
    border-radius: 12px !important;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important;
}

.b-featured-review {
    border-top: 4px solid var(--primary-saffron) !important;
}

.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* --- 5.3 BOOTSTRAP ACCORDION FAQ STYLES --- */
.accordion-button:not(.collapsed) {
    background-color: rgba(255, 111, 0, 0.05) !important;
    color: var(--primary-saffron) !important;
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(255, 111, 0, 0.2) !important;
}

.float-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    display: flex !important; /* इसे पक्का करें */
    align-items: center !important;
    justify-content: center !important;
    /* बाकी कोड वही रहेगा */
}

/* बटन का मुख्य कंटेनर */
.float-action-menu {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* बटन का कॉमन स्टाइल */
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

/* कॉल बटन का कलर */
.call-btn {
    background-color: #007bff; /* नीला */
}
.call-btn:hover { background-color: #0056b3; color: #fff; transform: scale(1.1); }

/* व्हाट्सएप बटन का कलर */
.whatsapp-btn {
    background-color: #25d366; /* हरा */
}
.whatsapp-btn:hover { background-color: #128c7e; color: #fff; transform: scale(1.1); }

/* मोबाइल के लिए थोड़ा छोटा साइज */
@media (max-width: 600px) {
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .float-action-menu {
        bottom: 20px;
        right: 20px;
    }
}

.main-site-header {
    z-index: 1060 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Layer 1: Top Contact Bar */
.top-black-bar {
    background-color: #0b0c10 !important;
    font-size: 0.82rem;
}
.social-icon-link {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.75rem;
}

/* Layer 2: Middle Orange Bar */
.middle-orange-bar {
    background-color: #FF7A00 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.middle-orange-bar .logo-text {
    font-weight: 800;
    font-size: 1.15rem;
    color: #4A1100 !important;
    text-decoration: none;
    white-space: nowrap;
}

/* Search Box Rounded */
.header-search-box {
    width: 100%;
    max-width: 400px;
}
.main-search-group {
    background-color: #ffffff;
    border-radius: 50px !important;
    padding: 0.15rem 0.6rem;
    overflow: hidden;
}

/* Utility Pills */
.orange-support-pill {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    color: #ffffff !important;
}
.orange-login-btn, .mobile-menu-toggle-btn {
    color: #ffffff !important;
}
.mobile-menu-toggle-btn {
    color: #4A1100 !important;
}
.drawer-flag-box {
    padding: 3px 6px !important;
}
.flag-img {
    width: 20px;
    height: auto;
    display: block;
}

/* Layer 3: Bottom Menu Navigation Strip */
.bottom-cream-bar {
    background-color: #FAF7E6 !important;
    border-bottom: 2px solid #FF7A00;
}
.bottom-cream-bar .nav-link {
    color: #4A1100 !important;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.bottom-cream-bar .nav-link.active,
.bottom-cream-bar .nav-link:hover {
    color: #FF7A00 !important;
}

/* Header Action Buttons */
.live-btn {
    background-color: #D32F2F !important;
    color: #fff !important;
    font-weight: bold;
    border-radius: 20px !important;
    padding: 0.35rem 1rem !important;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.live-btn .dot {
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    animation: liveBlink 1.4s infinite;
}
.book-btn {
    background-color: #FFD54F !important;
    color: #4A1100 !important;
    font-weight: bold;
    border: 2px solid #FF7A00 !important;
    border-radius: 8px !important;
    padding: 0.35rem 1rem !important;
}

/* ==========================================================================
   CSS HOVER & DROPDOWN MANAGEMENT (NO JAVASCRIPT REQUIRED)
   ========================================================================== */
.mega-dropdown-static {
    position: static !important;
}

/* डेस्कटॉप स्क्रीन पर माउस ले जाते ही स्मूथली ओपन होगा */
@media (min-width: 992px) {
    .main-nav-links-list .dropdown:hover .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .navbar-nav .mega-menu-box {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        z-index: 1050;
        margin-top: 0px;
        border-radius: 0 0 12px 12px !important;
        background-color: #fff;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }
}

/* लिंक्स ग्रिड होवर डिज़ाइन */
.mega-links-grid li {
    margin-bottom: 6px;
}
.mega-links-grid li a {
    display: block;
    padding: 6px 12px;
    color: #333 !important;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.mega-links-grid li a:hover {
    background-color: #FFF3E5 !important;
    color: #FF7A00 !important;
    padding-left: 16px;
}
.small-arrow {
    font-size: 0.7rem;
    color: #ccc;
}
.mega-links-grid li a:hover .small-arrow {
    color: #FF7A00;
}

/* Mobile Sidebar Drawer Layout Custom Styles */
.mobile-sidebar-drawer {
    background-color: #FAF7E6 !important;
    width: 280px !important;
}
.mobile-drawer-search {
    border: 1px solid rgba(74, 17, 0, 0.15) !important;
}
.mobile-drawer-links .nav-link {
    color: #4A1100 !important;
    font-weight: 700;
    padding: 0.8rem 1rem !important;
    border-bottom: 1px solid rgba(74, 17, 0, 0.05);
}
.mobile-drawer-links .nav-link.active,
.mobile-drawer-links .nav-link:hover {
    background-color: rgba(255, 122, 0, 0.08);
    color: #FF7A00 !important;
    border-left: 4px solid #FF7A00;
}

@keyframes liveBlink {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* LAYOUT RESPONSIVE & BODY OVERFLOW MANAGER */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

header.main-site-header + *,
.main-banner-section, 
.hero-slider, 
section:first-of-type {
    margin-top: 155px !important;
}

@media (max-width: 991.98px) {
    header.main-site-header + *,
    .main-banner-section, 
    .hero-slider, 
    section:first-of-type {
        margin-top: 65px !important;
    }
    .middle-orange-bar .logo-text {
        font-size: 1.05rem;
    }
    .mobile-sidebar-drawer {
        top: 65px !important;
        height: calc(100vh - 65px) !important;
        z-index: 1045 !important;
    }
    .offcanvas-backdrop {
        top: 65px !important;
        z-index: 1040 !important;
    }
}

@media (max-width: 575.98px) {
    header.main-site-header + *,
    .main-banner-section, 
    .hero-slider, 
    section:first-of-type {
        margin-top: -14px !important;
    }
    .mobile-sidebar-drawer {
        top: 58px !important;
        height: calc(100vh - 58px) !important;
    }
    .offcanvas-backdrop {
        top: 58px !important;
    }
}
/* ==========================================================================
   ADDITIONAL RESPONSIVE FIXES FOR THE NAV BAR LINKS
   ========================================================================== */
.bottom-cream-bar .nav-link {
    font-size: 0.88rem !important; /* फॉन्ट साइज थोड़ा छोटा किया ताकि सारे लिंक्स एक लाइन में आएं */
    white-space: nowrap !important;
}

@media (min-width: 1200px) {
    .bottom-cream-bar .nav-link {
        font-size: 0.95rem !important; /* बड़ी स्क्रीन पर वापस नॉर्मल साइज */
    }
}

.bottom-cream-bar .container-fluid {
    max-width: 100% !important;
}
.gap-4 {
    gap: .7rem !important;
}



.audio-floating-box {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 6px 12px 6px 6px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid #D32F2F; /* Starting with Red as it aims to play automatically */
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-circle-btn {
    width: 45px;
    height: 45px;
    background: #D32F2F;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

.audio-toast {
    font-size: 0.85rem;
    font-weight: 700;
    color: #4A1100;
    white-space: nowrap;
    padding-right: 5px;
}

/* Dynamic Music Waves */
.audio-wave-bars {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    width: 18px;
    height: 18px;
    margin-left: 8px;
}
.audio-wave-bars .bar {
    width: 3px;
    height: 100%;
    background-color: #D32F2F;
    border-radius: 2px;
    transform-origin: bottom;
}

/* Playing State Styles */
.audio-box-playing {
    border-color: #D32F2F;
    animation: floatingPulse 2s infinite;
}
.audio-box-playing .bar:nth-child(1) { animation: waveBlink 1.2s ease-in-out infinite alternate; }
.audio-box-playing .bar:nth-child(2) { animation: waveBlink 0.8s ease-in-out infinite alternate 0.2s; }
.audio-box-playing .bar:nth-child(3) { animation: waveBlink 1.0s ease-in-out infinite alternate 0.4s; }

/* Muted/Paused State Styles */
.audio-box-muted {
    border-color: #FF7A00 !important;
}
.audio-box-muted .audio-circle-btn {
    background: #FF7A00 !important;
}
.audio-box-muted .audio-wave-bars .bar {
    animation: none !important;
    transform: scaleY(0.3);
}

@keyframes waveBlink {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}
@keyframes floatingPulse {
    0% { box-shadow: 0 8px 24px rgba(211, 47, 47, 0.2); }
    50% { box-shadow: 0 8px 30px rgba(211, 47, 47, 0.4); transform: translateY(-3px); }
    100% { box-shadow: 0 8px 24px rgba(211, 47, 47, 0.2); }
}


/* --- Google Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-color: #0c2340;   /* गहरा राजशाही ब्लू (Header/Footer/Titles) */
    --accent-color: #ff9933;    /* पावन केसरिया/ऑरेंज (Buttons/Highlights) */
    --gold-color: #d4af37;      /* एलीट गोल्ड */
    --bg-light: #f9f9f9;        /* हल्का बैकग्राउंड */
    --text-main: #333333;       /* डार्क टेक्स्ट */
    --card-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f6f9;
    color: var(--text-main);
    line-height: 1.6;
}

/* --- Main Layout Grid --- */
.tour-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    gap: 30px;
    flex-direction: row-reverse; /* Left साइड में छोटा साइडबार, Right में डिटेल्स */
}

/* --- LEFT SIDEBAR (Sticky) --- */
.left-sidebar {
    flex: 1;
    position: sticky;
    top: 20px; /* स्क्रॉल करने पर टॉप पर टिक जाएगा */
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border-top: 4px solid var(--primary-color);
}

.sidebar-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Trip Info Specific */
.trip-info-card {
    border-top-color: var(--gold-color);
}
.trip-info-card ul {
    list-style: none;
}
.trip-info-card ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    border-bottom: 1px dashed #eee;
    padding-bottom: 5px;
}

/* Booking Form Elements */
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #555;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    font-size: 0.95rem;
}
.form-group input:focus {
    border-color: var(--accent-color);
}
.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}
.btn-submit:hover {
    background: #e08528;
}

/* Support Box Hooks */
.support-link {
    display: block;
    text-align: center;
    background: #f1f5f9;
    color: var(--primary-color);
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: 0.3s;
}
.support-link.whatsapp {
    background: #25D366;
    color: #fff;
}
.support-link:hover {
    opacity: 0.9;
}

/* --- RIGHT MAIN CONTENT --- */
.main-content {
    flex: 2.5;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tour-header {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}
.badge {
    background: var(--accent-color);
    color: #fff;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 20px;
    text-transform: uppercase;
}
.tour-header h1 {
    color: var(--primary-color);
    margin: 10px 0;
    font-size: 2.2rem;
}
.tour-subtitle {
    color: #666;
    font-size: 1rem;
}

/* Universal Section Styles */
.detail-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}
.detail-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Timeline (Itinerary) Styling */
.timeline {
    position: relative;
    border-left: 3px solid #e2e8f0;
    padding-left: 20px;
    margin-left: 10px;
}
.timeline-item {
    position: relative;
    margin-bottom: 25px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -27px;
    top: 5px;
    background: var(--accent-color);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}
.time {
    font-weight: bold;
    color: var(--accent-color);
    font-size: 0.9rem;
}
.content h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 2px 0 5px 0;
}

/* Inclusions & Exclusions Split Box */
.inc-exc-grid {
    display: flex;
    gap: 20px;
}
.inc-box, .exc-box {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
}
.inc-box { background: #f0fdf4; border: 1px solid #bbf7d0; }
.exc-box { background: #fef2f2; border: 1px solid #fecaca; }
.inc-box h4 { color: #166534; margin-bottom: 15px;}
.exc-box h4 { color: #991b1b; margin-bottom: 15px;}
.inc-exc-grid ul { list-style: none; }
.inc-exc-grid ul li { margin-bottom: 10px; font-size: 0.95rem; }

/* Note Section Styling */
.note-section {
    background: #fffbeb;
    border-left: 5px solid #f59e0b;
}
.note-section ul { padding-left: 20px; }
.note-section li { margin-bottom: 8px; }

/* Photo Gallery Grid */
.gallery-grid {
    display: flex;
    gap: 15px;
}
.gallery-item {
    flex: 1;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.gallery-item img:hover {
    transform: scale(1.08);
}

/* Review Cards Grid */
.reviews-grid {
    display: flex;
    gap: 20px;
}
.review-card {
    flex: 1;
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.stars { color: #f59e0b; margin-bottom: 10px; }
.review-card h5 { margin-top: 10px; color: #555; }

/* FAQ Accordion Layout */
.accordion-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}
.accordion-header {
    background: #f8fafc;
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-body {
    padding: 15px;
    background: #fff;
    display: none; /* JS से ओपन होगा */
    border-top: 1px solid #e2e8f0;
}

/* Explore More Buttons */
.more-options-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.opt-btn {
    padding: 12px 20px;
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}
.opt-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* --- Responsive Design (Mobile Screen Support) --- */
@media (max-width: 768px) {
    .tour-container {
        flex-direction: column; /* मोबाइल पर सब एक के नीचे एक आ जाएगा */
    }
    .left-sidebar {
        position: relative;
        top: 0;
    }
    .inc-exc-grid, .gallery-grid, .reviews-grid {
        flex-direction: column;
    }
}
/* --- Inner Page Header Styling --- */
.inner-page-header {
    width: 100%;
    min-height: 400px;
    /* बैकग्राउंड में एक हल्का स्पिरिचुअल टेक्सचर या ब्लर इमेज */
    background: url('84bgm.webp') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

/* डार्क ओवरले ताकि टेक्स्ट एकदम साफ और उभर कर दिखे */
.header-overlay {
    width: 100%;
    min-height: 720px;
    background: linear-gradient(135deg, rgba(12, 35, 64, 0.95) 40%, rgba(12, 35, 64, 0.75) 100%);
    display: flex;
    align-items: center;
    padding: 40px 0;
}

/* कंटेंट रैपर जो ग्रिड लेआउट बनाएगा */
.header-content-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    align-items: center;
    gap: 40px;
}

/* --- Left Side: Text Styling --- */
.header-text-side {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.inner-badge {
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.inner-badge.animate-badge {
    background: #ff9933; /* केसरिया ऑरेंज */
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(255, 153, 51, 0.4);
}

.inner-badge.price-badge {
    background: rgba(212, 175, 55, 0.2); /* हल्का गोल्ड ट्रांसपेरेंट */
    color: #d4af37; /* प्रीमियम गोल्ड */
    border: 1px solid #d4af37;
}

.inner-tour-title {
    font-size: 2.6rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.inner-tour-tagline {
    font-size: 1.1rem;
    color: #e2e8f0;
    font-weight: 300;
    max-width: 90%;
}

/* क्विक मेटा डिटेल्स इन्फो */
.tour-quick-meta {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.meta-item {
    color: #ffffff;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: #ff9933; /* आइकॉन्स का कलर केसरिया */
}

/* --- Right Side: Image Frame Styling --- */
.header-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 260px;
    border-radius: 15px;
    padding: 8px;
    background: linear-gradient(135deg, #d4af37, #ff9933); /* गोल्ड और ऑरेंज बॉर्डर फ्रेम */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.05); /* होवर करने पर इमेज हल्की सी ज़ूम होगी */
}

/* इमेज के ऊपर छोटा सा सात्विक कैप्शन */
.frame-caption {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(12, 35, 64, 0.85);
    color: #d4af37;
    padding: 4px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid #d4af37;
    white-space: nowrap;
}

/* --- Responsive Layout (Mobile Friendly) --- */
@media (max-width: 992px) {
    .header-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .inner-tour-title {
        font-size: 2rem;
    }
    .badge-container, .tour-quick-meta {
        justify-content: center;
    }
    .inner-tour-tagline {
        max-width: 100%;
    }
    .image-frame {
        height: 220px;
    }
}