/* ===== JETOUR Inovasi Kelapa Gading — Navy + Gold Theme ===== */

:root {
    --navy: #0d1b3e;
    --navy-light: #1a2d52;
    --navy-mid: #152345;
    --gold: #c8a951;
    --gold-light: #d4b76a;
    --white: #ffffff;
    --off-white: #f5f6fa;
    --gray-100: #f0f2f7;
    --gray-200: #e4e8f0;
    --gray-300: #d0d8e8;
    --gray-400: #a0b0c8;
    --gray-500: #7889a0;
    --text: #1a1a2e;
    --text-light: #5a6578;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-sm: 0 2px 8px rgba(13,27,62,0.08);
    --shadow-md: 0 4px 20px rgba(13,27,62,0.12);
    --shadow-lg: 0 8px 40px rgba(13,27,62,0.16);
    --font-primary: 'Sora', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', 'Sora', sans-serif;
    --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

.section {
    padding: 80px 0;
}

.sec-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sec-head {
    text-align: center;
    margin-bottom: 48px;
}

.sec-head.light {
    color: var(--white);
}

.sec-eyebrow {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sec-title {
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.title-accent {
    color: var(--gold);
}

.sec-sub {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.sec-sub.left {
    text-align: left;
    margin: 0;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13,27,62,0.06);
    transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 52px;
    height: 52px;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-svg {
    width: 100%;
    height: 100%;
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.brand-text .brand-highlight {
    color: var(--gold);
}

.brand-text small {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 4px 0;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-item:hover, .nav-item.active {
    color: var(--navy);
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.nav-cta-btn {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    background: var(--navy);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition);
}

.nav-cta-btn:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.burger {
    display: none;
    background: none;
    border: none;
    width: 28px;
    height: 20px;
    cursor: pointer;
    position: relative;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
    position: absolute;
    left: 0;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 8px; }
.burger span:nth-child(3) { top: 16px; }

.burger.open span:nth-child(1) { transform: rotate(45deg); top: 8px; }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg); top: 8px; }

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 520px;
    max-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--off-white);
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(to right, rgba(13,27,62,0.92) 0%, rgba(13,27,62,0.85) 40%, rgba(13,27,62,0.7) 65%, rgba(13,27,62,0.5) 100%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 60px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(200,169,81,0.25);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-heading {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.heading-accent {
    color: var(--gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 14px;
    align-items: center;
}

/* Buttons */
.btn {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

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

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

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

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

.btn-gold:hover {
    background: var(--gold-light);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-wide {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car {
    width: 85%;
    height: auto;
}

.hero-car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-car-fallback {
    width: 85%;
    height: auto;
}

.hero-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(200,169,81,0.15) 0%, transparent 70%);
}

.hero-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 10px 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 3;
}

.hero-float-badge strong {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
}

.hero-float-badge span {
    font-size: 0.7rem;
    color: var(--text-light);
}

.badge-top {
    top: 8%;
    right: -10px;
}

.badge-bottom {
    bottom: 12%;
    left: -10px;
}

/* ===== Keunggulan ===== */
.keunggulan {
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(13,27,62,0.06);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

.feat-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Lineup ===== */
.lineup {
    background: var(--off-white);
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.car-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(13,27,62,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
}

.car-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-visual {
    position: relative;
    aspect-ratio: 5/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #e8edf5, #d0d8e8);
}

.card-car {
    width: 70%;
    height: auto;
}

.card-car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transition: opacity 0.2s ease;
}

.card-car-fallback {
    width: 70%;
    height: auto;
}

.card-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.card-flag.new {
    background: var(--gold);
    color: var(--navy);
}

.card-flag.best {
    background: var(--navy);
    color: var(--white);
}

.card-flag.soon {
    background: var(--gray-400);
    color: var(--white);
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.card-type {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.card-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 14px;
}

.card-specs-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.card-specs-row span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.card-specs-row b {
    color: var(--navy);
}

.card-colors {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.card-colors-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.card-color-chips {
    display: flex;
    gap: 6px;
}

.color-chip {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid transparent;
}

.color-chip:hover {
    transform: scale(1.3);
    box-shadow: 0 0 0 3px rgba(200,169,81,0.3);
}

.color-chip.active {
    transform: scale(1.4);
    box-shadow: 0 0 0 3px var(--gold), 0 0 0 5px rgba(200,169,81,0.2);
    border-color: var(--gold);
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-size: 0.85rem;
    color: var(--text-light);
}

.card-price b {
    color: var(--navy);
}

.card-action {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: color var(--transition);
}

.card-action:hover {
    color: var(--navy);
}

/* ===== Promo ===== */
.promo {
    position: relative;
    background: var(--navy);
    overflow: hidden;
}

.promo-dark-bg {
    position: absolute;
    inset: 0;
    background: var(--navy);
}

.promo-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,169,81,0.15) 0%, transparent 70%);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.promo-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,169,81,0.2);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition);
}

.promo-item:hover {
    transform: translateY(-4px);
    border-color: rgba(200,169,81,0.4);
}

.promo-item.featured {
    border-color: rgba(200,169,81,0.4);
    background: rgba(200,169,81,0.08);
}

.promo-img-box {
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13,27,62,0.6), rgba(26,45,82,0.4));
}

.promo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.promo-img-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-img-fallback svg {
    width: 48px;
    height: 48px;
    opacity: 0.8;
}

.promo-item .promo-hot,
.promo-item h3,
.promo-item p,
.promo-item .promo-meta,
.promo-item .btn {
    padding-left: 24px;
    padding-right: 24px;
}

.promo-item h3 {
    padding-top: 20px;
}

.promo-item .promo-meta {
    padding-bottom: 16px;
}

.promo-item .btn {
    margin: 0 24px 24px;
}

.promo-hot {
    font-family: var(--font-primary);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.promo-item h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.promo-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}

.promo-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.promo-meta span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.promo-tag {
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 600;
    background: rgba(200,169,81,0.2);
    color: var(--gold);
    padding: 3px 8px;
    border-radius: 4px;
}

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

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-box {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d1b3e, #1a2d52, #0d1b3e);
}

.about-svg {
    width: 70%;
    height: auto;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-svg-fallback {
    width: 70%;
    height: auto;
}

.about-stat-float {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-stat-float strong {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
}

.about-stat-float span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.about-text {
    padding-left: 16px;
}

.about-text .sec-eyebrow {
    margin-bottom: 12px;
}

.about-text .sec-title {
    text-align: left;
}

.about-p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-list {
    list-style: none;
    margin-top: 20px;
}

.about-list li {
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 1px solid rgba(13,27,62,0.06);
}

.about-list li:last-child {
    border-bottom: none;
}

/* ===== Booking ===== */
.booking {
    background: var(--off-white);
}

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.booking-info .sec-eyebrow {
    margin-bottom: 12px;
}

.booking-info .sec-title {
    text-align: left;
}

.booking-list {
    list-style: none;
    margin-top: 24px;
}

.booking-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-mark {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

.booking-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(13,27,62,0.06);
}

.field {
    margin-bottom: 18px;
}

.field label {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
    display: block;
}

.field input, .field select, .field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    background: var(--off-white);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200,169,81,0.15);
}

.field textarea {
    resize: vertical;
}

.td-success {
    text-align: center;
    padding: 24px;
}

.td-success.hidden {
    display: none;
}

.success-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.td-success h3 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.td-success p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(200,169,81,0.2);
}

.footer-brand-col .brand-footer {
    margin-bottom: 16px;
}

.footer-brand-col .brand-text {
    color: var(--white);
}

.footer-brand-col .brand-text .brand-highlight {
    color: var(--gold);
}

.footer-brand-col .brand-text small {
    color: rgba(255,255,255,0.5);
}

.footer-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-links-col h4, .footer-contact-col h4 {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links-col ul, .footer-contact-col ul {
    list-style: none;
}

.footer-links-col li, .footer-contact-col li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-col a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

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

.footer-contact-col li svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* ===== WhatsApp Float ===== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(37,211,102,0.4);
}

.wa-icon {
    width: 28px;
    height: 28px;
}

.wa-text {
    display: inline;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        max-width: 400px;
    }

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

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

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

    .about-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-text {
        padding-left: 0;
    }

    .booking-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid rgba(13,27,62,0.06);
        transform: translateY(-120%);
        transition: transform var(--transition);
        z-index: 99;
    }

    .nav-menu.open {
        transform: translateY(0);
    }

    .nav-cta-btn {
        display: none;
    }

    .burger {
        display: block;
    }

    .hero {
        min-height: 480px;
        max-height: 90vh;
    }

    .hero-inner {
        padding-top: 80px;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .lineup-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .wa-text {
        display: none;
    }

    .wa-float {
        padding: 12px;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 48px 0;
    }

    .hero-heading {
        font-size: 2rem;
    }

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

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

    .feature-card {
        padding: 24px 16px;
    }

    .booking-form-card {
        padding: 20px;
    }

    .hero-float-badge {
        display: none;
    }
}

