        :root {
            --primary: #BF1A1A;
            --primary-dark: #991515;
            --primary-light: #D93A3A;
            --secondary: #EF7722;
            --secondary-dark: #D4651E;
            --secondary-light: #F29450;
            --dark: #111827;
            --gray-dark: #4b5563;
            --gray: #6b7280;
            --gray-light: #9ca3af;
            --gray-extra-light: #e5e7eb;
            --light: #f9fafb;
            --white: #ffffff;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --radius: 12px;
            --radius-sm: 8px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
            -webkit-text-size-adjust: 100%;
            touch-action: manipulation;
        }

        html {
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            font-weight: 400;
            color: var(--gray-dark);
            line-height: 1.6;
            background-color: var(--light);
            padding: 0;
            margin: 0;
            overflow-x: hidden;
            padding-bottom: 70px; /* Space for fixed button */
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Main Layout */
        .booking-page {
            display: flex;
            gap: 40px;
            padding: 40px 0;
            align-items: flex-start;
        }

        .left-container {
            flex: 1;
        }

        .right-container {
            width: 380px;
            position: sticky;
            top: 40px;
        }

        /* Section Styling */
        .section {
            background-color: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            margin-bottom: 32px;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-extra-light);
        }

        .section-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-title i {
            color: var(--secondary);
            font-size: 20px;
        }

        h1 {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--dark);
            margin-bottom: 20px;
        }

        h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
        }

        h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        /* Image Gallery - UPDATED STYLE */
        .image-gallery {
            margin-bottom: 32px;
            position: relative;
        }

        .hero-image {
            width: 100%;
            height: 400px;
            border-radius: var(--radius);
            overflow: hidden;
            margin-bottom: 16px;
            box-shadow: var(--shadow-lg);
            position: relative;
            cursor: pointer;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .hero-image:hover img {
            transform: scale(1.02);
        }

        .thumbnail-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 12px;
        }

        .thumbnail {
            height: 90px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 3px solid transparent;
            opacity: 0.9;
            position: relative;
        }

        .thumbnail:hover {
            opacity: 1;
            transform: translateY(-3px);
            border-color: var(--primary);
        }

        .thumbnail.active {
            border-color: var(--primary);
            opacity: 1;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            user-select: none;
        }

        .zoom-icon {
            position: absolute;
            top: 5px;
            right: 5px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .thumbnail:hover .zoom-icon {
            opacity: 1;
        }

        .view-more-thumbnail {
            position: relative;
        }

        .view-more-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 14px;
            flex-direction: column;
            gap: 5px;
        }

        /* Gallery Modal - UPDATED STYLE */
        .gallery-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 3000;
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            touch-action: pan-y pinch-zoom;
        }

        .gallery-modal.active {
            display: flex;
        }

        .mft-gallery-content {
            position: relative;
            max-width: 90%;
            max-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            touch-action: pan-y pinch-zoom;
        }

        .modal-image {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 8px;
            object-fit: contain;
            touch-action: pan-y pinch-zoom;
            -webkit-user-select: none;
            user-select: none;
        }

        .modal-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
        }

        .modal-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: none;
            border: none;
            color: white;
            font-size: 30px;
            cursor: pointer;
            z-index: 3001;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close i {
            font-size: 24px;
        }

        .modal-nav-btn {
            background: rgba(191, 26, 26, 0.7);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: background 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-nav-btn:hover {
            background: rgba(191, 26, 26, 0.9);
        }

        .modal-counter {
            color: white;
            font-size: 16px;
            margin-top: 20px;
            text-align: center;
        }

        /* Tour Description */
        .tour-description {
            font-size: 18px;
            line-height: 1.7;
            color: var(--gray-dark);
            margin-bottom: 32px;
            font-weight: 400;
        }

        .tour-duration {
            color: var(--dark);
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            padding: 12px 20px;
            background-color: transparent;
            border-radius: var(--radius-sm);
            display: inline-block;
            border: 3px solid var(--primary);
            border-left: 6px solid var(--secondary);
        }

        /* Tour Program */
        .timeline {
            position: relative;
            padding-left: 40px;
        }

        .timeline:before {
            content: '';
            position: absolute;
            left: 19px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-image: linear-gradient(to bottom, 
                var(--primary) 0%, 
                var(--primary) 50%, 
                transparent 50%, 
                transparent 100%);
            background-size: 2px 20px;
            background-repeat: repeat-y;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 10px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-item:before {
            content: '';
            position: absolute;
            left: -31px;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--primary);
            border: 4px solid var(--white);
            box-shadow: 0 0 0 2px var(--primary);
            z-index: 2;
        }

        .timeline-content {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .timeline-icon {
            color: var(--primary);
            font-size: 20px;
            width: 24px;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .timeline-day {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 8px;
            color: var(--dark);
            line-height: 1.3;
        }

        .timeline-details {
            color: var(--gray-dark);
            font-size: 16px;
            line-height: 1.5;
            font-weight: 400;
        }

        .timeline-details p {
            margin-bottom: 4px;
            font-weight: 400;
        }

        /* Tour Highlights */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 0;
        }

.highlight-icon,
.timeline-icon {
    color: var(--white);
    font-size: 22px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Uploaded SVG/PNG/JPG icons are forced to pure white (via filter) so they
   match the Font Awesome icons inside the same colored circle, regardless
   of the uploaded file's original color. */
.highlight-icon .mft-icon-img,
.timeline-icon .mft-icon-img {
    filter: brightness(0) invert(1);
}

.highlight-icon {
    font-size: 24px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-top: 0;
}

        .highlight-content {
            flex: 1;
        }

        .highlight-title {
            font-weight: 800;
            margin-bottom: 6px;
            color: var(--dark);
            font-size: 20px;
            line-height: 1.2;
        }

        .highlight-desc {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.3;
            font-weight: 400;
        }

        /* Included/Excluded */
        .included-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }

        .included-list, .excluded-list {
            list-style: none;
        }

        .included-list li, .excluded-list li {
            display: flex;
            align-items: center;
            margin-bottom: 16px;
            gap: 12px;
            padding: 4px 0;
        }

        .included-list i {
            color: var(--primary);
            font-size: 20px;
            width: 24px;
        }

        .excluded-list i {
            color: #ef4444;
            font-size: 20px;
            width: 24px;
        }

        .included-text {
            font-weight: 400;
            color: var(--gray-dark);
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid var(--gray-extra-light);
            padding-bottom: 20px;
            margin-bottom: 20px;
        }

        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 8px 0;
            gap: 12px;
        }

        .faq-question h3 {
            margin-bottom: 0;
            font-weight: 800;
            color: var(--dark);
            flex: 1;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .faq-question i {
            color: var(--primary);
            font-size: 18px;
        }

        .faq-question .arrow {
            color: var(--gray);
            transition: transform 0.3s ease;
        }

        .faq-question.active .arrow {
            transform: rotate(180deg);
            color: var(--primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            color: var(--gray-dark);
            line-height: 1.6;
            padding-left: 36px;
            font-weight: 400;
        }

        .faq-answer.open {
            max-height: 500px;
            margin-top: 12px;
        }

        /* Booking Widget */
        .booking-widget {
            background-color: var(--white);
            border-radius: var(--radius);
            padding: 32px;
            margin-bottom: 32px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-extra-light);
        }

        .price-container {
            text-align: center;
            margin-bottom: 28px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--gray-extra-light);
        }

        .price-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .price {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .price-icon {
            color: var(--primary);
            font-size: 28px;
        }

        .price-note {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .booking-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-group label i {
            color: var(--primary);
            font-size: 16px;
        }

        .form-control {
            padding: 14px 16px;
            border: 1px solid var(--gray-extra-light);
            border-radius: var(--radius-sm);
            font-family: inherit;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.2s ease;
            background-color: var(--white);
            width: 100%;
            height: 52px;
            -webkit-appearance: none;
            appearance: none;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(191, 26, 26, 0.1);
        }

        input[type="date"] {
            color: var(--gray-dark);
            font-size: 16px;
        }

        input[type="date"]::-webkit-calendar-picker-indicator {
            opacity: 0.6;
            cursor: pointer;
            padding: 5px;
        }

        .guests-selector {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid var(--gray-extra-light);
            border-radius: var(--radius-sm);
            padding: 10px 16px;
            background-color: var(--white);
            height: 52px;
        }

        .guests-btn {
            background-color: var(--light);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: 800;
            font-size: 18px;
            transition: background-color 0.2s ease;
            color: var(--dark);
        }

        .guests-btn:hover:not(:disabled) {
            background-color: var(--gray-extra-light);
        }

        .guests-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .guests-count {
            font-weight: 800;
            font-size: 20px;
            min-width: 40px;
            text-align: center;
        }

        .book-now-btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            padding: 18px;
            font-size: 18px;
            font-weight: 800;
            cursor: pointer;
            transition: background-color 0.2s ease;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            height: 56px;
        }

        .book-now-btn:hover {
            background-color: var(--primary-dark);
        }

        .secure-booking {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            color: var(--gray);
            font-size: 14px;
            margin-top: 16px;
            text-align: center;
            font-weight: 600;
        }

        /* Contact Container */
        .contact-container {
            background-color: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            margin-top: 24px;
            box-shadow: var(--shadow);
            border: 1px solid var(--gray-extra-light);
        }

        .contact-title {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .contact-title i {
            color: var(--primary);
            font-size: 20px;
        }

        .contact-subtitle {
            color: var(--gray);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
            font-style: italic;
        }

        .contact-description {
            color: var(--gray-dark);
            margin-bottom: 24px;
            font-weight: 400;
            line-height: 1.5;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 8px;
        }

        .contact-icon {
            color: var(--primary);
            font-size: 18px;
            width: 24px;
        }

        .contact-text {
            color: var(--dark);
            font-weight: 600;
        }

        .contact-btn {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            padding: 14px 20px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            text-decoration: none;
            text-align: center;
        }

        .contact-btn:hover {
            background-color: var(--primary-dark);
        }

        /* ========== MOBILE FIXED BOOKING BUTTON ========== */
        .mobile-fixed-booking {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 12px 15px;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: none;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 767px) {
            .mobile-fixed-booking {
                display: block;
            }
        }

        .mobile-booking-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            max-width: 500px;
            margin: 0 auto;
        }

        .mobile-booking-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
            justify-content: space-between;
        }

        .mobile-guests-selector {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-sm);
            padding: 8px 12px;
            min-width: 120px;
        }

        .mobile-guests-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .mobile-guests-label i {
            color: var(--white);
            font-size: 14px;
        }

        .mobile-guests-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: auto;
        }

        .mobile-guests-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: var(--white);
            font-size: 16px;
            font-weight: 800;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .mobile-guests-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-guests-btn:not(:disabled):hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .mobile-guests-count {
            color: var(--white);
            font-weight: 800;
            font-size: 16px;
            min-width: 24px;
            text-align: center;
        }

        .mobile-book-btn {
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: var(--radius-sm);
            padding: 12px 20px;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(239, 119, 34, 0.3);
            flex: 1;
            max-width: 200px;
            margin-left: auto;
        }

        .mobile-book-btn:hover {
            background: var(--secondary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(239, 119, 34, 0.4);
        }

        .mobile-book-btn:active {
            transform: translateY(0);
        }

        .mobile-book-btn i {
            font-size: 14px;
        }

        /* Modal Popup */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            padding: 16px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .mft-modal-box {
            background-color: #ffffff !important;
            border-radius: var(--radius);
            width: calc(100% - 32px);
            box-sizing: border-box;
            max-height: 88vh;
            overflow-y: auto;
            padding: 18px;
            position: relative;
            transform: translateY(20px);
            transition: all 0.3s ease;
            max-width: 380px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        }

        #bookingFormContent,
        #confirmationMessage {
            background-color: #ffffff;
        }

        .modal-overlay.active .mft-modal-box {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--gray);
            z-index: 10;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: color 0.2s ease;
        }

        .close-modal:hover {
            color: var(--primary);
        }

        .mft-modal-header {
            margin-bottom: 14px;
            text-align: center;
        }

        .modal-tour-image {
            width: 100%;
            height: 110px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            margin-bottom: 12px;
            border: 3px solid var(--primary);
        }

        .modal-tour-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mft-modal-title {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 800;
            line-height: 1.3;
        }

        .booking-summary {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .summary-item {
            background-color: var(--primary);
            padding: 10px 18px;
            border-radius: 20px;
            font-size: 15px;
            color: var(--white);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .summary-item i {
            color: var(--white);
            font-size: 16px;
        }

        .summary-item:last-child {
            background-color: var(--secondary);
            font-size: 16px;
            padding: 10px 20px;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .modal-form .form-group {
            width: 100%;
        }

        .modal-form .form-group label {
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .modal-form .form-group label i {
            color: var(--primary);
            font-size: 14px;
        }

        .modal-form .form-control {
            height: auto;
            min-height: 48px;
            font-size: 15px;
            padding: 12px 15px;
            width: 100%;
            border: 1px solid #e2e2e2;
            border-radius: var(--radius-sm);
            box-sizing: border-box;
        }

        .modal-form .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(191, 26, 26, 0.12);
        }

        .modal-form textarea.form-control {
            height: auto;
            min-height: 100px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            border: none;
            padding: 18px;
            border-radius: var(--radius-sm);
            font-size: 18px;
            font-weight: 800;
            cursor: pointer;
            margin-top: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            height: 58px;
            transition: all 0.2s ease;
            box-shadow: 0 4px 12px rgba(191, 26, 26, 0.2);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(191, 26, 26, 0.3);
        }

        .confirmation-message {
            text-align: center;
            padding: 20px 10px;
            display: none;
            background-color: #ffffff;
        }

        .confirmation-message i {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .confirmation-message h3 {
            font-size: 22px;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .confirmation-message p {
            color: var(--gray-dark);
            margin-bottom: 8px;
            font-size: 15px;
            line-height: 1.5;
            background:#fff;padding:10px;  border-radius:20px;
        }
        .form-styling{ background:#fff;padding:10px;  border-radius:20px;}

        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .booking-page {
                flex-direction: column;
            }

            .right-container {
                width: 100%;
                position: static;
                margin-top: 20px;
            }

            .included-section {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .highlights-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .thumbnail-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 70px; /* Space for fixed button */
            }
            
            .container {
                padding: 0 16px;
            }

            .booking-page {
                padding: 24px 0;
                gap: 24px;
            }

            .section {
                padding: 24px;
                margin-bottom: 24px;
            }

            h1 {
                font-size: 32px;
            }

            h2 {
                font-size: 24px;
            }

            .section-title {
                font-size: 22px;
            }

            .tour-description {
                font-size: 16px;
            }

            .tour-duration {
                font-size: 18px;
                padding: 10px 16px;
            }

            .hero-image {
                height: 300px;
            }

            .thumbnail-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 8px;
            }

            .thumbnail {
                height: 80px;
            }

            .timeline {
                padding-left: 30px;
            }

            .timeline:before {
                left: 14px;
            }

            .timeline-item:before {
                left: -21px;
            }

            .timeline-day {
                font-size: 18px;
            }

            .highlight-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .highlight-title {
                font-size: 18px;
            }

            .price {
                font-size: 42px;
            }

            .booking-widget {
                padding: 24px;
            }

            .form-control {
                height: 50px;
                padding: 13px 15px;
            }

            .guests-selector {
                height: 50px;
            }

            .book-now-btn {
                height: 54px;
                padding: 16px;
                font-size: 17px;
            }
        }

        @media (max-width: 480px) {
            .mft-modal-box {
                max-width: 92vw;
                padding: 14px;
                max-height: 92vh;
            }

            .modal-tour-image {
                height: 90px;
                margin-bottom: 10px;
            }

            .mft-modal-title {
                font-size: 18px;
            }

            .summary-item {
                padding: 7px 12px;
                font-size: 13px;
            }

            h1 {
                font-size: 28px;
            }

            .hero-image {
                height: 250px;
            }

            .thumbnail-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 6px;
            }

            .thumbnail {
                height: 70px;
            }

            .highlights-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .price {
                font-size: 36px;
            }

            .form-control {
                height: 48px;
                padding: 12px 14px;
                font-size: 15px;
            }

            .book-now-btn {
                height: 52px;
                padding: 15px;
                font-size: 16px;
            }

            input[type="date"] {
                font-size: 15px;
            }
            
            /* Mobile fixed button adjustments for small screens */
            .mobile-fixed-booking {
                padding: 10px 12px;
            }
            
            .mobile-booking-actions {
                gap: 8px;
            }
            
            .mobile-guests-selector {
                min-width: 100px;
                padding: 5px 8px;
            }
            
            .mobile-book-btn {
                padding: 9px 12px;
                font-size: 13px;
                max-width: 160px;
            }
            
            .mobile-guests-label {
                font-size: 12px;
            }
            
            .mobile-guests-label i {
                font-size: 12px;
            }
            
            .thumbnail:nth-child(n+5) {
                display: none;
            }
        }

        @media (max-width: 360px) {
            .mobile-booking-actions {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .mobile-guests-selector {
                min-width: 90px;
            }
            
            .mobile-book-btn {
                max-width: 140px;
                font-size: 12px;
                padding: 8px 10px;
            }
        }

        /* Hide certain thumbnails on mobile */
        @media (max-width: 768px) {
            .thumbnail.mobile-hidden {
                display: none;
            }
        }

        /* Prevent text selection */
        .no-select {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
        
        /* Accessibility */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
