/* ============================================================
   Wilderness Malaysia — Luxury Editorial Stylesheet
   ============================================================ */

:root {
    --navy: #0B1F3A;
    --navy-dark: #081729;
    --forest: #1F3A2E;
    --gold: #fec017;
    --gold-soft: #D9BE7F;
    /*    --cream: #F5EFE6;*/
    --cream: #fafafc;
    --cream-dark: #E8DFD1;
    --charcoal: #1A1A1A;
    --white: #fff;
    --off-white: #fafafc;
    --text-muted: #6B6B6B;
    --border-soft: rgba(201, 169, 97, 0.25);
    --font-serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.01em;
}

em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}

ems {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--navy);
}


a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 24px;
    display: inline-block;
    position: relative;
    padding-left: 36px;
}

    .eyebrow::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 24px;
        height: 1px;
        background: var(--gold);
    }

    .eyebrow.dark {
        color: var(--navy);
    }

        .eyebrow.dark::before {
            background: var(--navy);
        }

    .eyebrow.light {
        color: var(--gold-soft);
    }

        .eyebrow.light::before {
            background: var(--gold-soft);
        }

.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--navy);
}

    .section-title.light {
        color: var(--cream);
    }

.section-sub {
    font-size: 1.05rem;
    color: var(--charcoal);
    max-width: 640px;
    line-height: 1.75;
}

    .section-sub.light {
        color: rgba(245, 239, 230, 0.75);
    }

.body-text {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.85;
    margin-bottom: 18px;
}

    .body-text.light {
        color: rgba(245, 239, 230, 0.82);
    }

.lead-quote {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--navy);
    padding: 24px 0 24px 28px;
    border-left: 2px solid var(--gold);
    margin: 28px 0;
}

.wm-section {
    padding: 80px 0;
    position: relative;
}

