/* 
   Ripples Travel - Slate & Tangerine Modern UI
   Author: Antigravity AI
*/

:root {
    --primary: #4c3398;
    /* Riyago Purple */
    --primary-dark: #3a267a;
    --secondary: #2d3436;
    /* Slate base */
    --secondary-hover: #1e272e;
    --accent: #7d5fff;
    --dark: #2d3436;
    --light: #ffffff;
    --bg-soft: #f9f9f9;
    --gray-100: #f1f2f6;
    --gray-150: #ecedf1;
    --gray-200: #dfe4ea;
    --gray-300: #ced4da;
    --text-muted: #636e72;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --glass: rgba(255, 255, 255, 0.85);
    /* Changed to white glass */
    --glass-border: rgba(0, 0, 0, 0.05);
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --serif: "Marcellus", serif;
    --sans: "Outfit", sans-serif;

    /* Checkout Specific UI */
    --checkout-bg: #fdfcfe;
    --checkout-card-bg: rgba(255, 255, 255, 0.9);
    --checkout-accent: #7d5fff;
    --checkout-text: #2d3436;
    --checkout-border: rgba(125, 95, 255, 0.1);
    --checkout-shadow: 0 10px 40px -10px rgba(76, 51, 152, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}


.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: var(--sans);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

.serif-font {
    font-family: var(--serif);
}

.transition-all {
    transition: var(--transition);
}

.tracking-widest {
    letter-spacing: 0.2rem;
}

/* Utilities */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light {
    background-color: var(--bg-soft) !important;
}

.mobile-filter-expandable.active {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    margin-bottom: 40px;
    /* Space above the half-out button */
}

.filter-fab:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.6);
}

.filter-fab svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.glass-modal {
    background: rgba(45, 52, 54, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--light);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 118, 117, 0.2);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-ripple div {
    position: absolute;
    border: 4px solid var(--primary);
    opacity: 1;
    border-radius: 50%;
    animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes loader-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: clamp(0.7rem, 2.5vw, 1rem);
    letter-spacing: 0.3rem !important;
    display: block !important;
    /* Ensure it's not hidden */
}

.hero-title {
    font-size: clamp(2rem, 8vw, 4.5rem);
    line-height: 1.1;
}

.hero-desc {
    font-size: clamp(0.9rem, 3vw, 1.25rem);
    max-width: 800px;
}

.filter-btn-mobile {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.filter-btn-mobile:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

/* Modal styling */
.modal-content.glassmorphism {
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header .btn-close-white {
    filter: invert(1);
    opacity: 0.8;
}

/* Fix horizontal spacing */
.container,
.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--glass-border);
}

/* Custom Navbar Toggler */
.navbar-toggler:focus {
    box-shadow: none;
}

.custom-toggler-icon {
    width: 28px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 10px;
    transition: var(--transition);
}

.navbar.scrolled .custom-toggler-icon span {
    background: var(--secondary);
}

/* Middle line shorter */
.custom-toggler-icon span:nth-child(2) {
    width: 70%;
    align-self: flex-end;
}

.navbar-toggler:not(.collapsed) .custom-toggler-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .custom-toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .custom-toggler-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.navbar.scrolled .nav-link {
    color: var(--secondary) !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary) !important;
}

.navbar.scrolled .navbar-brand span:first-child {
    color: var(--primary) !important;
}

.navbar.scrolled .navbar-brand span:not(:first-child) {
    color: var(--secondary) !important;
}

.responsive-brand-size {
    font-size: 1.75rem;
    transition: var(--transition);
}

