/* ── SCROLLBAR ── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--moss-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--sage);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-glow);
}

body {
    background-color: var(--void);
    color: var(--forest);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── GLASSMORPHISM ── */
.glass-header {
    background: rgba(12, 24, 17, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(125, 155, 123, 0.15);
}

.glass-card-dark {
    background: rgba(12, 24, 17, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(125, 155, 123, 0.15);
}

.glass-card-light {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(27, 59, 38, 0.08);
}

/* ── GALLERY GRID ── */
.gallery-main-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    height: 480px;
    gap: 10px;
    border-radius: 24px;
    overflow: hidden;
}

.gallery-thumbs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

.gallery-img-wrap {
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-img-wrap:hover img {
    transform: scale(1.07);
}

.gallery-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 24, 17, 0);
    transition: background 0.4s ease;
}

.gallery-img-wrap:hover::after {
    background: rgba(12, 24, 17, 0.15);
}

#lightbox-img {
    transition: opacity 0.2s ease;
}

@media (max-width: 640px) {
    .gallery-main-grid {
        grid-template-columns: 1fr;
        height: 260px;
    }

    .gallery-thumbs-grid {
        display: none;
    }
}

/* ── FLOATING LEAVES ── */
@keyframes leafDrift {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(0deg);
    }

    15% {
        opacity: 0.65;
    }

    85% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translate(var(--dx, 30px), -110px) rotate(var(--dr, 35deg));
    }
}

.leaf-particle {
    position: absolute;
    pointer-events: none;
    animation: leafDrift var(--dur, 8s) var(--dl, 0s) ease-in-out infinite;
    will-change: transform, opacity;
    font-size: 15px;
    z-index: 2;
}

/* ── AURA GLOW ── */
.aura-glow {
    animation: auraBreath 7s ease-in-out infinite;
    filter: blur(65px);
}

@keyframes auraBreath {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.35;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.6;
    }
}

/* ── SUMMARY CARDS ── */
.trip-info-card {
    background: #ffffff;
    border: 1.5px solid rgba(27, 59, 38, 0.18);
    border-radius: 16px;
    padding: 16px 20px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 16px rgba(27, 59, 38, 0.07);
}

.trip-info-card:hover {
    background: #fff;
    border-color: rgba(245, 193, 88, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(27, 59, 38, 0.12);
}

/* ── BOOKING PANEL BUTTONS ── */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold-glow), #d4a348);
    color: var(--moss-dark);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 28px;
    border-radius: 50px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: left 0.55s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(245, 193, 88, 0.45);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    width: 100%;
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid rgba(125, 155, 123, 0.3);
    color: var(--sage);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: rgba(125, 155, 123, 0.65);
    color: #fff;
    background: rgba(125, 155, 123, 0.07);
}

/* ── SEATS BAR ── */
.seats-bar {
    height: 4px;
    background: rgba(125, 155, 123, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.seats-fill {
    height: 100%;
    background: linear-gradient(to right, var(--gold-glow), #d4a348);
    border-radius: 2px;
    transition: width 0.6s ease;
}

/* ── HIGHLIGHT ROWS ── */
.highlight-row {
    border-bottom: 1.5px solid rgba(27, 59, 38, 0.14);
    padding: 22px 0;
    transition: all 0.3s ease;
}

.highlight-row:last-child {
    border-bottom: none;
}

.highlight-row:hover {
    padding-left: 10px;
    background: rgba(27, 59, 38, 0.025);
    border-color: rgba(245, 193, 88, 0.45);
}

/* ── QUOTE BLOCK ── */
.quote-block {
    border-left: 3px solid var(--gold-glow);
    padding-left: 24px;
    margin: 28px 0;
}

/* ── ACCORDION BASE ── */
.accordion-body,
.itinerary-body,
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-body.open,
.itinerary-body.open,
.faq-body.open {
    max-height: 1200px;
}

.accordion-icon,
.itinerary-icon,
.faq-icon {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-item.active,
.itinerary-item.active {
    border-color: rgba(245, 193, 88, 0.28) !important;
}

/* ── BRING CHIPS ── */
.bring-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: #ffffff;
    border: 1.5px solid rgba(27, 59, 38, 0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--forest);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    box-shadow: 0 2px 8px rgba(27, 59, 38, 0.06);
}

.bring-chip:hover {
    background: var(--forest);
    color: var(--void);
    border-color: var(--forest);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 26px rgba(27, 59, 38, 0.22);
}

/* ── DETOX CARDS ── */
.detox-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(125, 155, 123, 0.12);
    border-radius: 20px;
    padding: 20px 16px;
    transition: all 0.35s ease;
}

.detox-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 193, 88, 0.22);
    transform: translateY(-4px);
}

/* ── RELATED CARDS ── */
.related-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(27, 59, 38, 0.06);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.14);
}

.related-card-img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.related-card:hover .related-card-img {
    transform: scale(1.08);
}

/* ── SELECT ── */
.booking-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: rgba(12, 24, 17, 0.6);
    color: rgba(255, 255, 255, 0.88);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237D9B7B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.booking-select option {
    background-color: var(--moss-dark);
    color: #fff;
}

/* ── GUESTS BTN ── */
.guests-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(125, 155, 123, 0.3);
    background: transparent;
    color: var(--sage);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    cursor: pointer;
}

.guests-btn:hover {
    border-color: var(--gold-glow);
    color: var(--gold-glow);
}