/* ═══════════════════════════════════════════════
   PREMIUM CUSTOM DESIGN OVERRIDES
   MyTripBookerHolidays - State of the Art UI Upgrades
   ═══════════════════════════════════════════════ */

/* ─── Global Scrollbars & Selection ─── */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f97316, #ea580c);
    border-radius: 6px;
    border: 2px solid #0f172a;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #fb923c, #f97316);
}

::selection {
    background: rgba(249, 115, 22, 0.3);
    color: #ffffff;
}

/* ─── Smooth Page Transitions ─── */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: #fafafa !important;
}

/* ─── Premium Glassmorphic Cards ─── */
.premium-card-glass {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.premium-card-glass:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.08), 0 1px 2px rgba(249, 115, 22, 0.04) !important;
    border-color: rgba(249, 115, 22, 0.2) !important;
}

/* ─── Primary Buttons Polish ─── */
.primary-btn1 {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.primary-btn1:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.45) !important;
    filter: brightness(1.05);
}

.primary-btn1.black-bg {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%) !important;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25) !important;
}

.primary-btn1.black-bg:hover {
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4) !important;
}

/* ─── Inner Page Header / Breadcrumb Upgrades ─── */
.breadcrumb-section {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.8)), url('../img/breadcrumb-bg2.jpg') no-repeat center center / cover !important;
    padding: 100px 0 90px !important;
    border-bottom: 3px solid rgba(249, 115, 22, 0.4);
    overflow: hidden;
}

.breadcrumb-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.breadcrumb-section h1 {
    font-size: 42px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.5px !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 12px !important;
}

.breadcrumb-section .breadcrumb-list li {
    font-size: 15px !important;
    color: rgba(255,255,255,0.7) !important;
}

.breadcrumb-section .breadcrumb-list li a {
    color: #fb923c !important;
    font-weight: 600;
    transition: color 0.25s ease;
}

.breadcrumb-section .breadcrumb-list li a:hover {
    color: #fbbf24 !important;
}

/* ─── Premium Legal & Info Page Container ─── */
.premium-legal-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    padding: 50px 45px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03) !important;
    margin-bottom: 50px;
}

.premium-legal-card h1 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 20px;
    margin-bottom: 35px;
}

.premium-legal-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 35px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-legal-card h3::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 20px;
    background: linear-gradient(180deg, #f97316, #ea580c);
    border-radius: 4px;
}

.premium-legal-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.premium-legal-card ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 25px;
}

.premium-legal-card ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.premium-legal-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: 700;
}

/* ─── Premium Accordion Overhaul ─── */
.premium-accordion .accordion-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    margin-bottom: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-accordion .accordion-item:hover {
    border-color: rgba(249, 115, 22, 0.3) !important;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.06) !important;
}

.premium-accordion .accordion-button {
    font-family: var(--font-poppins);
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    background: transparent !important;
    padding: 20px 24px !important;
    border: none !important;
    box-shadow: none !important;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: #f97316 !important;
}

.premium-accordion .accordion-button::after {
    filter: sepia(1) saturate(10) hue-rotate(340deg); /* Style default bootstrap arrow color to match orange */
}

.premium-accordion .accordion-body {
    padding: 0 24px 24px !important;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    border-top: 1px solid #f1f5f9;
}

/* ─── Modernized Footer Styles ─── */
.footer-section {
    background: #0f172a !important;
    border-top: 4px solid #ea580c !important;
    padding-top: 70px !important;
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249,115,22,0.04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-contact-wrap {
    background: rgba(255,255,255,0.04) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
    padding: 24px 30px !important;
    margin-bottom: 50px !important;
}

.footer-section .inquiry-area svg {
    fill: #f97316 !important;
}

.footer-section .inquiry-area h6 {
    color: #ffffff !important;
    font-weight: 700;
}

.footer-section .footer-menu-wrap h5 {
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    position: relative;
}

.footer-section .footer-menu-wrap h5::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #f97316;
    margin-top: 8px;
}

.footer-section .widget-list li a {
    color: rgba(255,255,255,0.65) !important;
    transition: all 0.2s ease !important;
    font-size: 14px;
}

.footer-section .widget-list li a:hover {
    color: #fb923c !important;
    padding-left: 4px;
}

.footer-section .social-list li a {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #ffffff !important;
    transition: all 0.25s ease !important;
}

.footer-section .social-list li a:hover {
    background: linear-gradient(135deg, #f97316, #ea580c) !important;
    border-color: transparent !important;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #090d16 !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    padding: 20px 0 !important;
}

/* ─── Responsive Adjustments ─── */
@media (max-width: 768px) {
    .premium-legal-card {
        padding: 30px 20px !important;
        border-radius: 16px !important;
    }
    .premium-legal-card h1 {
        font-size: 24px;
    }
    .breadcrumb-section {
        padding: 70px 0 60px !important;
    }
    .breadcrumb-section h1 {
        font-size: 28px !important;
    }
}

/* ─── Premium Vacations Page Grid & Package Cards ─── */
.package-grid-page {
    background-color: #f8fafc !important;
    padding-top: 100px !important;
    padding-bottom: 80px !important;
}

.package-grid-page h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    text-align: center;
}

