/* Holidays Index Page Styles */
.holidays-hero {
    height: 60vh;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 90px;
    z-index: 1;
    overflow: hidden;
}

.holidays-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.holidays-hero .container-fluid {
    position: relative;
    z-index: 2;
}

/* Hero Title & Description spacing */
.holidays-hero .tour-hero-content h1 {
    margin-bottom: 16px;
}

.holidays-hero .tour-hero-content p.lead {
    margin-bottom: 0;
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.7;
}

/* Gallery Slider Fix */
.holiday-gallery-wrapper {
    height: 450px;
    /* UNWANTED SIZE TOO BIG - FIXED HEIGHT */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.holidayGallerySwiper {
    height: 100%;
    width: 100%;
}

.holidayGallerySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 
   ---------------------------------
   FAQ Style Tour Plan Accordion
   ---------------------------------
*/
.tour-plan-faq-style {
    margin-top: 40px;
    margin-bottom: 60px;
}

.tour-plan-item {
    border: 1px solid #eef2f6;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.tour-plan-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    user-select: none;
    background: #4c3398;
    color: #fff;
}

.day-num {
    display: none;
}

.tour-plan-header h4 {
    display: inline-block;
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.toggle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #ffffff;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.tour-plan-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #4a5568;
    line-height: 1.8;
    font-size: 0.95rem;
    padding: 0;
}

/* Active State */
.tour-plan-item.active {
    box-shadow: 0 10px 30px rgba(76, 51, 152, 0.12);
    border-color: #4c3398;
}

.tour-plan-item.active .tour-plan-content {
    max-height: 1000px;
    opacity: 1;
    padding: 24px;
}

.tour-plan-item.active .toggle-icon {
    background: #ffffff;
    color: #4c3398;
    transform: rotate(180deg);
}

.tour-plan-item.active .tour-plan-header h4 {
    color: #ffffff;
}

/* 
   ---------------------------------
   Professional Sidebar
   ---------------------------------
*/
.booking-form-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #e2e8f0;
}

.form-label-premium {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 6px;
}

.premium-input-custom {
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
    color: #2d3748;
}

.premium-input-custom:focus {
    border-color: #4834d4;
    box-shadow: 0 0 0 3px rgba(72, 52, 212, 0.1);
}

/* Date Picker - Icon Inside Input */
.flatpickr-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.flatpickr-input-group>i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #4834d4;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 2;
}

.flatpickr-input-group .premium-input-custom,
.flatpickr-input-group input.flatpickr-input {
    padding-right: 42px;
    width: 100%;
    cursor: pointer;
}

.btn-send-message {
    background: #4c3398;
    color: #fff !important;
    border: none;
    padding: 14px 16px;
    width: 100%;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    transition: background 0.2s ease, transform 0.15s ease;
}

.btn-send-message:hover {
    background: #3a267a;
    transform: translateY(-1px);
}

.btn-send-message:active {
    background: #2e1e62;
    transform: translateY(0);
}

/* WhatsApp Card */
.sidebar-whatsapp-card {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.whatsapp-icon-circle {
    width: 50px;
    height: 50px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
}

.btn-whatsapp-sidebar {
    background: #25d366;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    display: block;
    font-weight: 700;
    text-decoration: none;
}

/* 
   ---------------------------------
   Last Minute Deals (3-Card Row)
   ---------------------------------
*/
.deals-section {
    padding: 80px 0;
}

.dealsSwiper {
    width: 100%;
    overflow: hidden;
    /* Ensure swiper doesn't overflow container */
}

/* Force swiper-wrapper to use full width and equal-height slides */
.dealsSwiper .swiper-wrapper {
    display: flex !important;
    align-items: stretch;
}

/* Each slide is a flex column so deal-card can stretch full height */
.dealsSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}

/* Space between cards and pagination dots */
.dealsSwiper .swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.deal-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.deal-card:hover {
    transform: translateY(-5px);
}

.deal-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.deal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4c3398;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(76, 51, 152, 0.35);
}

.deal-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.deal-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a2e;
}

/* Swiper Nav */
.deals-slider-nav .btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #4834d4;
}

.deals-slider-nav .btn:hover {
    background: #4834d4;
    color: #fff;
}

/* Deal Card - Tablet: 3 per row */
@media (max-width: 991px) {
    .deal-img {
        height: 160px;
    }

    .deal-content {
        padding: 14px;
    }

    .deal-title {
        font-size: 0.95rem;
    }
}

