/* ============================================
   Tour Details Page Styles
   Modern, responsive design matching reference
   ============================================ */

/* Prevent Horizontal Scrolling */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    position: relative;
}

* {
    box-sizing: border-box;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

/* Main Container */
.tour-details-container {
    padding: 30px 0;
    background-color: white;
}

@media (min-width: 1450px) {
    .container {
        width: 1200px !important;
        padding: 0px !important;
    }
}

.tour-details-wrapper {
    /* background: #fff; */
    /* border-radius: 12px; */
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    overflow: hidden;
    margin-bottom: 30px;
}

/* Header Section */
.tour-header {
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
}

.tour-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.3;
}

.tour-header-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.tour-rating-stars {
    display: flex;
    gap: 2px;
}

.tour-rating-stars i {
    color: #FFA500;
    font-size: 18px;
}

.tour-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0f5132;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.tour-rating-badge .rating-score {
    font-size: 16px;
}

.tour-rating-badge .rating-text {
    font-size: 13px;
    opacity: 0.95;
}


/* Image Gallery */
.tour-image-gallery {
    position: relative;
    margin-bottom: 0;
    border-bottom: none;
}

.gallery-swiper {
    width: 100%;
    height: 500px;
    position: relative;
    background: #000;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.gallery-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

.gallery-image:hover {
    transform: scale(1.02);
}

/* Swiper Navigation Buttons */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.gallery-swiper .swiper-button-next {
    right: 20px;
}

.gallery-swiper .swiper-button-prev {
    left: 20px;
}

/* Swiper Pagination */
.gallery-swiper .swiper-pagination {
    bottom: 20px;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.gallery-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 4px;
    cursor: pointer;
    display: inline-block;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: #FFA500;
    width: 30px;
    border-radius: 5px;
    opacity: 1;
}

@media (max-width: 992px) {
    .gallery-swiper {
        height: 400px;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        z-index: 15;
        pointer-events: auto;
        touch-action: manipulation;
    }
    
    .gallery-swiper .swiper-button-next:after,
    .gallery-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .gallery-swiper .swiper-button-next {
        right: 10px;
    }
    
    .gallery-swiper .swiper-button-prev {
        left: 10px;
    }
    
    /* Enhanced Pagination for Tablet */
    .gallery-swiper .swiper-pagination {
        bottom: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 12;
    }
    
    .gallery-swiper .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.6);
        margin: 0 5px;
        opacity: 1;
    }
    
    .gallery-swiper .swiper-pagination-bullet-active {
        background: #FFA500;
        width: 35px;
        height: 12px;
        border-radius: 6px;
    }
}

@media (max-width: 768px) {
    .gallery-swiper {
        height: 300px;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
        z-index: 15;
        pointer-events: auto;
        touch-action: manipulation;
    }
    
    .gallery-swiper .swiper-button-next:after,
    .gallery-swiper .swiper-button-prev:after {
        font-size: 14px;
    }
    
    /* Enhanced Pagination for Mobile */
    .gallery-swiper .swiper-pagination {
        bottom: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 12;
        padding: 0 10px;
    }
    
    .gallery-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.7);
        margin: 0 4px;
        opacity: 1;
        border-radius: 50%;
    }
    
    .gallery-swiper .swiper-pagination-bullet-active {
        background: #FFA500;
        width: 30px;
        height: 10px;
        border-radius: 5px;
        opacity: 1;
    }
}

/* Tour Main Content - Highlights and About Property */
.tour-main-content {
    padding: 30px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Highlights and Map Grid */
.highlights-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 0;
}

.map-section-inline {
    background: #fff;
}

.map-section-inline h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.map-section-inline .map-container {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-section-inline .map-address {
    margin-bottom: 0;
}

/* Amenities and Nearby Locations Grid */
.amenities-nearby-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 0;
}

.nearby-locations-section {
    background: #fff;
}

.nearby-locations-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.nearby-locations-section .nearby-attractions {
    margin-top: 0;
}

/* Explore Area Sidebar */
.explore-area-sidebar {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 24px;
    margin-bottom: 24px;
}