.wm-section-about {
    padding: 10px 0;
    position: relative;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 0;
    border: 1px solid transparent;
    transition: all .4s cubic-bezier(.2,.8,.2,1);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

    .btn-gold:hover {
        background: var(--navy);
        color: var(--gold);
        border-color: var(--gold);
        transform: translateY(-2px);
    }

.btn-gold-outline {
    background: var(--navy-dark) !important;
    color: var(--gold);
    border-color: var(--gold);
}

    .btn-gold-outline:hover {
        background: var(--gold) !important;
        color: var(--navy);
        transform: translateY(-2px);
    }

.btn-ghost {
    background: transparent !important;
    color: var(--cream);
    border-color: rgba(245, 239, 230, 0.4);
}

    .btn-ghost:hover {
        background: var(--cream) !important;
        color: var(--navy);
        border-color: var(--cream);
        transform: translateY(-2px);
    }

.btn-ghosts {
    background: var(--navy-dark) !important;
    color: var(--cream);
    border-color: var(--gold);
}

    .btn-ghosts:hover {
        background: var(--gold) !important;
        color: var(--navy);
        border-color: var(--gold);
        transform: translateY(-2px);
    }

/* ============================================================
   NAVBAR – light cream/gold blur, big logo overflow, fixed position
   ============================================================ */
.wm-navbar {
    background: var(--gold);
    backdrop-filter: blur(10px);
    min-height: 80px;
    height: 80px;
    width: 100%;
    max-width: 100vw;
    transition: all .4s ease;
    z-index: 1030;
    overflow-x: clip;
    overflow-y: visible;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

    .wm-navbar .container {
        overflow: visible;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        max-width: 1320px;
    }

    .wm-navbar.scrolled {
        background: var(--gold);
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    /* Active nav link */
    .wm-navbar .nav-link.active {
        color: var(--navy-dark) !important;
    }

        .wm-navbar .nav-link.active::after {
            width: calc(100% - 36px);
        }

/* Brand container */
.navbar-brand {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: visible;
}

/* The logo – oversized but overflows navbar without pushing height */
.navbar-logo {
    position: relative;
    height: 150px;
    width: auto;
    max-width: 260px;
    padding: 4px 0;
    border-radius: 0;
    z-index: 1040;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
    display: block;
}

/* Nav links – dark text */
.wm-navbar .nav-link {
    color: #1e2a3e !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 18px !important;
    position: relative;
    transition: color 0.3s ease;
}



/* Brand container – relative to hold absolute logo */
.footer-brand {
    position: relative;
    height: 80px; /* same locked height as the navbar bar */
    display: flex;
    align-items: center;
    overflow: visible; /* logo spills upward without adding layout height */
    margin-bottom: 0;
}

/* Footer logo – same 150px height as navbar-logo, inverted to white */
.footer-logo {
    position: relative;
    height: 100px; /* matches navbar-logo exactly */
    width: auto;
    max-width: 260px;
    margin-top: -30px; /* pulls it up so it overflows above the footer-brand row */
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    display: block;
    z-index: 2;
}

/* Nav links – dark text */
.wm-footer-logo .footer-logo-link {
    color: #1e2a3e !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px 18px !important;
    position: relative;
    transition: color 0.3s ease;
}

    .wm-footer-logo .footer-logo-link::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 18px;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: width 0.3s ease;
    }

    .wm-footer-logo .footer-logo-link:hover {
        color: var(--gold) !important;
    }

        .wm-footer-logo .footer-logo-link:hover::after {
            width: calc(100% - 36px);
        }

/* Enquire button – adapt to light navbar */
.btn-gold-outline {
    background: var(--navy-dark) !important;
    color: var(--white);
    border-color: var(--navy-dark);
}

    .btn-gold-outline:hover {
        background: var(--navy) !important;
        color: var(--white);
    }

/* Toggler icon */
.navbar-toggler {
    background-color: var(--navy-dark) !important;
    border: 1px solid var(--gold) !important;
    padding: 8px 12px;
    border-radius: 4px;
    flex-shrink: 0;
}

    .navbar-toggler:focus {
        box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.4);
        outline: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 22px;
    height: 22px;
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .navbar-logo {
        height: 150px;
        max-width: 180px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .wm-navbar {
        background: var(--gold) !important;
        height: auto !important;
        min-height: 70px;
        overflow-x: clip !important;
        overflow-y: visible !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

        .wm-navbar .container {
            flex-wrap: wrap;
            align-items: center;
            min-height: 70px;
            padding-left: 12px;
            padding-right: 12px;
        }

        .wm-navbar .navbar-brand {
            min-width: 150px;
            max-width: 180px;
            height: 70px;
        }

        .wm-navbar .navbar-collapse {
            background: var(--gold) !important;
            width: 100%;
            flex-basis: 100%;
            padding: 16px 20px 20px;
            border-top: 1px solid rgba(201, 169, 97, 0.3);
            border-bottom: 1px solid rgba(201, 169, 97, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
            position: relative;
            z-index: 1020;
            margin-top: 0;
        }

        .wm-navbar .navbar-nav {
            width: 100%;
        }

        .wm-navbar .nav-link {
            color: var(--navy) !important;
            padding: 11px 8px !important;
            border-bottom: 1px solid rgba(201, 169, 97, 0.15);
            font-size: 13px;
            letter-spacing: 0.18em;
        }

            .wm-navbar .nav-link.active {
                color: var(--navy-dark) !important;
            }

        .wm-navbar .nav-item .btn-gold-outline {
            display: block;
            text-align: center;
            margin-top: 14px;
            width: 100%;
        }
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 150px;
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .wm-navbar {
        min-height: 60px !important;
        background: var(--gold) !important;
    }

        .wm-navbar .container {
            min-height: 60px;
        }

        .wm-navbar .navbar-brand {
            height: 60px;
        }
}

/* ============================================================
   HERO
   ============================================================ */
.wm-hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--cream);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    pointer-events: none;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,31,58,0.25) 0%, rgba(11,31,58,0.15) 50%, rgba(11,31,58,0.40) 100%);
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5.6rem);
    line-height: 1.02;
    font-weight: 500;
    margin: 0 0 28px;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    font-weight: 400;
    line-height: 1.6;
    max-width: 620px;
    color: rgba(245, 239, 230, 0.88);
    margin-bottom: 44px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    color: var(--gold);
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

    .scroll-line::after {
        content: '';
        position: absolute;
        top: -40%;
        width: 100%;
        height: 40%;
        background: var(--cream);
        animation: scrollDrop 2.2s ease-in-out infinite;
    }