@media (max-width: 991px) {
    .responsive-brand-size {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .responsive-brand-size {
        font-size: 1.1rem;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Nav Actions & Icons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    order: 2;
    /* Move to the right on mobile */
}

@media (min-width: 992px) {
    .nav-actions {
        order: 3;
        /* Group after the menu on desktop */
        gap: 20px;
    }
}

.nav-action-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.15rem;
    padding: 8px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 42px;
    height: 42px;
}

.navbar.scrolled .nav-action-btn {
    color: var(--secondary);
}

.nav-action-btn:hover {
    color: var(--primary) !important;
    transform: translateY(-2px);
}


/* Premium Dropdown */

/* Premium Dropdown */
.premium-nav-dropdown {
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    min-width: 220px;
    animation: premiumFadeIn 0.3s ease forwards;
    background: #fff;
}

@keyframes premiumFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.premium-nav-dropdown .dropdown-item {
    padding: 12px 25px;
    font-weight: 500;
    color: var(--secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.premium-nav-dropdown .dropdown-item:hover {
    background: var(--bg-soft);
    color: var(--primary);
    padding-left: 30px;
}

/* Desktop Search Dropdown */
.search-desktop-dropdown {
    position: relative;
}

.search-dropdown-premium {
    min-width: 350px;
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 20px !important;
    animation: premiumFadeIn 0.3s ease forwards;
}

.premium-search-input {
    border: 1px solid var(--gray-200);
    border-radius: 0;
    padding: 12px 45px 12px 15px;
    font-size: 0.95rem;
    font-weight: 500;
}

.premium-search-input:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.premium-search-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.premium-search-submit:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Compact Search Bar Overlay */
.search-overlay-compact {
    position: fixed;
    top: -120px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 15px 0;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 1px solid var(--gray-200);
}

.search-overlay-compact.active {
    top: 0;
}

.search-bar-wrap {
    background: var(--bg-soft);
    padding: 5px 20px;
}

.search-bar-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-weight: 500;
    color: var(--secondary);
    outline: none;
    font-size: 1.1rem;
}

.search-bar-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-close-search {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.btn-close-search:hover {
    color: var(--primary);
    transform: rotate(90deg);
}


/* Offcanvas Icon Box - Sidebar Support */
.nav-offcanvas-icon-box {
    width: 54px;
    height: 54px;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    border: 1px solid var(--gray-150);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    width: 100%;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden !important;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(45, 52, 54, 0.6) 0%, rgba(45, 52, 54, 0.3) 50%, rgba(45, 52, 54, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding-top: 50px;
}

.slide-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.swiper-slide-active .slide-inner {
    transform: scale(1.1);
}

/* Search Container */
.search-container {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    z-index: 10;
    text-align: center;
}

.glassmorphism {
    background: var(--glass);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
}

.search-icon {
    color: var(--primary) !important;
}

.form-control,
.form-select {
    border: none;
    border-bottom: 2px solid rgba(15, 23, 42, 0.1);
    background: transparent !important;
    padding-left: 0;
    color: var(--secondary) !important;
    font-weight: 500;
}

.hero-section .form-control,
.hero-section .form-select {
    color: white !important;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.hero-section .search-box .form-control,
.hero-section .search-box .form-select {
    color: var(--secondary) !important;
    border-bottom-color: rgba(15, 23, 42, 0.1);
}

.form-control:focus,
.form-select:focus {
    color: inherit !important;
    border-bottom-color: var(--primary);
    box-shadow: none;
}

.border-end-lg {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .search-container {
        display: none !important;
    }
}

.search-box {
    padding: 20px !important;
}

.border-end-lg {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 5px;
}

.hero-section {
    position: relative !important;
    height: auto;
    min-height: 80vh;
    padding-top: 100px;
    overflow: visible !important;
}

/* Sections General */
section {
    padding: 40px 0;
    width: 100%;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }

    .display-2 {
        font-size: 3rem !important;
    }

    .display-4 {
        font-size: 2.5rem !important;
    }

    .display-5 {
        font-size: 2rem !important;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3.5rem);
    }
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Destination Cards */
.destination-card {
    height: 450px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 1.5rem;
    overflow: hidden;
}

.destination-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 52, 54, 0.9) 0%, rgba(45, 52, 54, 0.2) 60%, transparent 100%);
    transition: var(--transition);
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(255, 118, 117, 0.4) 0%, rgba(45, 52, 54, 0.6) 100%);
}

/* Trending Section Styling */
.trending-filters .filter-tab {
    padding: 10px 25px;
    border: 1px solid var(--gray-200);
    background: white;
    color: var(--text-muted);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.trending-filters .filter-tab:hover,
.trending-filters .filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 118, 117, 0.2);
}

.trending-card {
    background: white;
    border: 1px solid var(--gray-150);
    transition: var(--transition);
    height: 100%;
}

.trending-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-subtle);
}

.trending-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.trending-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.trending-card:hover .trending-img-wrapper img {
    transform: scale(1.15);
}

.trending-price-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.trending-meta {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.trending-rating,
.trending-duration {
    background: rgba(45, 52, 54, 0.7);
    backdrop-filter: blur(5px);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.trending-rating i {
    color: #ff9f43;
}

.trending-btn {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.trending-btn:hover {
    background: var(--primary);
    color: white;
    transform: rotate(-45deg);
}

.trending-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.trending-item.hide {
    display: none;
}

/* Package Cards */
.package-card {
    border: 1px solid var(--gray-200);
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05) !important;
}

.package-img {
    height: 250px;
    overflow: hidden;
}

.package-img img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: var(--light);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 118, 117, 0.3);
}

/* Category Slider Section */
.category-section {
    background: #f8f9fa;
}

.category-slider-wrapper {
    padding: 0;
}

.category-swiper {
    overflow: hidden;
}

.category-card {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    transition: all 0.4s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    color: #ffffff;
    text-align: center;
    z-index: 2;
}

.category-content i {
    color: var(--primary);
    transition: all 0.3s ease;
}

.category-card:hover .category-content i {
    transform: scale(1.1);
}

.category-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Marcellus', serif;
}

@media (max-width: 768px) {
    .category-content {
        padding: 10px;
    }

    .category-content i {
        font-size: 1.5rem !important;
        margin-bottom: 5px !important;
    }

    .category-name {
        font-size: 0.9rem;
    }

    .category-count {
        font-size: 0.7rem;
    }

    .category-card {
        height: 160px;
        /* Reduced height for neat look */
    }
}

