 /* Sticky tabs clone */
        .sticky-tabs-clone {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1040;
            background-color: #0a0f1a;
            border-bottom: 1px solid rgba(240, 165, 0, 0.3);
            transform: translateY(-100%);
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            opacity: 0;
        }
        .sticky-tabs-clone.sticky-active {
            transform: translateY(0);
            opacity: 1;
        }
        .sticky-tabs-clone .expedition-tabs-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            padding: 0.5rem 0;
        }
        .expedition-tabs-nav.hide-original {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }
        .tabs-spacer {
            height: 0;
            transition: height 0.3s ease;
            background-color: #0a0f1a;
        }

        /* Hero */
        .hero-text {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* changed from center to bottom-align */
    justify-content: center;
    text-align: left;
    padding-bottom: 20px; /* 20px margin from bottom */
}
.hero-bg-parallax {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('https://images.unsplash.com/photo-1589308078059-be1415eab4c3?w=1800&q=85&auto=format');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
    transition: transform 0.05s linear;
}
.hero-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-text__text {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
    /* Ensure content sits at the bottom */
    margin-bottom: 0;
}
.hero-text__category {
    display: inline-block;
    background: var(--gold);
    color: var(--primary-deep);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 0.45rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 0.8rem; /* reduced from 1.5rem */
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.hero-text__heading h1 {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    color: white;
    margin-bottom: 0.2rem; /* reduced */
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* New sub-heading for trip_heading */
.hero-text__sub-heading {
    font-size: 1.4rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-text__intro p {
    font-size: 1.1rem; /* slightly smaller */
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}
.hero-text__button .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 0.85rem;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-text__button .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    border-radius: 50px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}
.hero-text__button .btn span,
.hero-text__button .btn i {
    position: relative;
    z-index: 1;
    transition: color 0.35s ease, transform 0.35s ease;
}
.hero-text__button .btn:hover::before {
    transform: scaleX(1);
}
.hero-text__button .btn:hover {
    color: var(--primary-deep);
    border-color: var(--gold);
    gap: 18px;
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(240, 165, 0, 0.3);
}
@media (max-width: 768px) {
    .hero-text__heading h1 {
        font-size: 2.2rem;
    }
    .hero-text__sub-heading {
        font-size: 1.1rem;
    }
    .hero-text__intro p {
        font-size: 0.95rem;
    }
    .hero-text__button .btn {
        font-size: 0.7rem;
        padding: 0.55rem 1.3rem;
    }
    .hero-text__category {
        font-size: 0.65rem;
        padding: 0.35rem 1.2rem;
        margin-bottom: 0.5rem;
    }
}

        /* Dark slice */
        .slice--dark {
            background-color: var(--dark-bg);
            color: var(--text-light);
            width: 100%;
        }
        .underlined-heading {
            padding: 80px 0 20px 0;
        }
        .underlined-heading .underline {
            text-align: left;
        }
        .underlined-heading h2 {
            font-size: 3.2rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: white;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            line-height: 1.2;
        }
        .underlined-heading h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--raspberry));
            border-radius: 2px;
        }
        @media (max-width: 768px) {
            .underlined-heading h2 {
                font-size: 2.2rem;
            }
            .underlined-heading {
                padding: 55px 0 20px 0;
            }
        }
        .text-content {
            padding: 20px 0 40px 0;
        }
        .text-big {
            font-size: 1.25rem;
            line-height: 1.7;
            font-weight: 400;
        }
        .text-big p {
            margin-bottom: 1.5rem;
        }
        .space--small {
            padding: 30px 0;
        }
        @media (max-width: 768px) {
            .text-big {
                font-size: 1.05rem;
            }
        }

        /* Tabs */
        .expedition-tabs-wrapper {
            background-color: #0a0f1a;
            position: relative;
            z-index: 1020;
        }
        .expedition-tabs-nav {
            background-color: #0a0f1a;
            border-bottom: 1px solid rgba(240, 165, 0, 0.3);
            transition: opacity 0.25s ease, visibility 0.25s ease;
            position: relative;
            z-index: 1025;
        }
        .expedition-tabs-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        .expedition-tabs-buttons {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
            gap: 0.25rem;
            padding: 0.5rem 0;
            flex: 1;
        }
        .expedition-tabs-buttons::-webkit-scrollbar {
            height: 3px;
        }
        .expedition-tabs-buttons::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }
        .expedition-tabs-buttons::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 3px;
        }
        .expedition-tab-btn {
            background: transparent;
            border: none;
            padding: 0.8rem 1.2rem;
            font-size: 0.95rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            letter-spacing: 0.5px;
            white-space: nowrap;
        }
        .expedition-tab-btn::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--gold);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .expedition-tab-btn.active {
            color: var(--gold);
        }
        .expedition-tab-btn.active::after {
            transform: scaleX(1);
        }
        .expedition-tab-btn:hover {
            color: var(--gold-light);
        }
        .expedition-enquire-btn {
            background: var(--gold);
            color: var(--primary-deep);
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .expedition-enquire-btn:hover {
            background: #d99500;
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(240, 165, 0, 0.3);
            color: var(--primary-deep);
        }
        .expedition-tab-panel {
            background-color: #f8f9fc;
            padding: 50px 0;
        }
        .section-spacer {
            scroll-margin-top: 100px;
        }

        /* Overview */
        .overview-grid-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            align-items: stretch;
        }
        .overview-info-col {
            flex: 2;
            min-width: 280px;
            background: transparent;
            padding: 0;
        }
        .info-grid-3col {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem 1.5rem;
        }
        .info-grid-item {
            text-align: center;
            transition: all 0.3s ease;
            padding: 0.5rem;
        }
        .info-grid-icon {
            width: 80px;
            height: 80px;
            background: rgba(240, 165, 0, 0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--icon-color);
            margin: 0 auto 1rem auto;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .info-grid-item:hover .info-grid-icon {
            transform: scale(1.08);
            background: var(--icon-color);
            color: var(--white);
        }
        .info-grid-label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 0.3rem;
        }
        .info-grid-value {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-deep);
            line-height: 1.35;
            margin-top:-10px;
        }
        .overview-booking-col {
            flex: 1.2;
            min-width: 280px;
            background: white;
            border-radius: 24px;
            padding: 1.8rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .trip-title-large {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--primary-deep);
            margin-bottom: 0.25rem;
        }
        .departure-chip {
            position: absolute;
            top: -12px;
            right: 20px;
            background: var(--primary-mid);
            color: var(--white);
            font-weight: 700;
            font-size: 0.7rem;
            padding: 0.35rem 1.2rem;
            border-radius: 40px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            z-index: 2;
        }
        .departure-date-btn {
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            border-radius: 50px;
            padding: 0.7rem 1rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-deep);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin: 0.5rem 0;
            transition: all 0.3s;
            cursor: pointer;
            width: 100%;
            justify-content: center;
        }
        .departure-date-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            transform: translateY(-2px);
        }
        .more-dates-btn {
            background: transparent;
            border: 1px solid #cbd5e1;
            border-radius: 40px;
            padding: 0.5rem 1rem;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-muted);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s;
            cursor: pointer;
            margin-top: 0.5rem;
            width: 100%;
            justify-content: center;
        }
        .more-dates-btn:hover {
            background: #eef2ff;
            border-color: var(--gold);
            color: var(--gold);
        }
        .btn-book-now {
            background: var(--icon-color);
            color: var(--white);
            font-weight: 700;
            padding: 0.9rem;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            width: 100%;
            text-align: center;
            margin: 1.2rem 0 0.8rem;
            transition: all 0.3s;
            border: none;
        }
        .btn-book-now:hover {
            background: #d99500;
            transform: translateY(-3px);
        }
        .expedition-description {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #2c3e50;
            margin-top: 2rem;
        }

        /* Essential cards */
        .essential-grid {
            display: flex;
            gap: 1.5rem;
            flex-wrap: nowrap;
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        .essential-card {
            flex: 0 0 calc(33.333% - 1rem);
            min-width: 260px;
            background: white;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #eef2f5;
        }
        .essential-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: rgba(240, 165, 0, 0.3);
        }
        .essential-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        .essential-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-deep);
        }
        .essential-card p {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }
        .essential-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        .essential-link i {
            transition: transform 0.2s;
        }
        .essential-link:hover {
            color: #d99500;
        }
        .essential-link:hover i {
            transform: translateX(4px);
        }

        /* Carousels */
        .essential-carousel-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .essential-carousel-viewport {
            overflow: hidden;
            flex: 1;
            padding: 0.5rem 0;
        }
        .essential-nav-row {
            display: flex;
            gap: 0.8rem;
            justify-content: flex-start;
            align-items: center;
            margin-top: 0.5rem;
        }
        .essential-nav {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            z-index: 5;
            box-shadow: none;
        }
        .essential-nav:hover {
            background: var(--gold);
            color: var(--primary-deep);
            border-color: var(--gold);
            transform: scale(1.1);
            box-shadow: 0 8px 22px rgba(240, 165, 0, 0.35);
        }
        .essential-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            pointer-events: none;
            border-color: rgba(240, 165, 0, 0.4);
            background: transparent;
            color: rgba(240, 165, 0, 0.4);
            transform: none;
            box-shadow: none;
        }
        @media (max-width: 991px) {
            .essential-card {
                flex: 0 0 calc(50% - 0.75rem);
                min-width: 240px;
            }
        }
        @media (max-width: 767px) {
            .essential-card {
                flex: 0 0 100%;
                min-width: 220px;
            }
            .essential-nav {
                width: 40px;
                height: 40px;
                font-size: 0.85rem;
            }
            /* Mobile padding improvements for carousel viewports */
            #essentialCarouselViewport {
                padding: 0 8px;
            }
            #relatedCarouselViewport {
                padding: 0 12px;
            }
            #relatedCarouselViewport .related-grid {
                gap: 1rem;
            }
            .related-card {
                min-width: 260px;
            }
            .essential-card {
                min-width: 240px;
            }
        }

        /* Dates modal */
        .dates-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        .dates-modal.active {
            display: flex;
        }
        .dates-modal-content {
            background: white;
            border-radius: 28px;
            max-width: 480px;
            width: 90%;
            padding: 2rem;
            position: relative;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }
        .close-modal {
            position: absolute;
            top: 18px;
            right: 22px;
            font-size: 1.8rem;
            cursor: pointer;
            color: #999;
            transition: color 0.2s;
        }
        .close-modal:hover {
            color: var(--gold);
        }
        .dates-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0.5rem;
        }
        .dates-list li {
            padding: 1rem 0;
            border-bottom: 1px solid #eef2f5;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }
        .select-date-btn {
            background: var(--gold);
            border: none;
            border-radius: 40px;
            padding: 0.5rem 1.2rem;
            font-weight: 700;
            font-size: 0.8rem;
            color: var(--primary-deep);
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }
        .select-date-btn:hover {
            background: #d99500;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(240, 165, 0, 0.3);
        }

        /* Gear */
        .gear-intro {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            margin-bottom: 2.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .gear-intro p {
            font-size: 1.1rem;
            line-height: 1.65;
        }
        .gear-card {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            color: white;
        }
        .gear-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
        }
        .gear-card-overlay {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
            padding: 2rem 1.8rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 320px;
        }
        .gear-card h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.75rem;
            letter-spacing: -0.5px;
        }
        .gear-card p {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }
        .gear-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--gold);
            color: var(--primary-deep);
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            width: fit-content;
        }
        .gear-btn i {
            font-size: 1rem;
        }
        .gear-btn:hover {
            background: #d99500;
            transform: translateX(5px);
            color: var(--primary-deep);
        }
        .guide-book-bg {
            background-image: url('https://images.unsplash.com/photo-1626621341517-bbfa3c2e4c1f?w=800&q=80');
            background-size: cover;
        }
        .checklist-bg {
            background-image: url('https://images.unsplash.com/photo-1633107888072-4acd6bd987a3?w=800&q=80');
            background-size: cover;
        }

        /* Gallery */
        .gallery-container {
            margin: 0;
            padding: 0;
            background: transparent;
            border-radius: 0;
        }
        .gallery-main-image {
            width: 100%;
            margin: 0;
            padding: 0;
            overflow: hidden;
            border-radius: 0;
        }
        .gallery-main-image img {
            width: 100%;
            height: auto;
            max-height: 70vh;
            object-fit: cover;
            display: block;
            border-radius: 0;
        }
        .gallery-thumbnails {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.8rem;
            margin-top: 1.5rem;
            padding: 0 1rem;
        }
        .thumb {
            width: 100px;
            height: 70px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.25s;
            border: 2px solid transparent;
            opacity: 0.8;
            border-radius: 12px;
        }
        .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .thumb.active {
            border-color: var(--gold);
            opacity: 1;
            transform: scale(1.02);
        }
        .thumb:hover:not(.active) {
            opacity: 1;
            transform: translateY(-3px);
            border-color: rgba(240, 165, 0, 0.6);
        }
        @media (max-width: 768px) {
            .thumb {
                width: 70px;
                height: 50px;
            }
            .gallery-main-image img {
                max-height: 50vh;
            }
        }

        /* Itinerary */
        .itinerary-large {
            display: none;
        }
        @media (min-width: 1024px) {
            .itinerary-large {
                display: block;
            }
        }
        .timeline-itinerary {
            margin-top: 1.5rem;
            padding: 1.5rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }
        .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 .expand-btn {
            background: #444;
            color: #fff;
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 7px;
            top: 0;
            bottom: 0;
            width: 2px;
            background-image: radial-gradient(circle, #bbb 2px, transparent 3px);
            background-size: 6px 12px;
            background-repeat: repeat-y;
        }
        .timeline-step {
            position: relative;
            margin-bottom: 30px;
        }
        .timeline-step::before {
            content: '';
            position: absolute;
            left: -30px;
            top: 16px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #fff;
            border: 2px solid #444;
            z-index: 1;
        }
        .timeline-step:first-child::before {
            content: "\f024";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            font-size: 12px;
            line-height: 16px;
            text-align: center;
            color: #fff;
            background: #e74c3c;
            border-color: #e74c3c;
            width: 20px;
            height: 20px;
            left: -32px;
            top: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .timeline-step:last-child::before {
            background: #2ecc71;
            border-color: #2ecc71;
        }
        .accordion-button {
            background: white;
            padding: 16px 20px;
            font-weight: 600;
            font-size: 17px;
            color: #2c3e50;
            border: none;
            border-bottom: 1px solid #eee;
            outline: none !important;
            box-shadow: none !important;
        }
        .time-badge {
            background: #444;
            color: white;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 13px;
            margin-right: 12px;
        }
        .trip-itinerary-mobile {
            display: none;
        }
        @media (max-width: 1023px) {
            .trip-itinerary-mobile {
                display: block;
            }
            .itinerary-large {
                display: none;
            }
        }
        .trip-itinerary-card {
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 20px;
            background: white;
        }
        .trip-itinerary-card .card-body p {
            font-size: 1.05rem;
            line-height: 1.6;
        }
        .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;
        }

        /* Services */
        .service-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .service-list li {
            position: relative;
            padding-left: 38px;
            margin-bottom: 24px;
            font-size: 1.1rem;
            line-height: 1.55;
            color: #1f2937;
            font-weight: 500;
        }
        .service-list li::before {
            display: inline-block;
            position: absolute;
            left: 0;
            top: 2px;
            font-family: "Font Awesome 6 Free";
            font-weight: 400;
            color: #f77f3c;
            font-size: 1.35rem;
            content: "\f058";
        }
        .exclusions li::before {
            content: "\f057";
        }
        #section-details .card {
            background: transparent !important;
            box-shadow: none !important;
            border: none !important;
        }
        #section-details .card-body {
            padding: 1rem 0 0 0;
            background: transparent !important;
        }

        /* Related expeditions */
        .related-grid {
            display: flex;
            gap: 1.8rem;
            flex-wrap: nowrap;
            transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
        }
        .related-card {
            flex: 0 0 calc(33.333% - 1.2rem);
            min-width: 300px;
            background: white;
            /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); */
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            /* border: 1px solid #eef2f5;
            border-radius: 20px; */
        }
        .related-card:hover {
            transform: translateY(-6px);
            /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: rgba(240, 165, 0, 0.3); */
        }
        .related-card-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
            border-radius: 0;
        }
        .related-card-body {
            padding: 1.6rem 1.8rem;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .related-meta {
            display: flex;
            gap: 1.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        .related-meta i {
            margin-right: 4px;
            color: var(--gold);
        }
        .related-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-deep);
            line-height: 1.3;
            margin-bottom: 0.4rem;
        }
        .related-desc {
            font-size: 1rem;
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 0.9rem;
        }
        .related-departure {
            margin-top: auto;
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--primary-deep);
            display: flex;
            align-items: center;
            gap: 6px;
            border-top: 1px solid #eef2f5;
            padding-top: 1rem;
        }
        .related-departure i {
            color: var(--gold);
        }
        .related-full-width {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        /* Service list – common styles */
.service-list,
.service-list-wrap ul {
    list-style: none !important; /* remove default bullets */
    padding-left: 0;
    margin-bottom: 0;
}

/*.service-list li,
.service-list-wrap ul li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 24px;
    font-size: 1.1rem;
    line-height: 1.55;
    color: #1f2937;
    font-weight: 500;
    list-style: none !important;
}*/

.service-list li,
.service-list-wrap ul li {
    position: relative;
    padding-left: 38px;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #1f2937;
    list-style: none !important; /* remove marker */
}

/* Inclusions: checkmark */
.service-list.inclusions li::before,
.service-list-wrap.inclusions ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    color: #2e7d32; /* green */
    font-size: 1.35rem;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Exclusions: cross */
.service-list.exclusions li::before,
.service-list-wrap.exclusions ul li::before {
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    color: #d32f2f; /* red */
    font-size: 1.35rem;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Fallback if font-awesome is not loaded */
.service-list li,
.service-list-wrap ul li {
    list-style: none !important;
}
/* Grade indicator - difficulty bars */
.grade-indicator {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.grade-bar {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.grade-bar.filled {
    background-color: #2e7d32; /* default green for Easy */
}

.grade-bar.empty {
    background-color: #e0e0e0;
}

/* Colour per grade */
.grade-easy .grade-bar.filled {
    background-color: #2e7d32; /* green */
}
.grade-moderate .grade-bar.filled {
    background-color: #f57c00; /* orange */
}
.grade-strenuous .grade-bar.filled {
    background-color: #c62828; /* red */
}
.grade-challenging .grade-bar.filled {
    background-color: #4e342e; /* dark brown */
}

.grade-easy .grade-label {
    color: #2e7d32;
}
.grade-moderate .grade-label {
    color: #f57c00;
}
.grade-strenuous .grade-label {
    color: #c62828;
}
.grade-challenging .grade-label {
    color: #4e342e;
}

.team-section {
            padding: 5rem 0;
        }
        .team-section-alt {
            background-color: #f8fafc;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-deep);
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--raspberry));
            border-radius: 2px;
        }
        .team-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem 1.5rem;
        }
        .team-card {
            background: white;
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease, opacity 0.3s ease;
            /* no border-radius, no shadow */
            border-radius: 0;
            box-shadow: none;
        }
        .team-card:hover {
            transform: translateY(-6px);
        }
        .team-card-img {
            width: 100%;
            min-height: 350px;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            transition: transform 0.5s ease;
            display: block;
        }
        .team-card:hover .team-card-img {
            transform: scale(1.02);
        }
        .team-card-body {
            padding: 1.5rem 1rem;
            border-top: none;
        }
        .team-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-deep);
            margin-bottom: 0.4rem;
        }
        .team-position {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
        }
        .team-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            padding: 0 0.5rem;
        }
        .team-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}
