*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ===== CULTURAL FUSION THEME — Malaysia ===== */
:root {
    --bg:            #0E0A06;
    --bg-elevated:   #1A1108;
    --bg-card:       #221609;
    --bg-card-hover: #2A1C0D;
    --gold:          #C8962A;
    --gold-dim:      rgba(200,150,42,0.6);
    --gold-bright:   #E8B84B;
    --ruby:          #8B1A2C;
    --ruby-dim:      rgba(139,26,44,0.4);
    --cream:         #F2EAD8;
    --cream-dim:     rgba(242,234,216,0.7);
    --border:        rgba(200,150,42,0.18);
    --border-light:  rgba(200,150,42,0.08);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    /* Overlay & shadow tokens */
    --navbar-bg: rgba(14,10,6,0.55);
    --navbar-bg-scrolled: rgba(14,10,6,0.92);
    --navbar-shadow: 0 8px 32px rgba(0,0,0,0.5);
    --mobile-menu-bg: rgba(14,10,6,0.97);
    --hero-bg-overlay: linear-gradient(180deg, rgba(14,10,6,0.65) 0%, rgba(14,10,6,0.15) 55%, transparent 100%);
    --section-img-filter: brightness(0.2) saturate(0.7);
    --section-overlay: linear-gradient(180deg, var(--bg) 0%, rgba(14,10,6,0.4) 15%, rgba(14,10,6,0.4) 85%, var(--bg) 100%);
    --cta-img-filter: brightness(0.15) saturate(0.6);
    --cta-overlay: radial-gradient(ellipse at center, transparent 0%, var(--bg) 75%),
                   linear-gradient(180deg, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%);
    --bento-img-filter: brightness(0.55) saturate(0.9);
    --bento-img-hover-filter: brightness(0.4) saturate(1);
    --bento-overlay-bg: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    --bento-name-color: var(--cream);
    --shadow-img: 0 30px 60px rgba(0,0,0,0.6);
    --shadow-card-hover: 0 20px 50px rgba(0,0,0,0.5);
    --shadow-test-hover: 0 20px 50px rgba(0,0,0,0.4);
    --accent-glow: 0 12px 40px rgba(200,150,42,0.25);
    --accent-glow-sm: 0 8px 30px rgba(200,150,42,0.3);
    --btn-ghost-border: rgba(242,234,216,0.2);
    --stats-border: rgba(200,150,42,0.18);
    --feature-num-color: rgba(200,150,42,0.15);
    --quote-color: rgba(200,150,42,0.2);
    --arrow-bg: rgba(200,150,42,0.15);
}

html { scroll-behavior: auto; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ===== 3D SCROLL SYSTEM ===== */
.scene {
    perspective: 1200px;
    perspective-origin: 50% 50%;
}

.scene-section {
    position: relative;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transition: none;
}

.section-panel {
    position: relative;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.depth-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform: translateZ(-100px) scale(1.15);
    pointer-events: none;
}
.depth-mid {
    position: relative;
    z-index: 1;
    transform: translateZ(0px);
}
.depth-front {
    position: relative;
    z-index: 2;
    transform: translateZ(50px) scale(0.96);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    z-index: 1000;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--navbar-bg);
    backdrop-filter: blur(30px) saturate(1.5);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.4s;
}
.navbar.scrolled {
    background: var(--navbar-bg-scrolled);
    border-color: var(--border);
    box-shadow: var(--navbar-shadow);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
}
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--cream-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta-mobile { display: none; }
.nav-cta {
    padding: 10px 28px;
    background: var(--gold);
    color: var(--bg);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.nav-cta:hover {
    background: var(--gold-bright);
    transform: translateY(-1px);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.mobile-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== TYPOGRAPHY ===== */
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    padding-left: 32px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gold);
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--cream);
    letter-spacing: -0.01em;
}
.section-heading em {
    font-style: italic;
    color: var(--gold);
}
.section-desc {
    font-size: 1rem;
    color: var(--cream-dim);
    line-height: 1.8;
    max-width: 480px;
    font-weight: 300;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-bg-img.active {
    opacity: 1;
}
.hero-bg::after {
    content: none;
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 48px 60px;
    width: 100%;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: hero-in 1s 0.3s forwards;
    width: 100%;
    max-width: 900px;
}
.hero-overline {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: left;
}
.hero h1.curved-title {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1;
}
.hero h1.curved-title svg {
    width: 100%;
    height: auto;
    overflow: visible;
}
.hero h1.curved-title svg text {
    font-family: 'Ma Shan Zheng', 'Liu Jian Mao Cao', cursive;
    font-size: 220px;
    font-weight: 400;
    fill: #fff;
    letter-spacing: 0.08em;
}
.hero h1.curved-mobile {
    display: none;
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--cream-dim);
    max-width: 520px;
    margin: 28px auto 40px;
    line-height: 1.8;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}
