/* Custom Font */
@font-face {
    font-family: 'Porscha';
    src: url('assets/font/911 Porscha.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* 1. Reset Dasar & Font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000; /* Latar belakang hitam pekat */
    font-family: 'Montserrat', sans-serif; /* Menggunakan font modern tanpa kaki */
}

/* 2. Mengatur Struktur Navbar Utama */
.navbar {
    display: flex;
    justify-content: space-between; /* Memisahkan logo ke kiri, menu ke kanan */
    align-items: center;        /* Membuat semua elemen rata tengah secara vertikal */
    padding: 25px 5%;           /* Memberikan jarak atas-bawah 25px, kiri-kanan 5% dari layar */
    background-color: #000000;
    border-bottom: 1px solid #1a1a1a; /* Garis tipis estetis di bawah navbar */
}

/* 3. Gaya Bagian Logo (Kiri) */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px; /* Jarak antara ikon berlian dan teks */
}


.brand-name {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;     
    letter-spacing: 2px;  
}

.brand-sub {
    color: #666666;     
    font-size: 0.75rem;
    font-weight: 400;      
    margin-left: 5px;
}

/* 4. Gaya Bagian Menu Navigasi (Kanan) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px; /* Jarak antar teks menu (HOME, FLEET, SIGN IN) */
}

.nav-item {
    color: #ffffff;
    text-decoration: none; /* Menghilangkan garis bawah bawaan link <a> */
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.2s ease; /* Efek halus saat berubah warna */
}

.nav-item:hover {
    color: #888888; /* Warna berubah abu-abu saat kursor diarahkan ke teks */
}

/* 5. Gaya Tombol Sign Up */
.btn-signup {
    background-color: #ffffff; /* Latar belakang tombol putih pekat */
    color: #000000;            /* Warna teks hitam */
    border: none;
    padding: 10px 24px;        /* Jarak dalam tombol (atas-bawah 10px, kiri-kanan 24px) */
    font-size: 0.8rem;
    font-weight: 800;          /* Teks tombol sangat tebal */
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-signup:hover {
    opacity: 0.9; /* Efek tombol sedikit memudar saat disentuh kursor */
}


.logo-img {
    width: 240px;
    max-width: 32vw;
    height: auto;
    object-fit: contain; /* Memastikan gambar tetap proporsional */
    transition: transform 0.2s ease; /* Efek halus saat gambar diperbesar */

}
.logo-img:hover {
    transform: scale(0.98); /* Memperbesar gambar sedikit saat hover */
    opacity: 0.85; /* Efek gambar sedikit memudar saat hover */
}



/* ================= HERO SECTION ================= */

/* 1. Mengatur Wadah Utama Hero */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 5%;
    min-height: 75vh;
    background-color: #000000;
    position: relative;
    overflow: hidden;
}

/* Video Background — absolute, fills hero, behind everything */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    cursor: pointer;
    display: block;
}

/* Dark gradient overlay — sits on top of video */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.55) 60%,
        rgba(0,0,0,0.20) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Content & stats float above video */
.hero-content,
.hero-stats {
    position: relative;
    z-index: 2;
}

/* 2. Mengatur Bagian Teks (Kiri) */
.hero-content {
    max-width: 55%;                /* Batasi lebar teks agar tidak menabrak kotak kanan */
}

