/* ---------- ROOT THEME ---------- */
:root {
    --bg-body: #020617;
    --bg-elevated: #020c1f;
    --bg-deep: #020617;
    --bg-alt: #020b2e;
    --bg-soft: #020c2f;
    --navy: #020b2e;
    --navy-soft: #0b1739;
    --accent: #f6c453;
    --accent-soft: rgba(246, 196, 83, 0.16);
    --accent-strong: #fbbf24;
    --text-main: #e5e7eb;
    --text-muted: #94a3b8;
    --border-subtle: rgba(148, 163, 184, 0.35);
    --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.85);
    --radius-lg: 18px;
    --radius-md: 14px;
    --transition-fast: 0.25s ease;
    --transition-med: 0.4s ease;
}

/* ---------- LIGHT THEME (LUXURY) ---------- */
body.light {
    --bg-body: #f6f7fb;      /* premium pearl */
    --bg-elevated: #ffffff;
    --bg-deep: #eef1f7;
    --bg-alt: #CBCBCB;
    --bg-soft: #f4f6ff;

    --text-main: #0b1035;    /* luxury navy */
    --text-muted: #5a6279;

    --border-subtle: rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ---------- RESETS ---------- */
*{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 
                 "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #020b2e 0, var(--bg-body) 55%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background var(--transition-med), color var(--transition-med);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------- LAYOUT HELPERS ---------- */
.page-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 70px 0;
    position: relative;
}

.section--deep {
    background: radial-gradient(circle at top left, rgba(246, 196, 83, 0.08), transparent 55%), var(--bg-deep);
}

body.light .section--deep {
    background: linear-gradient(to bottom,
        rgba(255,255,255,0.95),
        rgba(245,247,255,0.96)
    );  /* clean bright background */

    color: #0b1035;
}

body.light .section--deep .section-sub {
    color: rgba(0,0,0,0.75);      /* readable grey */
}

.section--alt {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), var(--bg-alt));
}

.section--soft {
    background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.08), transparent 55%), var(--bg-soft);
}

.section--clean {
    background: var(--bg-body);
}

.section-header {
    margin-bottom: 24px;
}

.section-title {
    font-size: 2rem;
    letter-spacing: 0.04em;
}

.section-sub {
    color: var(--text-muted);
    margin-top: 6px;
}

.section-cta {
    margin-top: 20px;
    text-align: center;
}

/* Scroll fade-in */
[data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.25s ease;
}

/* default: solid (for inner pages) */
.navbar--solid {
    background: rgba(2, 6, 23, 0.96);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(18px);
}

body.light .navbar--solid {
    background: rgba(249, 250, 251, 0.96);
    box-shadow: 0 12px 30px rgba(180, 180, 180, 0.45);
}

/* over hero on homepage */
.navbar--transparent {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
    box-shadow: none;
    backdrop-filter: none !important;
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
}

.nav-logo span {
    color: var(--accent);
}

/* desktop nav */
.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav-links a {
    font-size: 14px;
    color: var(--text-main);
    position: relative;
    padding-bottom: 3px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--accent);
    border-radius: 999px;
    transition: width 0.22s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Theme toggle (home only) */
.theme-toggle {
    border-radius: 999px;
    padding: 6px 12px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    background: rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    cursor: pointer;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

body.light .theme-toggle {
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
    border-color: rgba(148, 163, 184, 0.6);
}

.theme-toggle:hover {
    transform: translateY(-1px);
}

/* Hamburger (mobile only) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 999px;
    transition: transform var(--transition-fast), opacity var(--transition-fast), background var(--transition-fast);
}

.nav-close-btn {
    align-self: flex-end;
    font-size: 24px;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    margin-bottom: 16px;
}

/* mobile nav behavior */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 72%;
        max-width: 320px;
        height: 100vh;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 26px 20px;
        gap: 22px;
        transition: right 0.35s ease;
        box-shadow: -18px 0 40px rgba(0, 0, 0, 0.9);
    }

    body.light .nav-links {
        background: rgba(248, 250, 252, 0.98);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-close-btn {
        display: block;
    }

    .hamburger.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media (min-width: 901px) {
    .nav-close-btn {
        display: none;
    }
}

/* ---------- HERO (HOME) ---------- */
.hero {
    min-height: 100vh;
    padding: 120px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image:
        radial-gradient(circle at top left, rgba(246, 196, 83, 0.22), transparent 55%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.22), transparent 55%),
        linear-gradient(135deg, #020617 0%, #020b2e 40%, #020617 100%),
        url("https://images.unsplash.com/photo-1731436137302-664775406641?q=80&w=1140&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-size: cover;
    background-position: center center;
    background-blend-mode: soft-light;
}

/* LIGHT MODE HERO â€“ visible background + slight cinematic mist */
body.light .hero {
    background-color: #f6f7fb;
    background-image: url("https://images.unsplash.com/photo-1731436137302-664775406641?q=80&w=1140&auto=format&fit=crop&ixlib=rb-4.1.0");
    background-size: cover;
    background-position: center;
    background-blend-mode: normal;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
}

/* very light premium mist */
body.light .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(255,255,255,0.10) 0%,
        rgba(255,255,255,0.06) 45%,
        rgba(255,255,255,0.02) 70%,
        transparent 100%
    );
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.4), transparent 50%);
    pointer-events: none;
}