@keyframes hero-in {
    to { opacity: 1; transform: translateY(0); }
}

/* ===== PHOTO ALBUM (Swiper Cards) ===== */
.album-wrap {
    margin: 48px auto 0;
    max-width: 380px;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: hero-in 1s 0.6s forwards;
}
.album-swiper {
    overflow: visible !important;
}
/* Swiper slide = transparent container, Swiper controls its position */
.album-swiper .swiper-slide {
    background: transparent !important;
    overflow: visible !important;
}
/* Inner frame = the actual photo with white border + random rotation */
.album-frame {
    position: relative;
    background: #fff;
    border: 6px solid #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 1px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0));
    transition: transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
/* Active (front) card straightens out */
.swiper-slide-active .album-frame {
    transform: rotate(0deg) translate(0, 0);
    box-shadow: 0 6px 28px rgba(0,0,0,0.25), 0 2px 6px rgba(0,0,0,0.12);
}
.album-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
/* Caption INSIDE the image — bottom left */
.album-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    text-align: left;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 100%);
    pointer-events: none;
}
.album-place {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.album-tag {
    display: block;
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
/* Swiper shadow override */
.album-swiper .swiper-slide-shadow {
    border-radius: 4px;
    background: rgba(0,0,0,0.08);
}
/* Dots under album */
.album-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.album-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid var(--cream-dim);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s;
}
.album-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}
.album-dot:hover {
    border-color: var(--gold);
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--gold);
    color: var(--bg);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.35s;
}
.btn-gold:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: var(--accent-glow);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--cream);
    border: 1px solid var(--btn-ghost-border);
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.35s;
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--cream-dim);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0;
    animation: hero-in 0.8s 1.2s forwards;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* Hero stats bar */
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 32px;
    border-top: 1px solid var(--stats-border);
    justify-content: center;
    opacity: 0;
    animation: hero-in 0.8s 1.1s forwards;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--cream);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--cream-dim);
    margin-top: 2px;
    font-weight: 400;
}

/* ===== 3D SCROLL SECTIONS ===== */
.scroll-3d-section {
    position: relative;
    padding: 140px 48px;
    overflow: hidden;
}

.section-bg-image {
    position: absolute;
    inset: -80px;
    z-index: 0;
    overflow: hidden;
    will-change: transform;
}
.section-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--section-img-filter);
}
.section-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--section-overlay);
}

.card-3d-space {
    perspective: 1000px;
}
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.inner-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== DESTINATIONS ===== */
.dest-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.dest-split.reverse { direction: rtl; }
.dest-split.reverse > * { direction: ltr; }

.dest-image-stack {
    position: relative;
    height: 520px;
    perspective: 800px;
}
.dest-img {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-img);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.dest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.dest-img-main {
    width: 85%;
    height: 80%;
    top: 10%;
    left: 0;
    z-index: 2;
}
.dest-img-float {
    width: 45%;
    height: 40%;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 3px solid var(--bg);
}
.dest-image-stack:hover .dest-img-main {
    transform: translateZ(20px) rotateY(-3deg);
}
.dest-image-stack:hover .dest-img-float {
    transform: translateZ(40px) rotateY(3deg) rotate(-2deg);
}