@keyframes scrollDrop {
    0% {
        top: -40%;
    }

    100% {
        top: 100%;
    }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.wm-marquee {
    background: var(--navy);
    color: var(--cream);
    padding: 26px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    font-family: var(--font-serif);
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
}

    .marquee-track span {
        padding: 0 28px;
    }

    .marquee-track .dot {
        color: var(--gold);
        font-size: 12px;
        padding: 0 8px;
    }

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

/* ============================================================
   IMAGE FRAME
   ============================================================ */
.image-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    padding: 14px;
    background: var(--cream);
}

    .image-frame img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 5/3;
        object-fit: cover;
        transition: transform .8s ease;
    }

    .image-frame:hover img {
        transform: scale(1.03);
    }

    .image-frame.image-frame-dark {
        background: rgba(201, 169, 97, 0.08);
        border-color: rgba(201, 169, 97, 0.3);
    }

.frame-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 13px;
    color: var(--cream);
    background: rgba(11, 31, 58, 0.85);
    padding: 6px 14px;
    letter-spacing: 0.05em;
}

    .frame-caption .line {
        color: var(--gold);
        margin-right: 8px;
    }

    .frame-caption.light {
        background: rgba(11, 31, 58, 0.7);
    }

/* ============================================================
   ABOUT
   ============================================================ */
.section-about {
    background: var(--white);
}

.stats-row {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-top: 8px;
}

/* ============================================================
   PROGRAMS
   ============================================================ */
.section-head {
    margin-bottom: 40px;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s ease;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(11, 31, 58, 0.12);
    border-color: var(--gold);
}

    .program-card:hover::before {
        transform: scaleX(1);
    }

.program-num {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.7rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.program-card p {
    color: var(--charcoal);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.program-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

    .program-list li {
        position: relative;
        padding: 8px 0 8px 22px;
        font-size: 0.9rem;
        color: var(--charcoal);
        border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    }

        .program-list li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 10px;
            top: 11px;
        }

.program-link {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
}

    .program-link i {
        margin-left: 8px;
        transition: transform .3s ease;
    }

    .program-link:hover {
        color: var(--gold);
    }

        .program-link:hover i {
            transform: translateX(4px);
        }

/* ============================================================
   TALL SHIP
   ============================================================ */
.section-tallship {
    background: var(--navy);
    color: var(--cream);
    position: relative;
}

    .section-tallship::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        font-family: var(--font-serif);
        font-size: 280px;
        color: rgba(201, 169, 97, 0.04);
        font-style: italic;
        pointer-events: none;
    }

.ship-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
    padding: 28px 0;
    border-top: 1px solid rgba(201, 169, 97, 0.25);
    border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}

    .ship-specs > div {
        display: flex;
        flex-direction: column;
    }

.spec-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.spec-val {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--cream);
}

/* ============================================================
   ACTIVITIES
   ============================================================ */
.section-activities {
    background: var(--cream);
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.activity-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    cursor: pointer;
}

    .activity-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1s cubic-bezier(.2,.8,.2,1);
        filter: brightness(0.85) saturate(0.9);
    }

    .activity-item:hover img {
        transform: scale(1.08);
        filter: brightness(0.75) saturate(1);
    }

    .activity-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 40%, rgba(11,31,58,0.85) 100%);
    }

    .activity-item figcaption {
        position: absolute;
        bottom: 28px;
        left: 28px;
        z-index: 2;
        color: var(--cream);
    }

    .activity-item .cat {
        font-size: 10px;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--gold);
        display: block;
        margin-bottom: 8px;
    }

    .activity-item h4 {
        font-size: 1.5rem;
        color: var(--cream);
        margin: 0;
    }

.activity-lg {
    grid-column: span 2;
    grid-row: span 2;
}

/* ============================================================
   ACTIVITY TRIP-PHASE TABS
   ============================================================ */
.activity-tabs {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(11,31,58,0.08);
    border: 1px solid var(--border-soft);
}

/* --- Left tab nav --- */
.activity-tab-nav {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-soft);
    padding: 40px 0;
    background: #fafafa;
}

