/* ══════════ BASE ══════════ */
html { scroll-behavior: smooth; }

.nav-tagline-black-edge {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000,
                 -2px 0 0 #000, 2px 0 0 #000, 0 -2px 0 #000, 0 2px 0 #000;
}

/* ══════════ HERO ══════════ */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
    background-size: cover;
    background-position: center;
    transform: translateZ(0); 
    backface-visibility: hidden;
    will-change: opacity;
}
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.25) 40%,
        rgba(30,58,95,0.75) 100%
    );
}
.hero-slide.active { opacity: 1; }

.hero-content {
    position: absolute;
    bottom: 12%;
    left: 5%;
    z-index: 30;
    max-width: 660px;
}
@media (min-width: 768px) {
    .hero-content { left: 8%; bottom: 15%; }
}
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.6rem;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
@media (min-width: 768px) {
    .hero-content h1 { font-size: 3.8rem; }
}
.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    max-width: 500px;
    line-height: 1.6;
}
.hero-cta {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #f2b807 0%, #d4a005 100%);
    color: #1e3a5f;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(242,184,7,0.35);
    letter-spacing: 0.3px;
}
.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(242,184,7,0.5);
}

/* Carousel controls */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.carousel-arrow:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.06);
}
.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }
@media (max-width: 767px) {
    .carousel-arrow { display: none; }
}

.carousel-dots {
    position: absolute;
    bottom: 36px;
    right: 5%;
    display: flex;
    gap: 10px;
    z-index: 20;
}
@media (min-width: 768px) {
    .carousel-dots { right: 8%; }
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.carousel-dot.active {
    background: #f2b807;
    border-color: #f2b807;
    transform: scale(1.3);
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ══════════ TRUST BAR ══════════ */
.trust-bar {
    background: #1e3a5f;
    color: rgba(255,255,255,0.9);
    padding: 18px 0;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.trust-divider {
    color: #f2b807;
    margin: 0 12px;
    font-weight: 300;
}
@media (min-width: 768px) {
    .trust-divider { margin: 0 20px; }
}

/* ══════════ TOUR CARDS ══════════ */
.tour-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
    text-decoration: none;
    transform: translateZ(0);
    will-change: transform, box-shadow;
}

.tour-card:hover {
    transform: translateY(-6px) translateZ(0);
    box-shadow: 0 20px 44px -10px rgba(30,58,95,0.25);
}

.tour-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    transform: translateZ(0);
    will-change: transform;
}

.tour-card:hover .tour-card-img {
    transform: scale(1.05) translateZ(0);
}

.tour-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.02) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: white;
}

.tour-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(30,58,95,0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transform: translateZ(0);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    z-index: 5;
}

.tour-card-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #f2b807;
    margin-bottom: 6px;
}

.tour-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0;
}

.tour-card-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
    line-height: 1.45;
}

.tour-card-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tour-card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f2b807;
}

.tour-card-price small {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    margin-left: 4px;
}

.tour-card-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
}

.tour-card:hover .tour-card-link { 
    color: #f2b807; 
}

/* Filter */
.filter-btn {
    transition: all 0.25s ease;
    border: 1px solid transparent;
}
.filter-btn.active {
    background: #1e3a5f !important;
    color: white !important;
    border-color: #1e3a5f;
    box-shadow: 0 2px 10px rgba(30,58,95,0.3);
}
.filter-btn:not(.active):hover {
    border-color: #1e3a5f;
    color: #1e3a5f;
}

