:root {
    --primary: #3498db;
    --primary-dark: #2980b9;
    --secondary: #27ae60;
    --accent: #e74c3c;
    --dark: #2c3e50;
    --gray: #7f8c8d;
    --light-gray: #ecf0f1;
    --light: #f9fafb;
}

body {
    background: var(--light);
    color: #34495e;
    line-height: 1.6;
    scroll-behavior: smooth;
    padding-top: 0 !important;
}

/* Banner Section */
.deal-banner {
    height: 60vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-image-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}


.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.deal-banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    text-align: center;
}

.deal-banner-small-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.deal-banner-large-tagline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
}
/* .mb-1{font-weight: 900;} */

/* === BREADCRUMB CONTAINER === */
.breadcrumb-container {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

/* === BREADCRUMB BAR === */
.breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
    margin-bottom: 0;
    align-items: center;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.breadcrumb::-webkit-scrollbar {
    display: none;
}

/* === BREADCRUMB ITEM === */
.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    white-space: nowrap;
    line-height: 1.2;
}

/* === SEPARATOR === */
.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    padding: 0 0.5rem;
    color: #6c757d;
    font-weight: 600;
    font-size: 1rem;
}

/* === BREADCRUMB LINKS === */
.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s ease-in-out;
    line-height: 1.2;
}

.breadcrumb-item a:hover {
    color: var(--bs-primary, #0d6efd);
    text-decoration: underline;
}

/* === ACTIVE ITEM === */
.breadcrumb-item.active {
    color: #212529;
    font-weight: 500;
    cursor: default;
}

/* === PAGE TITLE (For mobile only) === */
.breadcrumb-title {
    display: none; /* Hidden by default for desktop */
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    text-align: left;
}

/* === LEFT ALIGNED WITH INFO CONTENT === */
.col-lg-8.col-md-10 .breadcrumb {
    justify-content: flex-start;
}

/* === Desktop (Large screens) - Single line === */
@media (min-width: 769px) {
    .breadcrumb-title {
        display: none !important; /* Ensure title is hidden on desktop */
    }
    
    .breadcrumb-container {
        padding: 1rem 0;
    }
    
    .breadcrumb {
        margin-bottom: 0;
    }
}

/* === Mobile and Tablet (Small screens) - Two lines === */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0.375rem 0; /* Reduced from 0.5rem */
        margin-bottom: 0.75rem; /* Reduced from 1rem */
    }
    
    .breadcrumb {
        padding: 0.125rem 0; /* Reduced from 0.25rem */
        margin-bottom: 0.375rem; /* Reduced from 0.5rem */
    }
    
    .breadcrumb-item {
        font-size: 0.85rem;
    }
    
    .breadcrumb-item.active {
        display: none; /* Hide active item on mobile */
    }
    
    .breadcrumb-title {
        display: block; /* Show title on mobile */
        font-size: 1.25rem;
        line-height: 1.4;
        margin-top: 0.125rem; /* Minimal top margin */
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.375rem;
        font-size: 0.9rem;
    }
}