/* softer vignette on light */
body.light .hero::after {
    background: radial-gradient(circle at bottom, rgba(0, 0, 0, 0.12), transparent 56%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 850px;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
}

/* Spotlight layer */
.hero-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    mix-blend-mode: screen;
    transition: opacity 0.25s ease;
}

/* Hero tag */
.hero-tag {
    background: rgba(15, 23, 42, 0.85);
    padding: 6px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(246, 196, 83, 0.85);
}

body.light .hero-tag {
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(0,0,0,0.08);
    color: #111;
    backdrop-filter: blur(6px);
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 3.7rem);
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 10px;
    text-shadow: 0 18px 55px rgba(0, 0, 0, 0.9);
}

.hero-title span {
    color: var(--accent-strong);
}

body.light .hero-title {
    color: #0b1035;                       /* Premium deep navy */
    text-shadow: 0 4px 18px rgba(255,255,255,0.65); /* Pop out over image */
}

.hero-sub {
    color: #e5e7eb;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 22px;
}

body.light .hero-sub {
    color: rgba(0, 0, 0, 0.85);        /* Strong readable text */
    text-shadow: 0 2px 6px rgba(255,255,255,0.8);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* mobile: 2 buttons on first row, 3rd below centered */
@media (max-width: 640px) {
    .hero {
        padding-top: 110px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions .btn:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 70%;
    }
}

/* HERO SIMPLE (inner pages) */
.hero-simple {
    padding: 130px 20px 50px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(246, 196, 83, 0.2), transparent 50%), linear-gradient(160deg, #020617, #020b2e);
}

body.light .hero-simple {
    background: radial-gradient(circle at top, rgba(246, 196, 83, 0.18), transparent 50%), linear-gradient(160deg, #e5ecff, #f9fafb);
}

.hero-simple h1 {
    font-size: 2.4rem;
    color: var(--accent);
}

.hero-simple p {
    color: var(--text-muted);
    margin-top: 6px;
}

/* ---------- BUTTONS ---------- */
.btn {
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #111827;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
}

.btn-outline {
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.8);
}

body.light .btn-outline {
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
}

/* ---------- GRIDS & CARDS ---------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* Destination / generic card */
.card {
    background: radial-gradient(circle at top, rgba(246, 196, 83, 0.06), transparent 60%), var(--bg-elevated);
    padding: 16px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    border: 1px solid rgba(148, 163, 184, 0.32);
}

.card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    border-color: rgba(246, 196, 83, 0.6);
}

.card img {
    width: 100%;
    height: 190px;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin-bottom: 12px;
}

.card h3 {
    margin-bottom: 4px;
}

.card p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Fleet card */
.fleet-card {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), var(--bg-elevated));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.7);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fleet-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 4px;
}

.fleet-card-title {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 8px;
}

.fleet-card-title h3 {
    font-size: 1rem;
}

.fleet-card-chip {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: var(--text-muted);
}

.fleet-card-meta {
    font-size: 13px;
    color: var(--text-muted);
}

/* Horizontal scroll (home testimonials preview) */
.scroll-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-behavior: smooth;
}

.scroll-row::-webkit-scrollbar {
    height: 6px;
}

.scroll-row::-webkit-scrollbar-thumb {
    background: #64748b;
    border-radius: 999px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
    min-width: 260px;
    max-width: 280px;
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), var(--bg-elevated));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(15, 23, 42, 0.7);
    padding: 14px 14px 16px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    overflow: hidden;
    flex-shrink: 0;
    background: #020617;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    font-size: 13px;
}

.testimonial-name {
    font-weight: 600;
}