/* Deal Card - Mobile: 2 per row */
@media (max-width: 575px) {
    .deal-img {
        height: 130px;
    }

    .deal-content {
        padding: 10px 12px;
    }

    .deal-title {
        font-size: 0.82rem;
        margin-bottom: 4px;
    }

    .deal-price {
        font-size: 0.75rem;
        padding: 4px 8px;
        top: 8px;
        right: 8px;
    }

    .deal-content .text-muted.small {
        font-size: 0.72rem;
    }
}

@media (max-width: 768px) {
    .holiday-gallery-wrapper {
        height: 350px;
    }
}

/* Hero - mobile: eliminate dead space */
@media (max-width: 575px) {
    .holidays-hero {
        height: auto;
        min-height: unset;
        padding-top: 110px;
        padding-bottom: 48px;
        align-items: flex-start;
    }

    /* Breadcrumb - smaller on mobile (show page only) */
    .holiday-details-hero .breadcrumb {
        font-size: 0.65rem;
        letter-spacing: 0.04rem;
        flex-wrap: wrap;
        gap: 2px;
    }

    .holiday-details-hero .breadcrumb-item a,
    .holiday-details-hero .breadcrumb-item.active {
        font-size: 0.65rem;
        letter-spacing: 0.04rem;
    }

    .holiday-details-hero .breadcrumb-item+.breadcrumb-item::before {
        padding-right: 4px;
        padding-left: 4px;
    }
}

/* ================================================
   HOLIDAYS INDEX PAGE - GRID & CARDS
   ================================================ */

.holidays-grid-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Holiday Card */
.holiday-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.holiday-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(72, 52, 212, 0.14);
}

/* Image Wrapper */
.holiday-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.holiday-card:hover .holiday-img-wrapper img {
    transform: scale(1.06);
}

/* Price Badge */
.holiday-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #4c3398;
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(76, 51, 152, 0.4);
}

/* Card Body */
.holiday-content {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.holiday-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.holiday-meta .location {
    font-size: 0.8rem;
    color: #718096;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.holiday-meta .location i {
    color: #4834d4;
}

.holiday-meta .rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.holiday-title {
    font-size: 1.15rem;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.4;
}

/* Stats Row */
.holiday-stats {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: #718096;
    font-weight: 600;
}

.stat-item i {
    color: #4834d4;
    font-size: 0.9rem;
}

/* ================================================
   PARALLAX CTA SECTION
   ================================================ */

.parallax-cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
    text-align: center;
    background: #1a1a2e;
    /* Dark fallback if fixed bg fails on mobile */
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.38;
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.cta-icon-box {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 24px;
    backdrop-filter: blur(8px);
    color: #fff;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================================================
   RESPONSIVE OVERRIDES
   ================================================ */

@media (max-width: 991px) {
    .holidays-grid-section {
        padding: 60px 0;
    }

    .holiday-img-wrapper {
        height: 210px;
    }

    .parallax-cta-section {
        padding: 90px 0;
    }
}

@media (max-width: 576px) {
    .holiday-img-wrapper {
        height: 190px;
    }

    .holiday-content {
        padding: 18px;
    }

    .parallax-cta-section {
        padding: 70px 0;
    }
}

/* ================================================
   BESPOKE HOLIDAYS SHOW PAGE REDESIGN
   ================================================ */

/* Section Spacing & Titles */
.clean-section-title {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -0.5px;
}

.clean-subsection-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
}

/* 1. Sleek Modern Image Grid */
.clean-gallery-grid {
    border-radius: 1rem;
    overflow: hidden;
}

.clean-grid-container {
    display: flex;
    gap: 12px;
    height: 480px;
}

.clean-grid-main {
    flex: 2;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.clean-grid-side {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.clean-grid-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.clean-grid-container.single-image .clean-grid-main {
    flex: 1;
}

.clean-grid-main img,
.clean-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.clean-grid-main:hover img,
.clean-grid-item:hover img {
    transform: scale(1.05);
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.clean-grid-main:hover .hover-overlay,
.clean-grid-item:hover .hover-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .clean-grid-container {
        flex-direction: column;
        height: auto;
    }

    .clean-grid-main {
        height: 300px;
        flex: none;
    }

    .clean-grid-side {
        height: 200px;
        flex: none;
    }
}

/* 2. Minimalist Overview */
.clean-overview-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 400;
}

/* 3. Inclusions/Exclusions Pill Tags */
.clean-pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.modern-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pill-include {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.pill-exclude {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* 4. Minimal Itinerary Timeline */
.clean-timeline-wrapper {
    position: relative;
    padding-left: 20px;
}

.clean-timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    background: #1a202c;
    border-radius: 50%;
    margin-top: 6px;
    box-shadow: 0 0 0 4px #f8fafc;
}

.timeline-line {
    flex: 1;
    width: 2px;
    background: #e2e8f0;
    margin-top: 4px;
}

.timeline-content {
    flex: 1;
}

.timeline-day-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #f1f5f9;
    color: #64748b;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a202c;
}

.timeline-desc {
    color: #4a5568;
    line-height: 1.7;
}

/* 5. Clean Forms Section (Bottom) */
.clean-form-card,
.clean-whatsapp-card {
    border-radius: 1.5rem !important;
}

.clean-modern-form .clean-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.clean-modern-form .clean-input,
.clean-modern-form .clean-select {
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 1rem;
    transition: all 0.3s;
}

.clean-modern-form .clean-input:focus,
.clean-modern-form .clean-select:focus {
    background: #fff;
    border-color: #cbd5e0;
    box-shadow: 0 0 0 4px rgba(226, 232, 240, 0.5);
    outline: none;
}

.wa-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #25D366;
    color: white;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.wa-pulse-hover {
    transition: transform 0.3s, box-shadow 0.3s;
}

.wa-pulse-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3) !important;
}

