/* --- Tour Detail Page Specific CSS --- */

:root {
    --dzong-gold: #c5a059;
    --mountain-dusk: #252420;
    --valley-mist: #F7F2EB;
    --bhutan-sand: #f4eee1;
}

/* Hero Carousel Background (Solid Header Support) */
#navbar.header-solid {
    background-color: rgba(37, 36, 32, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Carousel */
.tour-carousel-section {
    position: relative;
    max-width: 100%;
    margin-bottom: 0;
    padding-top: 80px; /* Base offset for fixed header */
    background-color: var(--valley-mist);
}

@media (max-width: 768px) {
    .tour-carousel-section {
        padding-top: 70px;
    }
}

.tour-carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 60vh;
    /* Shorter than main hero for easier navigation */
}

.tour-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    height: 100%;
    will-change: transform;
}

.tour-slide {
    flex: 0 0 calc(100% / 3);
    min-width: calc(100% / 3);
    height: 100%;
    position: relative;
    padding: 0 2px;
    /* Slight gap between images */
}

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

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;

    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--dzong-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 3rem;
}

.back-link {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--dzong-gold);
}

/* Tour Header */
.tour-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    margin: 1.5rem 0;
    color: var(--mountain-dusk);
}

.tour-meta-detailed {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tour-meta-detailed span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #666;
}

.tour-meta-detailed .meta-icon {
    width: 16px !important;
    height: 16px !important;
    margin-right: 0 !important;
    fill: #999 !important;
    vertical-align: middle;
}

.big-p {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    max-width: 900px;
    line-height: 1.8;
    font-weight: 400;
    color: #555;
}

/* Section Spacing Overrides */
.tour-intro-section {
    padding-bottom: 3rem;
}

.itinerary-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.booking-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* Itinerary List */
.itinerary-list {
    position: relative;
}

.itinerary-list .section-title {
    font-size: clamp(32px, 5vw, 48px);
    /* section header font size */
    margin-bottom: 3.5rem;
    /* Gap between title and list */
    color: var(--mountain-dusk);
}

.day-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 0;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border: 1px solid transparent;
}

.day-item.active {
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    border-color: rgba(197, 160, 89, 0.15);
    padding-right: 2rem;
}

.day-item::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(197, 160, 89, 0.3) 10%,
            rgba(197, 160, 89, 0.3) 90%,
            transparent);
    z-index: 0;
}

.day-item:first-child::before {
    top: 2.5rem;
}

.day-item:last-child::before {
    bottom: auto;
    height: 2.5rem;
}

.day-number {
    position: absolute;
    left: 20px;
    top: 2.2rem;
    width: 50px;
    height: 50px;
    background: white;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 0%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    color: var(--dzong-gold);
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.05);
}

.day-item.active .day-number {
    background: var(--dzong-gold);
    color: white;
    border-color: var(--dzong-gold);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.2);
    transform: scale(1.1);
}