.category-count {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Category Navigation Arrows */
.category-nav-prev,
.category-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-nav-prev {
    left: 10px;
}

.category-nav-next {
    right: 10px;
}

.category-nav-prev:hover,
.category-nav-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.category-nav-prev i,
.category-nav-next i {
    color: #1a1a1a;
    font-size: 1.2rem;
}

.category-nav-prev:hover i,
.category-nav-next:hover i {
    color: #ffffff;
}

@media (max-width: 768px) {
    .category-slider-wrapper {
        padding: 0 60px;
    }

    .category-card {
        height: 160px;
    }

    .category-nav-prev,
    .category-nav-next {
        width: 40px;
        height: 40px;
    }

    .category-nav-prev i,
    .category-nav-next i {
        font-size: 1rem;
    }
}

/* Icons */
.pkg-icons i {
    font-size: 1.1rem;
    color: var(--primary);
    background: var(--gray-100);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.icon-box {
    width: 80px;
    min-width: 80px;
    height: 80px;
    border-radius: 1rem;
    background: var(--gray-100);
    color: var(--primary);
    transition: var(--transition);
}

.feature-box:hover .icon-box {
    background-color: var(--primary) !important;
    color: white !important;
    transform: rotateY(180deg);
}

/* Testimonials */
.testimonial-card {
    border: 1px solid var(--gray-200);
    background: white;
    border-radius: 1.5rem;
}

.testimonial-card p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--dark);
    font-weight: 300;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    width: 25px !important;
    border-radius: 5px !important;
}

/* Gallery */
.gallery-item {
    height: 300px;
    display: block;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 118, 117, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Newsletter */
.newsletter-section {
    padding: 100px 0;
}

.newsletter-box {
    position: relative;
    z-index: 10;
}

/* Footer */
.footer {
    background: var(--gray-100) !important;
    color: var(--secondary) !important;
    border-top: 1px solid var(--gray-200);
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer h5 {
    color: var(--secondary);
    letter-spacing: 0.5px;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: var(--gray-150) !important;
    transition: var(--transition);
    color: var(--secondary) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-3px);
    background-color: var(--primary) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(76, 51, 152, 0.2);
}

/* Swiper Nav */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Tour Details Page Styles - Hybrid Layout */
.details-hero-new {
    min-height: 380px;
    padding-top: 120px;
    padding-bottom: 50px;
    background-size: cover !important;
    background-position: center !important;
}

.gallery-slider-card {
    height: 450px;
}

.gallery-slider-card .detailsHeroSwiper {
    width: 100%;
    height: 100%;
}

.gallery-slider-card .image-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(45, 52, 54, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-nav-btn {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    color: #fff !important;
    transition: var(--transition);
}

.custom-nav-btn:after {
    font-size: 1rem !important;
    font-weight: bold;
}

.fw-500 {
    font-weight: 500;
}

.custom-nav-btn:hover {
    background: var(--primary) !important;
}

/* The original custom-nav-btn rules are replaced by the new ones above */

.detailsHeroSwiper {
    width: 100%;
    height: 100%;
}

.details-hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease;
}

.swiper-slide-active .details-hero-slide {
    transform: scale(1.1);
}

.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 52, 54, 0.95) 0%, rgba(45, 52, 54, 0.4) 50%, rgba(45, 52, 54, 0.7) 100%);
    z-index: 2;
}

.hero-content-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 5;
}

.image-counter {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

.amenity-card {
    border: 1px solid var(--gray-200);
}

.amenity-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.subtitle-stats {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Tour Details Page Styles */
.details-hero {
    height: 60vh;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    padding-top: 100px;
}

.details-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(45, 52, 54, 0.9) 0%, transparent 100%);
}

.itinerary-item {
    position: relative;
}

.itinerary-item:last-child {
    border-bottom: none !important;
}

.object-fit-cover {
    object-fit: cover;
}

/* Testimonials Redesign (V2) */
.testimonials-section {
    background-color: #f8fbff;
    position: relative;
    padding: 100px 0;
}

.testimonial-decoration {
    position: absolute;
    top: 50px;
    right: 5%;
    font-size: 3rem;
    color: #ff7675;
    opacity: 0.8;
    pointer-events: none;
}

.testimonial-title-wrapper {
    margin-bottom: 60px;
}

.testimonial-title-wrapper .title-word {
    position: relative;
    display: inline-block;
    color: #ff7675;
}

.testimonial-title-wrapper .title-word::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff7675;
    border-radius: 2px;
}

.testimonial-card-v2 {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.testimonial-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card-v2 .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3436;
}

.testimonial-card-v2 .card-text {
    color: #636e72;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f1f2f6;
    padding-top: 20px;
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-meta img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #2d3436;
}

.user-location {
    font-size: 0.85rem;
    color: #636e72;
    margin-bottom: 0;
}

.rating-badge {
    background: #fbc531;
    color: #2d3436;
    padding: 2px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Custom Slider Nav at Bottom center */
.slider-controls-bottom {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* margin-top: 50px; */
}

.slider-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 1px solid #dfe4ea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: #2d3436;
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Trending Slider Adjustments */
.trending-slider-container {
    position: relative;
    padding-bottom: 30px;
}

.trending-swiper {
    padding: 10px 10px 60px 10px;
}

.trending-item.hide {
    display: none;
}

/* Modern Checkout Styles */
.modern-checkout-header {
    background: white;
    border-bottom: 1px solid var(--gray-200);
    padding-top: 90px !important;
    /* Ensure visibility below fixed navbar */
}

.step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    color: var(--text-muted);
}