.testimonial-trip {
    color: var(--text-muted);
    font-size: 12px;
}

.testimonial-quote {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* testimonials page grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* Pinterest Masonry Layout */
.testimonial-masonry {
    column-count: 3;
    column-gap: 20px;
}

@media(max-width: 768px) {
    .testimonial-masonry {
        column-count: 1;
    }
}

.testimonial-masonry .testimonial-card {
    break-inside: avoid;
    margin-bottom: 20px;
}

/* ---------- CONTACT INFO CARD ---------- */
.contact-info {
    max-width: 850px;
    margin: 0 auto;
    background: radial-gradient(circle at top, rgba(246, 196, 83, 0.1), transparent 60%), var(--bg-elevated);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* contact page box */
.contact-box {
    max-width: 800px;
    margin: 40px auto 80px;
    background: radial-gradient(circle at top, rgba(246, 196, 83, 0.14), transparent 60%), var(--bg-elevated);
    padding: 28px 22px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid var(--border-subtle);
}

.contact-box h2 {
    margin-bottom: 10px;
    font-size: 1.7rem;
}

.contact-box p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* ---------- CONTROLS (view-all) ---------- */
.controls {
    max-width: 1100px;
    margin: 30px auto 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.controls select {
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--bg-elevated);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
    font-size: 14px;
}

/* ---------- FLOATING CALL BUTTON ---------- */
.call-floating {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #111;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.call-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85);
}

/* ---------- FOOTER ---------- */
footer {
    background: #020617;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding: 30px 20px 16px;
    color: var(--text-muted);
    font-size: 13px;
}

body.light footer {
    background: #f3f4f6;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 18px;
}

.footer-col h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.25);
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}

/* ---------- RESPONSIVE TWEAKS ---------- */
@media (max-width: 640px) {
    .section {
        padding: 54px 0;
    }

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

/* ---------- MASONRY ---------- */
.masonry-item {
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.8), var(--bg-elevated));
    display: inline-block;
    margin: 0 0 18px;
    width: 100%;
    break-inside: avoid-column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.25);
    transition: transform 0.3s ease;
}

.masonry-item:hover {
    transform: translateY(-6px);
}

.masonry-img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.masonry-content {
    padding: 14px 16px;
}

.masonry-name {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 4px;
}

.masonry-trip {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.masonry-quote {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ---------- PACKAGE PAGE STYLES ---------- */
.pkg-box {
    background: radial-gradient(circle at top, rgba(246, 196, 83, 0.08), transparent 60%), var(--bg-elevated);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 26px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.pkg-box h2 {
    margin-bottom: 10px;
}

.pkg-meta p {
    margin-top: 6px;
    color: var(--text-muted);
}

/* ---------- CAROUSEL (FINAL VERSION) ---------- */
.carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-inner {
    display: flex;
    transition: transform 0.55s ease;
    gap: 20px;
}

.carousel-inner img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
}

.carousel-btn {
    position: absolute;
    top: 45%;
    padding: 10px 16px;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

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

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

.slide {
    position: relative;
    width: 100%;
}

.slide-box {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
}

.slide-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 14px;
}

/* CINEMATIC OVERLAY */
.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85),
        rgba(0, 0, 0, 0.45),
        transparent
    );
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    border-radius: 0 0 14px 14px;
    letter-spacing: 0.5px;
}

/* ---------- TESTIMONIAL IMAGE MASONRY ---------- */
#testimonialMasonry {
    column-count: 3;
    column-gap: 14px;
    padding: 20px 0;
}

.testimonial-img-box {
    break-inside: avoid;
    margin-bottom: 14px;
    overflow: hidden;
    border-radius: 16px;
}

.testimonial-img {
    width: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-img:hover {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    #testimonialMasonry {
        column-count: 3;
        column-gap: 14px;
        padding: 20px 0;
    }
}

@media (max-width: 600px) {
    #testimonialMasonry {
        column-count: 2;
        column-gap: 14px;
        padding: 20px 0;
    }
}

/* ---------- LIGHT MODE CLARITY FIXES (NO LAYOUT CHANGE) ---------- */

/* Pure white professional surfaces in light mode (no gradients) */
body.light .card,
body.light .fleet-card,
body.light .testimonial-card,
body.light .masonry-item {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.18);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}
body.light .section--alt{
    background: #CBCBCB;
}
/* Light-mode text refinement */
body.light .testimonial-name,
body.light .masonry-name {
    color: #0f172a;
}