.package-grid-page p.mb-50 {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 50px !important;
    text-align: center;
}

/* Elegant Package Card Upgrades */
.package-card.four {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card.four:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.15) !important;
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.08) !important;
}

/* Image zoom & styling */
.package-card.four .package-img-wrap {
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}

.package-card.four .package-img img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
    object-fit: cover;
    height: 240px;
    width: 100%;
}

.package-card.four:hover .package-img img {
    transform: scale(1.06);
}

/* Content Area */
.package-card.four .package-content {
    padding: 16px 20px !important; /* Reduced padding from 24px for a snug, premium feel */
    background: #ffffff !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-card.four .package-content h5 {
    margin-bottom: 10px !important;
}

.package-card.four .package-content h5 a {
    font-size: 17px !important; /* Slightly optimized size */
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.35 !important;
    transition: color 0.2s ease !important;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-card.four .package-content h5 a:hover {
    color: #f97316 !important;
}

/* Features List */
.package-card.four .package-features {
    display: flex;
    gap: 8px;
    list-style: none !important;
    padding: 0 !important;
    margin-bottom: 12px !important; /* Reduced margin from 18px */
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px !important; /* Reduced padding from 12px */
    flex-wrap: wrap;
}

.package-card.four .package-features li {
    font-size: 11px !important; /* Snug badge */
    font-weight: 600 !important;
    color: #ea580c !important; 
    background: rgba(249, 115, 22, 0.06);
    padding: 3px 8px;
    border-radius: 50px;
}

/* Info Duration / Location Details */
.package-card.four .package-info-list {
    display: flex;
    justify-content: space-between;
    list-style: none !important;
    padding: 0 !important;
    margin-bottom: 8px !important; /* Reduced margin from 12px */
}

.package-card.four .package-info-list li {
    font-size: 12px !important;
    color: #64748b !important;
    font-weight: 500;
}

.package-card.four .package-info-list li span {
    font-weight: 600;
    color: #475569;
}

/* Destination Badge */
.package-card.four .location-area {
    margin-bottom: 12px !important; /* Reduced margin from 20px */
}

.package-card.four .location-area span {
    font-size: 13px !important;
    color: #64748b !important;
}

.package-card.four .location-area strong {
    color: #0f172a !important;
    font-weight: 600;
}

/* Action Area & Price Tag */
.package-card.four .btn-and-price-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto !important;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.package-card.four .btn-and-price-area .primary-btn1 {
    padding: 10px 20px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
}

.package-card.four .btn-and-price-area .price-area {
    text-align: right;
}

.package-card.four .btn-and-price-area .price-area h6 {
    font-size: 11px !important;
    color: #94a3b8 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px !important;
    font-weight: 600;
}

.package-card.four .btn-and-price-area .price-area span {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #ea580c !important;
    letter-spacing: -0.5px;
}

/* ─── Premium Currency Selector ─── */
.custom-currency-selector {
    position: relative;
    display: inline-block;
    font-family: 'Outfit', 'Inter', sans-serif;
    z-index: 1050; /* Bootstrap modal level */
}

.currency-trigger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.currency-trigger-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.15);
    transform: translateY(-1px);
}

.currency-trigger-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.custom-currency-selector.active .currency-trigger-btn i {
    transform: rotate(180deg);
}

.selected-flag-img, .currency-flag-img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
    margin-right: 2px;
    display: inline-block;
}

.currency-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    margin: 0;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999999 !important; /* Force dropdown to sit above contact lists and all overlays */
}

.custom-currency-selector.active .currency-dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.currency-dropdown-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.currency-dropdown-list li:hover {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.currency-dropdown-list li.active {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #f97316;
    font-weight: 700;
}

.currency-dropdown-list li .currency-symbol {
    margin-left: auto;
    font-size: 11px;
    color: #94a3b8;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.currency-dropdown-list li.active .currency-symbol {
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Light theme modifier for white headers / mobile */
.custom-currency-selector.currency-light-theme .currency-trigger-btn {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.1);
    color: #0f172a;
}

.custom-currency-selector.currency-light-theme .currency-trigger-btn:hover {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.1);
}

