/* =================================================================== */
/* 1. Bootstrap Variable Overrides & Global Styles
/* =================================================================== */
:root {
    /* आपके कस्टम कलर्स */
    --tt-primary: #10B981;
    --tt-primary-hover: #059669;
    --tt-secondary: #ff9800;
    --tt-text-dark: #1F2937;
    --tt-text-light: #4B5563;
    --tt-bg-light: #f8f9fa;
    --tt-border-color: #e5e7eb;
    --font-main: 'Noto Sans', sans-serif;

    /* Bootstrap वेरिएबल्स को आपके कलर्स से ओवरराइड करना */
    --bs-primary: var(--tt-primary);
    --bs-primary-rgb: 16, 185, 129;
    --bs-body-color: var(--tt-text-dark);
    --bs-body-font-family: var(--font-main);
    --bs-light: var(--tt-bg-light);
    --bs-light-rgb: 248, 249, 250;
    --bs-border-color: var(--tt-border-color);
}

html { scroll-behavior: smooth; }
body { background-color: var(--bs-light); overflow-x: hidden; }

/* =================================================================== */
/* 2. Reusable Components (Cards, Buttons, Tags)
/* =================================================================== */
.service-card { display: flex; flex-direction: column; height: 250px; padding: 1.5rem; background-color: white; border: 1px solid var(--bs-border-color); border-radius: 12px; text-decoration: none; position: relative; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2); }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: var(--tt-primary); transform: translateY(-100%); transition: transform 0.4s ease-in-out; z-index: 0; }
.service-card:hover::before { transform: translateY(0); }
.service-card > * { position: relative; z-index: 1; transition: color 0.3s ease-in-out 0.1s; }
.service-card h3 { order: 1; font-size: 1.125rem; font-weight: 600; color: var(--tt-text-dark); }
.service-card i { order: 2; font-size: 2.5rem; color: var(--tt-primary); margin: auto 0; }
.service-card p { order: 3; font-size: 0.875rem; line-height: 1.5; color: var(--tt-text-light); }
.service-card:hover h3, .service-card:hover i, .service-card:hover p { color: white; }

.package-card { width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; margin-bottom: 2.5rem; padding-bottom: 2rem; background-color: white; border: 1px solid var(--bs-border-color); border-bottom: 4px solid var(--tt-primary); border-radius: 0; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); text-align: center; position: relative; overflow: visible; opacity: 0; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.package-card.honeymoon-card { max-width: 360px; }
.package-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.package-image { position: relative; height: 240px; overflow: hidden; }
.package-image img { width: 100%; height: 100%; object-fit: cover; }
.package-content { padding: 0.75rem 1.5rem 0 1.5rem; }
.package-content h3 { font-weight: 600; }
.package-price { color: var(--tt-primary); font-weight: 600; margin-bottom: 1rem; }
.details-btn { position: absolute; bottom: 0; left: 50%; transform: translate(-50%, 50%); display: inline-block; padding: 6px 32px; background-color: #14B8A6; color: white; border: 2px solid white; border-radius: 0; font-size: 0.875rem; font-weight: 600; white-space: nowrap; box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1); transition: all 0.3s ease; text-decoration: none; }
.details-btn:hover { background-color: var(--tt-primary-hover); }

.trek-card { display: flex; flex-direction: column; width: 100%; max-width: 360px; background-color: white; border-radius: 12px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08); overflow: hidden; opacity: 0; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.trek-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12); }
.trek-image { height: 250px; }
.trek-image img { width: 100%; height: 100%; object-fit: cover; }
.trek-content { display: flex; flex-direction: column; flex-grow: 1; padding: 1.25rem; }
.trek-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.trek-details { flex-grow: 1; margin-bottom: 1rem; }
.detail-item { display: flex; align-items: center; margin-bottom: 0.75rem; color: var(--tt-text-light); }
.detail-item i { width: 20px; margin-right: 10px; color: var(--tt-primary); text-align: center; }
.trek-btn { display: inline-block; padding: 10px 20px; background-color: var(--tt-primary); color: white; border-radius: 8px; font-weight: 600; text-align: center; transition: background-color 0.3s ease; text-decoration: none; }
.trek-btn:hover { background-color: var(--tt-primary-hover); }