body.light .testimonial-trip,
body.light .testimonial-quote,
body.light .masonry-trip,
body.light .masonry-quote {
    color: #6b7280;
}

.itinerary-item {
    background: var(--bg-elevated);
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: .3s ease;
}

.itinerary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.day-badge {
    width: 54px;
    height: 54px;
    background: #2e7d32;
    color: white;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 18px;
    font-weight: 700;
    margin-right: 14px;
}

.itinerary-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.itinerary-body {
    margin-top: 14px;
    display: none;
    animation: fadeIn .3s ease;
}



.itinerary-item.open .itinerary-body {
    display: block;
}

.toggle-arrow {
    font-size: 22px;
    color: var(--text-muted);
}

.include-exclude-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.include-exclude-grid h3 {
    margin-bottom: 10px;
    color: var(--accent);
}

.include-exclude-grid ul {
    padding-left: 18px;
}

.include-exclude-grid li {
    margin-bottom: 6px;
    color: var(--text-muted);
}
/* MAIN HERO IMAGE */
.hero-package-img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 18px;
}

/* ITINERARY (KeralaTourPackages Style) */
.itinerary-item {
    background: var(--bg-elevated);
    padding: 20px;
    border-radius: 18px;
    margin-bottom: 16px;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: .3s ease;
}

.itinerary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.day-badge {
    width: 62px;
    height: 62px;
    background: #2e7d32;
    color: white;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 20px;
    font-weight: 700;
    margin-right: 16px;
}

.itinerary-title {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 600;
}

.toggle-arrow {
    font-size: 22px;
    color: var(--text-muted);
    transition: .3s;
}

.itinerary-item.open .toggle-arrow {
    transform: rotate(180deg);
}

/* Body (hidden until open) */
.itinerary-body {
    margin-top: 20px;
    display: none;
    animation: fadeIn .3s ease;
}

.itinerary-item.open .itinerary-body {
    display: block;
}



/* INCLUDES / EXCLUDES */
.include-exclude-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.include-exclude-grid h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.include-exclude-grid ul {
    padding-left: 18px;
}

.include-exclude-grid li {
    margin-bottom: 8px;
    color: var(--text-muted);
}
/* ============================
   ITINERARY â€” RESPONSIVE FIX
=============================== */

.itinerary-item {
    background: var(--card-bg, #0b1220);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 16px;
    transition: all 0.3s ease;
}

.itinerary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.itinerary-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;       /* ðŸ‘ˆ TEXT WRAPS! */
}

.day-badge {
    background: #2ecc71;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    min-width: 70px;
    text-align: center;
}

.itinerary-title {
    font-size: 17px;
    font-weight: 600;
    color: white;
    flex: 1;
    word-break: break-word;  /* ðŸ‘ˆ Prevent text overflow */
}

.toggle-arrow {
    font-size: 26px;
    color: white;
    font-weight: 400;
    transition: 0.2s;
    min-width: 24px;
}

/* Body is hidden unless open */
.itinerary-body {
    display: none;
    padding: 14px 4px 6px;
}

.itinerary-item.open .itinerary-body {
    display: block;
}



/* MOBILE FIX */
@media (max-width: 580px) {
    .itinerary-header {
        flex-direction: row;
        align-items: flex-start;
    }

    .itinerary-title {
        font-size: 15px;
        max-width: 100%;
    }

    .day-badge {
        font-size: 14px;
        padding: 6px 12px;
        min-width: 55px;
    }

    .toggle-arrow {
        font-size: 22px;
    }
}
/* Prevent overflow for paragraph text */
.itinerary-body p {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.6;
    color: #d1d5db;
    font-size: 15px;
    margin-top: 10px;
}

/* Ensure the body container shrinks and wraps text */
.itinerary-body {
    max-width: 100%;
}

/* Extra safety for long words/URLs */
.itinerary-item {
    word-break: break-word;
}

/* FINAL FIX — RESPONSIVE ITINERARY IMAGE */
/* ------------ FINAL FIX: RESPONSIVE ITINERARY IMAGE ------------ */
.itinerary-body img {
    width: 80% !important;
    height: auto !important;
    display: block !important;
    border-radius: 12px;
    margin: 0 0 16px 0 !important;
    float: none !important;
    object-fit: cover;
    max-width: 80% !important;
}

.itinerary-body {
    overflow: hidden !important;
}


/* Light mode – package destination cards */
body.light .pkg-tour-card {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.18);
}

body.light .pkg-tour-preview {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.18);
    color: #0b1035;
}