.custom-currency-selector.currency-light-theme .currency-dropdown-list {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.custom-currency-selector.currency-light-theme .currency-dropdown-list li {
    color: #1e293b;
}

.custom-currency-selector.currency-light-theme .currency-dropdown-list li:hover {
    background: rgba(249, 115, 22, 0.08);
    color: #ea580c;
}

.custom-currency-selector.currency-light-theme .currency-dropdown-list li.active {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(234, 88, 12, 0.1) 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: #ea580c;
}

/* ═══════════════════════════════════════════════
   PREMIUM HEADER & NAVIGATION UPGRADES
   ═══════════════════════════════════════════════ */

/* ─── Premium Dark Slate Topbar ─── */
.topbar-area {
    background: #0f172a !important; /* Rich Dark Slate */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 12px 0 !important; /* Slightly more compact & elegant */
    transition: all 0.3s ease;
}

.topbar-area .topbar-wrap .topbar-right .support-and-language-area > a {
    color: #e2e8f0 !important; /* Off-white for premium feel */
    font-weight: 500 !important;
    font-size: 14px !important;
}

.topbar-area .topbar-wrap .topbar-right .support-and-language-area > a::before {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.topbar-area .topbar-wrap .topbar-right .support-and-language-area > a:hover {
    color: #f97316 !important; /* Branded Orange glow */
}

/* Make sure desktop currency switcher in topbar uses dark theme layout */
.topbar-area .custom-currency-selector.currency-light-theme .currency-trigger-btn {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #ffffff !important;
}

.topbar-area .custom-currency-selector.currency-light-theme .currency-trigger-btn:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(249, 115, 22, 0.4) !important;
}

.topbar-area .custom-currency-selector.currency-light-theme .currency-dropdown-list {
    background: rgba(15, 23, 42, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.topbar-area .custom-currency-selector.currency-light-theme .currency-dropdown-list li {
    color: #e2e8f0 !important;
}

.topbar-area .custom-currency-selector.currency-light-theme .currency-dropdown-list li:hover {
    background: rgba(249, 115, 22, 0.15) !important;
    color: #f97316 !important;
}

.topbar-area .custom-currency-selector.currency-light-theme .currency-dropdown-list li.active {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%) !important;
    border: 1px solid rgba(249, 115, 22, 0.3) !important;
    color: #f97316 !important;
}

/* ─── Floating Glassmorphic Main Header ─── */
header.style-1 {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    padding: 15px 0 !important;
}

/* Sticky / Scroll header compression */
header.style-1.sticky {
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 0 !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05) !important;
}

/* Logo Sizing */
header.style-1 .header-logo img {
    max-height: 48px;
    object-fit: contain;
}

/* ─── Premium Navigation Menu Items ─── */
header.style-1 .main-menu .menu-list > li {
    margin: 0 16px !important;
    position: relative;
}

header.style-1 .main-menu .menu-list > li > a {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1e293b !important; /* Sleek dark slate blue */
    letter-spacing: 0.2px !important;
    padding: 10px 0 !important;
    transition: all 0.3s ease !important;
    position: relative;
}

header.style-1 .main-menu .menu-list > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

header.style-1 .main-menu .menu-list > li:hover > a,
header.style-1 .main-menu .menu-list > li.active > a {
    color: #ea580c !important; /* Dynamic branded orange on hover */
}

header.style-1 .main-menu .menu-list > li:hover > a::after,
header.style-1 .main-menu .menu-list > li.active > a::after {
    width: 100%;
}

/* ─── WhatsApp Menu Contact Pill (Mobile/Desktop) ─── */
header.style-1 .contact-area {
    background: rgba(249, 115, 22, 0.05) !important;
    border: 1px solid rgba(249, 115, 22, 0.12) !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

header.style-1 .contact-area:hover {
    background: rgba(249, 115, 22, 0.08) !important;
    border-color: rgba(249, 115, 22, 0.25) !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.05) !important;
}

header.style-1 .contact-area .single-contact .content span {
    font-size: 10px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #ea580c !important;
    font-weight: 700 !important;
}

header.style-1 .contact-area .single-contact .content a {
    font-weight: 700 !important;
    color: #0f172a !important;
    font-size: 14px !important;
}

/* Mobile Sidebar Trigger icon styling */
.mobile-menu-btn {
    background: rgba(249, 115, 22, 0.06) !important;
    border: 1px solid rgba(249, 115, 22, 0.1) !important;
    padding: 10px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-btn:hover {
    background: rgba(249, 115, 22, 0.12) !important;
    border-color: rgba(249, 115, 22, 0.3) !important;
}

.mobile-menu-btn svg path {
    fill: #ea580c !important;
}

/* ═══════════════════════════════════════════════
   PREMIUM WELCOME / HOMEPAGE OVERHAUL
   ═══════════════════════════════════════════════ */

/* ─── Hero Video Overlay & Cinematic Atmosphere ─── */
.home1-banner-section {
    position: relative;
    overflow: hidden;
}

/* Semi-transparent rich dark cinematic overlay over the video */
.banner-video-area {
    position: relative;
}
.banner-video-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.75) 100%) !important;
    z-index: 1;
}

/* High-contrast and legible typography for hero content */
.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-content h1.hero-title {
    font-size: 56px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -1.5px !important;
    line-height: 1.2 !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    margin-bottom: 20px !important;
}

/* Elite golden orange gradient text */
.gradient-text {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

.banner-content p {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 650px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25) !important;
}

/* ─── Floating Glassmorphic Search Card ─── */
.filter-wrapper {
    position: relative;
    z-index: 100 !important;
    margin-top: -85px !important; /* Elegant overlap on desktop banner */
}

.filter-wrapper .container {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.02) !important;
    padding: 30px !important;
}

/* Category filter tabs in the search widget */
.filter-item-list {
    display: inline-flex !important;
    gap: 6px !important;
    background: rgba(15, 23, 42, 0.04) !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 50px !important;
    padding: 5px !important;
    margin-bottom: 24px !important;
}

.filter-item-list li.single-item {
    border-radius: 50px !important;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #475569 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.filter-item-list li.single-item.active {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25) !important;
}