.step-item.active {
    color: var(--primary);
    font-weight: 700;
}

.step-item:not(:last-child)::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 15px;
    color: var(--gray-300);
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.active .step-number {
    background: var(--primary);
    color: white;
}

.payment-card {
    border: 2px solid var(--gray-200);
    transition: var(--transition);
    cursor: pointer;
}

.payment-card:hover {
    border-color: var(--primary-subtle);
    background: var(--gray-100);
}

.payment-card.active {
    border-color: var(--primary);
    background: rgba(255, 118, 117, 0.05);
    /* Very light tangerine */
}

.payment-card input[type="radio"] {
    accent-color: var(--primary);
}

/* Checkout & Success Enhancements */
@media (max-width: 768px) {
    .checkout-stepper {
        justify-content: center;
        width: 100%;
        gap: 15px !important;
    }

    .step-item {
        font-size: 0.75rem;
        gap: 5px !important;
    }

    .step-item:not(:last-child)::after {
        margin-left: 5px !important;
        font-size: 0.8rem;
    }

    .step-number {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    .modern-checkout-header h2 {
        text-align: center;
    }
}

.x-small {
    font-size: 0.75rem;
}

.cursor-pointer {
    cursor: pointer;
}

.bg-primary-subtle {
    background-color: rgba(255, 118, 117, 0.1) !important;
}

.border-primary-subtle {
    border-color: rgba(255, 118, 117, 0.2) !important;
}

.modern-input {
    background-color: #f8f9fa !important;
    border: 1.5px solid #eee !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: var(--secondary) !important;
    transition: all 0.3s ease;
}

.modern-input:focus {
    border-color: var(--primary) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(76, 51, 152, 0.05) !important;
}

/* Adjusting date icon for light theme */
input[type="date"].modern-input::-webkit-calendar-picker-indicator {
    filter: none;
    opacity: 0.5;
}

.modern-input::placeholder {
    color: #a0a0a0 !important;
}

/* Includes/Excludes Styles */
.include-item,
.exclude-item {
    padding: 12px 15px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #f1f3f5;
    transition: transform 0.3s ease;
}

.include-item:hover,
.exclude-item:hover {
    transform: translateX(5px);
}

.include-item i {
    color: #2ecc71;
}

.exclude-item i {
    color: #e74c3c;
}

/* Policy Sections */
.policy-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #f1f3f5;
    height: 100%;
}

.policy-card h6 {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.policy-text {
    font-size: 0.8rem;
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Checkout Page Refinements */
.checkout-input {
    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: #2d3436 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-input:focus {
    border-color: var(--primary) !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(76, 51, 152, 0.08) !important;
    outline: none !important;
}

.payment-card {
    border: 2px solid #f1f3f5;
    transition: all 0.3s ease;
}

.payment-card.active {
    border-color: var(--primary);
    background-color: rgba(76, 51, 152, 0.02);
}

/* --- PREMIUM SUCCESS PAGE (Luxury Redesign) --- */
.success-bg-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1530789253388-582c481c54b0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 40px !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15) !important;
}

.travel-pass-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px dashed #ddd;
    /* Ticket perforation style */
}

.pass-header {
    background: var(--primary);
    color: white;
    padding: 20px;
    text-align: center;
}

.success-mark-v3 {
    width: 80px;
    height: 80px;
    border: 2px solid #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.success-mark-v3 i {
    font-size: 2.5rem;
    color: #2ecc71;
    animation: scale-up 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scale-up {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.booking-detail-item {
    padding: 15px 0;
    border-bottom: 1px solid #f1f3f5;
}

.booking-detail-item:last-child {
    border-bottom: none;
}

.pass-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #95a5a6;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    display: block;
    margin-bottom: 4px;
}

.pass-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary);
}

.qr-mock {
    width: 60px;
    height: 60px;
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 5px;
}

.hover-translate:hover {
    transform: translateY(-5px);
}

.glass-btn {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--secondary) !important;
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.6) !important;
}

/* Success Page Styles */
.success-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Vertical center */
    justify-content: center;
    padding: 100px 20px 60px;
    /* Base padding */
}

/* Ensure centering happens within the viewport space BELOW the nav */
main.responsive-success-main {
    padding-top: 80px;
    /* Extra clearance for fixed nav */
}

.success-card {
    max-width: 650px;
    /* Increased width */
    width: 100%;
    background: #ffffff;
    border-radius: 28px;
    padding: 3rem 4rem;
    /* Balanced horizontal vs vertical padding */
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.03);
}

.success-icon-wrapper {
    width: 100px;
    height: 100px;
    background: #e8f8f0;
    color: #2ecc71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    position: relative;
    animation: success-bounce 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes success-bounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.confetti-piece {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
}

@keyframes confetti-burst {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(0);
        opacity: 0;
    }
}

/* Responsive Adjustments for Success Page */
@media (max-width: 991.98px) {
    .glass-card {
        padding: 2rem !important;
        border-radius: 30px !important;
    }
}