.explore-area-sidebar h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

/* Explore Area Section (old - keeping for compatibility) */
.explore-area-section h3,
.amenities-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.map-container {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.map-address {
    margin-bottom: 20px;
}

.map-address p {
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 400;
}

.map-address a {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

.map-address a:hover {
    text-decoration: underline;
}

.nearby-attractions ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.nearby-attractions li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.nearby-attractions li:last-child {
    border-bottom: none;
}

.nearby-attractions li i {
    color: #FFA500;
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.nearby-attractions li span:first-of-type {
    flex: 1;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.nearby-attractions .distance {
    color: #666;
    font-size: 14px;
    white-space: nowrap;
}

.see-all-link {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.see-all-link:hover {
    text-decoration: underline;
}

/* Package Details Card */
.package-details-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    gap: 24px;
    margin-top: 0;
}

.package-details-left {
    flex: 1;
}

.package-details-left h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 12px;
}

.package-description {
    font-size: 14px;
    color: #1a237e;
    margin: 0;
    line-height: 1.6;
}

.package-details-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.package-price-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-info-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e3f2fd;
    border-radius: 50%;
    color: #1976d2;
    font-size: 12px;
    flex-shrink: 0;
}

.package-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
}

.package-original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.package-current-price {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
}

.package-price-label {
    font-size: 12px;
    color: #666;
    margin: 0;
    text-align: right;
}

/* Amenities Section */
.amenities-section {
    margin-top: 0;
}

.amenities-section p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.amenity-item:hover {
    border-color: #0066cc;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.1);
}

.amenity-item i {
    color: #FFA500;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.amenity-item span {
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

/* Highlights Section */
.tour-highlights {
    padding: 0;
    border: none;
    background: transparent;
    margin-bottom: 0;
}

.tour-highlights h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    background: transparent;
    border: none;
    transition: none;
    margin-bottom: 0;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item:hover {
    box-shadow: none;
    transform: none;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f8ff;
    border-radius: 50%;
    color: #0066cc;
    font-size: 20px;
}

.highlight-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.3;
}

.highlight-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Tab Navigation */
.tour-tabs-wrapper {
    padding: 0;
    position: sticky;
    top: 0;
    background: white;
    z-index: 100;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 0;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

.tour-tabs-swiper {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.tour-tabs {
    border-bottom: none;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    list-style: none;
    margin: 0;
}

/* Desktop: Override Swiper styles */
@media (min-width: 769px) {
    .tour-tabs-swiper .swiper-wrapper {
        display: flex;
        transform: none !important;
    }
    
    .tour-tabs .nav-item.swiper-slide {
        width: auto;
    }
}

.tour-tabs .nav-item {
    margin-bottom: 0;
    list-style: none;
    flex-shrink: 0;
}

.tour-tabs .nav-item.swiper-slide {
    width: auto;
    height: auto;
}

.tour-tabs .nav-link {
    padding: 16px 24px;
    color: #666;
    font-weight: 500;
    font-size: 15px;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
}

.tour-tabs .nav-link:hover {
    color: #FFA500;
    background: transparent;
}

.tour-tabs .nav-link.active {
    color: #FFA500;
    border-bottom-color: #FFA500;
    background: transparent;
    font-weight: 600;
}

.tour-section {
    padding: 30px;
    background: #fff;
    scroll-margin-top: 60px; /* Account for sticky tabs */
    /* border-top: 1px solid #e8e8e8; */
}

.tour-section:first-of-type {
    border-top: none;
}

.tour-tab-content {
    padding: 30px;
    background: #fff;
}

.tour-tab-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.tour-tab-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.tour-tab-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.tour-tab-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.tour-tab-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.tour-tab-content ul,
.tour-tab-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.tour-tab-content li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Booking Form Main Section */
.booking-form-main {
    padding: 30px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.booking-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.booking-form-wrapper .need-help-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e8e8e8;
    background: transparent;
    border-radius: 0;
    padding: 24px 0 0 0;
}

.booking-price-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 24px;
}

.booking-price-header .price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #FFA500;
    margin-bottom: 4px;
}

.booking-price-header .price-label {
    font-size: 14px;
    color: #666;
}

.booking-form-section {
    margin-bottom: 24px;
}

.booking-form-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.booking-form-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.booking-form .form-group {
    margin-bottom: 0;
}

.booking-form .form-group:last-child {
    margin-bottom: 0;
}

.booking-form .btn-book {
    width: 100%;
    margin-top: 20px;
}

/* Booking Form Sidebar (kept for compatibility) */
.booking-sidebar {
    position: sticky;
    top: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 30px;
}

.booking-price {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 24px;
}

.booking-price .price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #FFA500;
    margin-bottom: 4px;
}