/* ===== Detail Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(13,27,62,0.6);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.open {
    display: flex;
}

.modal-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--navy);
    cursor: pointer;
    transition: background var(--transition);
}

.modal-close:hover {
    background: var(--gray-200);
}

.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(13,27,62,0.06);
}

.modal-header h2 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

#modalType {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.modal-price {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 8px;
    font-weight: 600;
}

.modal-tabs {
    display: flex;
    gap: 0;
    padding: 0 24px;
    border-bottom: 1px solid rgba(13,27,62,0.06);
}

.mtab {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 20px;
    color: var(--text-light);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.mtab.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}

.mtab:hover {
    color: var(--navy);
}

.modal-body {
    padding: 24px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.feat-group {
    margin-bottom: 20px;
}

.feat-group h4 {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.feat-group ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.feat-group li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.feat-group li::before {
    content: '•';
    color: var(--gold);
    font-weight: 700;
}

/* Interior Gallery */
.interior-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.interior-img {
    border-radius: var(--radius-md);
    aspect-ratio: 16/10;
    background: var(--gray-100);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.interior-placeholder {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    padding: 8px;
}

.interior-placeholder svg {
    width: 32px;
    height: 32px;
    margin: 0 auto 6px;
    opacity: 0.3;
}

.interior-img.wide {
    grid-column: span 2;
    aspect-ratio: 16/8;
}

/* Video */
.video-wrap {
    border-radius: var(--radius-md);
    background: var(--gray-100);
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.video-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(13,27,62,0.06);
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .modal-box {
        max-height: 90vh;
        border-radius: var(--radius-md);
    }

    .feat-group ul {
        grid-template-columns: 1fr;
    }

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

    .interior-img.wide {
        grid-column: span 1;
    }

    .modal-footer {
        flex-direction: column;
    }
}

/* ===== Animations ===== */
.slide-in {
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.6s ease forwards;
}

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

.fade-up {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Video Showcase ===== */
.video-showcase {
    padding: 80px 0;
    background: var(--off-white);
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.video-card video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.video-placeholder-card {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.video-placeholder-card svg {
    width: 48px;
    height: 48px;
    opacity: 0.4;
}

.video-card-info {
    padding: 16px 20px;
    background: var(--navy);
    color: var(--white);
}

.video-card-info h3 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.video-card-info p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

@media (min-width: 640px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