.filter-item-list li.single-item svg {
    fill: currentColor !important;
    width: 16px !important;
    height: 16px !important;
    transition: all 0.2s ease !important;
}

/* ─── Search Inputs & Grid Fields ─── */
.filter-input-wrap form {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) auto !important;
    gap: 20px !important;
    align-items: center !important;
}

/* Responsive grid for mobile / tablets */
@media (max-width: 991px) {
    .filter-input-wrap form {
        grid-template-columns: 1fr !important;
    }
    .filter-wrapper {
        margin-top: -40px !important;
    }
}

.single-search-box {
    position: relative !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: rgba(255, 255, 255, 0.6) !important;
    border-radius: 16px !important;
    padding: 12px 18px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer !important;
    width: 100% !important;
}

.single-search-box:hover {
    border-color: rgba(249, 115, 22, 0.3) !important;
    background: rgba(255, 255, 255, 0.8) !important;
}

.single-search-box.active, 
.single-search-box:focus-within {
    border-color: rgba(249, 115, 22, 0.5) !important;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08) !important;
    background: #ffffff !important;
}

.single-search-box svg {
    fill: #ea580c !important;
    flex-shrink: 0 !important;
    width: 18px !important;
    height: 18px !important;
}

.single-search-box .custom-select-dropdown {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

.single-search-box .custom-select-dropdown input[type="text"] {
    border: none !important;
    background: transparent !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    outline: none !important;
    cursor: pointer !important;
}

.single-search-box .custom-select-dropdown span {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-top: 2px !important;
}

/* Date Selection Layout */
.single-search-box.date-field .selected-date {
    display: flex !important;
    align-items: baseline !important;
    gap: 6px !important;
}
.single-search-box.date-field .selected-date h6 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
}
.single-search-box.date-field .selected-date span {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #ea580c !important;
    text-transform: uppercase !important;
}

/* Custom dropdown list overrides in search card */
.custom-select-wrap {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 18px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    padding: 10px !important;
    z-index: 200 !important;
    width: 100% !important;
    min-width: 280px !important;
}

.custom-select-search-area {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 6px 12px !important;
    margin-bottom: 8px !important;
}
.custom-select-search-area input {
    border: none !important;
    background: transparent !important;
    font-size: 13px !important;
    width: 100% !important;
    outline: none !important;
}

.option-list-destination {
    max-height: 250px !important;
    overflow-y: auto !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.option-list-destination li {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.option-list-destination li:hover {
    background: rgba(249, 115, 22, 0.06) !important;
}

.option-list-destination li .destination h6 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
}
.option-list-destination li .destination span {
    font-size: 11px !important;
    color: #64748b !important;
}
.option-list-destination li .tour span {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #ea580c !important;
    background: rgba(249, 115, 22, 0.08) !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
}

/* Category dropdown option list */
.custom-select-wrap.two .option-list .single-item {
    padding: 10px 14px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}
.custom-select-wrap.two .option-list .single-item:hover {
    background: rgba(249, 115, 22, 0.06) !important;
    color: #ea580c !important;
}
.custom-select-wrap.two .option-list .single-item h6 {
    font-size: 13px !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

/* Search widget submit button positioning & scale */
.filter-input-wrap .primary-btn1 {
    height: 54px !important;
    padding: 0 32px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Bottom CTA paragraph */
.filter-input-wrap p {
    font-size: 13px !important;
    color: #64748b !important;
    margin-top: 15px !important;
    text-align: center !important;
}
.filter-input-wrap p a {
    color: #ea580c !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
}

/* ─── Handpicked Deals Section Upgrades ─── */
.section-tagline {
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    color: #ea580c !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin-bottom: 8px !important;
}

.home1-travel-package-section h2 {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    letter-spacing: -0.5px !important;
}

/* Custom Modern Tab Pills */
.nav-tabs {
    border-bottom: none !important;
    gap: 8px !important;
}

.nav-tabs .nav-item .nav-link {
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    background: rgba(15, 23, 42, 0.03) !important;
    border-radius: 50px !important;
    padding: 8px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.nav-tabs .nav-item .nav-link:hover {
    border-color: rgba(249, 115, 22, 0.2) !important;
    color: #ea580c !important;
    background: rgba(249, 115, 22, 0.03) !important;
}

.nav-tabs .nav-item .nav-link.active {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2) !important;
}

/* ─── Global Package Card Upgrades ─── */
.package-card {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.package-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(249, 115, 22, 0.15) !important;
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.08) !important;
}

/* Zoom effect on hover */
.package-card .package-img-wrap {
    overflow: hidden !important;
    position: relative !important;
    border-radius: 20px 20px 0 0 !important;
}

.package-card .package-img img,
.package-card .package-img-wrap img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
    object-fit: cover !important;
    height: 240px !important;
    width: 100% !important;
}

.package-card:hover .package-img img,
.package-card:hover .package-img-wrap img {
    transform: scale(1.06) !important;
}

/* Premium translucent card badge */
.package-card .batch {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 2 !important;
}
.package-card .batch span {
    font-size: 10px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    padding: 4px 10px !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

.package-card .package-content {
    padding: 20px !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.package-card .package-content h5,
.package-card .package-content h5 a {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    margin-bottom: 12px !important;
    transition: color 0.2s ease !important;
}

.package-card .package-content h5 a:hover {
    color: #f97316 !important;
}

/* Card details (location, nights) */
.package-card .package-content .location-and-time,
.package-card .package-content .d-flex.justify-content-between.mb-2 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.package-card .package-content .location-and-time span,
.package-card .package-content .location-and-time a,
.package-card .package-content .d-flex.justify-content-between.mb-2 span {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    text-decoration: none !important;
}

.package-card .package-content .location-and-time .location svg {
    fill: #ea580c !important;
    margin-right: 4px !important;
}

/* Card CTA & Pricing */
.package-card .btn-and-price-area,
.package-card .d-flex.justify-content-between.align-items-center.mt-3 {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: auto !important;
}

.package-card .btn-and-price-area .primary-btn1,
.package-card .d-flex.justify-content-between.align-items-center.mt-3 .primary-btn1 {
    padding: 10px 20px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15) !important;
}

.package-card .btn-and-price-area .price-area,
.package-card .price-area.text-end {
    text-align: right !important;
}

.package-card .btn-and-price-area .price-area h6,
.package-card .price-area.text-end h6 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ea580c !important;
    margin: 0 !important;
    letter-spacing: -0.5px !important;
}

.package-card .btn-and-price-area .price-area span,
.package-card .price-area.text-end small {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #94a3b8 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* ─── Premium Services Section ─── */
.home1-service-section {
    position: relative !important;
    background: #f8fafc !important;
    padding: 80px 0 !important;
    border-radius: 30px !important;
}

.service-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 50px 0 !important;
}

@media (max-width: 991px) {
    .service-list {
        grid-template-columns: 1fr !important;
    }
}

.single-service {
    background: #ffffff !important;
    border: 1px solid rgba(15, 23, 42, 0.05) !important;
    border-radius: 24px !important;
    padding: 35px 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.single-service:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(249, 115, 22, 0.15) !important;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.05) !important;
}