.booking-price .price-label {
    font-size: 14px;
    color: #666;
}

.booking-form-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.booking-form-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.booking-form .form-group {
    margin-bottom: 10px;
}

.booking-form .form-control {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 6px 16px;
    height: 40px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff30;
    color: rgb(255, 255, 255);
}

.booking-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5em;
    padding-right: 2.5rem;
}

.booking-form .form-control:focus {
    border-color: #FFA500;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
    outline: none;
}
/* Base select (closed state) */
.booking-form .form-control {
    background: #ffffff2e; /* glass */
    color: #ffffff;        /* white text */
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Dropdown options (opened state) */
.booking-form select option {
    background: rgba(20, 20, 20, 0.95); /* dark readable bg */
    color: #ffffff;
}

/* Placeholder option */
.booking-form select option[value=""] {
    color: rgba(255, 255, 255, 0.7);
}

/* Focus state */
.booking-form .form-control:focus {
    background: #ffffff3a;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

/* Remove default arrow (optional – modern look) */
.booking-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}


.booking-form .form-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: block;
    transition: all 0.3s ease;
}

/* Floating Label Styles */
.floating-label {
    position: relative;
}

.floating-label .form-control {
    height: 54px;
    padding: 14px 12px 8px;
    font-size: 15px;
}

.floating-label label {
    position: absolute;
    top: 50%;
    left: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    pointer-events: none;
    transform: translateY(-50%);
    transition: all 0.2s ease;
    background: transparent;
    z-index: 1;
}

/* FLOAT ON FOCUS OR VALUE */
.floating-label .form-control:focus + label,
.floating-label .form-control:not(:placeholder-shown) + label,
.floating-label select:focus + label,
.floating-label select.has-value + label {
    top: 8px;
    font-size: 12px;
    color: #FFA500;
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
    padding: 0 4px;
    border-radius: 3px;
}

.floating-label select {
    height: 54px;
    padding: 20px 12px 8px;
}

/* FLOAT ONLY WHEN VALUE IS NOT EMPTY */
.floating-label select:focus + label,
.floating-label select.has-value + label {
    top: 8px;
    font-size: 12px !important;
    color: #ffa500 !important;
    transform: translateY(0);
    background: rgba(0, 0, 0, 0.1);
    padding: 0 4px;
    border-radius: 3px;
}

/* REMOVE PLACEHOLDER VISIBILITY */
.floating-label .form-control::placeholder {
    color: transparent;
}

.booking-form .btn-book {
    width: 100%;
    padding: 14px;
    background: #FFA500;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.booking-form .btn-book:hover {
    background: #e6740f;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 165, 0, 0.3);
}

.booking-form .form-check {
    margin-top: 5px;
    margin-bottom: 5px;
}

.booking-form .form-check-input {
    margin-top: 4px;
    accent-color: #FFA500;
}

.booking-form .form-check-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.booking-form .form-check-label a {
    color: #FFA500;
    text-decoration: none;
}

.booking-form .form-check-label a:hover {
    text-decoration: underline;
}

/* Need Help Section */
.need-help-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 24px;
}

.need-help-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.help-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 14px;
    color: #666;
}

.help-contact i {
    color: #FFA500;
    font-size: 16px;
    width: 20px;
}

/* Accessibility Section */
.accessibility-flex-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.accessibility-left {
    flex: 0 0 300px;
}