.team-card-link:hover {
    transform: translateY(-6px);
}
.team-card-link .team-card {
    transition: none; /* prevent double transition */
    cursor: pointer;
}
        
        /* Responsive grid */
        @media (max-width: 1200px) {
            .team-grid { gap: 1.5rem; }
        }
        @media (max-width: 992px) {
            .team-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.8rem;
            }
        }
        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            .team-card-body { padding: 1rem; }
            .team-name { font-size: 1.1rem; }
        }
        @media (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        /* ===== PROFILE SECTION ===== */
.profile-section {
    padding: 4rem 0;
    background: #f8fafc;
}
.profile-image-wrapper {
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.profile-image-wrapper .profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.profile-image-wrapper:hover .profile-image {
    transform: scale(1.02);
}

.profile-content-wrapper {
    height: 100%;
    max-height: 700px; /* adjust as needed */
    overflow-y: auto;
    padding-right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.profile-content-wrapper::-webkit-scrollbar {
    width: 6px;
}
.profile-content-wrapper::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 10px;
}
.profile-content-wrapper::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}
.profile-name {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-deep);
    margin-bottom: 0.2rem;
}
.profile-designation {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.profile-body {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
}
.profile-body p {
    margin-bottom: 1.2rem;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(240, 165, 0, 0.3);
}

@media (max-width: 992px) {
    .profile-image-wrapper {
        min-height: 300px;
    }
    .profile-content-wrapper {
        max-height: 600px;
    }
    .profile-name {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .profile-section {
        padding: 2.5rem 0;
    }
    .profile-image-wrapper {
        min-height: 250px;
        border-radius: 12px;
    }
    .profile-content-wrapper {
        max-height: 400px;
    }
    .profile-name {
        font-size: 1.8rem;
    }
}
/* Map image wrapper */

/*.map-image-wrapper {
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.map-image-wrapper img {
    display: block;
    max-width: 100%;
    height: auto;
}
.map-overlay-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s;
}
.map-image-wrapper:hover .map-overlay-icon {
    opacity: 1;
}

.map-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}
.map-lightbox.active {
    display: flex;
}
.map-lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.map-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}*/