.duration-tag, .tours-count-tag, .trending-tag { position: absolute; z-index: 10; color: white; font-weight: 600; }
.duration-tag { bottom: 10px; left: 10px; padding: 4px 12px; background-color: rgba(0, 0, 0, 0.6); border-radius: 9999px; font-size: 12px; }
.tours-count-tag { top: 10px; right: 10px; padding: 6px 12px; background-color: var(--tt-secondary); border-radius: 9999px; font-size: 0.8rem; }
.trending-tag { top: 15px; left: 0; display: flex; align-items: center; height: 32px; padding: 6px 15px 6px 12px; background-color: #34D399; font-size: 0.8rem; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); }
.trending-tag::after { content: ''; position: absolute; top: 0; right: -14px; width: 0; height: 0; border-top: 16px solid transparent; border-bottom: 16px solid transparent; border-left: 14px solid #34D399; }

/* =================================================================== */
/* 3. Page-Specific Styles
/* =================================================================== */
.hero-bg {
    background-image: url('Img/Images/hero section.jpg');
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center;
    min-height: 70vh;
}

.hero-text-shadow { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); }
.services-section { margin-top: -80px; position: relative; z-index: 10; }
.services-slider { padding: 20px 0; }
.swiper-slide { height: auto; }

.destination-card img { transition: transform 0.4s ease-in-out; }
.destination-card:hover img { transform: scale(1.1); }
.destination-card .card-overlay { position: absolute; bottom: 0; left: 0; right: 0; height: 70%; background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent); border-radius: inherit; }

.why-choose-us-content { opacity: 1; }
.wcu-image-container { position: relative; display: flex; flex-direction: column; align-items: center; }
.wcu-image { width: 100%; max-width: 400px; height: 400px; object-fit: cover; border-radius: 12px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); z-index: 5; }
.wcu-cards-overlay {
    position: static;
    transform: none;
    width: 100%;
    max-width: 400px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.wcu-static-card { display: flex; align-items: center; padding: 1.25rem 1.5rem; background-color: var(--tt-text-dark); color: white; border-radius: 8px; box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); opacity: 1; transition: transform 0.3s ease; }