/* ---------- WHY SECTION ---------- */
.why-section {
    background-color: #1a3252;
    background-image: radial-gradient(circle at top right, rgba(242,184,7,0.08) 0%, transparent 60%), linear-gradient(135deg, #1e3a5f 0%, #0f1f32 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
    padding-top: 6rem;
    padding-bottom: 6rem;
}


.why-subtitle {
    color: #f2b807;
    font-size: 0.95rem; 
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.why-icon-box {
    width: 52px;
    height: 52px;
    background: rgba(242,184,7,0.1);
    border: 1px solid rgba(242,184,7,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ══════════ TESTIMONIALS ══════════ */
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 28px 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    position: relative;
}
.testimonial-card::before {
    content: "\201C";
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: rgba(30,58,95,0.08);
    position: absolute;
    top: 10px;
    left: 22px;
    line-height: 1;
}
.stars { color: #f2b807; font-size: 0.85rem; letter-spacing: 2px; }

/* ══════════ VISA ══════════ */
.visa-accordion {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.visa-accordion:hover { border-color: rgba(30,58,95,0.3); }

/* ══════════ SCROLL REVEAL ══════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ══════════ CUSTOM BUTTONS ══════════ */
.dest-btn {
    border: 2px solid #1e3a5f;
    color: #1e3a5f;
    background-color: transparent;
}
.dest-btn:hover {
    background-color: #1e3a5f;
    color: #ffffff;
}

/* ══════════ FOOTER ══════════ */
.site-footer {
    background-color: #1e293b;
    color: #f8fafc;
}
.footer-brand {
    color: #f2b807; 
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-heading {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-link {
    color: #94a3b8; 
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #ffffff; 
}
.footer-text {
    color: #94a3b8;
    line-height: 1.6;
}
/* ══════════ 6 · CTA SECTION ══════════ */
.cta-section {
    
    background-color: #1a3252;
    background-image: radial-gradient(circle at top right, rgba(242,184,7,0.08) 0%, transparent 60%), linear-gradient(135deg, #1e3a5f 0%, #0f1f32 100%);
    color: white;
   
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

/* Take The Next Step — supporting copy */
.cta-prose {
    max-width: 40rem;
    margin: 0 auto;
    text-align: center;
}
.cta-prose-lead {
    font-size: clamp(1.0625rem, 2.4vw, 1.375rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
    line-height: 1.45;
    letter-spacing: 0.02em;
    margin: 0 0 1rem;
}
.cta-prose-body {
    font-size: clamp(0.9375rem, 1.9vw, 1.0625rem);
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0 0 1.25rem;
}
.cta-prose-body strong {
    color: #f2b807;
    font-weight: 700;
}
/* Opens floating trip list (includes/trip-cart.js) */
.cta-prose-trip-list-btn {
    font: inherit;
    font-size: inherit;
    font-weight: 700;
    color: #f2b807;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    display: inline;
    vertical-align: baseline;
    transition: color 0.2s ease;
}
.cta-prose-trip-list-btn:hover {
    color: #fff;
}
.cta-prose-trip-list-btn:focus-visible {
    outline: 2px solid #f2b807;
    outline-offset: 2px;
    border-radius: 2px;
}
.cta-prose-link {
    color: #f2b807;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
    transition: color 0.2s ease;
}
.cta-prose-link:hover {
    color: #fff;
}
.cta-prose-note {
    font-size: clamp(0.875rem, 1.65vw, 1rem);
    color: rgba(203, 213, 225, 0.9);
    line-height: 1.65;
    margin: 0;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.cta-prose-note strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}


.cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
}
@media (min-width: 640px) {
    .cta-button-group:not(.cta-button-group--split) {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Take The Next Step: three browse buttons in a row; Contact Us primary below (always visible) */
.cta-button-group--split {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
}
.cta-button-group-browse {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0.75rem;
    width: 100%;
}
.cta-cta-contact {
    flex-shrink: 0;
    width: 100%;
    max-width: 22rem;
}
@media (min-width: 640px) {
    .cta-button-group-browse {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.45rem;
        align-items: stretch;
    }
    .cta-button-group-browse .cta-btn {
        min-width: 0;
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 44px;
        padding: 10px 6px;
        font-size: 0.75rem;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
        box-sizing: border-box;
    }
    .cta-cta-contact {
        width: auto;
        min-width: min(240px, 100%);
        max-width: none;
    }
}
@media (min-width: 900px) {
    .cta-button-group-browse {
        gap: 0.65rem;
    }
    .cta-button-group-browse .cta-btn {
        padding: 12px 12px;
        font-size: 0.875rem;
        min-height: 48px;
    }
}
@media (max-width: 639px) {
    .cta-button-group-browse .cta-btn {
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }
}


.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    padding: 0 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    width: 100%;
}
@media (min-width: 640px) {
    .cta-btn {
        width: auto;
        min-width: 240px; 
    }
}


.cta-btn.primary {
    background: linear-gradient(135deg, #f2b807 0%, #d4a005 100%);
    color: #1e3a5f;
    box-shadow: 0 4px 20px rgba(242,184,7,0.35);
    border: 2px solid transparent;
}
.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(242,184,7,0.5);
}


.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.cta-btn.secondary:hover {
    background: white;
    color: #1e3a5f;
    border-color: white;
    transform: translateY(-2px);
}