/* Deals Area overrides */
.clean-deals-section {
    background: #f8fafc;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.clean-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}


/* --- PORTED FROM PACKAGE DETAILS --- */
/* --- Modern Asymmetric Mosaic Gallery --- */
.modern-mosaic-gallery {
    display: flex;
    gap: 12px;
    height: 520px;
}

.gallery-main {
    flex: 0 0 calc(70% - 6px);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-side {
    flex: 0 0 calc(30% - 6px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-side-item {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-main:hover .gallery-img,
.gallery-side-item:hover .gallery-img {
    transform: scale(1.08);
}

/* Glass Overlays */
.gallery-btn-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-btn-overlay:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: #fff;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-pulse-btn {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    box-shadow: 0 0 20px rgba(76, 51, 152, 0.4);
    transition: all 0.3s ease;
}

.play-pulse-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.gallery-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

@media (max-width: 991px) {
    .modern-mosaic-gallery {
        height: 400px;
        flex-direction: column;
    }

    .gallery-main,
    .gallery-side {
        flex: 1 0 100%;
        width: 100%;
    }

    .gallery-side {
        flex-direction: row;
        height: 150px;
    }
}

@media (max-width: 576px) {
    .modern-mosaic-gallery {
        height: 300px;
    }

    .gallery-side {
        display: none;
    }
}

/* --- The Experience Section --- */
.experience-section {
    position: relative;
    padding: 2rem 0;
}

.experience-tag {
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
    display: block;
    margin-bottom: 0.8rem;
}

.experience-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--secondary);
    font-family: inherit;
    font-weight: 800;
}

.highlights-card-wrapper {
    position: relative;
    padding-right: 15px;
    padding-bottom: 15px;
    height: auto;
    /* Allow card to grow based on content */
}

.highlights-card-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 2px solid #4c3398;
    /* Theme Purple */
    border-radius: 1.5rem;
    z-index: 0;
}

.highlights-card {
    position: relative;
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.75rem 2rem;
    /* Reduced padding from 2.5rem to prevent overflow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    z-index: 1;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlights-card h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--secondary);
    font-weight: 700;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

.highlight-icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-info-box {
    display: flex;
    flex-direction: column;
}

.highlight-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
}

.highlight-value {
    font-size: 0.85rem;
    color: #777;
    margin-top: 2px;
}

/* Pricing & Tour Type Enhancements */
.highlight-price-card {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #eee;
}

.price-from-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
    margin-bottom: 2px;
    display: block;
}

.highlight-price-card .d-flex {
    flex-wrap: wrap;
    /* Allow price to wrap on narrow containers */
    gap: 8px;
    align-items: baseline;
}

.current-price-highlights {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    /* Responsive font size */
    font-weight: 850;
    color: #4c3398;
    line-height: 1;
}

.original-price-highlights {
    font-size: 0.9rem;
    color: #ff5e5e;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 600;
}

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

    .highlights-card-wrapper {
        margin-top: 3rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-right: 15px;
        padding-bottom: 15px;
        overflow: visible;
    }
}