.dest-info { padding: 20px 0; }
.dest-info .section-tag { margin-bottom: 16px; }
.dest-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
}
.dest-name em { font-style: italic; color: var(--gold); }
.dest-text {
    color: var(--cream-dim);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 28px;
}
.dest-meta-row {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
}
.dest-meta-item {
    padding: 14px 20px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 6px;
}
.dest-meta-val {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cream);
}
.dest-meta-val.gold { color: var(--gold); }
.dest-meta-label {
    font-size: 0.7rem;
    color: var(--cream-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* Bento Grid destinations */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    margin-top: 64px;
}
.bento-grid .bento-wide { grid-column: span 2; }
.bento-grid .bento-tall { grid-row: span 2; }

.bento-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    min-height: 220px;
    border: 1px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.bento-card.bento-tall { min-height: 456px; }
.bento-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
    filter: var(--bento-img-filter);
}
.bento-card:hover img {
    transform: scale(1.08);
    filter: var(--bento-img-hover-filter);
}
.bento-card:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}
.bento-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background: var(--bento-overlay-bg);
}
.bento-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bento-name-color);
    line-height: 1.2;
}
.bento-card.bento-wide .bento-name,
.bento-card.bento-tall .bento-name {
    font-size: 1.8rem;
}
.bento-loc {
    font-size: 0.75rem;
    color: var(--cream-dim);
    margin-top: 4px;
    font-weight: 300;
}
/* Override bento text colors — always light on image overlay */
.bento-overlay .bento-loc { color: rgba(255,255,255,0.7); }
.bento-overlay .bento-price { color: var(--gold-bright); }
.bento-overlay .bento-rating { color: rgba(255,255,255,0.7); }

.bento-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}
.bento-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
}
.bento-price small {
    font-size: 0.7rem;
    color: var(--cream-dim);
    font-family: var(--font-body);
    font-weight: 300;
}
.bento-overlay .bento-price small { color: rgba(255,255,255,0.6); }
.bento-rating {
    font-size: 0.78rem;
    color: var(--cream-dim);
    display: flex;
    align-items: center;
    gap: 4px;
}
.star-icon { color: var(--gold); }
.bento-overlay .star-icon { color: #f0c060; }

/* Hover reveal arrow */
.bento-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--arrow-bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.4s;
    color: var(--gold);
}
.bento-card:hover .bento-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Bento staggered reveal */
.bento-card {
    opacity: 0;
    transform: perspective(800px) translateY(60px) rotateX(8deg) scale(0.9);
}
.bento-card.bento-visible {
    opacity: 1;
    transform: perspective(800px) translateY(0) rotateX(0deg) scale(1);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}
.feature-cell {
    background: var(--bg-card);
    padding: 40px 32px;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
}
.feature-cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 32px;
    right: 32px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}
.feature-cell:hover {
    background: var(--bg-card-hover);
}
.feature-cell:hover::after {
    transform: scaleX(1);
}
.feature-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--feature-num-color);
    margin-bottom: 20px;
    line-height: 1;
}
.feature-cell h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--cream);
}
.feature-cell p {
    font-size: 0.85rem;
    color: var(--cream-dim);
    line-height: 1.7;
    font-weight: 300;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 64px;
    background: var(--border-light);
    border-radius: 10px;
    overflow: hidden;
}
.price-col {
    background: var(--bg-card);
    padding: 48px 36px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s;
    position: relative;
}
.price-col.featured {
    background: var(--bg-elevated);
}
.price-col.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}
.price-badge {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--gold);
    padding: 4px 12px;
    border-radius: 3px;
}
.price-tier {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream-dim);
    font-weight: 600;
    margin-bottom: 8px;
}
.price-col.featured .price-tier { color: var(--gold); }
.price-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.price-sub {
    font-size: 0.85rem;
    color: var(--cream-dim);
    margin-bottom: 28px;
    font-weight: 300;
}
.price-amount-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}
.price-symbol {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream-dim);
}
.price-num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: var(--cream);
}
.price-period {
    font-size: 0.8rem;
    color: var(--cream-dim);
}
.price-old {
    font-size: 0.85rem;
    color: var(--cream-dim);
    text-decoration: line-through;
    margin-bottom: 28px;
}
.price-list {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
}
.price-list li {
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--cream-dim);
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
    font-weight: 300;
}
.check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gold-dim);
}
.price-btn {
    padding: 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    border: none;
    letter-spacing: 0.03em;
}
.price-btn.solid {
    background: var(--gold);
    color: var(--bg);
}
.price-btn.solid:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: var(--accent-glow-sm);
}
.price-btn.outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--cream-dim);
}
.price-btn.outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ===== TESTIMONIALS ===== */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
}
.test-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 36px 28px;
    transition: all 0.4s;
    cursor: pointer;
}
.test-card:hover {
    border-color: var(--border);
    transform: translateY(-6px);
    box-shadow: var(--shadow-test-hover);
}
.test-quote {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--quote-color);
    line-height: 1;
    margin-bottom: 12px;
}
.test-text {
    font-size: 0.95rem;
    color: var(--cream-dim);
    line-height: 1.8;
    margin-bottom: 24px;
    font-weight: 300;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}
