  :root {
    --primary-color: #fee400;
    --text-dark: #222222;
    --bg-light: #f8f9fa;
    --dropdown-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 16px;
    --carousel-speed: 30s;
    --container-1400-width: 1400px;
    --container-side-gap: 20px;
    --c-navy: #1a1a1a;
}

/* Custom 1400 container */
.container-1400 {
    width: 100%;
    max-width: var(--container-1400-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-side-gap);
    padding-right: var(--container-side-gap);
}

/* Base Styles */
body {
    top: 0px !important;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

body > .skiptranslate {
    display: none;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive spacing */
@media (max-width: 1600px) {
    :root {
        --container-side-gap: 24px;
    }
}

@media (max-width: 1200px) {
    :root {
        --container-side-gap: 20px;
    }
}

@media (max-width: 992px) {
    :root {
        --container-side-gap: 16px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-side-gap: 14px;
    }
}

@media (max-width: 576px) {
    :root {
        --container-side-gap: 12px;
    }
}
/* Header & Menu */
.top-header-ttt {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.header-menu-ttt {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-item-ttt {
    position: relative;
}

.menu-link-ttt {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s;
    padding: 5px 0;
}

.menu-link-ttt i.fa-chevron-down {
    font-size: 10px;
    margin-left: 6px;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.top-bar-ttt a {
    text-decoration: none;
    color: #222222;
    font-size: 15px;
    font-family: 'Poppins';
    margin-bottom: 0px;
    padding: 2px 8px;
}

.submenu-ttt {
    position: absolute;
    top: calc(71% + 15px);
    right: -45px;
    background: #ffffff;
    min-width: 195px;
    box-shadow: var(--dropdown-shadow);
    border-radius: var(--border-radius);
    list-style: none;
    padding: 2px 0;
    margin: 0;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.submenu-ttt::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 45px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.menu-item-ttt.active .submenu-ttt {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.menu-item-ttt.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.submenu-ttt li a {
    display: block;
    padding: 7px 20px;
    color: #222222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s;
}

.submenu-ttt li a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 30px;
}

.goog-te-combo {
    padding: 6px 4px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 101px;
    outline: none;
    background: #fff;
}

/* Gallery Grid */
.featured-img-box img {
    height: 450px;
    object-fit: cover;
    transition: all 0.3s ease, opacity 0.3s ease;
}

.featured-img-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.sticky-events {
    position: sticky;
    top: 72px;
    background: #fff;
    z-index: 100;
    padding: 10px 0 0;
    margin-bottom: 20px;
}

#eventFestivalsDetailTab {
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#eventFestivalsDetailTab::-webkit-scrollbar {
    display: none;
}

#eventFestivalsDetailTab .nav-item {
    margin-bottom: 0;
}

#eventFestivalsDetailTab .nav-link {
    border: 1px solid #eee;
    border-bottom: none;
    background: #f8f9fa;
    color: #666;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 12px 12px 0 0;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-size: 0.95rem;
    margin-bottom: -1px;
}

#eventFestivalsDetailTab .nav-link:hover {
    background: #eee;
    color: #000;
}

.blog-detail .nav-link.active {
    background: #fee400 !important;
    color: #000 !important;
    font-weight: 700;
    border-color: #fee400 !important;
    border-bottom: 1px solid #fee400 !important;
    box-shadow: 0 4px 10px rgba(254, 228, 0, 0.2);
    transform: none;
}

.tab-content {
    padding-top: 10px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Event & Festival Cards */
/* Luxury Event Row Card Design */
.lux-event-row-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 220px;
}


.event-image-area {
    width: 35%;
    position: relative;
    overflow: hidden;
}

.event-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lux-event-row-card:hover .event-image-area img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 2;
}

.event-date-badge .day {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
}

.event-date-badge .month {
    font-size: 0.65rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
}

.event-info-area {
    width: 65%;
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-header {
    margin-bottom: 12px;
}

.event-category {
    font-size: 0.7rem;
    font-weight: 700;
    color: #dc3545;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.event-location {
    font-size: 0.85rem;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
}

.lux-event-btn {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.lux-event-btn:hover {
    color: #dc3545;
    transform: translateX(5px);
}

.lux-event-btn i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .lux-event-row-card {
        flex-direction: column;
        height: auto;
    }
    .event-image-area, .event-info-area {
        width: 100%;
    }
    .event-image-area {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .event-festivals-detail {
        padding: 0;
    }
    
    #eventFestivalsDetailTab .nav-link {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Buttons */
.custom-btn {
    display: block;
    background: #fee400;
    color: #222222;
    padding: 10px 15px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    white-space: nowrap;
}

.custom-btn:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ai-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ai-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.ai-btn:hover::before {
    left: 100%;
}
.lux-swap-btn{
    margin-top: 24px;
 }
.search-btn {
    height: 46px !important;
    margin-top: 10px;
    border: none;
}

.go-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffcc00;
    color: #222222;
    border: none;
    padding: 7px 12px;
    border-radius: 70px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.go-to-top-btn:hover {
    background-color: #222222;
    color: #fee400;
}

/* Attractions Swiper & Cards */
.attractions-section {
    position: relative;
    padding: 20px 0;
}

.attractions-swiper {
    padding: 10px 4px 40px 4px;
}

.attraction-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.attraction-img-box {
    position: relative;
    width: 100%;
    padding-top: 66.67%; /* 3:2 Aspect Ratio */
    overflow: hidden;
}

.attraction-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.attraction-card:hover .attraction-img {
    transform: scale(1.1);
}

.attraction-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
}

.attraction-info {
    padding: 15px;
    background: #fff;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.attraction-info h3 {
    font-size: 21px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}
.attraction-card 
{
        border: 1px solid #e5e5e5;
}
.attraction-info p {
    margin: 0 0 20px 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.standard-card:hover .attraction-info p {
    color: #2f3437;
}

.attraction-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 400;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.attraction-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 4px;
}

.attraction-location {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.btn-explore:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.attraction-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.attraction-pagination {
    position: relative !important;
    bottom: 0 !important;
    width: auto !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}

.attraction-pagination .swiper-pagination-bullet {
    background: #ddd;
    opacity: 1;
    width: 6px;
    height: 6px;
    transition: all 0.3s ease;
    margin: 0 4px !important;
}

.attraction-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 16px;
    border-radius: 3px;
}

/* Swiper Navigation Shared Styles */
.offer-nav-next, .offer-nav-prev, 
.grid-nav-next, .grid-nav-prev,
.attraction-next, .attraction-prev {
    width: 44px !important;
    height: 44px !important;
    background: #fff !important;
    border-radius: 50% !important;
    color: var(--c-navy) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    opacity: 0;
    z-index: 10 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
}

.attraction-next, .attraction-prev {
    opacity: 1 !important;
}

.attractions-section:hover .attraction-next, 
.attractions-section:hover .attraction-prev,
.offers-swiper-container:hover .offer-nav-next,
.offers-swiper-container:hover .offer-nav-prev {
    opacity: 1;
}

.offer-nav-next:after, .offer-nav-prev:after, 
.grid-nav-next:after, .grid-nav-prev:after,
.attraction-next:after, .attraction-prev:after {
    display: none !important;
}

.offer-nav-next:hover, .offer-nav-prev:hover,
.attraction-next:hover, .attraction-prev:hover {
    background: var(--c-navy) !important;
    color: var(--primary-color) !important;
}

/* How to Reach Section */

.reach-intro {
    max-width: 800px;
}

.reach-flex-container {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.reach-img-side {
    flex: 0 0 280px; /* Fixed width for the image side */
    width: 280px;
}

.reach-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 991px) {
    .reach-flex-container {
        flex-direction: column;
    }
    .reach-img-side {
        width: 100%;
        flex: 0 0 auto;
    }
    .reach-img-wrapper {
        aspect-ratio: 16 / 9;
    }
}

.reach-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reach-content-side {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reach-card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    overflow: hidden;
    height: auto;
    box-shadow: none;
    border: none;
}


.reach-icon-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.reach-icon-badge i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.reach-info-wrapper {
    flex: 1;
}

.reach-icon-box {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reach-icon-box i {
    font-size: 24px;
    color: var(--text-dark);
}

.reach-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.reach-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reach-list,
.travel-data-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.reach-list li,
.travel-data-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px dashed #eee;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.reach-list li:hover,
.travel-data-list li:hover {
    background: #fffdf0;
    border-color: var(--primary-color);
    transform: translateX(3px);
}

.reach-list li span,
.travel-data-list li span {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.reach-list li strong,
.travel-data-list li strong {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 700;
}

.reach-list li::before,
.travel-data-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.reach-highlight {
    padding: 15px 20px;
    background: #fffdf0;
    border-radius: 12px;
    border: 1px solid rgba(254, 228, 0, 0.3);
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
}

.reach-highlight p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.reach-highlight p i {
    color: var(--primary-color);
    font-size: 14px;
}

.reach-footer {
    text-align: center;
    padding-top: 20px;
}

/* Utils */
.d-flex {
    display: flex;
}

.gap-2 {
    gap: 8px;
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
    z-index: 10;
}

/* City Suggestions */
#from-city-suggestions {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.city-item {
    cursor: pointer;
}

#from-suggestions, #to-suggestions {
    width: 80% !important;
}

/* Datepicker & Calendar */
.flatpickr-day.today {
    border: none;
    color: green;
    font-weight: 500;
    background: #fee400;
}

.flatpickr-day {
    border-radius: 4px;
    max-width: 45px;
    height: 45px;
}

/* Fare Selection */
.fare-selection-wrapper {
    max-width: 855px;
    position: relative;
}

.fare-scroll-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 12px 4px 24px 4px;
    gap: 16px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
}

.fare-scroll-container::-webkit-scrollbar {
    display: none;
}

.fare-scroll-container:active {
    cursor: grabbing;
}

.fare-radio {
    flex: 0 0 auto;
    cursor: pointer;
    user-select: none;
}

.fare-radio input[type="radio"] {
    display: none;
}

.fare-card {
    position: relative;
    border: 1.5px solid #e5e7eb;
    border-radius: 14px;
    padding: 8px 11px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 147px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.fare-card:hover {
    border-color: #d6c100;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.radio-indicator {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s;
    background: #ffffff;
}

.fare-card strong {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.fare-radio input[type="radio"]:checked + .fare-card {
    border-color: #d6c100;
    background-color: #fffce6;
    box-shadow: 0 0 0 4px rgba(254, 228, 0, 0.2);
}

.fare-radio input[type="radio"]:checked + .fare-card .radio-indicator {
    border-color: #d6c100;
    background-color: #FEE400;
}

.fare-radio input[type="radio"]:checked + .fare-card .radio-indicator::after {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%231f2937" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
    display: block;
    line-height: 0;
}

.fare-radio input[type="radio"]:checked + .fare-card strong {
    color: #222222;
}

/* Swipe Hint Dots */
.swipe-hint-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    opacity: 0.6;
}

.swipe-hint-container .dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swipe-hint-container .dot.active {
    background: #000;
    width: 16px;
    border-radius: 10px;
}

/* Scroll Buttons */
.scroll-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.scroll-btn.left {
    left: -14px;
}

.scroll-btn.right {
    right: -14px;
}

.scroll-btn:hover {
    background: #000;
    color: #fff;
}

@media (min-width: 768px) {
    .scroll-btn {
        display: none;
    }
}

/* ==========================================================================
   Luxury Sidebar Design System (lux-)
   ========================================================================== */


.lux-sidebar-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 576px)
{
    .lux-sidebar-card {
        padding: 16px;
        border: none;
        box-shadow: none;
        background-color: transparent;

    }
}

.lux-card-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.lux-card-header i {
    font-size: 32px;
}

.lux-card-title {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.lux-pill-group {
    display: flex;
    background: #f8f9fa;
    padding: 6px;
    border-radius: 100px;
    margin-bottom: 25px;
}

.lux-pill-item {
    flex: 1;
    text-align: center;
}

.lux-pill-item input {
    display: none;
}

.lux-pill-item label {
    display: block;
    padding: 8px 15px;
    font-size: 1rem;
    font-weight: 700;
    color: #777;
    font-weight: 400;
    cursor: pointer;
    border-radius: 100px;
    transition: all 0.3s ease;
}
@media (max-width: 576px) {
    .lux-pill-item label {
    font-size: 14px;
    }
    .lux-sidebar-card
    {
        padding: 16px;
    }
}

.lux-pill-item input:checked + label {
    background: var(--primary-color);
    color: #222;
}

.lux-form-group {
    margin-bottom: 20px;
}

.lux-label {
    font-size: 14px;
    font-weight: 500;
    color: #7e7e7e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.lux-input-box {
    background: #fcfcfc;
    border: 1px solid #eeeeee;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.95rem;
    color: #333;
    width: 100%;
    transition: all 0.3s ease;
}

.lux-input-box:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(254, 228, 0, 0.1);
    outline: none;
}

.lux-swap-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lux-swap-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(254, 228, 0, 0.3);
    transition: all 0.3s ease;
}

.lux-swap-btn:hover {
    transform: rotate(180deg);
}

.lux-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.lux-dropdown-btn {
    text-align: left;
    background: #fcfcfc;
    border: 1px solid #eeeeee;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
    position: relative;
}

.lux-dropdown-btn::after {
    content: '\e990'; /* ph-caret-down */
    font-family: 'Phosphor';
    font-weight: 400;
    position: absolute;
    right: 18px;
    color: #bbb;
}

.lux-primary-btn {
    background: var(--primary-color);
    color: #222;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.lux-primary-btn:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(254, 228, 0, 0.25);
}

.lux-fare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}