.single-service .icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: rgba(249, 115, 22, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 24px !important;
    transition: transform 0.3s ease !important;
}

.single-service:hover .icon {
    transform: scale(1.1) rotate(10deg) !important;
}

.single-service .icon svg {
    width: 28px !important;
    height: 28px !important;
    fill: #ea580c !important;
}

.single-service .content h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 12px !important;
}

.single-service .content p {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Service Bottom CTA */
.home1-service-section .bottom-area .batch {
    background: #0f172a !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 50px !important;
    padding: 12px 30px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15) !important;
}
.home1-service-section .bottom-area .batch a {
    color: #f97316 !important;
    margin-left: 10px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}
.home1-service-section .bottom-area .batch a:hover {
    color: #fb923c !important;
}

/* ─── Premium Testimonial Cards ─── */
.home1-testimonial-section {
    background: #ffffff !important;
    padding: 80px 0 !important;
}

.testimonial-card {
    background: #f8fafc !important;
    border: 1px solid rgba(15, 23, 42, 0.04) !important;
    border-radius: 24px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01) !important;
    transition: all 0.3s ease !important;
}

.testimonial-card:hover {
    background: #ffffff !important;
    border-color: rgba(249, 115, 22, 0.1) !important;
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.04) !important;
}

/* Author block inside testimonial card */
.testimonial-card .author-area {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
}

.testimonial-card .author-area .author-img {
    position: relative !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
}

.testimonial-card .author-area .author-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.testimonial-card .author-area .author-img .play-btn {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(15, 23, 42, 0.5) !important;
    color: #ffffff !important;
    font-size: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    transition: background 0.2s ease !important;
}

.testimonial-card .author-area .author-img:hover .play-btn {
    background: rgba(249, 115, 22, 0.8) !important;
}

.testimonial-card .author-area .author-info h5 {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 0 !important;
}

.testimonial-card .author-area .author-info span {
    font-size: 11px !important;
    color: #ea580c !important;
    font-weight: 600 !important;
}

/* Testimonial ratings indicators */
.testimonial-card .rating-area {
    display: flex !important;
    gap: 4px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 15px 0 !important;
}

.testimonial-card .rating-area li i {
    font-size: 10px !important;
    color: #e2e8f0 !important;
}

.testimonial-card .rating-area li i.bi-circle-fill {
    color: #f59e0b !important; /* Premium gold star */
}

.testimonial-card h5 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin-bottom: 10px !important;
}

.testimonial-card .content p {
    font-size: 14px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-style: italic !important;
}

/* TripAdvisor & Trustpilot Widget section */
.review-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    margin-top: 40px !important;
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 30px !important;
}

.review-wrap .tripadvisor-rating-area img {
    height: 28px !important;
}

.review-wrap .trustpilot-rating-area {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    color: #0f172a !important;
}

.review-wrap .trustpilot-rating-area strong {
    font-size: 18px !important;
    color: #10b981 !important; /* Trustpilot Green */
    font-weight: 800 !important;
}

