    :root {
        --primary-color: #f59e0b;
        --secondary-color: #2c3e50;
        --text-dark: #1a1a1a;
        --text-light: #555;
        --bg-light: #f9f9f9;
        --glass-bg: rgba(255, 255, 255, 0.95);
        --glass-border: 1px solid rgba(255, 255, 255, 0.2);
        --radius-lg: 16px;
        --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    }

    body {
        font-family: 'Outfit', sans-serif;
        color: var(--text-light);
        background-color: var(--bg-light);
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        color: var(--text-dark);
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    /* Navbar Override */
    .navbar {
        background: rgba(0, 0, 0, 0.9) !important;
    }

    /* Full Width Hero */
    .tour-hero {
        position: relative;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        height: 70vh;
        min-height: 500px;
        background:
            url('https://images.unsplash.com/photo-1590523277543-a94d2e4eb00b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: -76px;
        padding-top: 76px;
    }

    .tour-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    }

    .tour-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #ffffff !important;
        max-width: 900px;
        padding: 20px;
    }

    .tour-title {
        color: #ffffff !important;
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    }

    .tour-badge {
        background: var(--primary-color);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: inline-block;
        margin-bottom: 20px;
    }

    .tour-meta {
        color: #fff;
        font-size: 1.1rem;
    }

    .tour-meta i {
        color: var(--primary-color);
        margin-right: 8px;
    }

    /* Layout Container */
    .tour-layout {
        position: relative;
        z-index: 10;
        margin-top: -60px;
    }

    /* Glass Cards */
    .glass-card {
        background: #fff;
        border: 1px solid #eee;
        border-radius: var(--radius-lg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        padding: 30px;
        margin-bottom: 30px;
    }

    .section-header {
        position: relative;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #eee;
    }

    .section-header::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 80px;
        height: 3px;
        background: var(--primary-color);
    }

    /* Timeline */
    .timeline {
        position: relative;
        padding-left: 30px;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #e9ecef;
    }

    .day-item {
        position: relative;
        margin-bottom: 40px;
    }

    .day-marker {
        position: absolute;
        left: -39px;
        top: 0;
        width: 20px;
        height: 20px;
        background: var(--primary-color);
        border: 4px solid white;
        border-radius: 50%;
    }

    .day-header {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        cursor: pointer;
    }

    .day-number {
        font-weight: 800;
        color: var(--primary-color);
        margin-right: 15px;
        font-size: 1.2rem;
    }

    /* Booking Sidebar */
    .booking-sidebar {
        position: sticky;
        top: 100px;
        z-index: 90;
    }

    .price-tag {
        font-size: 2.5rem;
        color: var(--primary-color);
        font-weight: 800;
    }

    .btn-book {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        color: white;
        width: 100%;
        padding: 16px;
        font-weight: 800;
        text-transform: uppercase;
        border: none;
        border-radius: 8px;
        margin-bottom: 15px;
        transition: all 0.3s;
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    }

    .btn-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
        color: white;
    }

    .inc-exc-list {
        list-style: none;
        padding: 0;
    }

    .inc-exc-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 10px;
    }

    .inc-exc-list li::before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
    }

    .inclusions li::before {
        content: "\f00c";
        color: #10b981;
    }

    .exclusions li::before {
        content: "\f00d";
        color: #ef4444;
    }

    /* ENHANCED GALLERY CSS */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        border-radius: var(--radius-lg);
        overflow: hidden;
        height: 200px;
        cursor: pointer;
        position: relative;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item::after {
        content: '\f00e';
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        color: white;
        font-size: 2rem;
        transition: transform 0.3s;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .gallery-item:hover::after {
        transform: translate(-50%, -50%) scale(1);
    }

    /* Lightbox Modal */
    .lightbox-modal .modal-content {
        background: transparent;
        border: none;
    }

    .lightbox-modal .modal-body {
        padding: 0;
        position: relative;
        text-align: center;
    }

    .lightbox-modal img {
        max-height: 85vh;
        max-width: 100%;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
        position: absolute;
        top: -30px;
        right: 0;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        z-index: 1056;
    }

    /* Floating Action Buttons */
    .floating-buttons {
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 1050;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .float-btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .float-btn:hover {
        transform: scale(1.1);
        color: white;
    }

    .float-wa {
        background: #25D366;
    }

    .float-call {
        background: #007bff;
    }

    /* Full Width Footer */
    footer {
        background: #111;
        color: white;
        padding: 60px 0 20px;
        margin-top: 80px;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    @media (max-width: 991px) {
        .tour-title {
            font-size: 2.2rem;
        }

        .booking-sidebar {
            position: static;
            margin-top: 30px;
        }

        .floating-buttons {
            bottom: 15px;
            right: 15px;
        }

        .float-btn {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }
    }

    /* Captcha & Form Visibility Fix */
    .jetform-container {
        position: relative;
        z-index: 100;
    }

    .glass-card {
        position: relative;
        z-index: 1;
    }

    .booking-sidebar {
        overflow: visible !important;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .tour-hero {
            height: 60vh;
            min-height: 350px;
        }

        .tour-title {
            font-size: 1.8rem !important;
        }

        .glass-card {
            padding: 20px;
            margin-bottom: 20px;
        }

        .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .gallery-item {
            height: 150px;
        }

        .timeline {
            padding-left: 20px;
        }

        .day-marker {
            left: -29px;
            width: 16px;
            height: 16px;
            border-width: 3px;
        }

        .list-group-item {
            flex-direction: column !important;
            align-items: flex-start !important;
            gap: 10px;
        }

        .list-group-item .badge {
            align-self: flex-start;
            font-size: 0.9rem;
        }

        .section-header {
            font-size: 1.5rem;
        }
    }

    /* Package Listing Cards (Added to support listing pages) */
    .package-image {
        height: 250px;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-lg);
        margin-bottom: 20px;
    }

    .package-meta {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .package-meta i {
        color: var(--primary-color);
    }

    /* Form Styles from Listing Pages (Added support) */
    .jet-form-builder input[type="text"],
    .jet-form-builder input[type="email"],
    .jet-form-builder input[type="tel"],
    .jet-form-builder input[type="number"],
    .jet-form-builder input[type="date"],
    .jet-form-builder textarea,
    .jet-form-builder select {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e0e6ed;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .jet-form-builder input:focus,
    .jet-form-builder textarea:focus,
    .jet-form-builder select:focus {
        border-color: #f59e0b;
        box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
        outline: none;
    }

    .jet-form-builder .jet-form-builder__submit {
        width: 100%;
        padding: 14px 28px;
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }

    .jet-form-builder .jet-form-builder__submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    }

    /* Search Section Styled (from Listing) */
    .search-container {
        background: white;
        padding: 20px;
        border-radius: 50px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
    }

    .search-input {
        border: none;
        flex-grow: 1;
        padding: 10px 20px;
        outline: none;
    }

    .search-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