.accessibility-left h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.accessibility-left p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.accessibility-right {
    flex: 1;
}

.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.accessibility-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.accessibility-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a237e;
    font-size: 24px;
}

.accessibility-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 8px;
}

.accessibility-details p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Policies Section */
.policies-flex-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.policies-left {
    flex: 0 0 300px;
}

.policies-left h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0;
    line-height: 1.2;
}

.policies-right {
    flex: 1;
}

.policies-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.policy-section {
    margin-bottom: 0;
}

.policy-section.full-width {
    grid-column: 1 / -1;
}

.policy-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 16px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-section ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.policy-section ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a237e;
    font-weight: bold;
}

.policy-section ul li:last-child {
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
    padding: 30px;
    background: #fff;
    border-top: 1px solid #e8e8e8;
}

.faq-section h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 24px;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #FFA500;
}

.faq-question i {
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 16px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}


/* More Packages Section */
.more-packages-section {
    padding: 40px 30px;
    background: #fff;
    border-top: 1px solid #e8e8e8;
}

.more-packages-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 30px;
}

.more-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.more-package-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.more-package-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.more-package-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.more-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.more-package-card:hover .more-package-image img {
    transform: scale(1.05);
}

.more-package-content {
    padding: 20px;
}

.more-package-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.more-package-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.more-package-location i {
    color: #FFA500;
    font-size: 12px;
}

.more-package-price {
    font-size: 20px;
    font-weight: 700;
    color: #FFA500;
    margin-bottom: 12px;
}

.more-package-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.more-package-rating .rating-badge {
    background: #0f5132;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.more-package-rating .rating-text {
    font-size: 13px;
    color: #666;
}

.more-package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.more-package-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
}

.more-package-feature i {
    color: #FFA500;
    font-size: 14px;
}

.no-packages {
    text-align: center;
    color: #666;
    font-size: 16px;
    padding: 40px 0;
}

/* Package Card Styles (from home page) */
.package-slide {
    height: 100%;
}

/* Equal height for package cards */
.packages-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.packages-slider .slick-slide {
    height: auto;
}

.packages-slider .slick-slide > div {
    height: 100%;
}

.package-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
    text-align: left;
}

.package-content > p {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
    text-align: left;
}

.package-content .flight-info {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.package-content .flight-info i {
    color: #666;
    font-size: 12px;
    margin-right: 6px;
}

.package-content .flight-info span {
    font-size: 12px;
    color: #666;
}

.package-content .discount-badge {
    margin-bottom: 12px;
}

.package-content .discount-badge span {
    background: #28a745;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.package-content .price-container {
    margin-bottom: 8px;
}

.package-content .price-container .current-price {
    font-size: 22px;
    font-weight: 700;
    color: #1A5490;
}

.package-content .price-container .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.package-content .per-traveller {
    font-size: 11px;
    color: #666;
    margin: 0 0 8px 0;
}

.package-content .package-dates {
    font-size: 12px;
    color: #666;
    margin: 0 0 4px 0;
}

.package-content .found-time {
    font-size: 11px;
    color: #999;
    margin: 0;
}

.package-card.empty-state {
    padding: 40px;
    text-align: center;
    color: #999;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15) !important;
}

.package-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.packages-slider-wrapper:hover .package-nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.package-nav-btn.slick-disabled {
    opacity: 0 !important;
    pointer-events: none !important;
    cursor: not-allowed !important;
}

.packages-slider-wrapper:hover .package-nav-btn:not(.slick-disabled) {
    opacity: 1;
    pointer-events: auto;
}

.package-nav-btn:hover:not(.slick-disabled) {
    background: #d4222d !important;
    transform: translateY(-50%) scale(1.05) !important;
}

.package-nav-btn:hover:not(.slick-disabled) i {
    color: #fff !important;
}

.package-nav-btn i {
    color: #1A5490;
    font-size: 12px;
}

.package-prev {
    left: 10px;
}

.package-next {
    right: 10px;
}

@media (max-width: 768px) {
    .package-prev {
        left: 5px;
    }
    
    .package-next {
        right: 5px;
    }
}

/* Related Tours Section */
.related-tours-section {
    padding: 40px 0;
    background: #f8f9fa;
    margin-top: 30px;
}

.related-tours-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.related-tours-carousel {
    position: relative;
    padding: 0 50px;
}

.related-tours-carousel .slick-prev,
.related-tours-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.related-tours-carousel .slick-prev {
    left: 0;
}

.related-tours-carousel .slick-next {
    right: 0;
}

.related-tours-carousel .slick-prev:hover,
.related-tours-carousel .slick-next:hover {
    background: #FFA500;
    border-color: #FFA500;
    color: #fff;
}

.related-tours-carousel .slick-prev i,
.related-tours-carousel .slick-next i {
    font-size: 16px;
}

.related-tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 0 10px;
    cursor: pointer;
}