.review-wrap .trustpilot-rating-area span {
    color: #64748b !important;
    font-weight: 500 !important;
}






/* ==========================================================================
   CHECK AVAILABILITY CALENDAR WIDGET STYLES (Added dynamically)
   ========================================================================== */

.card-widget {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  padding: 24px 10px 20px !important;
  margin: 40px auto;
}
.card-widget h5 { font-weight: 800; font-size: 1.25rem; color: #1a1a2e; margin-bottom: 18px; }

.option-card {
  border: 1.5px solid #e8eaf0;
  border-radius: 12px;
  padding: 0px 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s;
}
.option-card:hover { border-color: #7c6fe0; }
.option-label { font-size: 0.68rem; color: #9095a5; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.option-value { font-size: 0.97rem; font-weight: 700; color: #1a1a2e; }
.option-icon { width: 36px; height: 36px; border-radius: 10px; background: #f0eeff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }

/* Month nav */
.month-nav { display: flex; align-items: center; justify-content: space-between; margin: 18px 0 12px; }
.month-nav .nav-btn {
  border: 1.5px solid #e0e3ee;
  background: #fff;
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: #555;
  transition: background .15s;
  flex-shrink: 0;
}
.month-nav .nav-btn:hover { background: #f0eeff; border-color: #7c6fe0; color: #7c6fe0; }
.month-label { font-weight: 800; font-size: 1rem; color: #1a1a2e; display: flex; align-items: center; gap: 4px; }
.month-label .chevron { color: #888; font-size: .75rem; }

/* Calendar grid */
.cal-grid { display: grid !important; grid-template-columns: repeat(7, 1fr) !important; gap: 2px !important; }
.cal-header { text-align: center; font-size: 10.5px !important; font-weight: 800 !important; padding: 2px 0 4px !important; letter-spacing: 0.2px !important; }
.cal-header.sun, .cal-header.sat { color: #e8503a; }
.cal-header.weekday { color: #6c757d; }

.cal-cell {
  border-radius: 8px !important;
  padding: 4px 1px 5px !important;
  text-align: center;
  cursor: pointer;
  transition: background .15s, transform .12s;
  min-height: 46px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cal-cell:hover:not(.empty) { background: #f0eeff; transform: scale(1.04); }
.cal-cell.empty { cursor: default; }

.day-num { font-size: 13px !important; font-weight: 700; color: #1a1a2e; line-height: 1; }
.day-num.weekend { color: #e8503a; }
.day-price { font-size: 9.5px !important; font-weight: 700 !important; color: #64748b !important; margin-top: 4px !important; letter-spacing: -0.3px !important; white-space: nowrap !important; }

.cal-cell.best-price .day-price { color: #1cb86e !important; }

.cal-cell.selected { background: #7c6fe0; }
.cal-cell.selected .day-num,
.cal-cell.selected .day-price { color: #fff !important; }
.cal-cell.selected:hover { background: #6a5fd0; }

.select-styled {
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: .97rem;
  color: #1a1a2e;
  cursor: pointer;
  outline: none;
  width: 100%;
}
.select-sm {
  font-size: .9rem;
}
.chevron-down { color: #888; font-size: .78rem; }
.nice-select{
  height: 30px;
  line-height: 27px;
  padding-left: 0px;
  padding-right: 36px;
}


/* ==========================================================================
   MOBILE VIEWPORT LAYOUT STYLE OVERRIDES (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
  .tabs-list {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap !important;
    scrollbar-width: none !important;
    gap: 20px !important;
  }
  .tabs-list::-webkit-scrollbar {
    display: none !important;
  }
  .tabs-list .tab {
    padding: 8px 12px !important;
    white-space: nowrap !important;
  }
  .card-widget {
    padding: 20px 16px !important;
    margin: 24px auto !important;
    border-radius: 14px !important;
  }
}


/* ==========================================================================
   ULTRA-PREMIUM PACKAGE DETAILS PAGE STYLE OVERRIDES
   ========================================================================== */

/* ─── Immersive Gallery Section ─── */
.breadcrumb-gallery-section {
  padding: 30px 24px 20px !important;
  background-color: #f8fafc;
}

.gallery-big,
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(15, 23, 42, 0.04);
  background-color: #eaeaea;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gallery-big img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gallery-big:hover,
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.25);
}

.gallery-big:hover img,
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ─── Breadcrumb Bottom Info Area ─── */
.package-details-breadcrumb-bottom {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
  padding: 24px 0 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.details-breadcrumb-bottom-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.package-details-breadcrumb-bottom .left-content,
.package-details-breadcrumb-bottom .left-content ul,
.package-details-breadcrumb-bottom .left-content ul li,
.details-breadcrumb-bottom-wrapper .left-content,
.details-breadcrumb-bottom-wrapper .left-content ul,
.details-breadcrumb-bottom-wrapper .left-content ul li {
  display: block !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.package-details-breadcrumb-bottom .left-content ul li b,
.details-breadcrumb-bottom-wrapper .left-content b {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.5px !important;
  line-height: 1.25 !important;
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
}

.package-details-breadcrumb-bottom .left-content ul li b span,
.details-breadcrumb-bottom-wrapper .left-content b span {
  font-size: 15px !important;
  color: #ea580c !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  margin-top: 8px !important;
}

.package-details-breadcrumb-bottom .left-content ul li b span br,
.details-breadcrumb-bottom-wrapper .left-content b span br {
  display: none !important;
}

/* ─── High-End SaaS Navigation Tabs ─── */
.tabs-list {
  display: flex !important;
  gap: 12px !important;
  background: rgba(15, 23, 42, 0.03) !important;
  border: 1px solid rgba(15, 23, 42, 0.05) !important;
  border-radius: 16px !important;
  padding: 8px !important;
  margin: 0 0 30px 0 !important;
  list-style: none !important;
}

.tab {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #64748b !important;
  background: transparent !important;
  border-radius: 12px !important;
  padding: 10px 24px !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.tab.active {
  background: linear-gradient(135deg, #7b2cbf 0%, #5a189a 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(123, 44, 191, 0.25) !important;
}

.tab:not(.active):hover {
  background: rgba(15, 23, 42, 0.05) !important;
  color: #0f172a !important;
}

/* Remove ugly underline default classes */
.tab.active::after {
  display: none !important;
}

/* ─── Premium Discovery & Content Cards ─── */
.included-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.06) !important;
  border-radius: 20px !important;
  padding: 35px 30px !important;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.02) !important;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.included-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #7b2cbf, #5a189a);
}

.included-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px !important;
}

.included-header .icon {
  width: 48px !important;
  height: 48px !important;
  background: rgba(123, 44, 191, 0.08) !important;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.included-header .icon i {
  font-size: 22px !important;
  color: #7b2cbf !important;
}

.included-header h3 {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  letter-spacing: -0.5px;
  margin: 0 !important;
}

.included-card p {
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: #475569 !important;
  margin-bottom: 16px;
}

.included-list {
  padding-left: 20px !important;
  list-style: none !important;
  margin-bottom: 24px;
}

.included-list li {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #334155 !important;
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px !important;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7b2cbf;
  font-weight: 800;
}

/* ─── Luxurious Hotel Card ─── */
.hotel-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.07) !important;
  border-radius: 20px !important;
  padding: 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.3s ease !important;
}

.hotel-card:hover {
  border-color: rgba(123, 44, 191, 0.2) !important;
  box-shadow: 0 20px 40px rgba(123, 44, 191, 0.06) !important;
  transform: translateY(-2px);
}

.hotel-img img {
  width: 240px !important;
  height: 160px !important;
  object-fit: cover;
  border-radius: 14px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hotel-content {
  flex: 1;
}

.hotel-content .rating {
  font-size: 14px !important;
  color: #fbbf24 !important; /* Golden Warm Stars */
  margin-bottom: 8px !important;
}

.hotel-content .rating .reviews {
  color: #64748b !important;
  font-weight: 600;
  font-size: 12px;
  margin-left: 8px;
}

.hotel-content h4 {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.5px;
}

.hotel-content .location {
  font-size: 13px !important;
  color: #64748b !important;
  margin-bottom: 12px !important;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hotel-content .location i {
  color: #ea580c;
  font-size: 16px;
}

.hotel-info {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap;
  list-style: none !important;
  padding: 0 !important;
}

.hotel-info span {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hotel-info span i {
  color: #7b2cbf;
  font-size: 14px;
}

/* ─── State-of-the-Art Pricing & Booking Sidebar ─── */
.pricing-and-booking-area {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6) !important;
  border-radius: 24px !important;
  padding: 30px 24px !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.02) !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.pricing-and-booking-area:hover {
  box-shadow: 0 30px 60px rgba(249, 115, 22, 0.08) !important;
  border-color: rgba(249, 115, 22, 0.2) !important;
}

.pricing-and-booking-area .batch {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
  margin-bottom: 16px !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.pricing-and-booking-area .batch span {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 6px 14px !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15) !important;
  display: inline-block !important;
}


.pricing-and-booking-area .price-area {
  margin-bottom: 24px !important;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-and-booking-area .price-area h6 {
  font-size: 12px !important;
  color: #94a3b8 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 4px !important;
}

.pricing-and-booking-area .price-area span {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #ea580c !important;
  letter-spacing: -1px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-and-booking-area .price-area span del {
  font-size: 18px !important;
  color: #94a3b8 !important;
  font-weight: 500;
}

.pricing-and-booking-area .price-area span sub {
  font-size: 13px !important;
  color: #64748b !important;
  font-weight: 500;
  bottom: 0;
}

/* Feature Checklists in Sidebar */
.pricing-and-booking-area ul {
  list-style: none !important;
  padding: 0 !important;
  margin-bottom: 24px !important;
}

.pricing-and-booking-area ul li {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #334155 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px !important;
}

.pricing-and-booking-area ul li svg {
  fill: #1cb86e !important; /* Green Checkmarks */
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Pulse hotline call button in sidebar */
.pricing-and-booking-area .primary-btn1.mb-20 {
  width: 100% !important;
  padding: 14px 20px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  animation: sidebarPulse 2s infinite;
}

@keyframes sidebarPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

.pricing-and-booking-area .primary-btn1.transparent {
  background: transparent !important;
  border: 2px solid rgba(15, 23, 42, 0.08) !important;
  color: #0f172a !important;
  box-shadow: none !important;
  width: 100% !important;
  padding: 12px 20px !important;
  border-radius: 14px !important;
  font-size: 14px !important;
}

.pricing-and-booking-area .primary-btn1.transparent:hover {
  background: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15) !important;
}

.pricing-and-booking-area .primary-btn1 svg {
  fill: currentColor !important;
  margin-left: 4px;
}

/* Guarantee/Support footer tags in sidebar */
.pricing-and-booking-area > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px !important;
  color: #0f172a !important;
  font-weight: 700 !important;
  margin-top: 10px;
}

.pricing-and-booking-area > span svg,
.pricing-and-booking-area p svg {
  fill: #ea580c !important;
}

.pricing-and-booking-area p {
  font-size: 12px !important;
  color: #64748b !important;
  line-height: 1.5 !important;
  margin-top: 14px !important;
  border-top: 1px dashed #e2e8f0;
  padding-top: 12px;
}

.pricing-and-booking-area p a {
  color: #ea580c !important;
  font-weight: 700 !important;
}

/* ─── Cinematic Customization CTA Banner ─── */
.customize-package-banner-wrap {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  border-radius: 24px !important;
  padding: 35px 30px !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
  margin-top: 30px;
}

.customize-package-banner-wrap::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.customize-package-banner-wrap h2 {
  font-family: 'Outfit', 'Inter', sans-serif !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: -0.5px;
  margin-bottom: 20px !important;
}

.customize-package-banner-wrap h2 span {
  color: #f97316 !important;
}

.customize-package-banner-wrap ul {
  list-style: none !important;
  padding: 0 !important;
  margin-bottom: 24px !important;
}

.customize-package-banner-wrap ul li {
  font-size: 14px !important;
  color: #cbd5e1 !important;
  font-weight: 600 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px !important;
}

.customize-package-banner-wrap ul li svg {
  fill: #f97316 !important;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.customize-package-banner-wrap .counter-area {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 24px !important;
}

.customize-package-banner-wrap .counter-img-grp {
  display: flex !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.customize-package-banner-wrap .counter-img-grp li {
  margin: 0 0 0 -12px !important;
}

.customize-package-banner-wrap .counter-img-grp li:first-child {
  margin-left: 0 !important;
}

.customize-package-banner-wrap .counter-img-grp img {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: 2px solid #0f172a !important;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.customize-package-banner-wrap .counter-area h6 {
  font-size: 13px !important;
  color: #e2e8f0 !important;
  margin: 0 !important;
  font-weight: 500;
}

.customize-package-banner-wrap .counter-area h6 strong {
  color: #ffffff;
  font-size: 14px;
}

.customize-package-banner-wrap .primary-btn1 {
  width: 100% !important;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3) !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  border-radius: 14px !important;
}

.customize-package-banner-wrap .primary-btn1:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.45) !important;
}

/* ─── Responsive Sweeps for Mobile Viewports ─── */
@media (max-width: 991px) {
  .details-breadcrumb-bottom-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .hotel-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }
  .hotel-img img {
    width: 100% !important;
    height: 180px !important;
  }
}

/* ─── Modernized Enquiry Form Inside Premium Split Modal ─── */
.premium-split-modal .enquiry-modal-right-inner {
    width: 100%;
}

.premium-split-modal .enquiry-form-wrapper {
    margin-top: 10px;
}

.premium-split-modal .enquiry-form-wrapper .row.mb-50 {
    margin-bottom: 20px !important;
}

.premium-split-modal .enquiry-form-wrapper .form-inner {
    margin-bottom: 8px !important;
}

.premium-split-modal .enquiry-form-wrapper .form-inner label {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #475569 !important; /* Cool dark slate label */
    margin-bottom: 4px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.premium-split-modal .enquiry-form-wrapper .form-inner input,
.premium-split-modal .enquiry-form-wrapper .form-inner textarea {
    width: 100% !important;
    background: #f8fafc !important; /* Light slate gray */
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    outline: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.premium-split-modal .enquiry-form-wrapper .form-inner input:focus,
.premium-split-modal .enquiry-form-wrapper .form-inner textarea:focus {
    background: #ffffff !important;
    border-color: rgba(249, 115, 22, 0.5) !important;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.08) !important;
}

.premium-split-modal .enquiry-form-wrapper .form-inner textarea {
    min-height: 60px !important;
    resize: vertical;
}

.premium-split-modal .enquiry-form-wrapper .form-check-input {
    border-color: rgba(15, 23, 42, 0.15) !important;
}

.premium-split-modal .enquiry-form-wrapper .form-check-input:checked {
    background-color: #ea580c !important;
    border-color: #ea580c !important;
}

.premium-split-modal .enquiry-form-wrapper .form-check-label {
    font-size: 12px !important;
    color: #64748b !important;
    font-weight: 500 !important;
    cursor: pointer;
}

.premium-split-modal .enquiry-form-wrapper .primary-btn1 {
    width: 100% !important;
    height: 46px !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 6px !important;
}