@media (max-width: 767.98px) {
    .success-bg-wrapper {
        background-attachment: scroll;
        /* Performance on mobile */
    }

    .travel-pass-card {
        margin-bottom: 2rem;
    }

    .display-5 {
        font-size: 2.2rem;
    }

    .glass-card {
        padding: 1.5rem !important;
    }

    main.responsive-success-main {
        padding-top: 100px !important;
        /* More clearance on mobile */
    }

    .card.glass-card .btn {
        padding: 12px 25px !important;
        font-size: 0.8rem !important;
    }

    .success-mark-v3 {
        width: 60px;
        height: 60px;
    }

    .success-mark-v3 i {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .pass-value {
        font-size: 0.85rem;
    }

    .pass-header h6 {
        font-size: 0.9rem;
    }
}

/* Responsive Adjustments & MOBILE FIXES - Extended to 1024px for iPad Pro */
@media (max-width: 1024.98px) {
    .navbar {
        background: transparent;
    }

    .hero-section {
        height: 75vh !important;
        min-height: 500px;
        margin-bottom: 50px;
        overflow: visible !important;
        position: relative;
    }

    /* Fixed Tablet Scroll: Clips horizontal zoom without clipping vertical filter buttons */
    html,
    body {
        overflow-x: hidden !important;
        position: relative;
        width: 100%;
    }

    .display-2 {
        font-size: 2.8rem;
    }

    /* Filter Visibility: Only hide desktop filter below 992px */
    @media (max-width: 991.98px) {
        .search-container {
            display: none !important;
        }
    }

    .hero-content {
        padding-top: 80px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 15px !important;
    }

    .discrete-slider-container {
        height: 350px;
    }

    .tour-header-section h1 {
        font-size: 2.2rem;
    }

    .image-counter {
        bottom: 15px;
        right: 15px;
        font-size: 0.7rem;
    }

    .details-hero-new {
        height: auto;
        min-height: 400px;
        padding-top: 120px;
        padding-bottom: 40px;
        display: block !important;
        /* Overriding d-flex align-items-end */
    }

    .details-hero-new h1 {
        font-size: 2rem;
    }

    /* Package Details Stacking Fix for iPad Pro (up to 1200px) */
    .col-xl-8,
    .col-xl-4 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .sticky-sidebar-adjust {
        position: static !important;
        /* margin-top: 3rem; */
    }

    .tour-overview-expanded {
        width: 100% !important;
        max-width: 100% !important;
    }

    .details-hero-new .badge {
        font-size: 0.7rem;
    }

    .subtitle-stats {
        font-size: 0.8rem;
        gap: 10px !important;
    }

    .text-muted {
        color: #636e72 !important;
        /* Darker muted for better contrast */
    }


    /* Image fixes for mobile */
    .destination-card {
        height: 350px;
        margin-bottom: 20px;
    }

    .package-img {
        height: 220px;
    }

    /* Description fixes */
    .testimonial-card p {
        font-size: 1.15rem;
    }

    .card-overlay h3 {
        font-size: 1.5rem;
    }

    .card-overlay p {
        font-size: 0.95rem;
        opacity: 1 !important;
        color: #ffffff !important;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        height: 75vh !important;
        min-height: 480px;
        overflow: visible !important;
    }

    .display-2 {
        font-size: 2.2rem;
    }

    section {
        padding: 40px 0;
    }

    .details-hero-new {
        height: auto;
        min-height: 380px;
        padding-top: 100px;
        padding-bottom: 30px;
    }

    .details-hero-new h1 {
        font-size: 1.7rem;
    }

    .destination-card {
        height: 320px;
    }

    .card-overlay {
        padding: 1.5rem !important;
    }

    .nav-link {
        margin: 5px 0;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-desc {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.15rem !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        overflow-x: hidden;
    }

    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
        overflow-x: hidden;
    }

    .col-12 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* --- PREMIUM UI OVERHAUL --- */

/* Glassmorphism Sticky Mobile Footer - Visible by Default */
.sticky-mobile-cta {
    position: fixed;
    bottom: 25px;
    left: 15px;
    right: 15px;
    width: auto;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 12px 25px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    transform: translateY(0);
    /* Visible by default */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: none;
    /* Only flex on mobile/tablet via media query */
    align-items: center;
    justify-content: space-between;
}

.sticky-mobile-cta.hidden {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none;
}

.sticky-mobile-cta .offer-price {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), #8e44ad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -4px;
}

.sticky-mobile-cta .btn-book {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 18px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(76, 51, 152, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.sticky-mobile-cta .btn-book:active {
    transform: scale(0.95);
}

.sticky-mobile-cta .btn-book::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Graphical Tour Calendar v2 */
.tour-calendar-premium {
    background: white;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-150);
    overflow-x: auto;
    /* Added for mobile scroll */
}

.calendar-header-days {
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.calendar-grid-v2 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
}

.cal-day-v2 {
    background: white;
    border-radius: 18px;
    padding: 15px 10px;
    text-align: center;
    border: 1px solid var(--gray-150);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cal-day-v2:not(.empty):hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(76, 51, 152, 0.08);
}

.cal-day-v2.available {
    background: rgba(76, 51, 152, 0.01);
}

.cal-day-v2.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(76, 51, 152, 0.3);
}

.cal-day-v2 .day-num {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
}

.cal-day-v2 .day-price {
    font-size: 0.65rem;
    opacity: 0.8;
}

.cal-day-v2.active-marker::before {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
}

/* Calendar Responsiveness */
@media (max-width: 991.98px) {
    .tour-calendar-premium {
        padding: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .tour-calendar-premium {
        padding: 1rem;
        border-radius: 1.5rem;
    }

    .calendar-grid-v2 {
        gap: 8px;
    }

    .cal-day-v2 {
        padding: 10px 5px;
    }
}

@media (max-width: 575.98px) {
    .calendar-header-v2 {
        flex-direction: column;
        align-items: center !important;
        gap: 15px;
    }

    .tour-calendar-premium {
        padding: 0.8rem;
    }

    .calendar-grid-v2,
    .calendar-header-days {
        min-width: 320px;
        /* Ensure a minimum width for the grid */
        gap: 5px;
    }

    .cal-day-v2 .day-num {
        font-size: 0.9rem;
    }

    .cal-day-v2 .day-price {
        font-size: 0.55rem;
    }

    .calendar-nav h5 {
        font-size: 1rem;
        min-width: 120px !important;
    }
}

/* Premium FAQ Card Layout */
.faq-grid-premium {
    display: grid;
    gap: 20px;
}

.faq-card-premium {
    background: white;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--gray-150);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.faq-card-premium:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.faq-card-premium h5 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0px;
    transition: margin 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-card-premium .faq-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-card-premium.active {
    border-color: var(--primary);
    background: rgba(76, 51, 152, 0.02);
}

.faq-card-premium.active .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(180deg);
}

.faq-answer-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin 0.3s ease;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-card-premium.active .faq-answer-premium {
    max-height: 250px;
    margin-top: 20px;
}

/* Premium Related Tours */
.related-swiper {
    padding: 30px 10px 60px !important;
}

.premium-tour-card {
    border-radius: 24px;
    background: white;
    border: 1px solid var(--gray-150);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-tour-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.tour-img-wrapper {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.tour-img-wrapper img {
    transition: transform 0.6s ease;
}

.premium-tour-card:hover .tour-img-wrapper img {
    transform: scale(1.1);
}

.tour-floating-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tour-price-box {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(76, 51, 152, 0.3);
}

@media (max-width: 991.98px) {
    .sticky-mobile-cta {
        display: flex;
    }
}

/* --- AUTHENTICATION PAGES (Minimalist Style) --- */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=1920');
    background-size: cover;
    background-position: center;
    padding: 20px;
    font-family: 'Outfit', sans-serif;
}

.auth-card {
    background: #ffffff;
    border-radius: 0;
    padding: 35px 50px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    color: #1a1a1a;
    border: 1px solid #eee;
}

.auth-logo {
    text-align: center;
    margin-bottom: 40px;
}

.auth-logo a {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -0.02rem;
}

.auth-logo a span {
    color: var(--primary);
}

.auth-form .form-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    margin-bottom: 8px;
    color: #666;
}

.auth-form .form-control {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0;
    padding: 14px 20px;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.auth-form .form-control:focus {
    background: #ffffff;
    border-color: #1a1a1a;
    box-shadow: none;
    outline: none;
}

.auth-form .form-control::placeholder {
    color: #adb5bd;
}

/* OTP Inputs */
.otp-group {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.otp-input {
    width: 60px;
    height: 70px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
}

.auth-links {
    text-align: center;
    margin-top: 35px;
    font-size: 0.9rem;
    color: #666;
}

.auth-links a {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 700;
    text-underline-offset: 4px;
}

.auth-links a:hover {
    color: var(--primary);
}

.btn-auth {
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 0;
    padding: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    width: 100%;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-auth:hover {
    background: var(--primary);
    transform: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-auth i {
    transition: transform 0.3s ease;
}

.btn-auth:hover i {
    transform: translateX(5px);
}

.btn-auth:disabled,
.btn-auth[disabled] {
    background: #1a1a1a !important;
    opacity: 0.7 !important;
    color: white !important;
    cursor: not-allowed;
}

.riyago-btn-loader {
    color: white !important;
}

/* --- PACKAGES PAGE STYLES --- */

.packages-hero {
    height: 60vh;
    min-height: 400px;
    margin-top: 0;
    z-index: 10;
}

.filter-sidebar .card {
    border: 1px solid var(--gray-150) !important;
    transition: var(--transition);
}

.filter-sidebar .card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.search-input-group .form-control:focus {
    box-shadow: none;
}

.search-input-group .input-group-text {
    padding-left: 1.5rem;
}

/* Custom Range Slider */
.custom-range::-webkit-slider-runnable-track {
    background: #e9ecef;
    height: 6px;
    border-radius: 10px;
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    margin-top: -7px;
    box-shadow: 0 4px 10px rgba(76, 51, 152, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.custom-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

.rating-filter i {
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.rating-filter i:hover {
    transform: scale(1.3);
}

/* Grid Card Enhancements for Listing */
.package-card {
    border: 1px solid var(--gray-150) !important;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(76, 51, 151, 0.3);
}

@media (max-width: 991.98px) {
    .packages-hero {
        height: 50vh;
        min-height: 350px;
    }
}

/* --- CONTACT WIDGET --- */
.contact-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
    /* FIX: Prevent container from blocking clicks behind it */
}

.contact-toggle-btn {
    pointer-events: auto;
    /* Re-enable for the button */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 30px rgba(76, 51, 152, 0.4);
}

.contact-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(76, 51, 152, 0.5);
}

.contact-toggle-btn .close-icon {
    display: none;
    font-size: 1.2rem;
}

.contact-widget-container.active .contact-toggle-btn {
    background: #ff4757;
    transform: rotate(90deg);
}

.contact-widget-container.active .main-icon {
    display: none;
}

.contact-widget-container.active .close-icon {
    display: block;
}

.contact-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 20px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding-right: 8px;
}

.contact-widget-container.active .contact-options {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    gap: 15px;
    transition: all 0.3s ease;
    width: auto;
    pointer-events: inherit;
    /* FIX: Inherit from .contact-options to follow its state */
}

.contact-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.contact-label {
    background: white;
    color: var(--secondary);
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    pointer-events: none;
}

.contact-item:hover .contact-label {
    opacity: 1;
    transform: translateX(0);
}

.contact-item.phone i {
    color: #2ecc71;
}

.contact-item.message i {
    color: #3498db;
}

.contact-item.whatsapp i {
    color: #25d366;
}

.contact-item.chatbot i {
    color: var(--primary);
}

/* --- MODERN AI CHATBOX --- */
.ai-chat-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.ai-chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-window-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #7d5fff 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-bot-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.btn-close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-close-chat:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.chat-window-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overscroll-behavior: contain;
}

.chat-message {
    max-width: 85%;
    display: flex;
    flex-direction: column;
}

.chat-message.ai {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.message-content {
    padding: 0.85rem 1.15rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
}

.chat-message.ai .message-content {
    background: white;
    color: var(--secondary);
    border-bottom-left-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.chat-message.user .message-content {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 10px 20px rgba(76, 51, 152, 0.15);
}

.message-time {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 4px;
}

.chat-window-footer {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-input-modern {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 100px !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
}

.btn-send-modern {
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    background: var(--primary) !important;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px !important;
}

@media (max-width: 575.98px) {
    .ai-chat-window {
        width: calc(100vw - 40px);
        height: 80vh;
        right: 20px;
        bottom: 90px;
    }
}

.contact-item:hover i {
    transform: scale(1.1);
    color: white !important;
}

.contact-item.phone:hover i {
    background: #2ecc71;
}

.contact-item.message:hover i {
    background: #3498db;
}

.contact-item.whatsapp:hover i {
    background: #25d366;
}

.contact-item.chatbot:hover i {
    background: var(--primary);
}

@media (max-width: 1024.98px) {
    .contact-widget-container {
        bottom: 20px;
        right: 20px;
    }

    .navbar {
        background: transparent !important;
        padding: 15px 0 !important;
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background: var(--glass) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        padding: 10px 0 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    }

    /* Brand Visibility on Hero */
    .navbar:not(.scrolled) .navbar-brand span {
        color: white !important;
    }

    .navbar.scrolled .navbar-brand span:first-child {
        color: var(--primary) !important;
    }

    .navbar.scrolled .navbar-brand span:not(:first-child) {
        color: var(--secondary) !important;
    }

    /* Left-Sliding Offcanvas Styling */
    .offcanvas {
        background: #ffffff !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        border-right: 1px solid var(--glass-border) !important;
        border-left: none !important;
        width: 280px !important;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 10050 !important;
    }

    .offcanvas-backdrop {
        z-index: 10040 !important;
    }

    .offcanvas-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .offcanvas-body {
        padding: 1.5rem;
    }

    .offcanvas .nav-link {
        color: var(--secondary) !important;
        font-size: 1.15rem;
        font-weight: 600;
        padding: 1.25rem 0.5rem !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        display: block;
    }

    .offcanvas .nav-link:hover {
        color: var(--primary) !important;
        padding-left: 1rem !important;
        background: rgba(76, 51, 152, 0.05);
        border-radius: 12px;
    }

    /* Modern Close Button */
    .btn-close-custom {
        background: rgba(0, 0, 0, 0.05);
        border: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--secondary);
        cursor: pointer;
        transition: var(--transition);
    }

    .btn-close-custom:hover {
        background: #ff4757;
        color: white;
        transform: rotate(90deg);
    }

    /* Custom Toggler Logic */
    .custom-toggler-icon span {
        background: white !important;
    }

    .navbar.scrolled .custom-toggler-icon span {
        background: var(--secondary) !important;
    }

    /* Toggle Animations */
    .navbar-toggler.collapsed .custom-toggler-icon span:nth-child(1) {
        transform: none !important;
    }

    .navbar-toggler.collapsed .custom-toggler-icon span:nth-child(2) {
        opacity: 1 !important;
        width: 70%;
    }

    .navbar-toggler.collapsed .custom-toggler-icon span:nth-child(3) {
        transform: none !important;
    }

    .navbar-toggler:not(.collapsed) .custom-toggler-icon span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }

    .navbar-toggler:not(.collapsed) .custom-toggler-icon span:nth-child(2) {
        opacity: 0 !important;
    }

    .navbar-toggler:not(.collapsed) .custom-toggler-icon span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }

    /* Filter Modal Refinements */
    .filter-mobile-wrapper {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%) !important;
        z-index: 1010;
        width: auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .filter-expand-btn {
        background: #2d3436;
        color: white;
        padding: 14px 28px;
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: center;
        transition: var(--transition);
        border: 2px solid rgba(255, 255, 255, 0.15) !important;
        white-space: nowrap;
        font-weight: 700;
        cursor: pointer;
        position: relative;
        /* Ensure it's the click target */
        z-index: 99999;
    }

    /* FIX: Ensure children don't intercept events */
    .filter-expand-btn * {
        pointer-events: none !important;
    }

    .filter-expand-btn:active {
        transform: scale(0.95);
    }

    .mobile-filter-expandable {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw !important;
        background: transparent !important;
        /* FIX: Remove background to show rounded corners */
        z-index: 10001;
        transform: translateY(-100%);
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0.6s;
        pointer-events: none;
        visibility: hidden;
        /* box-shadow removed here as it's on the card */
    }

    .mobile-filter-expandable.active {
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
        transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
    }

    /* Filter Backdrop */
    .filter-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
    }

    .filter-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .filter-glass-card {
        background: #ffffff !important;
        width: 100% !important;
        border-bottom: 3px solid var(--primary);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 35px 35px !important;
        padding: 3rem 2rem 2.5rem !important;
        margin-top: 0 !important;
    }

    .luxury-label {
        font-size: 0.75rem;
        font-weight: 800;
        color: var(--secondary);
        letter-spacing: 2px;
        margin-bottom: 8px;
        display: block;
        opacity: 0.8;
    }

    .input-group-modern {
        display: flex;
        align-items: center;
        padding-bottom: 8px;
        border-bottom: 2px solid rgba(15, 23, 42, 0.08);
        transition: var(--transition);
    }

    .input-group-modern:focus-within {
        border-color: var(--primary);
    }

    .modern-input {
        border: none !important;
        background: transparent !important;
        width: 100%;
        font-weight: 600;
        color: var(--secondary) !important;
        padding: 0 !important;
        outline: none !important;
    }

    .btn-close-filter {
        background: rgba(0, 0, 0, 0.05);
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        color: var(--secondary);
        transition: var(--transition);
        cursor: pointer;
    }

    .btn-close-filter:hover {
        background: var(--primary);
        color: white;
        transform: rotate(90deg);
    }
}

@media (max-width: 1024px) {
    .section-container {
        padding: 0 20px !important;
    }

    .nav-section {
        padding: 0 20px !important;
    }
}

@media (min-width: 1025px) {
    .section-container {
        padding: 0 70px !important;
    }

    .nav-section {
        padding: 0 70px !important;
    }
}

/* --- CHATBOT QUICK SUGGESTIONS (Expand/Collapse) --- */
.chat-suggestions-wrapper {
    position: relative;
    padding: 0 1.25rem 0.75rem;
}

.suggestions-toggle-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: rgba(76, 51, 152, 0.06);
    border: 1.5px solid rgba(76, 51, 152, 0.15);
    border-radius: 100px;
    padding: 9px 18px;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
}

.suggestions-toggle-btn:hover {
    background: rgba(76, 51, 152, 0.12);
    border-color: rgba(76, 51, 152, 0.3);
}

.suggestions-toggle-btn .toggle-icon {
    color: #f39c12;
    font-size: 0.85rem;
}

.suggestions-toggle-btn .chevron-icon {
    font-size: 0.75rem;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.chat-suggestions-wrapper.open .chevron-icon {
    transform: rotate(180deg);
}

.suggestions-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.3s ease,
        margin-bottom 0.3s ease;
    margin-bottom: 0;
}

.chat-suggestions-wrapper.open .suggestions-panel {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 10px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 8px;
}

.suggestion-pill {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(76, 51, 152, 0.15);
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 8px rgba(76, 51, 152, 0.06);
    font-family: var(--sans);
    display: flex;
    align-items: center;
    gap: 7px;
    text-align: left;
}

.suggestion-pill i {
    font-size: 0.85rem;
    opacity: 0.7;
    flex-shrink: 0;
}

.suggestion-pill:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(76, 51, 152, 0.25);
    border-color: var(--primary);
}

.suggestion-pill:hover i {
    opacity: 1;
}

/* Footer Refined with Tourism Background */
.footer {
    position: relative;
    background-image: linear-gradient(rgba(45, 52, 54, 0.92), rgba(45, 52, 54, 0.95)),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2021&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: white !important;
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer .text-secondary {
    color: white !important;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: var(--transition);
}

.footer .footer-links a:hover {
    color: var(--primary) !important;
    padding-left: 5px;
}

.footer .social-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.footer .social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}