/* --- Modern Timeline Itinerary --- */
.itinerary-timeline-modern {
    position: relative;
    padding-left: 60px;
    margin-top: 2rem;
}

.itinerary-timeline-modern::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e9ecef;
    z-index: 0;
}

.itinerary-item-modern {
    position: relative;
    margin-bottom: 2rem;
}

.itinerary-node {
    position: absolute;
    left: -60px;
    top: 18px;
    width: 42px;
    height: 32px;
    background: #4c3398;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 850;
    z-index: 2;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(76, 51, 152, 0.2);
}

.itinerary-accordion-modern {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.itinerary-accordion-modern .accordion-item {
    border: none !important;
    border-radius: 0 !important;
    /* Sharp edges */
    margin-bottom: 1.5rem;
    background: #fff;
    border: 1px solid #f1f3f5 !important;
    border-top: 4px solid #4c3398 !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.itinerary-accordion-modern .accordion-button {
    background: #fff !important;
    color: #1a202c !important;
    font-weight: 850;
    font-size: 1.05rem;
    padding: 1.5rem;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.itinerary-accordion-modern .accordion-button:not(.collapsed) {
    color: #4c3398 !important;
}

.itinerary-accordion-modern .accordion-button::after {
    display: none !important;
    /* Hide default arrow as we use collapse-indicator */
}

.itinerary-accordion-modern .collapse-indicator {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    font-size: 0.7rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.itinerary-accordion-modern .accordion-button:not(.collapsed) .collapse-indicator {
    background: #4c3398;
    border-color: #4c3398;
    color: #fff;
    /* Removed rotation to allow icon swap to be clear */
}

.itinerary-accordion-modern .accordion-body {
    padding: 2rem;
    color: #4a5568;
    line-height: 1.7;
    background: #fdfdff;
    border-top: 1px solid #f8f9fa;
}

/* New professional itinerary header styles */
.itinerary-header-v2 .header-icon-box {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4c3398;
    font-size: 1.2rem;
    border: 1px solid #e2e8f0;
}

.itinerary-header-v2 h2 {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
}

/* --- Comparison Cards (Includes/Excludes) --- */
.comparison-card {
    background: #fff;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-top: 5px solid;
    position: relative;
    overflow: hidden;
}

.card-included {
    border-top-color: #2ecc71;
}

.card-excluded {
    border-top-color: #e74c3c;
}

.comparison-card h4 {
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.amenity-tag-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.amenity-tag-item i {
    font-size: 1.1rem;
    margin-top: 2px;
}

.text-included {
    color: #2ecc71;
}

.text-excluded {
    color: #e74c3c;
}

/* Fix Accordion Focus Ring */
.accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(0, 0, 0, .125) !important;
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

/* ================================================
   MODERN HOLIDAY CARDS (ISOLATED)
   ================================================ */

.holidays-modern-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.holidays-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(76, 51, 152, 0.12);
    border-color: rgba(76, 51, 152, 0.1);
}

/* Modern Image Wrapper */
.modern-img-wrapper {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.modern-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.holidays-modern-card:hover .modern-img-wrapper img {
    transform: scale(1.1);
}

/* Floating Glass Badges */
.card-floating-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Admin Draft Badge */
.draft-badge-premium {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.7rem;
    backdrop-filter: blur(4px);
    z-index: 3;
}

/* Modern Content Area */
.modern-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #ffffff 0%, #fcfbff 100%);
}

.modern-location-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.modern-card-title {
    font-size: 1.35rem;
    color: #2d3436;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
    transition: color 0.3s ease;
}

.holidays-modern-card:hover .modern-card-title {
    color: var(--primary);
}

/* Call to Action Row */
.modern-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.view-link {
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-link i {
    transition: transform 0.3s ease;
}

.holidays-modern-card:hover .view-link {
    letter-spacing: 0.5px;
}

.holidays-modern-card:hover .view-link i {
    transform: translateX(5px);
}

.price-start-label {
    font-size: 0.7rem;
    color: #636e72;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: -4px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .modern-img-wrapper {
        height: 220px;
    }
    .modern-card-content {
        padding: 22px;
    }
    .modern-card-title {
        font-size: 1.15rem;
    }
}