/*Global Section Styling*/

.consultation-section,
.free-itineraries,
.instagram-section,
.consultation-process {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
}

.consultation-section::after,
.free-itineraries::after,
.instagram-section::after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    background: rgba(198,167,94,.3);
    margin: 80px auto 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.6rem;
    color: #fff;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.section-header p {
    color: rgba(255,255,255,.75);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/*Hero*/
.consultation-hero {
    text-align: center;
    padding: 120px 30px 80px;
    max-width: 1000px;
    margin: auto;
}

.consultation-hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.consultation-hero p {
    max-width: 750px;
    margin: auto;
    color: rgba(255,255,255,.8);
    line-height: 1.8;
    font-size: 1.1rem;
    padding-bottom: 50px;
}

.section-label {
    display: inline-block;
    margin-bottom: 20px;
    color: #c6a75e;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: .85rem;
}

/*Who It's For + What We Help With*/
/*Use the same card feel as destination cards.*/

.consultation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 24px;
}

.consultation-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 30px;
    transition: .35s ease;
}

.consultation-card:hover {
    transform: translateY(-8px);
    border-color: rgba(198,167,94,.5);
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

.consultation-card h3 {
    color: #c6a75e;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.consultation-card p {
    color: rgba(255,255,255,.8);
    line-height: 1.8;
}

/*Consultation Process Timeline*/
/*Much more premium than simple boxes.*/

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 40px 25px;
    border-radius: 24px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
}

.process-step span {
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #c6a75e;
    color: #000;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    color: #fff;
    margin-bottom: 12px;
}

.process-step p {
    color: rgba(255,255,255,.75);
}


/*Free Itineraries Gallery*/
/*This should look like Netflix + Luxury Travel.*/

.itinerary-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 30px;
}

.itinerary-tile {
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: .4s ease;
}

.itinerary-tile img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Matches standard landscape images */
    object-fit: cover;
    object-position: top center; /* Forces any overflow to crop from the bottom, not the top */
}

.itinerary-tile:hover {
    transform: translateY(-8px);
}

.itinerary-tile img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.tile-content {
    padding: 24px;
}

.tile-content h3 {
    color: #fff;
    margin-bottom: 10px;
}

.tile-content p {
    color: rgba(255,255,255,.75);
    margin-bottom: 18px;
}

/*Instagram Carousels*/
/*Use horizontal scrolling cards.*/

.horizontal-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.horizontal-slider::-webkit-scrollbar {
    height: 8px;
}

.horizontal-slider::-webkit-scrollbar-thumb {
    background: rgba(198,167,94,.6);
    border-radius: 20px;
}

.social-slide {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    /*width: 340px;*/
    /*flex-shrink: 0;*/
    /*border-radius: 24px;*/
    /*overflow: hidden;*/
    /*position: relative;*/
    /*transition: transform .3s ease;*/
}


/*.social-slide:hover {*/
/*    !*transform: translateY(-6px);*!*/
/*    transform: scale(1.03);*/
/*}*/

.social-slide img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    /*transition: transform .6s ease;*/

}

.social-card {
    transition: transform .3s ease;
}

.social-slide:hover .social-card {
    transform: translateY(-6px);
}

.social-slide:hover img {
    transform: scale(1.08);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(
            transparent,
            rgba(0,0,0,.85)
    );
    color: #fff;
}

/*Final CTA*/
/*This should feel like the end of a luxury magazine article.*/

.begin-journey-cta {
    text-align: center;
    padding: 120px 30px;
    max-width: 900px;
    margin: auto;
}

.begin-journey-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.begin-journey-cta p {
    color: rgba(255,255,255,.75);
    margin-bottom: 30px;
    line-height: 1.8;
}

/*CSS for Carousal Container
Travel Moments
Most Loved Adventures
*/
/*Updated Slide Styling*/
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/*.carousel-track {*/
/*    display: flex;*/
/*    gap: 24px;*/
/*    transition: transform .6s ease;*/
/*    will-change: transform;*/
/*}*/

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee 80s linear infinite;
}

.carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

.reverse-marquee {
    animation: marqueeReverse 90s linear infinite;
}

@keyframes marqueeReverse {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}

.slide-overlay {
    /*position: absolute;*/
    /*left: 0;*/
    /*right: 0;*/
    /*bottom: 0;*/
    /*padding: 24px;*/
    /*background: linear-gradient(*/
    /*        transparent,*/
    /*        rgba(0,0,0,.85)*/
    /*);*/
    /*color: white;*/
    background: linear-gradient(
            transparent,
            rgba(0,0,0,.9)
    );
}

/*Navigation Buttons*/
/*.carousel-btn {*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    transform: translateY(-50%);*/
/*    z-index: 5;*/

/*    width: 50px;*/
/*    height: 50px;*/

/*    border: none;*/
/*    border-radius: 50%;*/

/*    background: rgba(0,0,0,.65);*/
/*    color: #fff;*/

/*    cursor: pointer;*/
/*    transition: .3s;*/
/*}*/

/*.carousel-btn:hover {*/
/*    background: #c6a75e;*/
/*    color: #000;*/
/*}*/

/*.carousel-btn.prev {*/
/*    left: 10px;*/
/*}*/

/*.carousel-btn.next {*/
/*    right: 10px;*/
/*}*/



/*Auto rotate*/

.carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    /*border-radius: 24px;*/
}