.wcu-static-card:hover { transform: translateX(10px); }
.wcu-static-card i { font-size: 1.5rem; color: #34D399; margin-right: 1rem; }
.wcu-static-card span { font-weight: 600; }

.testimonial-card { width: 100%; display: flex; flex-direction: column; padding: 1.5rem; background-color: var(--bs-light); border: 1px solid var(--bs-border-color); border-radius: 12px; text-align: center; }
.testimonial-rating { font-size: 1.25rem; color: #f59e0b; margin-bottom: 1rem; }
.testimonial-text { flex-grow: 1; margin-bottom: 1rem; font-style: italic; color: var(--tt-text-light); }
.testimonial-author { font-weight: 700; color: var(--tt-text-dark); }
.testimonial-trip { margin-top: 0.25rem; font-size: 0.875rem; color: #6b7280; }
.testimonials-slider .swiper-pagination-bullet { background-color: var(--tt-primary); }

.star-rating { display: flex; gap: 0.5rem; }
.star-rating i { font-size: 1.75rem; color: var(--bs-border-color); cursor: pointer; transition: color 0.2s; }
.star-rating:hover i, .star-rating i.selected { color: #f59e0b; }

/* =================================================================== */
/* 4. Animations & Keyframes
/* =================================================================== */
.animate-on-scroll { animation: bounceIn 0.6s ease-out forwards; }
.animate-slide-in { animation: slideInFromLeft 0.6s ease-out forwards; }
.animate-fade-in-up { animation: fadeInUp 0.8s ease-out forwards; }
.wcu-static-card.animate-slide-in-right { animation-name: slideInFromRight; }

@keyframes bounceIn { 0% { opacity: 0; transform: scale(0.8); } 60% { transform: scale(1.05); } 80% { transform: scale(0.95); } 100% { opacity: 1; transform: scale(1); } }
@keyframes slideInFromLeft { from { opacity: 0; transform: translateX(-100%); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInFromRight { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

/* =================================================================== */
/* 5. Footer Styles
/* =================================================================== */
.site-footer { position: relative; background-color: #374151; color: #e5e7eb; z-index: 20; }
.site-footer p, .site-footer span { font-weight: 400; }
.site-footer a { color: #e5e7eb; text-decoration: none; }
.footer-heading { margin-bottom: 1rem; font-size: 1rem; font-weight: 600; color: white; letter-spacing: 0.05em; text-transform: uppercase; }
.social-icons-link { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: rgba(255, 255, 255, 0.1); color: white; border-radius: 50%; transition: all 0.3s ease; }
.social-icons-link:hover { transform: translateY(-3px); }
a.social-icons-link[aria-label="Facebook"]:hover { background-color: #1877F2; }
a.social-icons-link[aria-label="Instagram"]:hover { background-color: #E4405F; }
a.social-icons-link[aria-label="LinkedIn"]:hover { background-color: #0A66C2; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { transition: color 0.3s ease, padding-left 0.3s ease; }
.footer-links a:hover { color: var(--tt-primary); padding-left: 5px; }
.contact-info { display: flex; flex-direction: column; gap: 0.75rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-item i { margin-top: 4px; color: var(--tt-primary); }
.contact-item a:hover { color: var(--tt-primary); }
.footer-bottom-bar { margin-top: 2rem; padding: 1rem 0; background-color: rgba(0, 0, 0, 0.2); font-size: 0.875rem; }

.approved-by-img { height: 50px; width: auto; padding: 4px; background-color: white; border-radius: 8px; object-fit: contain; }

/* =================================================================== */
/* 6. Booking Pop-up Form (Internal Styles)
/* =================================================================== */
.popup-header { padding: 1.5rem 2rem; background: linear-gradient(45deg, var(--tt-primary), #34D399); text-shadow: 1px 1px 2px rgba(0,0,0,0.2); border-bottom: 4px solid var(--tt-primary-hover); }
.popup-submit-btn { font-weight: bold; color: white; border: none; background: linear-gradient(45deg, var(--tt-primary), #34D399); box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3); transition: all 0.3s ease; cursor: pointer; }
.popup-submit-btn:hover { transform: translateY(-3px); box-shadow: 7px 20px rgba(20, 184, 166, 0.4); }
.popup-submit-btn:disabled { background: #9ca3af; cursor: not-allowed; transform: translateY(0); box-shadow: none; }

/* =================================================================== */
/* 7. Side Buttons
/* =================================================================== */
.side-buttons-container { position: fixed; top: 45%; right: 0; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; gap: 2px; }
.side-btn { display: flex; align-items: center; justify-content: center; flex-direction: column; width: 30px; height: auto; padding: 16px 5px; color: white; border: none; cursor: pointer; border-radius: 8px 0 0 8px; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.side-btn:hover { transform: translateX(-3px); }
.side-btn i { font-size: 1.4rem; margin-bottom: 10px; }
.side-btn span { display: block; writing-mode: vertical-rl; transform: rotate(180deg); white-space: nowrap; }
.whatsapp-side-btn { background-color: #25D366; }
.whatsapp-side-btn:hover { background-color: #1DA851; }
.quote-side-btn { background-color: var(--tt-primary); }
.quote-side-btn:hover { background-color: var(--tt-primary-hover); }

/* =================================================================== */
/* 8. Media Queries
/* =================================================================== */
@media (min-width: 1024px) {
    .wcu-image-container { 
        flex-direction: row; 
        min-height: 500px;
        display: flex;
        align-items: center;
    }
    .testimonial-card { padding: 2rem; }
    .hero-form-container {
        padding: 1rem 1.5rem !important;
        border-radius: 9999px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 1100px !important;
    }
    .hero-input-container {
        padding: 0 0.5rem !important;
        flex: 1;
    }
    .hero-input-container:first-child { padding-left: 0 !important; }
    .hero-input-container:last-child { padding-right: 0 !important; }
    .hero-input-left {
        border-top-left-radius: 9999px !important;
        border-bottom-left-radius: 9999px !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        border: 1px solid var(--bs-border-color) !important;
    }
    .hero-input-middle {
        border-radius: 0 !important;
        border-left: 0 !important;
        border-top: 1px solid var(--bs-border-color) !important;
        border-bottom: 1px solid var(--bs-border-color) !important;
        border-right: 1px solid var(--bs-border-color) !important;
    }
    .hero-btn-right {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-top-right-radius: 9999px !important;
        border-bottom-right-radius: 9999px !important;
        border-left: 0 !important;
    }
    .hero-bg .hero-form-container .form-control { border-radius: 9999px !important; }
    .hero-bg .hero-form-container .btn {
        border-radius: 9999px !important;
        border: 1px solid var(--bs-border-color) !important;
    }
    #contact-form .row { gap: 0.5rem; }
    #contact-form .row > div { flex: 1; }
    .hero-bg .hero-form-container .form-control + .form-control { border-left: 1px solid var(--bs-border-color); }
    .hero-bg .hero-form-container .btn { border-left: 1px solid var(--bs-border-color); }
    .hero-input-container:not(:first-child) input, .hero-input-container:not(:first-child) button { margin-left: 0.5rem; }
}

@media (min-width: 768px) {
    .service-card { height: 280px; }
    .service-card h3 { font-size: 1.25rem; }
    .service-card i { font-size: 3rem; }
    .hero-bg .display-3 { font-size: 3rem !important; }
    .hero-bg .fs-6 { font-size: 1.1rem !important; }
}

@media (max-width: 767px) {
    header.fixed-top .navbar {
        padding-top: 0.45rem; /* 10% कम किया गया */
        padding-bottom: 0.45rem; /* 10% कम किया गया */
    }

    .navbar-brand img {
        height: 24px;
    }
    
    .site-footer { border-top: 3px solid var(--tt-primary); }
    .footer-heading {
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    #bookingPopup .modal-body { padding: 1rem; }
    #bookingPopup .form-floating { margin-bottom: 1rem !important; }
    #bookingPopup .form-floating .form-control {
        min-height: calc(3rem + 2px);
        height: calc(3rem + 2px);
        padding: 0.75rem 0.75rem;
        font-size: 0.9rem;
    }
    #bookingPopup .form-floating > label {
        padding: 0.75rem 0.75rem;
        font-size: 0.9rem;
        transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    }
    #bookingPopup .form-floating .form-control:focus ~ label,
    #bookingPopup .form-floating .form-control:not(:placeholder-shown) ~ label {
        opacity: 0;
    }
    #bookingPopup .popup-submit-btn {
        padding: 0.85rem 1rem;
        font-size: 1rem;
    }

    .offcanvas.offcanvas-start {
        width: 100%;
        height: 100%;
    }

    #contact-form .col-sm-3, #contact-form .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0.75rem;
    }
    .hero-bg .hero-form-container {
        border-radius: 12px !important;
        padding: 1rem !important;
    }
    .hero-bg .hero-input-left, .hero-bg .hero-input-middle, .hero-bg .hero-btn-right {
        border-radius: 8px !important;
        border-left: 1px solid var(--bs-border-color) !important;
    }

    .side-buttons-container {
        top: auto;
        bottom: 20px;
        right: 10px;
        left: auto;
        flex-direction: row;
        gap: 10px;
    }
    .side-btn {
        width: 60px;
        height: 60px;
        padding: 0;
        border-radius: 50%;
        flex-direction: column;
    }
    .side-btn i {
        margin-bottom: 0;
        font-size: 1.8rem;
    }
    .side-btn span { display: none; }

    .testimonials-slider .swiper-pagination { bottom: 0; }

    .offcanvas-start {
        width: 280px;
        max-width: 80%;
    }

    .offcanvas-header {
        border-bottom: 1px solid var(--bs-border-color);
        background-color: var(--tt-bg-light);
        padding: 0.5rem 1rem;
        position: relative;
    }

    .offcanvas-header .btn-close {
        position: absolute;
        top: 0;
        right: 0;
        height: 69%;
        width: 35px;
        margin: 0;
        border-radius: 0;
        background-color: #0d9488;
        opacity: 1;
        transition: background-color 0.3s ease;
    }
    
    .offcanvas-header .btn-close:hover {
        background-color: #18b9ab;
    }
    
    .offcanvas-body {
        align-items: flex-start !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .offcanvas .navbar-nav {
        width: 100%;
        align-items: flex-start !important;
    }
    
    .offcanvas .collapse ul {
        width: 100%;
        border-left: 2px solid var(--tt-primary);
        padding-left: 1rem;
        text-align: left;
    }
    .offcanvas .collapse ul li a {
        padding-left: 0.5rem;
        font-weight: bold;
    }
    
    .offcanvas-title img {
        height: 32px !important;
    }
    
    #contact-form .row { gap: 0.5rem; }
    
    .navbar-toggler { margin-right: 1rem; }

    @media (max-width: 576px) {
        #contact-form .row > div {
            flex: 0 0 100%;
            max-width: 100%;
        }
        .hero-bg .display-4 { font-size: 2.25rem; }
        .hero-bg .form-control-lg {
            font-size: 1rem;
            padding: 0.5rem 1rem;
        }
        .hero-bg .btn-lg {
            padding: 0.5rem 1.5rem;
            font-size: 1rem;
        }
        .hero-bg { min-height: 50vh; }
    }
}
/* =================================================================== */
/* Itinerary & Policies Page Styles
/* =================================================================== */
.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--tt-text-light);
}
.highlight-item i {
    font-size: 2rem;
    color: var(--tt-primary);
}

.accordion-item {
    border: 1px solid var(--bs-border-color);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-button {
    background-color: transparent;
    border: none;
    font-weight: 600;
    color: var(--tt-text-dark);
    padding: 1rem 1.25rem;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.3s ease;
}
.accordion-button:not(.collapsed) {
    background-color: var(--tt-primary);
    color: white;
}
.accordion-button:not(.collapsed) strong { color: white; }
.accordion-button::after { display: none; }
.accordion-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed) i { transform: rotate(180deg); }
.accordion-body {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--tt-border-color);
    background-color: var(--tt-bg-light);
    color: var(--tt-text-light);
}

.nav-tabs .nav-item .nav-link {
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--tt-text-light);
    transition: all 0.3s ease;
}
.nav-tabs .nav-item .nav-link.active,
.nav-tabs .nav-item .nav-link:hover {
    color: var(--tt-primary);
    border-color: var(--tt-primary);
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.policy-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--tt-text-light);
}
.policy-list li::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--tt-primary);
    content: "\f058";
}
.policy-list.cross li::before {
    color: #ef4444;
    content: "\f057";
}

.accordion-button strong {
    margin-right: 0.5rem; /* Day count और title के बीच गैप जोड़ने के लिए */
}