.test-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
}
.test-role {
    font-size: 0.75rem;
    color: var(--cream-dim);
}
.test-stars {
    margin-top: 16px;
    display: flex;
    gap: 3px;
}
.test-stars svg { width: 14px; height: 14px; color: var(--gold); fill: var(--gold); }

/* ===== CTA ===== */
.cta-section {
    padding: 160px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: -40px;
    z-index: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: var(--cta-img-filter);
}
.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cta-overlay);
}
.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}
.cta-inner h2 em {
    font-style: italic;
    color: var(--gold);
}
.cta-inner p {
    font-size: 1rem;
    color: var(--cream-dim);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-urgency {
    margin-top: 28px;
    font-size: 0.8rem;
    color: var(--ruby);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ruby);
    animation: dot-blink 2s ease-in-out infinite;
}
@keyframes dot-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===== FOOTER ===== */
footer {
    padding: 80px 48px 40px;
    border-top: 1px solid var(--border-light);
}
.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-brand-text {
    color: var(--cream-dim);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
    font-weight: 300;
    margin-top: 12px;
}
.footer-col h4 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream-dim);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: var(--cream-dim);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 4px 0;
    transition: color 0.3s;
    font-weight: 300;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--cream-dim);
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-dim);
    text-decoration: none;
    transition: all 0.3s;
}
.footer-social a:hover {
    border-color: var(--border);
    color: var(--gold);
}