/* === Extra Small Mobile (More aggressive reduction) === */
@media (max-width: 576px) {
    .breadcrumb-container {
        padding: 0.25rem 0 !important; /* More aggressive reduction */
        margin-bottom: 0.5rem !important;
    }
    
    .breadcrumb {
        justify-content: flex-start;
        margin-bottom: 0.25rem !important;
        padding: 0.0625rem 0 !important; /* Very minimal padding */
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    .breadcrumb-title {
        font-size: 1.1rem;
        margin-top: 0.0625rem !important; /* Almost no margin */
        margin-bottom: 0 !important;
    }
    
    .breadcrumb-item a {
        gap: 0.2rem;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 0.25rem;
    }
}

/* === Ultra Small Mobile (For very small devices) === */
@media (max-width: 375px) {
    .breadcrumb-container {
        padding: 0.125rem 0 !important; /* Even more minimal */
        margin-bottom: -3.375rem !important;
        margin-top:-2rem;
    }
    
    .breadcrumb {
        margin-bottom: 0.125rem !important;
        padding: 0 !important; /* Remove all padding */
    }
    
    .breadcrumb-title {
        font-size: 1rem;
        margin-top: 0 !important;
    }
}

/* Page Header */
.page-header {
    padding: 2rem 0 1.5rem;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.page-header h1 {
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.page-header h1 i {
    color: var(--primary);
    font-size: 1.8rem;
}

.page-header p {
    color: var(--gray);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1rem;
}
/* ---------- Sticky Section Title Nav ---------- */
.section-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0.6rem 0;
    margin-bottom: 1rem;
    position: sticky;
    top: 0;
    z-index: 1020;
    display: none;
    transition: transform 0.3s ease-in-out;
}

.section-nav.sticky {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Keep the rest of your existing CSS the same */
.section-nav .nav {
    justify-content: flex-start;
}

.section-nav .nav-link {
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.section-nav .nav-link.active,
.section-nav .nav-link:hover {
    color: var(--primary);
}

.section-nav .nav-link.active::after,
.section-nav .nav-link:hover::after {
    width: 70%;
}

.section-nav .nav-link i {
    font-size: 1.1rem;
}
/* ---------- Content ---------- */
.section-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
    scroll-margin-top: 90px;
    color: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.section-title i {
    color: var(--primary);
    font-size: 1.4rem;
}

.detail-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.8rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #edf2f7;
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.06);
}

/* Overview section without background and shadow */
#overview .detail-card {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

/* Two-column layout for overview items */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.9rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-icon {
    color: var(--primary);
    margin-right: 0.8rem;
    font-size: 2rem;
    flex-shrink: 0;
    background: rgba(52, 152, 219, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Content area for the descriptive text */
.content-area {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
    border: 1px solid #edf2f7;
    margin-top: 1.5rem;
}

.content-area h5 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-area h5 i {
    color: var(--primary);
}

.content-area p {
    margin-bottom: 1rem;
    color: #555;
}

.highlight-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.highlight-icon {
    color: var(--secondary);
    margin-right: 0.8rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ---------- Right Column ---------- */
.right-column {
    position: relative;
}

.price-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.8rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    position: sticky;
    top: 90px;
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
}

.trip-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
}

.price-card-header {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.price-card-title {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.price-card-subtitle {
    color: var(--gray);
    font-size: 0.9rem;
}

.price-display {
    margin-bottom: 1.5rem;
}

.price-display .original-price {
    color: #a0aec0;
    text-decoration: line-through;
    font-size: 0.95rem;
}

.price-display .current-price {
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--dark);
    margin: 0.15rem 0;
}

.price-display .savings {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 4px;
}

.discount-table {
    width: 100%;
    margin: 1.2rem 0;
}

.discount-table td {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.9rem;
}

.discount-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--dark);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0;
}

.feature-list li {
    display: flex;
    margin-bottom: 0.6rem;
    align-items: center;
    font-size: 0.9rem;
}

.feature-list i {
    color: var(--secondary);
    margin-right: 0.6rem;
    font-size: 0.95rem;
}

.btn-book {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 0.9rem 1.2rem;
    width: 100%;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-book:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* NEW TIMELINE STYLES FOR ITINERARY SECTION */
@media (min-width: 1024px) {
  .itinerary-large {
    display: block; /* or whatever display type you need */
  }
}

@media (max-width: 1023px) {
  .itinerary-large {
    display: none;
  }
}

.timeline-itinerary {
    margin-top: 1.5rem;
    padding: 1.5rem;
}

.timeline-itinerary .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.timeline-itinerary .header h1 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #2c3e50;
}

.timeline-itinerary .header p {
    color: #7f8c8d;
    margin-bottom: 0;
}

.timeline-itinerary .expand-btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s;
}

.timeline-itinerary .expand-btn:hover {
    background: #2980b9;
}

.timeline-itinerary .timeline-step {
    display: flex;
    margin-bottom: 30px;
}

.timeline-itinerary .timeline-icon-container {
    width: 60px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-itinerary .timeline-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #3498db;
    color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.timeline-itinerary .timeline-icon.start {
    background: #3498db;
    color: #fff;
}

.timeline-itinerary .timeline-icon.end {
    background: #2ecc71;
    color: #fff;
    border-color: #2ecc71;
}

.timeline-itinerary .timeline-connector {
    flex-grow: 1;
    width: 3px;
    margin: 4px 0;
    position: relative;
}

.timeline-itinerary .timeline-connector.dots {
    background: transparent;
    background-image: radial-gradient(circle, #3498db 2.5px, transparent 3px);
    background-size: 6px 12px;
    background-position: center;
    background-repeat: repeat-y;
    margin: -25px 0;
    left: -0.5px;
}

.timeline-itinerary .timeline-content {
    flex: 1;
    background: white;
    border-radius: 8px;
    margin-left: 20px;
}

/* FIXED: Remove border/outline on accordion buttons */
.timeline-itinerary .accordion-button {
    background: white;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 17px;
    color: #2c3e50;
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    display: flex;
    align-items: center;
    outline: none !important;
    box-shadow: none !important;
}

.timeline-itinerary .accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #eee !important;
}

.timeline-itinerary .accordion-button:not(.collapsed) {
    background: #f8f9fa;
    color: #3498db;
    border-bottom: 1px solid #eee;
    outline: none !important;
    box-shadow: none !important;
}

.timeline-itinerary .accordion-button::after {
    content: "\f078"; /* chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    background-image: none !important;
    width: auto;
    height: auto;
    position: absolute;
    right: 20px;
    transition: transform 0.3s ease;
}

.timeline-itinerary .accordion-button:not(.collapsed)::after {
    content: "\f077"; /* chevron-up */
    transform: none;
}

.timeline-itinerary .time-badge {
    background: #3498db;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 12px;
}

.timeline-itinerary .accordion-body {
    padding: 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.timeline-itinerary .detail-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.timeline-itinerary .detail-description {
    color: #7f8c8d;
    font-size: 15px;
}

.timeline-itinerary .activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.timeline-itinerary .activity-tag {
    background: #e8f4fc;
    color: #3498db;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.timeline-itinerary .location-info {
    display: flex;
    align-items: center;
    margin-top: 12px;
    color: #7f8c8d;
    font-size: 14px;
}

.timeline-itinerary .location-info i {
    margin-right: 8px;
    color: #3498db;
}

.timeline-itinerary .footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #7f8c8d;
}

/* NEW BRIEF ITINERARY STYLES */
.brief-timeline {
    padding: 1.5rem;
}

.brief-timeline .header {
    margin-bottom: 30px;
}

.brief-timeline .header h1 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #2c3e50;
}

.brief-timeline .header p {
    color: #7f8c8d;
    margin-bottom: 0;
}

.brief-timeline .timeline-step{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.brief-timeline .timeline-icon-container{
    width: 60px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brief-timeline .timeline-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #3498db;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; /* stack Day and number vertically */
    font-weight: 600;
    text-align: center;
    line-height: 1;
    padding: 2px;
    word-break: break-word;
    overflow-wrap: break-word;
    z-index: 2;
}

.brief-timeline .timeline-icon .day-label {
    font-size: 10px;  /* increased from 8px */
    line-height: 1.1;
    font-weight: 600;
}

.brief-timeline .timeline-icon .day-number {
    font-size: 14px;  /* slightly larger for number/range */
    line-height: 1.1;
    font-weight: 700;
}

.brief-timeline .timeline-icon.start i,
.brief-timeline .timeline-icon.end i {
    font-size: 16px; /* keeps start/end icons visible */
}

.brief-timeline .timeline-icon.start {
    background: #3498db;
    color: #fff;
}

.brief-timeline .timeline-icon.end {
    background: #2ecc71;
    color: #fff;
}

.brief-timeline .timeline-content{
    flex: 1;
    background: white;
    border-radius: 8px;
    margin-left: 20px;
    border: 1px solid #eee;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.timeline-content-brief{
    flex: 1;
    background: white;
    border-radius: 8px;
    border: 1px solid #eee;
    padding: 12px 16px;
    font-weight: 600;
    font-size: 16px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.brief-timeline .time-badge{
    background: #3498db;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    margin-right: 12px;
}

.brief-timeline .footer{
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #7f8c8d;
}

/* Mobile itinerary */
        .trip-itinerary-mobile {
            /* background-color: #f8f9fa; */
            min-height: 100vh;
            padding: 20px 0;
        }
        .trip-itinerary-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 16px;
            /* border-radius: 12px; */
            margin-bottom: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .trip-itinerary-card {
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            margin-bottom: 20px;
            border: none;
            overflow: hidden;
        }
        .trip-itinerary-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .trip-day-badge {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            border-radius: 20px;
            padding: 8px 18px;
            font-weight: 700;
            color: white;
            display: inline-block;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }
        .trip-title {
            font-weight: 800;
            color: #2c3e50;
            margin: 8px 0 12px;
            font-size: 1.25rem;
            line-height: 1.3;
        }
        .trip-description {
            color: #5a6c7d;
            line-height: 1.6;
            font-size: 0.95rem;
        }
        .trip-time-indicator {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #6c757d;
            font-size: 0.85rem;
        }
        .trip-time-icon {
            margin-right: 8px;
            color: #6a11cb;
        }
        .trip-card-divider {
            height: 1px;
            background: linear-gradient(to right, transparent, #e0e0e0, transparent);
            margin: 15px 0;
        }
        .trip-highlight-tag {
            background-color: #e8f4fd;
            color: #1971c2;
            border-radius: 6px;
            padding: 4px 10px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-right: 8px;
            margin-bottom: 8px;
        }

/* NEW WHAT'S INCLUDED STYLES */
.inclusion-list i {
    color: var(--primary);
    font-size: 2rem;
    margin-right: 20px;
    min-width: 40px;
    text-align: center;
}

.inclusion-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.inclusion-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.inclusion-title {
    font-weight: 600;
    margin-bottom: 5px;
    text-align: left;
}

.inclusion-description {
    color: #6c757d;
    margin: 0;
    text-align: left;
}

.inclusion-section-title {
    font-weight: 700;
    text-align: left;
}

.inclusion-section-subtitle {
    color: #6c757d;
    margin-bottom: 40px;
    text-align: left;
}

.inclusion-icon {
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.include-exclude-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.inclusion-list i.bi {
    font-size: 1.5rem;
    color: var(--primary);
}

.inclusion-content {
    flex: 1;
}

/* Style for the list within inclusion descriptions with SVG checkmarks */
.inclusion-description ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.inclusion-description li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.inclusion-description li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 18px;
    height: 18px;
    background: currentColor;
    mask: url('data:image/svg+xml;utf8,<svg aria-hidden="true" role="img" focusable="false" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 13.6261L7.60619 15.3478C8.49194 16.2972 8.93481 16.772 9.43113 16.9218C9.86704 17.0534 10.3305 17.0181 10.7459 16.8217C11.2189 16.598 11.5985 16.0606 12.3579 14.9859L18 7" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg>') no-repeat center / contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg aria-hidden="true" role="img" focusable="false" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 13.6261L7.60619 15.3478C8.49194 16.2972 8.93481 16.772 9.43113 16.9218C9.86704 17.0534 10.3305 17.0181 10.7459 16.8217C11.2189 16.598 11.5985 16.0606 12.3579 14.9859L18 7" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path></svg>') no-repeat center / contain;
}

.inclusion-description li:last-child {
    margin-bottom: 0;
}

/* Ensure proper spacing for the content */
.inclusion-title {
    margin-bottom: 8px;
}

.inclusion-description {
    line-height: 1.6;
}

/* NEW GALLERY STYLES */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 1rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translateY(10px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.video-container {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Lightbox Modal */
.modal-content {
    border-radius: 12px;
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 1rem 1rem 0;
}

.modal-body {
    padding: 0;
}

.modal-body img {
    width: 100%;
    height: auto;
    padding: 10px 40px 40px 40px;
}

.modal-body iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Accordion item fixes */
.accordion-item {
    color: inherit !important;
    background-color: transparent !important;
    border: none !important;
}

/* MOBILE STYLES for timeline */
@media (max-width: 768px) {
    .timeline-itinerary .header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-itinerary .header .expand-btn {
        margin-top: 15px;
    }
    
    .timeline-itinerary .timeline-step {
        flex-direction: column;
    }
    
    .timeline-itinerary .timeline-icon-container {
        flex-direction: row;
        width: 100%;
        margin-bottom: 15px;
        justify-content: flex-start;
    }
    
    .timeline-itinerary .timeline-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .timeline-itinerary .timeline-connector {
        width: 30px;
        height: 3px;
        margin: 0 10px;
        left: 0;
    }
    
    .timeline-itinerary .timeline-connector.dots {
        background-image: radial-gradient(circle, #3498db 2px, transparent 2px);
        background-size: 12px 6px;
    }
    
    .timeline-itinerary .timeline-content {
        margin-left: 0;
        width: 100%;
    }
    
    .timeline-itinerary .accordion-button {
        font-size: 15px;
        padding: 12px 16px;
    }
    
    .timeline-itinerary .time-badge {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .timeline-itinerary .accordion-body {
        font-size: 14px;
        padding: 15px;
    }
    
    .timeline-itinerary .detail-description {
        font-size: 14px;
    }
    
    .timeline-itinerary .activity-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .timeline-itinerary .location-info {
        font-size: 13px;
    }
    
    .timeline-itinerary .header h1 {
        font-size: 1.5rem;
    }
    
    .timeline-itinerary .header p {
        font-size: 0.9rem;
    }
    
    /* Brief itinerary mobile styles */
    .brief-timeline .timeline-step {
        flex-direction: row;
        width: 100%;
    }
    
    .brief-timeline .timeline-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .brief-timeline .timeline-content {
        margin-left: 10px;
        width: 100%;
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .brief-timeline .time-badge {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    /* What's included mobile styles */
    .inclusion-item {
        flex-direction: column;
        text-align: left;
    }
    
    .inclusion-list i {
        margin-bottom: 10px;
    }
    
    /* Gallery mobile styles */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-container iframe {
        height: 250px;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .price-card {
        position: relative;
        top: 0;
        margin-bottom: 1.5rem;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-banner-large-tagline {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0 1rem;
    }
    
    .page-header h1 {
        font-size: 1.7rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .section-nav .nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.3rem;
    }
    
    .section-nav .nav-link {
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-nav .nav-link i {
        font-size: 1rem;
    }
    
    .detail-card {
        padding: 1.2rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .content-area {
        padding: 1.2rem;
    }
    
    .deal-banner {
        height: 50vh;
    }
    
    .deal-banner-small-title {
        font-size: 1.2rem;
    }
    
    .deal-banner-large-tagline {
        font-size: 1.8rem;
    }
    
    .trip-badge {
        right: 10px;
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .itinerary-tabs .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