.related-tour-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-tour-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.related-tour-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #000;
}

.related-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-tour-card:hover .related-tour-image img {
    transform: scale(1.05);
}

.related-tour-content {
    padding: 20px;
}

.related-tour-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.related-tour-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.related-tour-location i {
    color: #FFA500;
    font-size: 12px;
}

.related-tour-price {
    font-size: 20px;
    font-weight: 700;
    color: #FFA500;
    margin-bottom: 12px;
}

.related-tour-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.related-tour-rating .rating-badge {
    background: #0f5132;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.related-tour-rating .rating-text {
    font-size: 13px;
    color: #666;
}

.related-tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.related-tour-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
}

.related-tour-feature i {
    color: #FFA500;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .related-tours-carousel {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .tour-header h1 {
        font-size: 28px;
    }
    
    .gallery-swiper {
        height: 350px;
    }
    
    .tour-main-content {
        padding: 15px 10px;
        gap: 30px;
    }
    
    .tour-section {
        padding: 15px 10px;
    }
    
    .highlights-map-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .amenities-nearby-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form-hero {
        min-height: auto;
        padding: 40px 0;
        margin: 30px 0;
    }
    
    .booking-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .booking-promo-title {
        font-size: 36px;
    }
    
    .booking-promo-text {
        font-size: 16px;
    }
    
    .booking-form-card {
        padding: 30px;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 8px;
    }
    
    .booking-form .form-group {
        margin-bottom: 18px;
    }
    
    
    
    .floating-label label {
        top: 50%;
        left: 14px;
        font-size: 14px;
    }
    
    .floating-label .form-control:focus + label,
    .floating-label .form-control:not(:placeholder-shown) + label {
        top: 8px;
        font-size: 11px;
    }
    
    .floating-label select {
        height: 54px;
        padding: 18px 14px 8px;
    }
    
    .floating-label select:focus + label,
    .floating-label select.has-value + label {
        top: 8px;
        font-size: 11px;
    }
    
    .help-contact-inline {
        flex-direction: column;
        gap: 12px;
    }
    
    .explore-area-sidebar {
        margin-bottom: 20px;
    }
    
    .booking-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .tour-details-container {
        padding: 15px 0;
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
    
    .tour-details-wrapper {
        border-radius: 0;
        margin-bottom: 15px;
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    .tour-header {
        padding: 15px 10px;
    }
    
    .tour-section {
        padding: 15px 10px;
    }
    
    .tour-header h1 {
        font-size: 24px;
    }
    
    .tour-header-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .gallery-swiper {
        height: 300px;
    }
    
    .tour-highlights {
        padding: 0;
    }
    
    .tour-main-content {
        padding: 20px;
        gap: 20px;
    }
    
    .tour-header-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-area-sidebar {
        padding: 15px 10px;
    }
    
    .package-details-card {
        flex-direction: column;
        padding: 15px 10px;
        gap: 20px;
    }
    
    .package-details-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .package-price-label {
        text-align: left;
    }
    
    .highlights-map-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .amenities-nearby-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .booking-form-hero {
        padding: 30px 0;
        margin: 20px 0;
    }
    
    .booking-form-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .booking-promo-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .booking-promo-text {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .price-amount-large {
        font-size: 36px;
    }
    
    .booking-form-card {
        padding: 25px 20px;
    }
    
    .booking-form-header {
        padding-bottom: 0px;
        margin-bottom: 0px;
    }
    
    .booking-form-header h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .booking-form .form-check-label{
        font-size: 12px;
    }
    
    .booking-form {
        padding: 0;
    }
    .booking-form .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 8px;
    }
    
    .booking-form .form-group {
        margin-bottom: 0;
    }
    
    .floating-label .form-control {
        height: 48px;
        padding: 10px 10px 10px;
        font-size: 16px;
    }
    
    .floating-label label {
        top: 50%;
        left: 16px;
        font-size: 15px;
        transform: translateY(-50%);
    }
    
    .floating-label .form-control:focus + label,
    .floating-label .form-control:not(:placeholder-shown) + label {
        top: 0px;
        font-size: 10px;
        transform: translateY(0);
        left: 10px;
    }
    
    .floating-label select {
        height: 56px;
        padding: 20px 16px 10px;
    }
    
    .floating-label select:focus + label,
    .floating-label select.has-value + label {
        top: 10px;
        font-size: 12px;
        transform: translateY(0);
    }
    
    .booking-form .btn-book {
        margin-top: 5px;
        padding: 10px;
        font-size: 16px;
        height: auto;
    }
    .need-help-inline{
        font-size: 11px;
    }
    .need-help-title{
        font-size: 11px;
        margin:10px 0px;
    }
    
    .booking-form .form-check {
        margin-top: 5px;
        margin-bottom: 0px;
    }
    
    .accessibility-flex-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .accessibility-left {
        flex: 1;
    }
    
    .accessibility-flex-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .accessibility-left {
        flex: 1;
    }
    
    .accessibility-left h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .accessibility-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .policies-flex-layout {
        flex-direction: column;
        gap: 20px;
    }
    
    .policies-left {
        flex: 1;
    }
    
    .policies-left h3 {
        font-size: 24px;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    .more-packages-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .tour-tabs-wrapper {
        padding: 0;
        overflow: hidden;
    }
    
    .tour-tabs-swiper {
        width: 100%;
        overflow: visible;
        padding: 0;
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    .tour-tabs-swiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
        transition-timing-function: ease-out;
        touch-action: pan-x;
    }
    
    .tour-tabs {
        display: flex;
        width: auto;
        flex-wrap: nowrap;
    }
    
    .tour-tabs .nav-item.swiper-slide {
        width: auto !important;
        flex-shrink: 0;
        white-space: nowrap;
        display: flex;
        align-items: stretch;
        height: auto;
        touch-action: pan-x;
    }
    
    .tour-tabs .nav-link {
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
        width: 100%;
        display: block;
        touch-action: pan-x;
        -webkit-tap-highlight-color: transparent;
    }
    
    .more-packages-section {
        padding: 15px 10px;
    }
    
    .tour-tab-content {
        padding: 15px 10px;
    }
    
    .booking-sidebar {
        padding: 15px 10px;
    }
    
    .booking-price .price-amount {
        font-size: 28px;
    }
    
    .faq-section {
        padding: 15px 10px;
    }
    
    .more-packages-grid {
        grid-template-columns: 1fr;
    }
    
    .more-packages-section {
        padding: 15px 10px;
    }
    
    .more-packages-section h3 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .tour-header h1 {
        font-size: 20px;
    }
    
    .gallery-swiper {
        height: 250px;
    }
    
    .highlight-item {
        padding: 0px;
    }
    
    .highlight-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .booking-price .price-amount {
        font-size: 24px;
    }
    
    
    .rating-score-large {
        font-size: 32px;
    }
    
    .accessibility-flex-layout {
        gap: 16px;
    }
    
    .accessibility-left h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .accessibility-left p {
        font-size: 14px;
    }
    
    .policies-flex-layout {
        gap: 16px;
    }
    
    .policies-left h3 {
        font-size: 22px;
    }
    
    .accessibility-item {
        flex-direction: row;
        align-items: center;
    }

    .tour-tab-content h4{
        margin-bottom: 0px;
    }
    
    .accessibility-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .more-packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Lightbox Modal */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.image-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #FFA500;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    padding: 16px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Additional Styling Improvements */
.tour-tab-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 24px;
    margin-bottom: 12px;
}

.tour-tab-content h4:first-child {
    margin-top: 0;
}

/* Ensure proper spacing in tab content */
.tour-tab-content > *:last-child {
    margin-bottom: 0;
}

/* Booking form improvements */
.booking-form .row {
    margin-left: -8px;
    margin-right: -8px;
}

.booking-form .row > [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
}

/* Redesigned booking form with background image */
.booking-form-hero {
    position: relative;
    border-radius: 12px;
    margin: 40px 0;
    overflow: hidden;
}

.booking-form-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.booking-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgb(0 0 0 / 10%), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.booking-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
    align-items: center;
    min-height: 500px;
    position: relative;
    z-index: 2;
}

.booking-promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: left;
}