.lux-fare-item input {
    display: none;
}

.lux-fare-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 6px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.lux-fare-card:hover {
    border-color: #ccc;
    background: #fafafa;
}

.lux-fare-card::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 1.5px solid #d1d1d1;
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: #fff;
}

.lux-fare-item input:checked + .lux-fare-card {
    background: #fffef5;
    border-color: var(--primary-color);
    color: #1a1a1a;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(254, 228, 0, 0.1);
}

.lux-fare-item input:checked + .lux-fare-card::before {
    background: var(--primary-color);
    border-color: var(--primary-color);
    content: '\e0f0'; /* ph-circle-fill */
    font-family: "Phosphor" !important;
    font-weight: 700;
    font-size: 7px;
    color: #1a1a1a;
}

.lux-cta-box {
    background: #fffdf0;
    border: 1px dashed var(--primary-color);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.lux-cta-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Premium Blog Sidebar Design */
 .side-bar-blog {
    /* background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06); */
    transition: all 0.3s ease;
} 

.side-bar-blog:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.blog-sidebar {
    padding: 0;
}

.blog-heading-side {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-sidebar .form-control {
    border: 1.5px solid #eee;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.blog-sidebar .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(254, 228, 0, 0.1);
    background: #fff;
}

.blog-sidebar .custom-btn {
    width: 100%;
    border: none;
    margin-top: 15px;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    background: var(--text-dark);
    color: #fff;
    transition: all 0.3s ease;
}

.blog-sidebar .custom-btn:hover {
    background: var(--primary-color);
    color: var(--text-dark);
    transform: scale(1.02);
}

.blog-sidebar .planner-cta {
    background: #fffdf0;
    border: 1px dashed var(--primary-color);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.blog-sidebar .planner-cta p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.mul {
    display: none;
}

.brv {
    border-left: 1px solid #ddd;
}

input[readonly] {
    background-color: #fff !important;
}

/* Logo Slider */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    color: #222222;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-slider {
    overflow: hidden;
    padding: 40px 0;
    background: white;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.logo-track {
    display: inline-block;
    animation: scroll var(--carousel-speed) linear infinite;
}

.logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 120px;
    margin: 0 40px;
    vertical-align: middle;
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-slider::before, .logo-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-slider::before {
    left: 0;
    top: 0;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider::after {
    right: 0;
    top: 0;
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(90deg, #3a3a3a, #2c2c2c);
    padding: 40px 0;
    color: #fff;
}

.newsletter-icon {
    font-size: 50px;
    color: #ffcc00;
}

.newsletter-section h2 {
    font-weight: 600;
    font-size: 20px;
}

.newsletter-section p {
    font-size: 14px;
    color: #ddd;
}

.subscribe-input {
    border-radius: 6px 0 0 6px;
    border: none;
    padding: 12px;
    background: #fff;
}

.subscribe-btn {
    background: #ffcc00;
    border: none;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 0 6px 6px 0;
    color: #222222;
}

.subscribe-btn:hover {
    background: #e6b800;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 20px;
}

.footer h5 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.footer h5::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #ffcc00;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
}

.footer ul li a:hover {
    color: #ffcc00;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: 40px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border-radius: 6px;
    margin-right: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 21px;
}

.social-icons a:hover {
    background: #ffcc00;
    color: #222222;
}

.payment-icons img {
    height: 30px;
    margin-left: 10px;
}

@media(max-width:768px) {
    .newsletter-section h2 {
        font-size: 20px;
    }
}

/* Gallery Styles */
.gallery-container {
    width: 100%;
}

.featured-img-box img {
    height: 450px;
    object-fit: cover;
    transition: all 0.3s ease, opacity 0.3s ease;
}

.thumbnail-swiper-container {
    padding: 10px 0;
}


.featured-title {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    margin: 0;
    width: 100%;
    z-index: 2;
    font-size: 48px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 1.6rem;
        padding: 1.2rem;
    }
}
.thumbnail-item {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    height: 100px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-item.active {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.thumbnail-item:hover {
    transform: translateY(-2px);
}

.thumbnail-item::after {
    content: "\f06e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
}
.thumbnail-item:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .featured-img-box img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .featured-img-box img {
        height: 250px;
    }
}

/* Swiper specific */
.thumbnailSwiper {
    width: 100%;
}

.thumbnailSwiper .swiper-slide {
    width: 120px;
}

/* Fix for landscape images across the site */
.package-box img, 
.blog-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Premium Holiday Card Redesign */
/* Premium Luxury Holiday Card Rework */
.lux-holiday-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.lux-holiday-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border-color: rgba(var(--primary-rgb), 0.2);
}

.card-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.lux-holiday-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent 40%, rgba(0,0,0,0.5));
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nights-badge {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-content-wrapper {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    margin-bottom: 12px;
}

.location-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.5rem;
}

.inclusion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.inclusion-tag {
    font-size: 0.7rem;
    background: #f8f9fa;
    color: #555;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.lux-holiday-card:hover .inclusion-tag {
    background: #fff;
    border-color: var(--primary-color);
    color: var(--text-dark);
}

.card-footer-action {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.price-block {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-value .currency {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.price-value .amount {
    font-size: 1.75rem;
    font-weight: 400;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.price-value .original-price {
    font-size: 0.85rem;
    color: #bbb;
    text-decoration: line-through;
    margin-left: 4px;
}

.price-note {
    font-size: 0.65rem;
    color: #888;
}

.lux-view-btn {
    background: var(--primary-color);
    color: #111;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.lux-view-btn:hover {
    background: var(--primary-color);
    color: #1a1a1a;
    transform: translateX(5px);
}

/* Pagination Styles */
.lux-pagination {
    gap: 10px;
}

.lux-pagination .page-item .page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px !important;
    border: 1px solid #eee;
    color: #555;
    font-weight: 700;
    transition: all 0.3s ease;
    background: #fff;
}

.lux-pagination .page-item.active .page-link {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #1a1a1a !important;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}

.lux-pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    color: #ccc;
    border-color: #eee;
}

.lux-pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background: #f0f0f0;
    border-color: #ddd;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Instant Tab Switching (No Fade) */
.tab-pane {
    display: none !important;
    opacity: 1 !important;
    transition: none !important;
}

.tab-pane.active {
    display: block !important;
}

/* Holiday Package Premium Cards */
.pkg-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: relative;
}

.pkg-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: rgba(254, 228, 0, 0.4);
}

.pkg-img-wrapper {
    position: relative;
    padding-top: 62%;
    overflow: hidden;
}

.pkg-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.pkg-card:hover .pkg-img-wrapper img {
    transform: scale(1.1);
}

.pkg-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pkg-badge i {
    color: var(--primary-color);
}

.pkg-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pkg-title {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.2rem;
}

.pkg-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.pkg-meta i {
    color: #e74c3c;
}

.pkg-amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    padding: 12px 0;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

.pkg-amenities i {
    font-size: 1rem;
    color: #999;
    transition: all 0.3s ease;
}

.pkg-card:hover .pkg-amenities i {
    color: #333;
    transform: scale(1.1);
}

.pkg-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.pkg-price-group {
    display: flex;
    flex-direction: column;
}

.pkg-price-label {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}

.pkg-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pkg-old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #ccc;
    font-weight: 500;
}

.pkg-current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    line-height: 1;
}

.pkg-price-unit {
    font-size: 0.75rem;
    color: #888;
    margin-top: 6px;
    font-weight: 500;
}

.pkg-btn {
    background: var(--primary-color);
    color: #000;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(254, 228, 0, 0.2);
}

.pkg-btn:hover {
    background: #000;
    color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pkg-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.pkg-btn:hover i {
    transform: translateX(3px);
}

.page-breadcrumb_abt {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-breadcrumb_abt li {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #999;
}

.page-breadcrumb_abt li a {
    color: #666;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.page-breadcrumb_abt li a i.ph-house {
    font-size: 1.1rem;
    color: #666;
}

.page-breadcrumb_abt li a:hover {
    color: var(--primary-color);
}

.page-breadcrumb_abt li .ph-caret-right {
    display: none;
}

.page-breadcrumb_abt li:not(:last-child)::after {
    content: '>';
    font-size: 0.8rem;
    color: #e5e5e5;
    margin-left: 15px;
    font-weight: 400;
}

.page-breadcrumb_abt li.active {
    color: #333;
    font-weight: 600;
}

/* Mobile Floating Navigation Bar (Right Center) */
@media (max-width: 767.98px) {
    .lux-mobile-booking-grid {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 2px;
        z-index: 999;
        padding: 0;
    }

    .lux-mobile-nav-btn {
        background: #FEE400; /* Vibrant Yellow */
        border: 1px solid rgba(0,0,0,0.05);
        border-right: none;
        width: 65px;
        height: 65px;
        border-radius: 12px 0 0 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        box-shadow: -4px 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        cursor: pointer;
        padding: 0;
    }

    .lux-mobile-nav-btn i {
        font-size: 22px;
        color: #000;
    }

    .lux-mobile-nav-btn span {
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: #000;
    }

    .lux-mobile-nav-btn:active {
        background: #FFC400;
        width: 70px;
    }

    /* Mobile Side Drawer Adjustment */
    .lux-side-drawer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        z-index: 1100;
        box-shadow: -15px 0 50px rgba(0,0,0,0.15);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        padding: 40px 25px;
        overflow-y: auto;
    }

    .lux-side-drawer.active {
        right: 0;
    }

    .lux-drawer-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(4px);
        z-index: 1050;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .lux-drawer-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .lux-drawer-close {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .lux-drawer-content {
        margin-top: 20px;
    }
}

/* Hide these on Desktop */
@media (min-width: 768px) {
    .lux-mobile-booking-grid, .lux-side-drawer, .lux-drawer-overlay {
        display: none !important;
    }
}