.act-tab-btn {
    background: none;
    border: none;
    text-align: left;
    padding: 18px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease;
    border-left: 3px solid transparent;
    letter-spacing: 0.01em;
}

    .act-tab-btn::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: var(--gold);
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .act-tab-btn:hover {
        color: var(--navy);
        background: rgba(201,169,97,0.06);
    }

    .act-tab-btn.active {
        color: var(--navy);
        font-weight: 600;
        background: rgba(201,169,97,0.07);
    }

        .act-tab-btn.active::before {
            opacity: 1;
        }

/* --- Right panel --- */
.activity-tab-panels {
    padding: 48px 52px;
}

.act-tab-panel {
    display: none;
    animation: tabFadeIn 0.35s ease forwards;
}

    .act-tab-panel.active {
        display: block;
    }

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.act-tab-panel p {
    font-size: 0.97rem;
    line-height: 1.78;
    color: var(--text-body);
    margin-bottom: 16px;
}

.act-tab-panel ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

    .act-tab-panel ul li {
        font-size: 0.95rem;
        color: var(--text-body);
        padding: 6px 0 6px 22px;
        position: relative;
        line-height: 1.5;
    }

        .act-tab-panel ul li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 0.6rem;
            top: 9px;
        }

.act-tab-cta {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--forest);
    text-decoration: none;
    border-bottom: 1px solid var(--forest);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

    .act-tab-cta:hover {
        color: var(--gold);
        border-color: var(--gold);
    }