.booking-promo-inner {
    max-width: 500px;
}

.booking-promo-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.booking-promo-text {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9) !important;
}

.booking-price-promo {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-amount-large {
    font-size: 48px;
    font-weight: 700;
    color: #FFA500;
}

.price-label-large {
    font-size: 16px;
    color: #ddd;
}

.booking-form-card {
    background: rgb(0 0 0 / 25%);
    backdrop-filter: blur(4px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%); /* Safari support */

    border-radius: 12px;
    padding: 40px;

    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25);

    border: 1px solid rgba(255, 255, 255, 0.3); /* glass edge */
    color: white;
}

.booking-form-card h3,
.booking-form-card h4,
.booking-form-card p,
.booking-form-card label {
    color: white;
}

.booking-form-card a {
    color: #FFA500;
}

.booking-form-card a:hover {
    color: #ffd700;
}


.booking-form-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.booking-form-header p {
    color: #666;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .booking-form-hero {
        background-attachment: scroll;
    }
    
    .booking-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .booking-promo-title {
        font-size: 36px;
    }
    
    .booking-promo-text {
        font-size: 16px;
    }
    
    .price-amount-large {
        font-size: 36px;
    }
    
    .booking-form-card {
        padding: 30px;
    }


}

@media (max-width: 768px) {
    .booking-form-hero {
        padding: 30px 0;
        margin: 20px 0;
    }
    
    .booking-form-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .booking-promo-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .booking-promo-text {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .price-amount-large {
        font-size: 36px;
    }
    
    .booking-form-card {
        padding: 14px 9px;
    }
    
    .booking-form-header h3 {
        font-size: 24px;
    }

    .tour-highlights h3{ 
        margin-bottom: 15px;
    }
    .tour-highlights h4{ 
        margin-bottom: 0px;
    }
    .tour-highlights p{ 
        margin-bottom: 0px;
    }

    .booking-form-hero{
        border-radius: 0px;
    }

    .tour-tab-content ul, .tour-tab-content ol{
        margin-bottom: 0px;
        padding-left: 0px;
    }

    .tour-highlights .highlight-item{
        margin-bottom: 10px;
    }
    .highlights-list{
        gap: 0px;
    }
    .tour-tab-content li {
        font-size: 11px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .faq-question {
    font-size: 13px;
    }

    .faq-item {
        border-bottom: 1px solid #e8e8e8;
        padding: 15px 0;
    }

    .faq-answer {
        font-size: 12px;
        color: #555;
    }

}

/* Slick carousel custom arrows */
.related-tours-carousel .slick-prev:before,
.related-tours-carousel .slick-next:before {
    display: none;
}

/* Ensure images don't break layout */
.tour-image-gallery img {
    max-width: 100%;
    height: auto;
}

/* Loading state for images */
.tour-image-gallery img {
    background: #f0f0f0;
}

/* Better focus states for accessibility */
.booking-form .form-control:focus,
.booking-form select:focus {
    outline: 2px solid #FFA500;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .booking-sidebar,
    .related-tours-section {
        display: none;
    }
}