/* ===== SCROLL-DRIVEN 3D REVEAL ===== */
.reveal-3d {
    opacity: 0;
    transform: perspective(1200px) translateY(100px) rotateX(8deg) scale(0.96);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-3d.visible {
    opacity: 1;
    transform: perspective(1200px) translateY(0) rotateX(0deg) scale(1);
}

.reveal-3d-left {
    opacity: 0;
    transform: perspective(1200px) translateX(-140px) translateZ(-60px) rotateY(14deg) rotateX(3deg) scale(0.92);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-3d-left.visible {
    opacity: 1;
    transform: perspective(1200px) translateX(0) translateZ(0) rotateY(0deg) rotateX(0deg) scale(1);
}

.reveal-3d-right {
    opacity: 0;
    transform: perspective(1200px) translateX(140px) translateZ(-60px) rotateY(-14deg) rotateX(3deg) scale(0.92);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s,
                transform 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.reveal-3d-right.visible {
    opacity: 1;
    transform: perspective(1200px) translateX(0) translateZ(0) rotateY(0deg) rotateX(0deg) scale(1);
}

[data-scroll-float].scroll-active {
    transition: none !important;
    will-change: transform;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Section divider line */
.section-divider {
    max-width: 1200px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ===== INTERACTIVE MALAYSIA MAP ===== */
.malaysia-map {
    padding: 120px 0;
    background: var(--bg-elevated);
    position: relative;
}
.map-wrap {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 60px;
}
.map-svg-wrap {
    flex: 1;
    min-width: 0;
}
.map-svg-wrap svg {
    width: 100%;
    height: auto;
    display: block;
}
.map-svg-wrap svg path[data-state] {
    fill: var(--bg-card);
    stroke: var(--gold-dim);
    stroke-width: 0.8;
    cursor: pointer;
    transition: fill 0.25s, filter 0.25s;
}
.map-svg-wrap svg path[data-state]:hover {
    fill: var(--ruby-dim);
    filter: drop-shadow(0 0 8px rgba(200,150,42,0.4));
}
.map-svg-wrap svg path[data-state].active {
    fill: var(--ruby);
    filter: drop-shadow(0 0 14px rgba(200,150,42,0.5));
}
.map-info {
    width: 340px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}
.map-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    min-height: 320px;
    transition: border-color 0.3s;
}
.map-info-card:has(.map-state-name-en) {
    border-color: var(--gold-dim);
}
.map-prompt {
    color: var(--cream-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.7;
    padding-top: 20px;
}
.map-state-name {
    font-size: 1.8rem;
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}
.map-state-name-en {
    font-size: 0.85rem;
    color: var(--cream-dim);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.map-attractions {
    list-style: none;
    padding: 0;
    margin: 0;
}
.map-attractions li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--cream-dim);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.map-attractions li::before {
    content: "✦";
    color: var(--gold);
    font-size: 0.7rem;
    flex-shrink: 0;
}
.map-attractions li:last-child {
    border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .dest-split { grid-template-columns: 1fr; gap: 40px; }
    .dest-split.reverse { direction: ltr; }
    .dest-image-stack { height: 400px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card.bento-tall { grid-row: span 1; }
}
@media (max-width: 768px) {
    .navbar {
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        transform: none;
        padding: 0 20px;
        height: 56px;
    }
    .nav-logo { font-size: 1.3rem; }
    .nav-links { display: none !important; }
    .nav-cta { display: none !important; }
    .mobile-toggle { display: flex; }
    .album-swiper,
    .album-swiper .swiper-slide { overflow: hidden !important; }
    .album-wrap { overflow: hidden; }
    .nav-links.open {
        display: flex !important;
        position: absolute;
        top: calc(100% + 8px);
        left: 0; right: 0;
        flex-direction: column;
        background: var(--mobile-menu-bg);
        backdrop-filter: blur(20px);
        padding: 16px 24px;
        border: 1px solid var(--border-light);
        border-radius: 12px;
        gap: 4px;
    }
    .nav-links.open a { padding: 10px 0; }
    .nav-links.open .nav-cta-mobile { display: block; }
    .nav-links.open .mobile-cta {
        display: block;
        margin-top: 8px;
        padding: 12px 0;
        text-align: center;
        background: var(--gold);
        color: #0E0A06 !important;
        border-radius: 8px;
        font-weight: 600;
        letter-spacing: 0.04em;
    }
    .hero-inner { padding: 120px 24px 60px; }
    .hero h1.curved-desktop { display: none; }
    .hero-overline { font-size: 0.6rem; margin-bottom: 40px; }
    .hero h1.curved-mobile {
        display: block;
        width: 100%;
        max-width: 100%;
    }
    .hero h1.curved-mobile svg {
        width: 100%;
        height: auto;
        overflow: visible;
    }
    .hero h1.curved-mobile svg text {
        font-family: 'Ma Shan Zheng', 'Liu Jian Mao Cao', cursive;
        font-weight: 400;
        fill: #fff;
        letter-spacing: 0.08em;
    }
    .hero h1.curved-mobile svg text.mline1 { font-size: 140px; }
    .hero h1.curved-mobile svg text.mline2 { font-size: 160px; }
    .album-wrap { max-width: 280px; }
    .album-frame { border-width: 4px; }
    .album-place { font-size: 0.85rem; }
    .scroll-3d-section { padding: 100px 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    /* Mobile bento — 2-col asymmetric masonry */
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    .bento-grid .bento-wide { grid-column: span 2; }
    .bento-grid .bento-tall { grid-row: span 1; }
    .bento-grid .bento-card {
        min-height: 160px;
        border-radius: 10px;
    }
    .bento-grid .bento-card.bento-wide { min-height: 180px; }
    /* Alternate heights for visual rhythm */
    .bento-grid .bento-card:nth-child(3) { min-height: 200px; }
    .bento-grid .bento-card:nth-child(5) { min-height: 130px; }
    .bento-grid .bento-card:nth-child(6) { min-height: 200px; }
    .bento-grid .bento-card:nth-child(7) { min-height: 130px; }
    .bento-overlay { padding: 14px; }
    .bento-name { font-size: 1.05rem; }
    .bento-card.bento-wide .bento-name,
    .bento-card.bento-tall .bento-name { font-size: 1.25rem; }
    .bento-loc { font-size: 0.65rem; }
    .bento-bottom { margin-top: 6px; }
    .bento-price { font-size: 0.95rem; }
    .bento-arrow { display: none; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cta-section { padding: 100px 24px; }
    footer { padding: 60px 24px 32px; }
    .map-wrap { flex-direction: column; gap: 40px; }
    .map-info { width: 100%; position: static; }
    .malaysia-map { padding: 80px 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}