/* Responsive */
@media (max-width: 767px) {
    .activity-tabs {
        grid-template-columns: 1fr;
    }

    .activity-tab-nav {
        flex-direction: row;
        border-right: none;
        border-bottom: 1px solid var(--border-soft);
        padding: 0;
        overflow-x: auto;
    }

    .act-tab-btn {
        padding: 16px 20px;
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        flex-shrink: 0;
    }

        .act-tab-btn::before {
            top: auto;
            bottom: -1px;
            left: 0;
            right: 0;
            width: 100%;
            height: 3px;
        }

    .activity-tab-panels {
        padding: 32px 24px;
    }
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.section-locations {
    background: var(--white);
    color: var(--cream);
}

.location-card {
    background: rgba(245, 239, 230, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.25);
    padding: 36px 28px;
    height: 100%;
    transition: all .4s ease;
    backdrop-filter: blur(4px);
}

    .location-card:hover {
        background: rgba(201, 169, 97, 0.1);
        border-color: var(--gold);
        transform: translateY(-4px);
    }

.loc-tag {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 12px;
    margin-bottom: 24px;
}

.location-card h4 {
    font-size: 1.4rem;
    color: var(--cream);
    margin-bottom: 14px;
}

.location-card p {
    font-size: 0.9rem;
    color: rgba(245, 239, 230, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.loc-coord {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--gold-soft);
    letter-spacing: 0.05em;
}

/* ============================================================
   ITINERARY (horizontal swiper)
   ============================================================ */
.section-itinerary {
    background: var(--white);
}

.itinerary-swiper {
    padding: 20px 40px 60px;
    position: relative;
}

.itinerary-card {
    background: var(--off-white);
    border-radius: 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

    .itinerary-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 32px rgba(0, 0, 0, 0.1);
        border-color: var(--gold);
    }

.day-number {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--navy-dark);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.day-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1rem;
    border-left: 3px solid var(--navy-dark);
    padding-left: 12px;
}

.day-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.itinerary-swiper .swiper-button-prev,
.itinerary-swiper .swiper-button-next {
    color: var(--gold);
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .itinerary-swiper .swiper-button-prev:after,
    .itinerary-swiper .swiper-button-next:after {
        font-size: 18px;
        font-weight: bold;
    }

.itinerary-swiper .swiper-pagination-bullet {
    background: var(--navy-dark);
    opacity: 0.3;
}

.itinerary-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--navy-dark);
    width: 28px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .itinerary-swiper {
        padding: 20px 20px 50px;
    }

    .itinerary-card {
        padding: 1.5rem;
    }

    .day-number {
        font-size: 2rem;
    }

    .day-title {
        font-size: 1.1rem;
    }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials {
    background: var(--navy-dark);
    color: var(--cream);
    position: relative;
}

.testimonial-swiper {
    padding: 40px 60px 80px;
    position: relative;
}

.testimonial {
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 20px;
}

    .testimonial p {
        font-family: var(--font-accent);
        font-style: italic;
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        line-height: 1.6;
        color: var(--cream);
        margin-bottom: 36px;
        position: relative;
    }

        .testimonial p::before, .testimonial p::after {
            content: '"';
            font-family: var(--font-serif);
            font-size: 3rem;
            color: var(--gold);
            line-height: 0;
            vertical-align: -0.3em;
            margin: 0 6px;
        }

    .testimonial footer {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .testimonial .author {
        font-family: var(--font-serif);
        font-size: 1.1rem;
        color: var(--gold);
    }

    .testimonial .role {
        font-size: 11px;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: rgba(245, 239, 230, 0.6);
    }

.testimonial-swiper .swiper-pagination-bullet {
    background: var(--cream);
    opacity: 0.3;
    width: 10px;
    height: 10px;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    opacity: 1;
    width: 28px;
    border-radius: 5px;
}

.testimonial-swiper .swiper-button-prev, .testimonial-swiper .swiper-button-next {
    color: var(--gold);
    width: 40px;
    height: 40px;
}

    .testimonial-swiper .swiper-button-prev::after, .testimonial-swiper .swiper-button-next::after {
        font-size: 20px;
        font-weight: 300;
    }

/* ============================================================
   CLIENTELE (scrolling marquee)
   ============================================================ */
.section-clientele {
    background: var(--white);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
    position: relative;
}

.marquee-logos {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track-logos {
    display: inline-block;
    white-space: nowrap;
    animation: scrollRightToLeft 35s linear infinite;
}

.logo-item-marquee {
    display: inline-block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    font-style: italic;
    color: var(--navy);
    padding: 0 2.5rem;
    filter: grayscale(1) opacity(0.55);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

    .logo-item-marquee:hover {
        filter: grayscale(0) opacity(1);
        color: var(--gold);
        transform: scale(1.05);
    }

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(0);
    }

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

@media (max-width: 992px) {
    .logo-item-marquee {
        font-size: 1.4rem;
        padding: 0 1.8rem;
    }

    .marquee-track-logos {
        animation-duration: 30s;
    }
}

@media (max-width: 576px) {
    .logo-item-marquee {
        font-size: 1.1rem;
        padding: 0 1.2rem;
    }

    .marquee-track-logos {
        animation-duration: 25s;
    }
}

/* ============================================================
   CONTACT – cream background, crystal blur form
   ============================================================ */
.section-contact {
    background: var(--cream);
    color: var(--charcoal);
    position: relative;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ci-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .ci-item i {
        color: var(--navy-dark);
        font-size: 18px;
        padding-top: 4px;
        width: 24px;
    }

    .ci-item > div {
        display: flex;
        flex-direction: column;
    }

.ci-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 4px;
}

.ci-item a, .ci-item span:last-child {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    color: var(--charcoal);
}

    .ci-item a:hover {
        color: var(--gold);
    }

/* Lead form – crystal blur glassmorphism */
.lead-form {
    background: var(--white);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 48px 40px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

    .lead-form:hover {
        background: rgba(255, 255, 255, 0.5);
        border-color: rgba(201, 169, 97, 0.6);
    }

.form-title {
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.lead-form label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
    display: block;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    color: var(--charcoal);
    padding: 12px 14px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.lead-form select {
    background: rgba(255, 255, 255, 0.8);
}

.lead-form textarea {
    resize: vertical;
}

    .lead-form input:focus,
    .lead-form select:focus,
    .lead-form textarea:focus {
        outline: none;
        border-color: var(--gold);
        background: white;
        box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
    }

    .lead-form input::placeholder,
    .lead-form textarea::placeholder {
        color: rgba(0, 0, 0, 0.4);
    }

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.chip {
    cursor: pointer;
    margin: 0;
    display: inline-flex;
    align-items: center;
}

    .chip input {
        position: absolute;
        opacity: 0;
        width: 1px;
        height: 1px;
    }

    .chip span {
        display: inline-block;
        padding: 8px 16px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 40px;
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--navy);
        background: rgba(255,255,255,0.5);
        transition: all .3s ease;
    }

    .chip input:checked + span {
        background: var(--navy-dark);
        border-color: var(--gold);
        color: var(--white);
    }

    .chip span:hover {
        border-color: var(--gold);
        background: rgba(201,169,97,0.2);
    }

.form-success {
    display: none;
    margin-top: 24px;
    padding: 16px;
    background: rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    border: 1px solid var(--gold);
    color: var(--navy);
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
}

    .form-success.active {
        display: block;
    }

    .form-success i {
        color: var(--gold);
        margin-right: 8px;
    }

/* ============================================================
   FOOTER – darker cream background
   ============================================================ */
.wm-footer {
    background: var(--navy-dark);
    color: var(--cream);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    overflow: visible;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-tag {
    font-family: var(--font-sans);
    font-style: normal;
    font-weight: 400;
    font-size: 0.95rem;
    color: rgba(245, 239, 230, 0.75);
    line-height: 1.7;
    max-width: 360px;
}

.wm-footer h6 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.wm-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .wm-footer ul li {
        margin-bottom: 10px;
    }

    .wm-footer ul a {
        font-family: var(--font-sans);
        font-size: 0.9rem;
        font-weight: 400;
        color: rgba(245, 239, 230, 0.8);
        transition: all .3s ease;
    }

        .wm-footer ul a:hover {
            color: var(--gold);
            padding-left: 4px;
        }

.social-row {
    display: flex;
    gap: 12px;
}

    .social-row a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(245, 239, 230, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--cream);
        font-size: 14px;
        transition: all .3s ease;
    }

        .social-row a:hover {
            background: var(--gold);
            color: var(--navy);
            border-color: var(--gold);
            transform: translateY(-3px);
        }

.footer-bottom {
    background: var(--navy-dark);
    padding: 20px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 239, 230, 0.6);
    text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .wm-section {
        padding: 90px 0;
    }

    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .activity-lg {
        grid-column: span 2;
        grid-row: span 1;
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ship-specs {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        gap: 32px;
    }

    .stat-num {
        font-size: 2.4rem;
    }


    .footer-logo {
        align-items: center !important;
        justify-content: center !important;
    }
}

@media (max-width: 576px) {
    .wm-section {
        padding: 70px 0;
    }

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

    .lead-form {
        padding: 32px 22px;
    }

    .timeline {
        padding-left: 0;
    }

    .tl-item {
        gap: 20px;
    }

    .tl-num {
        width: 56px;
        height: 56px;
        font-size: 1rem;
    }

    .timeline::before {
        left: 28px;
    }

    .activity-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .activity-lg {
        grid-column: span 1;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-item {
        padding: 32px 16px;
        min-height: 110px;
        font-size: 0.95rem;
    }

    .btn {
        padding: 14px 26px;
        font-size: 12px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .footer-logo {
        align-items: center !important;
        justify-content: center !important;
    }
}

/* ============================================================
   Additional styles for updated program cards
   ============================================================ */
.text-forest {
    color: #1e4a3b;
}

.btn-outline-forest {
    border: 1.5px solid #1e4a3b;
    color: #1e4a3b;
    background: transparent;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
}

    .btn-outline-forest:hover {
        background-color: #1e4a3b;
        color: white;
        border-color: #1e4a3b;
        transform: translateY(-2px);
    }

.program-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: white;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.program-card ul {
    list-style: none;
    padding-left: 0;
}

    .program-card ul li {
        margin-bottom: 0.5rem;
        font-size: 0.85rem;
        color: #6c757d;
    }

        .program-card ul li i {
            width: 1.25rem;
        }

.section-programs {
    background: var(--cream);
}

@media (max-width: 768px) {
    .program-img {
        height: 200px;
    }

    .program-card .p-4 {
        padding: 1.25rem !important;
    }
}

/* ============================================================
   LOCATION MAP & SIDEBAR STYLES
   ============================================================ */
.malaysia-map-container {
    width: 100%;
    height: 460px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.4);
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.location-list-sidebar {
    background: rgba(245, 239, 230, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 12px;
    padding: 0.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-list-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 1rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    cursor: pointer;
    transition: all 0.25s ease;
}

    .location-list-item:last-child {
        border-bottom: none;
    }

    .location-list-item:hover {
        background: rgba(201, 169, 97, 0.12);
        transform: translateX(4px);
    }

    .location-list-item .loc-pin {
        font-size: 1.5rem;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }

    .location-list-item h4 {
        font-size: 1.25rem;
        color: var(--cream);
        margin-bottom: 0.35rem;
    }

    .location-list-item p {
        font-size: 0.85rem;
        color: rgba(245, 239, 230, 0.8);
        margin-bottom: 0.5rem;
        line-height: 1.4;
    }

    .location-list-item .loc-coord {
        font-family: var(--font-accent);
        font-style: italic;
        font-size: 0.75rem;
        color: var(--gold-soft);
        letter-spacing: 0.03em;
    }

@media (max-width: 992px) {
    .malaysia-map-container {
        height: 380px;
    }

    .wm-section-intro {
        padding-top: 50px !important;
        padding-bottom: 30px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
}

@media (max-width: 576px) {
    .malaysia-map-container {
        height: 320px;
    }

    .wm-section-intro {
        padding-top: 50px !important;
        padding-bottom: 30px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .location-list-item {
        padding: 1rem 0.75rem;
    }
}

.full-width-map {
    width: 100%;
    height: 500px;
    border: none;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.section-intro {
    background: var(--white);
}

.wm-section-intro {
    position: relative;
    padding: 130px 0px;
}

.wm-section-tallship {
    position: relative;
    padding: 20px 0px;
}

.section-title-Clientele {
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--navy);
}


.wm-navbar .nav-link {
}

    .wm-navbar .nav-link::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 18px;
        width: 0;
        height: 1px;
        background: var(--navy-dark);
        transition: width .3s ease;
    }

    .wm-navbar .nav-link:hover::after {
        width: calc(100% - 36px);
    }

    .wm-navbar .nav-link:hover {
        color: var(--navy-dark) !important;
    }


/* ============================================================
   STICKY WHATSAPP BUTTON
   ============================================================ */
.whatsapp-sticky {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.34, 1.3, 0.55, 1);
    z-index: 1040;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    /* WhatsApp icon */
    .whatsapp-sticky i {
        font-size: 34px;
        color: white;
        transition: transform 0.25s cubic-bezier(0.34, 1.3, 0.55, 1);
    }

    /* Pulse ring effect */
    .whatsapp-sticky::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background: rgba(37, 211, 102, 0.3);
        transform: translate(-50%, -50%) scale(0.9);
        animation: pulse-ring 2.4s infinite ease-out;
        pointer-events: none;
        z-index: -1;
    }

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
}

/* Tooltip (slides in from right) */
.whatsapp-tooltip {
    position: absolute;
    right: 78px;
    background: var(--navy-dark);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 40px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gold);
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition: all 0.25s ease-out;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

    /* Tooltip arrow */
    .whatsapp-tooltip::before {
        content: '';
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 0 6px 8px;
        border-color: transparent transparent transparent var(--navy-dark);
    }

.whatsapp-sticky:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Hover bounce & tilt */
.whatsapp-sticky:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

    .whatsapp-sticky:hover i {
        transform: scale(1.1) rotate(4deg);
    }

/* Mobile adjustments: smaller button, no tooltip clutter */
@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

        .whatsapp-sticky i {
            font-size: 28px;
        }

    .whatsapp-tooltip {
        display: none;
    }

    .whatsapp-sticky:hover {
        transform: scale(1.05);
    }
}


/* ============================================================
   FOOTER RESPONSIVE – Two menu columns stay side by side
   ============================================================ */
@media (max-width: 991px) {
    /* Keep row as flex row, allow wrapping */
    .wm-footer .row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem 0;
    }

        /* Logo column (first) and Follow column (last) – full width + centered */
        .wm-footer .row > div:first-child,
        .wm-footer .row > div:last-child {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: left;
            width: 100%;
            flex: 0 0 100%;
        }

        /* Menu columns (Explore & Schools) – side by side, 50% each, no centering */
        .wm-footer .row > div.col-6 {
            display: block;
            width: 50%;
            flex: 0 0 auto;
            text-align: left;
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }

    /* Brand & tagline (inside first column) */
    .footer-brand {
        justify-content: center;
    }

    .footer-tag {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Headings: centered only in full-width columns, left-aligned in menu columns */
    .wm-footer .row > div:first-child h6,
    .wm-footer .row > div:last-child h6 {
        text-align: center;
        width: 100%;
    }

    .wm-footer .row > div.col-6 h6 {
        text-align: left;
    }

    /* Unordered lists: menu columns keep block items, left-aligned */
    .wm-footer .row > div.col-6 ul {
        padding-left: 0;
    }

        .wm-footer .row > div.col-6 ul li {
            display: block;
            margin: 8px 0;
        }

    /* Social icons row – centered inside its column */
    .social-row {
        justify-content: center;
        width: 100%;
    }
}

/* Extra small devices: ensure menu columns stay 50% */
@media (max-width: 576px) {
    .wm-footer .row > div.col-6 {
        width: 50%;
    }
}
/* ============================================================
   SAFETY SECTION
   ============================================================ */

.section-safety {
    background: var(--white);
    padding: 100px 0;
}

/* --- Image frames --- */
.safety-img-frame {
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    position: relative;
    box-shadow: 0 8px 32px rgba(11, 31, 58, 0.10);
}

    .safety-img-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        display: block;
    }

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

/* --- Stat cards --- */
.safety-stat-card {
    background: var(--navy);
    border-radius: 12px;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(11, 31, 58, 0.12);
}

.safety-stat-number {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.safety-stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
}

/* --- Safety pillars --- */
.safety-pillar {
    background: #fff;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 28px 20px;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .safety-pillar:hover {
        box-shadow: 0 10px 36px rgba(11, 31, 58, 0.10);
        transform: translateY(-4px);
    }

.safety-pillar-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--navy);
}

.safety-pillar h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.safety-pillar p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .safety-img-frame {
        height: 220px;
    }

    .section-safety {
        padding: 60px 0;
    }
}

/* ============================================================
   LOCATION LIST (below map)
   ============================================================ */
.location-list-wrapper {
    background: var(--off-white);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.location-list-heading {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem 1.5rem;
}

.location-grid-item {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--charcoal);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    transition: transform 0.2s ease, color 0.2s ease;
    border-bottom: 1px dashed var(--border-soft);
}

.location-grid-item::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.location-grid-item:hover {
    transform: translateX(4px);
    color: var(--gold);
}

.location-grid-item:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.5rem;
    }
    
    .location-list-heading {
        font-size: 1.2rem;
    }
    
    .location-list-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   OTHER ACTIVITIES – ACCORDION (full width, larger text)
   ============================================================ */
.other-activities-accordion {
    width: 100%;
    margin: 0;
}

.accordion-item {
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
    margin-bottom: 4px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.5rem; /* notably bigger */
    color: var(--navy);
    transition: background 0.2s;
    user-select: none;
}

    .accordion-header:hover {
        background: rgba(201, 169, 97, 0.05);
    }

.accordion-title {
    font-family: var(--font-serif);
    letter-spacing: -0.01em;
}

.accordion-icon {
    font-size: 1.8rem;
    font-weight: 400;
    width: 32px;
    text-align: center;
    color: var(--gold);
    transition: transform 0.25s;
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
    background: #fefcf8;
    border-radius: 0 0 12px 12px;
}

    .accordion-body ul {
        margin: 0;
        padding: 0 1rem 1.5rem 2.5rem;
        list-style: none;
    }

    .accordion-body li {
        padding: 6px 0 6px 24px;
        position: relative;
        font-size: 1rem; /* body-text size */
        line-height: 1.7;
        color: var(--charcoal);
    }

        .accordion-body li::before {
            content: "✦";
            position: absolute;
            left: 0;
            color: var(--gold);
            font-size: 0.85rem;
            top: 8px;
        }

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-item.active .accordion-body {
    max-height: 400px; /* enough for longest list */
}