.day-number span {
    font-size: 10px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.day-number strong {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

.day-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--mountain-dusk);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.day-item.active .day-content h3 {
    color: var(--dzong-gold);
}

.day-content h3::after {
    content: '';
    width: 12px;
    height: 12px;
    border-right: 1.5px solid var(--dzong-gold);
    border-bottom: 1.5px solid var(--dzong-gold);
    transform: rotate(45deg);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-right: 10px;
}

.toggle-item.active .day-content h3::after {
    transform: rotate(-135deg);
}

.day-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.toggle-item.active .day-details {
    max-height: 1000px;
    opacity: 1;
    margin-top: 1.5rem;
    padding-bottom: 1rem;
}

.day-content p {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Package Boxes */
.inclusions-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.inclusion-box,
.exclusion-box {
    background: white;
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.inclusion-box h3,
.exclusion-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--mountain-dusk);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.inclusion-box ul,
.exclusion-box ul {
    list-style: none;
    padding: 0;
}

.inclusion-box li,
.exclusion-box li {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inclusion-box li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
}

.exclusion-box li::before {
    content: '×';
    color: #FF5252;
    font-size: 20px;
}

.special-interest-intro {
    padding: 8rem 0 6rem;
    background-color: var(--valley-mist);
}


/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Responsiveness (Restored) */
@media (max-width: 1200px) {
    .inclusions-area {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .tour-slide {
        flex: 0 0 calc(100% / 2);
        min-width: calc(100% / 2);
    }
}

@media (max-width: 768px) {
    .tour-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .tour-title {
        font-size: 42px;
    }

    .tour-meta-detailed {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .tour-meta-detailed span {
        display: flex;
        align-items: center;
        width: 100%;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .carousel-prev,
    .carousel-next {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .day-item {
        padding-left: 70px;
        padding-top: 1.5rem;
    }

    .day-number {
        left: 10px;
        width: 45px;
        height: 45px;
    }

    .day-item::before {
        left: 32px;
    }

    .day-content h3 {
        font-size: 20px;
    }
}

/* Related Tours Slider & Package Card Updates */
.related-tours-section {
    background-color: var(--valley-mist);
    padding: 10rem 0;
    overflow: hidden;
}

.tours-slider-container {
    position: relative;
    width: 100%;
    margin-top: 5rem;
    padding: 0 60px;
    /* Space for arrows */
}

.tours-slider-track {
    display: flex;
    gap: 3rem;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.tour-card-slide {
    flex: 0 0 calc((100% - 6rem) / 3);
    min-width: calc((100% - 6rem) / 3);
}

/* Experience Page Card Design Mirroring */
.package-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.package-img {
    width: 100%;
    aspect-ratio: 1/1.15;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.package-card:hover .package-img img {
    transform: scale(1.1);
}

.package-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--mountain-dusk);
    margin-bottom: 1rem;
    font-weight: 500;
}

.package-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
}

.meta-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.join-link {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 6px;
    transition: all 0.3s ease;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.join-link .arrow {
    transition: transform 0.3s ease;
}

.join-link:hover {
    color: var(--dzong-gold);
    border-bottom-color: var(--dzong-gold);
}

.join-link:hover .arrow {
    transform: translateX(4px);
}

/* Slider Nav Buttons (Standardized with Hero) */
.tours-slider-container .carousel-prev {
    left: 20px;
}
.tours-slider-container .carousel-next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--dzong-gold);
    transform: scale(1.4);
}

@media (max-width: 1024px) {
    .tour-card-slide {
        flex: 0 0 calc((100% - 3rem) / 2);
        min-width: calc((100% - 3rem) / 2);
    }

    .tours-slider-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .tour-card-slide {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        flex-shrink: 0;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .tours-slider-container {
        padding: 0 50px;
    }
}

/* Related Tours Section Styles */
.related-tours-section {
    background-color: var(--valley-mist);
    padding: 10rem 0;
    overflow: hidden;
}

.tours-slider-container {
    position: relative;
    width: 100%;
    margin-top: 4rem;
}

.tours-slider-track {
    display: flex;
    gap: 3rem;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    padding: 1rem 0;
}

.tour-card-slide {
    flex: 0 0 calc((100% - 6rem) / 3);
    min-width: calc((100% - 6rem) / 3);
    transition: transform 0.4s ease;
}

.tour-card-slide:hover {
    transform: translateY(-10px);
}

.tour-card-img {
    width: 100%;
    aspect-ratio: 0.85;
    /* Vertical orientation from reference */
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.tour-card-slide:hover .tour-card-img img {
    transform: scale(1.1);
}

.tour-card-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--mountain-dusk);
    margin-bottom: 1rem;
    font-weight: 500;
}

.tour-card-meta {
    display: flex;
    gap: 1.5rem;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 1.5rem;
}

.tour-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tour-card-meta svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.tour-card-link {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--mountain-dusk);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.tour-card-link:hover {
    color: var(--dzong-gold);
    border-bottom-color: var(--dzong-gold);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 4rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--dzong-gold);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .tour-card-slide {
        flex: 0 0 calc((100% - 3rem) / 2);
        min-width: calc((100% - 3rem) / 2);
    }
}

@media (max-width: 768px) {
    .tour-card-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* --- Festival Date Cards --- */
.festival-dates-section {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.festival-dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 3rem auto 0;
}

.festival-date-card {
    background: #fdfbf7;
    padding: 2.5rem;
    border: 1px solid rgba(191, 155, 48, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.festival-date-card:hover {
    border-color: var(--dzong-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.festival-year {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--dzong-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.festival-actual-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--mountain-dusk);
    font-weight: 500;
}





.booking-layout-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow-form {
    color: var(--dzong-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-family: "Jost", sans-serif;
}

.booking-left h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--mountain-dusk);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.booking-left p {
    color: rgba(37, 36, 32, 0.7);
    font-size: 15px;
    line-height: 1.7;
}

.booking-contact-info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--mountain-dusk);
    text-decoration: none;
    font-family: "Jost", sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--valley-mist);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37, 36, 32, 0.1);
}

.custom-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.custom-form-group {
    margin-bottom: 1.5rem;
}

.custom-form-group label {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--mountain-dusk);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-form-group input,
.custom-form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(37, 36, 32, 0.2);
    font-family: "Lato", sans-serif;
    font-size: 14px;
    background: #fff;
    color: var(--mountain-dusk);
    box-sizing: border-box;
}

.custom-form-group input[readonly] {
    background-color: var(--valley-mist);
    color: rgba(37, 36, 32, 0.6);
}

.btn-submit-enquiry {
    background-color: var(--dzong-gold);
    border: 1px solid var(--dzong-gold);
    color: #fff;
    padding: 14px 35px;
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit-enquiry:hover {
    background-color: var(--mountain-dusk);
}

@media (max-width: 900px) {
    .booking-layout-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .custom-form-grid {
        grid-template-columns: 1fr;
    }
}