.hero-tag {
    font-size: 0.7rem;
    color: #666666;
    letter-spacing: 3px;           /* Jarak antar huruf renggang khas desain mewah */
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'Oswald', sans-serif; /* Font sporty & compact */
    font-size: 5rem;               /* Ukuran teks sangat besar */
    font-weight: 700;
    font-style: italic;            /* Cetak miring sesuai contoh */
    line-height: 0.95;             /* Merapatkan jarak antar baris teks atas & bawah */
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-title .highlight {
    color: #888888;                /* Warna abu-abu pada kata PERFORMANCE */
}

.hero-desc {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.6;              /* Memberikan ruang baca yang nyaman pada paragraf */
    margin-bottom: 40px;
    max-width: 85%;
}

/* 3. Mengatur Tombol */
.hero-btns {
    display: flex;
    gap: 15px;                     /* Jarak antar kedua tombol */
}

.hero-btns button {
    padding: 15px 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.btn-explore {
    background-color: #ffffff;
    color: #000000;
}

.btn-explore:hover {
    background-color: #cccccc;
}

.btn-acquire {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #333333;     /* Garis tepi abu-abu gelap */
}

.btn-acquire:hover {
    border-color: #ffffff;         /* Garis menyala putih saat disorot */
}

/* 4. Mengatur Kotak Metrics (Kanan) */
.hero-stats {
    background-color: rgba(5, 5, 5, 0.85);
    border: 1px solid #151515;
    padding: 35px;
    width: 350px;
    backdrop-filter: blur(4px);
}

.stats-title {
    font-size: 0.75rem;
    color: #666666;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Mengatur baris di dalam kotak stats */
.stat-row {
    display: flex;
    justify-content: space-between;/* Label kiri, nilai kanan */
    padding: 12px 0;
    border-bottom: 1px solid #151515; /* Garis pembatas antar baris */
}

.stat-row:last-child {
    border-bottom: none;           /* Hilangkan garis pembatas di baris paling bawah */
}

.stat-label {
    font-size: 0.75rem;
    color: #888888;
    font-weight: 600;
}

.stat-value {
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 800;
}


/* ================= FOOTER SECTION ================= */

.main-footer {
    background-color: #000000;
    border-top: 1px solid #151515; /* Garis pembatas tipis di atas footer */
    padding: 60px 5% 30px;         /* Jarak dalam: atas 60px, kiri-kanan 5%, bawah 30px */
    font-family: 'Montserrat', sans-serif;
}

/* 1. Mengatur Grid 3 Kolom */
.footer-grid {
    display: grid;
    /* Membagi rata menjadi 3 kolom yang sama besar */
    grid-template-columns: repeat(3, 1fr); 
    gap: 50px;                    /* Jarak antar kolom */
    margin-bottom: 60px;          /* Jarak antara grid atas dan baris copyright bawah */
}

.footer-title {
    color: #ffb700;               /* Warna kuning/emas khas sesuai gambar */
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-text {
    color: #555555;               /* Warna abu-abu redup agar kontrasnya pas */
    font-size: 0.8rem;
    line-height: 1.6;             /* Jarak antar baris kalimat agar nyaman dibaca */
}

/* 2. Mengatur Menu Link Kolom Tengah */
.footer-links {
    display: flex;
    flex-direction: column;       /* Menyusun link ke bawah seperti daftar */
    gap: 12px;                    /* Jarak vertikal antar link */
}

.footer-links a {
    color: #555555;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;               /* Warna menyala putih saat kursor diarahkan */
}

/* 3. Mengatur Baris Hak Cipta (Paling Bawah) */
.footer-bottom {
    border-top: 1px solid #151515; /* Garis horizontal tipis */
    padding-top: 25px;
    display: flex;
    justify-content: space-between;/* Teks kiri di ujung kiri, teks kanan di ujung kanan */
    color: #333333;               /* Abu-abu yang lebih gelap lagi */
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}
.logo-container a {
    display: inline-block;
}

.logo-img {
    cursor: pointer;
}

/* --- Global Styles Required for Footer --- */
/* (Pastikan Anda sudah memanggil font Poppins dan FontAwesome) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* --- Main Footer Styles --- */
.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding-top: 60px;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    margin-right: 40px;
    margin-bottom: 40px;
    min-width: 250px;
}

.footer-col:last-child {
    margin-right: 0;
}

/* --- Column 1: Brand --- */
.footer-logo {
    font-family: 'Porscha', 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 5px;
}

.luxe-drive {
    display: block;
    font-family: 'Oswald', sans-serif;
    color: #ffd700; /* Yellow Color */
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.brand-col p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border: none;
    background: none;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    border-color: transparent;
    color: #ffd700;
}

.social-icons a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.social-icons a:hover img {
    filter: brightness(1.3);
}

/* --- Quick Links & Headings --- */
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.heading-line {
    width: 40px;
    height: 2px;
    background-color: #ffd700;
    margin-bottom: 25px;
}

.links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-col ul li {
    margin-bottom: 15px;
}

.links-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.links-col ul li a i {
    font-size: 12px;
}

.links-col ul li a:hover {
    color: #ffffff;
}

/* --- Contact Info --- */
.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info .info-item i {
    color: #ffd700;
    font-size: 20px;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-info .info-item p {
    color: #b0b0b0;
    margin: 0;
    line-height: 1.6;
}

/* --- Footer Middle (Icons) --- */
.footer-middle {
    background-color: #000000;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 30px 0;
}

.footer-middle .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
}

.feature-item i {
    color: #ffd700;
    font-size: 36px;
}

.feature-item h5 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.feature-item p {
    margin: 0;
    font-size: 13px;
    color: #b0b0b0;
}

.feature-separator {
    width: 1px;
    height: 60px;
    background-color: #333;
}

/* --- Footer Bottom (Copyright) --- */
.footer-bottom {
    background-color: #000000;
    padding: 20px 0;
    font-size: 13px;
    color: #808080;
}

.footer-bottom .footer-container {
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 10px;
}

.legal-links a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #ffffff;
}

.legal-separator {
    color: #333;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .feature-separator {
        display: none;
    }
    .footer-middle .footer-container {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .feature-item {
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 767px) {
    .footer-container {
        flex-direction: column;
    }
    .footer-col {
        margin-right: 0;
        min-width: 100%;
    }
    .footer-bottom .footer-container {
        flex-direction: column-reverse;
        gap: 10px;
        text-align: center;
    }
}

/* ── Why Us Section ── */
.why-section {
    padding: 100px 5%;
    background-color: #000;
    background-image: url('assets/Index bg.png');
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    border-top: 1px solid #111;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 0;
    pointer-events: none;
}

.why-section > * {
    position: relative;
    z-index: 1;
}
.section-eyebrow {
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.why-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
}
.why-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 700;
    color: #fff;
    line-height: 0.95;
    text-transform: uppercase;
}
.why-heading .gold { color: #ffb700; }
.why-subtext {
    max-width: 340px;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.7;
    text-align: right;
}
/* Why grid with image background */
.why-grid-bg {
    position: relative;
}

.why-grid-bg .why-card {
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.why-grid-bg .why-card:hover {
    background-color: rgba(10, 10, 10, 0.6);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.why-card {
    background-color: transparent;
    padding: 45px 35px;
    transition: background-color 0.25s ease;
}
.why-card:hover { background-color: rgba(0, 0, 0, 0.45); }
.why-card-num {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.25s ease;
}
.why-card:hover .why-card-num { color: #ffb700; }
.why-card-title {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.why-card-desc {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.7;
}

/* ── Featured Models Strip ── */
.models-section {
    padding: 100px 5%;
    background-color: #020202;
    border-top: 1px solid #111;
}
.models-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}
.models-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.models-heading .gold { color: #ffb700; }
.models-cta-link {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffb700;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #ffb700;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}
.models-cta-link:hover { opacity: 0.7; }
.models-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    background-color: transparent;
}
.model-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    overflow: hidden;
    text-decoration: none;
    background: linear-gradient(180deg, #090909 0%, #020202 100%);
    border: 1px solid #151515;
    box-shadow: 0 22px 60px rgba(0,0,0,0.35);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.model-card::after {
    content: '';
    position: absolute;
    inset: auto 24px 0 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffb700, transparent);
    opacity: 0;
    transition: opacity 0.28s ease;
}
.model-card:hover {
    transform: translateY(-8px);
    border-color: #ffb70055;
    box-shadow: 0 28px 75px rgba(0,0,0,0.55);
}
.model-card:hover::after { opacity: 1; }
.model-card-media {
    position: relative;
    height: 215px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 60%, rgba(255,183,0,0.12), transparent 48%),
        repeating-linear-gradient(45deg, #050505, #050505 10px, #080808 10px, #080808 20px);
    border-bottom: 1px solid #151515;
}
.model-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.12) 45%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
}
.model-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.03);
    filter: contrast(1.04) saturate(1.04);
    transition: transform 0.45s ease, filter 0.45s ease;
}
.model-card:hover .model-card-img {
    transform: scale(1.11);
    filter: contrast(1.08) saturate(1.12);
}
.model-card-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #242424;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 2.5px;
}
.model-card-category,
.model-card-id {
    position: absolute;
    z-index: 2;
    top: 16px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.model-card-category {
    left: 16px;
    color: #ffb700;
    border: 1px solid #ffb70055;
    background: rgba(0,0,0,0.58);
    padding: 7px 11px;
}
.model-card-id {
    right: 16px;
    color: #fff;
    border: 1px solid #ffffff22;
    background: rgba(0,0,0,0.45);
    padding: 7px 10px;
}
.model-card-electric .model-card-category {
    color: #00b4ff;
    border-color: #00b4ff55;
}
.model-card-classic .model-card-category {
    color: #c8a830;
    border-color: #c8a83055;
}
.model-card-suv .model-card-category {
    color: #fff;
    border-color: #ffffff33;
}
.model-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}
.model-card-year {
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2.4px;
    color: #555;
    margin-bottom: 8px;
}
.model-card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.42rem;
    line-height: 1.05;
    font-style: italic;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.model-card-hp {
    font-size: 0.74rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 22px;
}
.model-card-hp span {
    color: #e5e5e5;
    font-weight: 700;
}
.model-card-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #111;
}
.model-card-price {
    font-size: 0.9rem;
    font-weight: 800;
    color: #ffb700;
    margin: 0;
}
.model-card-price small {
    font-size: 0.65rem;
    font-weight: 400;
    color: #555;
    margin-left: 4px;
}
.model-card-open {
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 1.6px;
    color: #fff;
    white-space: nowrap;
    opacity: 0.6;
    transition: opacity 0.25s ease, color 0.25s ease;
}
.model-card:hover .model-card-open {
    opacity: 1;
    color: #ffb700;
}
.models-empty-state {
    border: 1px dashed #222;
    color: #555;
    padding: 38px;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
@media (max-width: 991px) {
    .models-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 650px) {
    .models-header { flex-direction: column; align-items: flex-start; gap: 18px; }
    .models-strip { grid-template-columns: 1fr; }
    .model-card { min-height: 360px; }
    .model-card-media { height: 205px; }
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 100px 5%;
    background-color: #000;
    border-top: 1px solid #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.cta-banner-text .eyebrow {
    font-size: 0.7rem;
    color: #555;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.cta-banner-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-style: italic;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 20px;
}
.cta-banner-heading .gold { color: #ffb700; }
.cta-banner-sub {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.7;
    max-width: 460px;
}
.cta-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}
.btn-cta-primary {
    background-color: #ffb700;
    color: #000;
    border: none;
    padding: 18px 45px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: background-color 0.2s;
}
.btn-cta-primary:hover { background-color: #e6a500; }
.btn-cta-secondary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #222;
    padding: 18px 45px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: border-color 0.2s;
}
.btn-cta-secondary:hover { border-color: #555; }

/* ── Sign Up modal ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 999;
    align-items: center;
    justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: #070707;
    border: 1px solid #1c1c1c;
    padding: 50px 45px;
    width: 100%;
    max-width: 460px;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 18px; right: 22px;
    background: none;
    border: none;
    color: #555;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover { color: #fff; }
.modal-eyebrow {
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.modal-title .gold { color: #ffb700; }
.signup-form { display: flex; flex-direction: column; gap: 14px; }
.signup-form input {
    background: transparent;
    border: 1px solid #222;
    color: #fff;
    padding: 14px 16px;
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}
.signup-form input:focus { border-color: #ffb700; }
.signup-form input::placeholder { color: #444; }
.btn-register {
    background: #ffb700;
    color: #000;
    border: none;
    padding: 16px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 6px;
    transition: background-color 0.2s;
}
.btn-register:hover { background: #e6a500; }
.modal-signin-link {
    text-align: center;
    font-size: 0.78rem;
    color: #444;
    margin-top: 18px;
}
.modal-signin-link a {
    color: #ffb700;
    text-decoration: none;
    font-weight: 700;
}
.modal-signin-link a:hover { text-decoration: underline; }
.modal-alert {
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.modal-alert.error {
    background: #1a0000;
    border: 1px solid #3e0000;
    color: #ff6b6b;
}
.modal-alert.success {
    background: #001a00;
    border: 1px solid #004400;
    color: #66ff88;
}
    
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body { background: #000; color: #fff; font-family: 'Montserrat', sans-serif; }


        /* BACK */
        .back-link { display:inline-flex; align-items:center; gap:8px; color:#555; font-size:0.65rem; letter-spacing:2px; font-weight:700; text-decoration:none; padding:20px 40px 0; transition:color 0.2s; }
        .back-link:hover { color:#fff; }
        .back-link:hover svg { transform:translateX(-3px); }
        .back-link svg { transition:transform 0.2s; }

        /* LAYOUT */
        .detail-wrap { display:grid; grid-template-columns:360px 1fr 260px; gap:0; padding:24px 40px 0; }

        /* LEFT */
.left-panel { 
    padding: 0 32px 0 0; 
    display: flex; 
    flex-direction: column; 
    gap: 18px; 
}
.car-year-label { 
    font-size: 0.62rem; 
    color: #555; 
    letter-spacing: 3px; 
    font-weight: 600; 
}
.car-title { 
    font-family: 'Oswald', sans-serif; 
    font-size: 2.4rem; 
    font-weight: 700; 
    font-style: italic; 
    line-height: 1.05; 
    color: #fff; 
    margin: 6px 0 14px; 
}
.cat-tag { 
    display: inline-block; 
    font-size: 0.58rem; 
    font-weight: 800; 
    letter-spacing: 1.5px; 
    padding: 5px 12px; 
    /* Menggunakan CSS Variable dari HTML */
    border: 1px solid var(--tag-border, #ccc); 
    color: var(--tag-color, #fff); 
}
.car-desc { 
    font-size: 0.73rem; 
    color: #666; 
    line-height: 1.8; 
    margin-top: 14px; 
}
.quick-specs { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 1px; 
    background: #111; 
    border: 1px solid #111; 
}
.qs-item { 
    background: #050505; 
    padding: 12px 14px; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
}
.qs-icon { 
    color: #ffb700; 
    flex-shrink: 0; 
}
.qs-val { 
    font-size: 0.82rem; 
    font-weight: 800; 
    color: #fff; 
    display: block; 
}
.qs-label { 
    font-size: 0.54rem; 
    color: #444; 
    letter-spacing: 1.5px; 
    display: block; 
    margin-top: 2px; 
}
.price-section { }
.price-from-label { 
    font-size: 0.58rem; 
    color: #555; 
    letter-spacing: 2px; 
}
.price-big { 
    font-family: 'Oswald', sans-serif; 
    font-size: 2rem; 
    font-weight: 700; 
    color: #ffb700; 
    margin-top: 4px; 
}
.price-big span { 
    font-size: 0.72rem; 
    color: #555; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
}

/* CENTER */
.center-panel { 
    display: flex; 
    flex-direction: column; 
}
.main-img-wrap { 
    position: relative; 
    background: #050505; 
    border: 1px solid #111; 
    overflow: hidden; 
    aspect-ratio: 16/10; 
}
.main-img-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block; 
    transition: opacity 0.3s; 
}
.no-img-center { 
    width: 100%; 
    height: 100%; 
    min-height: 280px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #1e1e1e; 
    font-size: 0.65rem; 
    letter-spacing: 3px; 
    font-weight: 700; 
    background: repeating-linear-gradient(45deg, #050505, #050505 10px, #070707 10px, #070707 20px); 
}
.status-overlay { 
    position: absolute; 
    top: 16px; 
    left: 16px; 
    font-size: 0.6rem; 
    font-weight: 800; 
    letter-spacing: 1.5px; 
    padding: 5px 12px; 
    background: #0a1a0a; 
    /* Menggunakan CSS Variable untuk warna dan border */
    color: var(--st-color, #fff); 
    border: 1px solid var(--st-border-color, #fff); 
}

/* INFO BAR */
.info-bar { 
    display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    border: 1px solid #111; 
    border-top: none; 
    background: #050505; 
}
.info-bar-item { 
    padding: 12px 14px; 
    border-right: 1px solid #111; 
}
.info-bar-item:last-child { 
    border-right: none; 
}
.ib-label { 
    font-size: 0.54rem; 
    color: #444; 
    letter-spacing: 1.5px; 
    display: block; 
    margin-bottom: 4px; 
}
.ib-val { 
    font-size: 0.72rem; 
    font-weight: 700; 
    color: #ccc; 
    display: flex; 
    align-items: center; 
    gap: 5px; 
}
.ib-val svg { 
    color: #ffb700; 
    flex-shrink: 0; 
}

        /* TABS */
        .tabs-section { margin-top:22px; }
        .tabs-nav { display:flex; border-bottom:1px solid #111; }
        .tab-btn { background:none; border:none; color:#444; font-family:'Montserrat',sans-serif; font-size:0.63rem; font-weight:700; letter-spacing:1.5px; padding:11px 18px; cursor:pointer; position:relative; transition:color 0.2s; }
        .tab-btn.active { color:#fff; }
        .tab-btn.active::after { content:''; position:absolute; bottom:-1px; left:0; right:0; height:2px; background:#ffb700; }
        .tab-btn:hover { color:#ccc; }
        .tab-content { padding:20px 0; display:none; }
        .tab-content.active { display:block; }
        .overview-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
        .overview-desc { font-size:0.73rem; color:#666; line-height:1.8; }
        .feature-list { list-style:none; display:flex; flex-direction:column; gap:9px; }
        .feature-list li { display:flex; align-items:center; gap:9px; font-size:0.7rem; color:#888; }
        .feature-list li::before { content:''; width:16px; height:16px; border-radius:50%; border:1px solid #ffb70044; background:#ffb70010 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ffb700' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center; flex-shrink:0; }
        .specs-table { width:100%; border-collapse:collapse; }
        .specs-table tr { border-bottom:1px solid #0e0e0e; }
        .specs-table td { padding:10px 0; font-size:0.7rem; }
        .specs-table td:first-child { color:#555; width:45%; }
        .specs-table td:last-child { color:#ccc; font-weight:600; }

        /* RIGHT PANEL */
        .right-panel { padding:0 0 0 22px; display:flex; flex-direction:column; gap:10px; }

        /* THUMBNAIL STRIP — foto dari DB */
        .thumb-strip { display:flex; flex-direction:column; gap:6px; }
        .thumb { border:1px solid #151515; overflow:hidden; aspect-ratio:16/10; background:#050505; cursor:pointer; transition:border-color 0.2s; flex-shrink:0; }
        .thumb.active-thumb { border-color:#ffb700; }
        .thumb:hover { border-color:#333; }
        .thumb img { width:100%; height:100%; object-fit:cover; display:block; }
        .thumb-placeholder { width:100%; height:100%; min-height:52px; display:flex; align-items:center; justify-content:center; color:#1a1a1a; font-size:0.5rem; letter-spacing:2px; background:repeating-linear-gradient(45deg,#050505,#050505 8px,#070707 8px,#070707 16px); }
        .no-photos-msg { font-size:0.58rem; color:#333; letter-spacing:1.5px; text-align:center; padding:12px; border:1px dashed #1a1a1a; }

        /* BOOKING BOX */
        .booking-box { background:#050505; border:1px solid #151515; padding:22px; }
        .booking-title { font-family:'Oswald',sans-serif; font-size:1.05rem; font-weight:700; letter-spacing:1px; margin-bottom:18px; }
        .price-day-row { display:flex; flex-direction:column; margin-bottom:18px; padding-bottom:18px; border-bottom:1px solid #111; }
        .price-day-label { font-size:0.56rem; color:#555; letter-spacing:2px; }
        .price-day-amt { font-family:'Oswald',sans-serif; font-size:1.6rem; font-weight:700; color:#ffb700; margin-top:3px; }
        .price-day-amt span { font-size:0.68rem; color:#555; font-family:'Montserrat',sans-serif; font-weight:600; }
        .btn-book-main { display:block; width:100%; background:#ffb700; color:#000; border:none; font-family:'Montserrat',sans-serif; font-size:0.72rem; font-weight:800; letter-spacing:2px; padding:14px; cursor:pointer; transition:background 0.2s; text-align:center; text-decoration:none; margin-bottom:10px; }
        .btn-book-main:hover { background:#ffc933; }
        .btn-book-main.unavailable { background:#111; color:#333; cursor:not-allowed; pointer-events:none; }
        .btn-fav { display:flex; align-items:center; justify-content:center; gap:8px; width:100%; background:none; border:1px solid #1a1a1a; color:#555; font-family:'Montserrat',sans-serif; font-size:0.63rem; font-weight:700; letter-spacing:1.5px; padding:11px; cursor:pointer; transition:all 0.2s; }
        .btn-fav:hover { border-color:#333; color:#ccc; }

        /* TRUST BAR */
        .trust-bar { display:grid; grid-template-columns:repeat(4,1fr); background:#050505; border:1px solid #111; margin:36px 40px 0; }
        .trust-item { display:flex; align-items:center; gap:14px; padding:18px 22px; border-right:1px solid #111; }
        .trust-item:last-child { border-right:none; }
        .trust-icon { color:#ffb700; flex-shrink:0; }
        .trust-title { font-size:0.65rem; font-weight:800; letter-spacing:1px; color:#fff; display:block; }
        .trust-sub { font-size:0.58rem; color:#555; margin-top:2px; display:block; }

        .bottom-pad { height:40px; }