    :root {
    --green: #2d6a2d;
    --green-light: #3d8b3d;
    --green-pale: #eaf4ea;
    --gold: #c8922a;
    --gold-light: #e0a83a;
    --navy: #1a2744;
    --navy-mid: #253660;
    --cream: #fdfaf5;
    --white: #ffffff;
    --text: #1e2832;
    --muted: #6b7a8d;
    --border: #e8e2d9;
    --shadow: 0 8px 32px rgba(26, 39, 68, 0.1);
    --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);

    /* theme (light default) */
    --bg: var(--cream);
    --card: #ffffff;
    --card-strong: rgba(255, 255, 255, 0.92);
    --text: #1e2832;
    --muted: #6b7a8d;
    --border: #e8e2d9;
    --shadow: 0 8px 32px rgba(26, 39, 68, 0.1);

    --nav-bg: rgba(255, 255, 255, 0.82);
    --nav-text: rgba(0, 0, 0, 0.78);
    --nav-link-active: var(--gold);
    --nav-border: rgba(0, 0, 0, 0.08);

    --footer-bg: rgba(250, 250, 250, 0.94);
    --footer-text: rgba(0, 0, 0, 0.75);
    --footer-muted: rgba(0, 0, 0, 0.45);
    }
    *,
    *::before,
    *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
    html {
    scroll-behavior: smooth;
    }
    body {
    font-family: "Outfit", sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    }
    html,body{
        overflow-x: hidden;
        max-width: 100%;
    }

    /* LIGHTBOX */
    .lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    }

    .lightbox-modal.active {
    display: flex;
    }

    .lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 26, 0.75);
    backdrop-filter: blur(4px);
    }

    .lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90%;
    }

    .lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    }

    .lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50%;
    background: var(--card);
    color: var(--nav-text);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .lightbox-close:hover {
    background: var(--gold);
    color: #fff;
    }

    .page {
    display: none;
    min-height: 100vh;
    }
    .page.active {
    display: block;
    }

    /* NAV */
    nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    padding: 0 5vw;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--nav-border);
    }
    .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    }
    .logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    }

    .footer-logo img,
    .footer-logo svg {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    }

    .nav-logo-text {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    color: var(--nav-text);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.2;
    }
    .nav-logo-sub {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    }
    .nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    }
    .nav-links li a {
    display: block;
    padding: 0 16px;
    height: 68px;
    line-height: 68px;
    color: var(--nav-text);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    cursor: pointer;
    }
    .nav-links li a:hover,
    .nav-links li a.active {
    color: var(--nav-link-active);
    border-bottom-color: var(--nav-link-active);
    }
    .nav-enquiry {
    background: var(--gold);
    color: white;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 18px;
    border-radius: 7px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    }
    .nav-enquiry:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    }

    .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    }
    .nav-toggle {
    display: none;
    border: none;
    background: rgba(255,255,255,0.18);
    color: var(--nav-text);
    cursor: pointer;
    padding: 0;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    z-index: 1002;
    font-size: 1.35rem;
    line-height: 1;
    }
    .nav-toggle:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    }
    .nav-theme {
    background: var(--card-strong);
    color: var(--nav-text);
    font-size: 0.95rem;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    }
    .nav-theme:hover {
    background: var(--card);
    }

    /* Dark mode */
    .dark {
    --bg: #0b1220;
    --card: #111b2c;
    --card-strong: rgba(255, 255, 255, 0.06);
    --text: #e2e8fb;
    --muted: rgba(255, 255, 255, 0.75);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.55);

    --nav-bg: rgba(10, 20, 10, 0.97);
    --nav-text: rgba(255, 255, 255, 0.72);
    --nav-link-active: var(--gold);
    --nav-border: rgba(255, 255, 255, 0.18);

    --footer-bg: rgba(10, 20, 10, 0.9);
    --footer-text: rgba(255, 255, 255, 0.75);
    --footer-muted: rgba(255, 255, 255, 0.45);
    }

    /* HERO */
    .hero {
    position: relative;
    height: 92vh;
    overflow: hidden;
    }
    .carousel-slides {
    position: relative;
    height: 100%;
    }
    .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
    }
    .slide.active {
    opacity: 1;
    }
    .slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(10, 20, 10, 0.82) 0%,
        rgba(10, 20, 10, 0.3) 60%,
        rgba(10, 20, 10, 0.65) 100%
    );
    }
    .slide-1 {
    background-image: url("./Images/Slides/DEMPY\ VIEW\ 2.webp");
    }
    .slide-2 {
    background-image: url("./Images/Slides/LAKE\ TREKKER.webp");
    }
    .slide-3 {
    background-image: url("./Images/Slides/SNOW\ MT.webp");
    }
    .slide-4 {
    background-image: url("./Images/Slides/WEI\ SAWDONG.webp");
    }
    .hero-content {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 860px;
    }
    .hero-tag {
    display: inline-block;
    background: rgba(200, 146, 42, 0.2);
    border: 1px solid rgba(200, 146, 42, 0.5);
    color: #e8be6a;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 100px;
    margin-bottom: 1.4rem;
    animation: fadeUp 0.7s ease both;
    }
    .hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 800;
    color: white;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    animation: fadeUp 0.8s 0.1s ease both;
    }
    .hero-title em {
    color: var(--gold);
    font-style: normal;
    }
    .hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 2.4rem;
    animation: fadeUp 0.8s 0.2s ease both;
    }
    .hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
    }
    .btn-primary {
    background: var(--gold);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 34px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 6px 24px rgba(200, 146, 42, 0.4);
    transition: var(--transition);
    cursor: pointer;
    }
    .btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    }
    .btn-outline {
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: 8px;
    border: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    cursor: pointer;
    }
    .btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.08);
    }
    .detail-back-btn {
    margin-bottom: 1.5rem;
    }
    .carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    }
    .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
    }
    .dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
    }

    /* SECTIONS */
    .section {
    padding: 80px 5vw;
    }
    .section-header {
    text-align: center;
    margin-bottom: 3rem;
    }
    .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
    }
    .section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
    }
    .section-sub {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 0.8rem;
    line-height: 1.7;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    }
    .packages-promo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    }
    .promo-tile {
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.75rem 2rem;
    border-radius: 24px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(251, 244, 230, 0.92));
    box-shadow: 0 22px 60px rgba(26, 39, 68, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .dark .promo-tile {
    background: linear-gradient(140deg, rgba(17, 27, 44, 0.92), rgba(17, 27, 44, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    }
    .promo-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 72px rgba(26, 39, 68, 0.18);
    }
    .promo-top {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
    }
    .promo-tile h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.45rem, 2.2vw, 1.9rem);
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 0.9rem;
    }
    .promo-tile p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 0;
    }
    .promo-button {
    align-self: center;
    justify-self: end;
    min-width: 180px;
    }

    /* DEST CARDS */
    .dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    }
    .dest-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
    }
    .dest-link {
    display: block;
    text-decoration: none;
    color: inherit;
    }
    .dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(26, 39, 68, 0.16);
    }
    .dest-img {
    height: 220px;
    overflow: hidden;
    }
    .dest-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f5f5f5;
    transition: transform 0.5s ease;
    }
    .dest-card:hover .dest-img img {
    transform: scale(1.02);
    }
    .dest-body {
    background: var(--card);
    padding: 1.2rem 1.4rem;
    }
    .dest-state {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    }
    .dest-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    }
    .dest-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    }
    .dest-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    .dest-tag {
    background: var(--green-pale);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
    }
    .btn-xs {
    background: var(--navy);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    }
    .btn-xs:hover {
    background: var(--navy-mid);
    }

    /* PACKAGES PAGE */
    .pkg-page-hero {
    background:
        linear-gradient(
        135deg,
        rgba(10, 20, 10, 0.95) 0%,
        rgba(45, 106, 45, 0.9) 100%
        ),
        url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1400&q=80")
        center/cover;
    padding: 70px 5vw 50px;
    text-align: center;
    }
    .pkg-page-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    margin-bottom: 0.5rem;
    }
    .pkg-page-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    }
    .pkg-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    padding: 50px 5vw;
    align-items: start;
    }
    .filter-sidebar {
    background: var(--card);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: 82px;
    }
    .filter-sidebar h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--green-pale);
    padding-bottom: 0.8rem;
    }
    .filter-group {
    margin-bottom: 1.5rem;
    }
    .filter-group h4 {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.7rem;
    }
    .filter-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    }
    .filter-opt input {
    accent-color: var(--gold);
    width: 14px;
    height: 14px;
    }
    .filter-opt label {
    font-size: 0.88rem;
    color: var(--text);
    cursor: pointer;
    }
    .pkg-grid-main {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    }
    .pkg-row {
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    box-shadow: var(--shadow);
    transition: var(--transition);
    }
    .pkg-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(26, 39, 68, 0.14);
    }
    .pkg-row-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    }
    .pkg-row-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f5f5f5;
    transition: transform 0.5s ease;
    }
    .pkg-row:hover .pkg-row-img img {
    transform: scale(1.02);
    }
    .pkg-row-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    }
    .pkg-row-body {
    padding: 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }
    .pkg-row-state {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    }
    .pkg-row-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin: 4px 0 8px;
    }
    .pkg-row-desc {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1rem;
    }
    .pkg-row-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.82rem;
    color: var(--muted);
    flex-wrap: wrap;
    }
    .pkg-row-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    }
    .pkg-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    }
    .pkg-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--muted);
    }

    /* ABOUT PAGE */
    .about-hero {
    background:
        linear-gradient(135deg, rgba(10, 20, 10, 0.95), rgba(45, 106, 45, 0.85)),
        url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1400&q=80")
        center/cover;
    padding: 80px 5vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    }
    .about-hero-text h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    }
    .about-hero-text p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.97rem;
    margin-bottom: 1.5rem;
    }
    
    /* Dark mode - About Hero */
    body.dark .about-hero {
    background:
        linear-gradient(135deg, rgba(8, 14, 25, 0.99), rgba(15, 30, 50, 0.95)),
        url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1400&q=80")
        center/cover;
    background-blend-mode: multiply;
    }
    body.dark .about-hero-text h1 {
    color: #f0f4ff;
    }
    body.dark .about-hero-text p {
    color: rgba(220, 225, 245, 0.9);
    }
    body.dark .about-hero-text .section-label {
    color: #f0ad4e;
    }
    .about-hero-img {
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    }
    .about-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
    .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--gold);
    }
    .stat {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    }
    .stat:last-child {
    border-right: none;
    }
    .stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: white;
    display: block;
    }
    .stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    margin-top: 4px;
    }
    .about-values {
    padding: 70px 5vw;
    background: linear-gradient(135deg, #1a2744 0%, #253660 100%);
    }
    .about-values .section-label {
    color: #f0ad4e;
    }
    .about-values .section-title {
    color: #ffffff;
    }
    .values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    }
    .value-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 1.8rem 1.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    }
    .value-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    }
    .value-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    }
    .value-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    }
    .value-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    }
    .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    }
    .team-card {
    text-align: center;
    padding: 1.5rem 1rem;
    }
    .team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid var(--green-pale);
    }
    .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }
    .team-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    }
    .team-role {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 3px;
    }

    /* GALLERY */
    .gallery-hero {
    background:
        linear-gradient(135deg, rgba(10, 20, 10, 0.95), rgba(45, 106, 45, 0.85)),
        url("https://images.unsplash.com/photo-1551632811-561732d1e306?w=1400&q=80")
        center/cover;
    padding: 60px 5vw;
    text-align: center;
    }
    .gallery-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    }
    .gallery-hero p {
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.5rem;
    }
    .gallery-filters {
    display: flex;
    gap: 0.7rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 5vw 0;
    }
    .gf-btn {
    background: var(--card);
    border: 2px solid var(--border);
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    }
    .gf-btn:hover,
    .gf-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
    }
    .gallery-grid {
    display: grid;
    padding: 2rem 5vw 4rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    }
    .gal-item {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    }
    .gal-item.tall {
    grid-row: span 2;
    }
    .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    }
    .gal-item:hover img {
    transform: scale(1.05);
    }
    .gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 10, 0);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    }
    .gal-item:hover .gal-overlay {
    background: rgba(10, 20, 10, 0.5);
    }
    .gal-label {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
    }
    .gal-item:hover .gal-label {
    opacity: 1;
    transform: translateY(0);
    }

    /* ENQUIRY */
    .enquiry-hero {
    background: url("https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1400&q=80")
        center/cover;
    position: relative;
    padding: 100px 5vw 70px;
    text-align: center;
    }
    .enquiry-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 10, 0.78);
    }
    .enquiry-hero-content {
    position: relative;
    z-index: 2;
    }
    .enquiry-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    }
    .enquiry-hero p {
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.5rem;
    }
    .enquiry-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 60px 5vw;
    }
    .enq-form-box {
    background: var(--card);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    }
    .enq-form-box h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    }
    .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 1.1rem;
    }
    .form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
    border: 1.5px solid var(--border);
    border-radius: 9px;
    padding: 11px 14px;
    font-family: "Outfit", sans-serif;
    font-size: 0.93rem;
    color: var(--text);
    background: var(--cream);
    outline: none;
    transition: var(--transition);
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
    border-color: var(--gold);
    background: var(--card-strong);
    }
    .form-group textarea {
    resize: vertical;
    min-height: 110px;
    }
    .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    }
    .btn-submit {
    background: var(--gold);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: var(--transition);
    width: 100%;
    margin-top: 0.5rem;
    }
    .btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    }
    .enq-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    }
    .enq-info h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    }
    .contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 1.2rem;
    background: var(--card);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    }
    .ci-icon {
    width: 42px;
    height: 42px;
    background: var(--green-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    }
    .ci-text strong {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 2px;
    }
    .ci-text span {
    font-size: 0.94rem;
    color: var(--text);
    }
    .ci-text a {
    font-size: 0.94rem;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    }
    .ci-text a:hover {
    color: var(--gold);
    }
    .dark .ci-text a {
    color: #e2e8fb;
    }
    .dark .ci-text a:hover {
    color: var(--gold);
    }
    .enq-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-top: 1rem;
    border-radius: 14px;
    overflow: hidden;
    }
    .enq-img-grid img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    }

    /* DETAIL */
    .detail-hero {
    height: 55vh;
    position: relative;
    overflow: hidden;
    }
    .detail-hero img,
    #page-home .dest-img img,
    #page-packages .pkg-row-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #0a1a32;
    }
    .detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 20, 10, 0.88), transparent 50%);
    }
    .detail-hero-content {
    position: absolute;
    bottom: 2.5rem;
    left: 5vw;
    z-index: 2;
    }
    .detail-hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    color: white;
    font-weight: 800;
    }

    @media (min-width: 992px) {
    .detail-hero img,
    #page-home .dest-img img,
    #page-packages .pkg-row-img img {
    object-fit: cover !important;
    object-position: center 50% !important;
    }
    }

    .detail-hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 5px;
    }
    .detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2.5rem;
    padding: 50px 5vw;
    }
    .detail-info-box h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.8rem;
    }
    .detail-info-box p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.94rem;
    margin-bottom: 1.5rem;
    }
    .detail-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2rem;
    }
    .detail-img-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    }
    .detail-img-grid img:first-child {
    grid-column: span 2;
    height: 260px;
    }
    .highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 2rem;
    }
    .highlight-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
    }
    .highlight-list li::before {
    content: "✦";
    color: var(--gold);
    font-size: 0.7rem;
    }
    .detail-sidebar {
    position: sticky;
    top: 80px;
    }
    .booking-card {
    background: var(--card);
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: var(--shadow);
    }
    .booking-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.2rem;
    }
    .booking-price,
    .detail-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.2rem;
    }
    .booking-price small,
    .detail-price small {
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 400;
    }
    .detail-meta,
    .booking-meta,
    #detail-meta-box {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
    line-height: 1.8;
    }
    .itinerary-day {
    background: var(--card);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    margin-bottom: 0.8rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
    }
    .itinerary-day h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    }
    .itinerary-day p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    }

    /* FOOTER */
    footer {
    background: var(--footer-bg);
    padding: 50px 5vw 24px;
    }
    .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    }
    .footer-brand p {
    color: var(--footer-muted);
    font-size: 0.87rem;
    line-height: 1.75;
    margin-top: 0.8rem;
    max-width: 260px;
    }
    footer h4 {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    }
    footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    }
    footer ul li a,
    footer ul li span {
    color: var(--footer-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    }
    footer ul li a:hover,
    footer ul li span:hover {
    color: var(--gold);
    }
    .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }
    .footer-bottom p {
    color: var(--footer-muted);
    font-size: 0.8rem;
    }
    .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    }

    .footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    }

    .footer-logo-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--footer-text);
    }

    .footer-logo-subtitle {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    }

    @keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    @media (max-width: 900px) {
    .dest-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pkg-layout {
        grid-template-columns: 1fr;
    }
    .filter-sidebar {
        position: static;
        top: auto;
    }
    .pkg-row {
        grid-template-columns: 1fr;
    }
    .about-hero {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .enquiry-layout {
        grid-template-columns: 1fr;
    }
    .promo-tile {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .promo-button {
        justify-self: center;
    }
    .detail-layout {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    }
    @media (max-width: 600px) {
    nav {
        flex-wrap: wrap;
        align-items: center;
        min-height: 68px;
        padding: 0 4vw 0 4vw;
    }
    .nav-logo {
        gap: 8px;
    }
    .logo-img {
        height: 44px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--card);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
        flex-direction: column;
        padding: 1rem 5vw 1.2rem;
        gap: 0.25rem;
        z-index: 1001;
        pointer-events: auto;
        backdrop-filter: blur(14px);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links li a {
        padding: 0.95rem 0;
        height: auto;
        line-height: 1.4;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .nav-links li:last-child a {
        border-bottom: none;
    }
    .nav-actions {
        order: 3;
        width: 100%;
        justify-content: flex-end;
        gap: 0.65rem;
    }
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: var(--card);
        cursor: pointer;
        transition: var(--transition);
        z-index: 1002;
        font-size: 1.3rem;
        line-height: 1;
        padding: 0;
        color: var(--nav-text);
    }
    .nav-toggle.open {
        font-size: 1.25rem;
    }
    .nav-theme,
    .nav-enquiry {
        min-width: 0;
    }
    .nav-enquiry {
        padding: 9px 14px;
    }
    .dest-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    }
