/* =========================
   GLOBAL
========================= */

:root {
    --black: #0a0a0a;
    --dark: #121212;
    --gray: #6b6b6b;
    --light-gray: #f3f3f3;
    --white: #ffffff;
    --border: #e5e5e5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--white);
    color: var(--black);
}

a {
    text-decoration: none;
}

section {
    padding: 120px 0;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    padding: 25px 0;
    transition: 0.4s ease;
    z-index: 999;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
}

.logo {
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo span {
    color: #bdbdbd;
}

.nav-link {
    color: var(--white) !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 12px;
    transition: 0.3s;
}

.nav-link:hover {
    opacity: 0.6;
}

.btn-test-drive {
    color: var(--black);
    background: var(--white);
    padding: 13px 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-test-drive:hover {
    background: #dcdcdc;
    color: var(--black);
}

.navbar-toggler {
    border: none;
    color: white;
    font-size: 28px;
}


/* =========================
   HERO PREMIUM
========================= */

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    background: #080808;
    color: #ffffff;
}


/* BACKGROUND */

.hero-background {
    position: absolute;
    inset: 0;

    background-image:
        url("../assets/images/hero-car.jpg");

    background-size: cover;
    background-position: center;

    transform: scale(1.05);

    animation:
        heroZoom 12s ease-out forwards;
}


/* CINEMATIC OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.70) 35%,
            rgba(0, 0, 0, 0.20) 70%,
            rgba(0, 0, 0, 0.35) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.85),
            transparent 45%
        );

    z-index: 1;
}


/* MODERN GRID */

.hero-grid {
    position: absolute;
    inset: 0;

    z-index: 2;

    opacity: 0.12;

    background-image:

        linear-gradient(
            rgba(255,255,255,0.15) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.15) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black
        );
}


/* MAIN CONTAINER */

.hero-container {
    position: relative;
    z-index: 5;

    height: 100%;
    display: flex;
    align-items: center;
}


.hero-content {
    max-width: 850px;
    padding-top: 80px;
}


/* LABEL */

.hero-label {
    display: flex;
    align-items: center;
    gap: 15px;

    color: #cfcfcf;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 30px;
}

.label-line {
    width: 45px;
    height: 1px;

    background: #ffffff;
}


/* TITLE */

.hero-title {
    font-size: clamp(70px, 9vw, 150px);

    font-weight: 800;

    line-height: 0.85;

    letter-spacing: -6px;

    margin-bottom: 35px;
}


.hero-line {
    display: block;
}


.hero-title strong {
    color: #9f9f9f;
    font-weight: 800;
}


/* DESCRIPTION */

.hero-description {
    max-width: 520px;

    color: #c7c7c7;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 35px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


.hero-buttons .btn-primary-custom,
.hero-buttons .btn-outline-custom {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    min-height: 58px;

    padding: 0 28px;

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 700;
}


.hero-buttons .btn-primary-custom {
    background: #ffffff;
    color: #000000;
}


.hero-buttons .btn-primary-custom:hover {
    background: #d6d6d6;

    transform: translateY(-2px);
}


.hero-buttons .btn-outline-custom {
    background: rgba(0,0,0,0.15);

    border: 1px solid rgba(255,255,255,0.4);

    backdrop-filter: blur(10px);
}


.hero-buttons .btn-outline-custom:hover {
    background: #ffffff;
    color: #000000;
}


.play-icon {
    width: 25px;
    height: 25px;

    border: 1px solid currentColor;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 9px;
}


/* =========================
   HERO CAR INFO
========================= */

.hero-car-info {
    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    z-index: 5;

    border-top:
        1px solid rgba(255,255,255,0.15);

    background:
        rgba(0,0,0,0.30);

    backdrop-filter:
        blur(12px);
}


.hero-info-wrapper {
    min-height: 120px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.hero-model span,
.hero-spec span {
    display: block;

    font-size: 9px;

    color: #a8a8a8;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.hero-model h3 {
    margin: 0;

    font-size: 22px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* SPECS */

.hero-specs {
    display: flex;

    gap: 60px;
}


.hero-spec strong {
    font-size: 14px;

    font-weight: 600;
}


/* VIEW MODEL */

.hero-arrow {
    color: #ffffff;

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;

    transition: 0.3s;
}


.hero-arrow i {
    font-size: 20px;

    transition: 0.3s;
}


.hero-arrow:hover {
    color: #ffffff;
}


.hero-arrow:hover i {
    transform: translateX(6px);
}


/* =========================
   SCROLL INDICATOR
========================= */

.scroll-indicator {
    position: absolute;

    bottom: 145px;

    right: 45px;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 15px;

    transform: rotate(90deg);

    transform-origin: right center;
}


.scroll-text {
    font-size: 9px;

    letter-spacing: 3px;

    color: #bbbbbb;
}


.scroll-line {
    width: 80px;

    height: 1px;

    background:
        rgba(255,255,255,0.3);

    position: relative;

    overflow: hidden;
}


.scroll-line span {
    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: #ffffff;

    animation:
        scrollAnimation 2s infinite;
}


/* =========================
   HERO COUNTER
========================= */

.hero-counter {
    position: absolute;

    left: 45px;

    bottom: 150px;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 10px;

    color: #c4c4c4;

    letter-spacing: 1px;
}


.counter-line {
    width: 50px;

    height: 1px;

    background:
        rgba(255,255,255,0.5);
}


/* =========================
   ANIMATION
========================= */

.hero-animate {
    opacity: 0;

    transform:
        translateY(30px);

    animation:
        fadeUp 1s ease forwards;
}


.delay-1 {
    animation-delay: 0.2s;
}


.delay-2 {
    animation-delay: 0.4s;
}


.delay-3 {
    animation-delay: 0.6s;
}


@keyframes fadeUp {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes heroZoom {

    from {

        transform:
            scale(1.08);

    }

    to {

        transform:
            scale(1);

    }

}


@keyframes scrollAnimation {

    0% {

        left: -100%;

    }

    100% {

        left: 100%;

    }

}


/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 991px) {

    .hero-title {

        font-size:
            clamp(60px, 11vw, 110px);

    }


    .hero-info-wrapper {

        gap: 20px;

    }


    .hero-specs {

        gap: 30px;

    }


    .scroll-indicator,
    .hero-counter {

        display: none;

    }

}


/* =========================================
   EX5 - RESPONSIVE COLOR SELECTOR
========================================= */

@media (max-width: 768px) {

    .ex5-colors-wrap {
        margin-top: 50px;
        padding-top: 40px;
    }

    .ex5-colors-header {
        align-items: flex-start;
        margin-bottom: 20px;
    }

    .ex5-color-controls {
        gap: 6px;
    }

    .ex5-color-arrow {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .ex5-color-viewport {
        width: 100%;
        overflow-x: auto;
    }

    .ex5-color-track {
        gap: 12px;
    }

    .ex5-color-card {
        width: 180px;
        min-width: 180px;
    }

    .ex5-color-image {
        height: 120px;
    }

    .ex5-color-name {
        padding: 12px;
        font-size: 10px;
    }

}


/* =========================================
   HP KECIL
========================================= */

@media (max-width: 480px) {

    .ex5-colors-wrap {
        margin-top: 40px;
        padding-top: 35px;
    }

    .ex5-colors-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .ex5-colors-header h3 {
        font-size: 20px;
    }

    .color-section-desc {
        font-size: 11px;
        line-height: 1.6;
    }

    .ex5-color-controls {
        margin-top: 0;
    }

    .ex5-color-arrow {
        width: 36px;
        height: 36px;
    }

    .ex5-color-card {
        width: 155px;
        min-width: 155px;
    }

    .ex5-color-image {
        height: 105px;
    }

    .ex5-color-name {
        padding: 10px;
        font-size: 9px;
    }

    .ex5-selected-color {
        margin-top: 14px;
        font-size: 11px;
    }

    .ex5-selected-color span {
        font-size: 9px;
    }

    .ex5-selected-color strong {
        font-size: 11px;
    }

}


/* =========================================
   HP SANGAT KECIL
========================================= */

@media (max-width: 360px) {

    .ex5-color-card {
        width: 140px;
        min-width: 140px;
    }

    .ex5-color-image {
        height: 95px;
    }

    .ex5-color-name {
        padding: 9px;
        font-size: 8px;
    }

}
/* =========================
   INTRO
========================= */

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

.intro-section h2,
.models-section h2,
.credit-section h2,
.advantages-section h2,
.contact-section h2,
.promo-section h2,
.testdrive-section h2 {
    font-size: clamp(35px, 5vw, 65px);
    font-weight: 700;
    letter-spacing: -2px;
}

.intro-text {
    margin-top: 30px;
    color: var(--gray);
    line-height: 1.9;
}


/* =========================
   EXPLORE MODELS
========================= */

.models-section {
    background: #f3f3f3;
    padding: 120px 0;
}


/* HEADER */

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    margin-bottom: 55px;
}


.section-header h2 {
    font-size: clamp(45px, 5vw, 70px);
    font-weight: 800;

    letter-spacing: -3px;

    margin: 0;

    line-height: 1;
}


.view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #111;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    padding-bottom: 8px;

    border-bottom: 1px solid #111;

    transition: 0.3s;
}


.view-all:hover {
    color: #111;
}


.view-all i {
    transition: 0.3s;
}


.view-all:hover i {
    transform: translateX(5px);
}


/* =========================
   CAR CARD
========================= */

.car-card {
    background: #ffffff;

    height: 100%;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    overflow: hidden;
}


.car-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.10);
}


/* IMAGE */

.car-image {
    position: relative;

    height: 230px;

    overflow: hidden;

    background: #e5e5e5;
}


.car-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.car-card:hover .car-image img {
    transform: scale(1.06);
}


/* BADGE */

.car-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    background: #111;
    color: #fff;

    padding: 8px 13px;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* CONTENT */

.car-content {
    padding: 22px;
}


/* INFO */

.car-info {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    margin-bottom: 30px;
}


.car-info h3 {
    font-size: 19px;

    font-weight: 800;

    letter-spacing: 0.5px;

    margin-bottom: 6px;
}


.car-info p {
    margin: 0;

    color: #777;

    font-size: 12px;
}


.car-info i {
    font-size: 24px;

    transition: 0.3s;
}


.car-card:hover .car-info i {
    transform:
        translate(4px, -4px);
}


/* PRICE */

.car-price {
    margin-bottom: 20px;
}


.car-price span {
    display: block;

    color: #888;

    font-size: 9px;

    letter-spacing: 0.5px;

    margin-bottom: 5px;
}


.car-price strong {
    font-size: 15px;

    font-weight: 700;
}


/* BUTTON */

.car-button {
    display: block;

    width: 100%;

    padding: 14px;

    border: 1px solid #222;

    color: #111;

    text-align: center;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;

    transition: 0.3s;
}


.car-button:hover {
    background: #111;

    color: #fff;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .models-section {
        padding: 80px 0;
    }


    .section-header {
        display: block;
    }


    .section-header h2 {
        font-size: 45px;
    }


    .view-all {
        margin-top: 25px;
    }


    .car-image {
        height: 250px;
    }

}


@media (max-width: 576px) {

    .section-header h2 {
        font-size: 38px;

        letter-spacing: -2px;
    }


    .car-image {
        height: 220px;
    }


    .car-content {
        padding: 20px;
    }

}

/* =========================
   PROMO
========================= */

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

.promo-box {
    background: var(--black);
    color: var(--white);
    padding: 80px;
}

.promo-box h2 {
    margin-bottom: 25px;
}

.promo-box p {
    color: #bdbdbd;
    line-height: 1.8;
}

.promo-features {
    margin: 30px 0;
}

.promo-features div {
    margin-bottom: 15px;
    font-size: 14px;
}

.promo-features i {
    margin-right: 10px;
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.promo-number {
    text-align: center;
}

.promo-number span {
    font-size: 12px;
    letter-spacing: 3px;
}

.promo-number strong {
    display: block;
    font-size: 100px;
    font-weight: 800;
}

.promo-number p {
    letter-spacing: 2px;
}


/* =========================
   CREDIT
========================= */

.credit-section {
    background: var(--light-gray);
}

.credit-description {
    color: var(--gray);
    margin-top: 20px;
}

.credit-card {
    margin-top: 50px;
    background: var(--white);
    padding: 50px;
}

.credit-card label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 10px;
}

.credit-card input,
.credit-card select,
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    padding: 16px;
    font-family: inherit;
    outline: none;
}

.credit-card input:focus,
.credit-card select:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--black);
}

.calculate-btn,
.submit-btn {
    width: 100%;
    border: none;

    background: var(--black);
    color: var(--white);

    padding: 17px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: 0.3s;
}

.calculate-btn:hover,
.submit-btn:hover {
    background: #333;
}

.credit-result {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.credit-result span {
    font-size: 10px;
    letter-spacing: 1px;
}

.credit-result h3 {
    font-size: 45px;
    margin-top: 15px;
}

.credit-result p {
    font-size: 10px;
    color: var(--gray);
}


/* =========================
   ADVANTAGES
========================= */

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

.advantage-card {
    border-top: 1px solid var(--black);
    padding-top: 30px;
}

.advantage-card i {
    font-size: 35px;
}

.advantage-card h3 {
    margin-top: 25px;
    font-size: 17px;
    font-weight: 700;
}

.advantage-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-top: 15px;
}


/* =========================
   TEST DRIVE
========================= */

.testdrive-section {
    position: relative;

    background:
        url("../assets/images/testdrive.jpg")
        center/cover no-repeat;

    color: var(--white);

    padding: 150px 0;
}

.testdrive-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

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

.testdrive-content p:not(.section-subtitle) {
    color: #ccc;
    margin: 25px 0 35px;
}


/* =========================
   CONTACT
========================= */

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

.contact-description {
    color: var(--gray);
    line-height: 1.8;
    margin-top: 25px;
}

.contact-form {
    background: var(--light-gray);
    padding: 40px;
}

.contact-form textarea {
    resize: none;
}


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

footer {
    background: var(--black);
    color: var(--white);
    padding: 70px 0 30px;
}

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

.footer-logo {
    font-size: 25px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo span {
    color: #aaa;
}

.footer-top p {
    color: #888;
    margin-top: 10px;
    font-size: 13px;
}

.footer-social a {
    color: var(--white);
    font-size: 20px;
    margin-left: 15px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 25px;

    display: flex;
    justify-content: space-between;

    color: #777;
    font-size: 11px;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp-button {
    position: fixed;

    bottom: 25px;
    right: 25px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--black);
    color: var(--white);

    border-radius: 50%;

    font-size: 25px;

    z-index: 999;

    transition: 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: var(--white);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .navbar {
        background: var(--black);
    }

    .navbar-collapse {
        background: var(--black);
        padding: 25px;
        margin-top: 15px;
    }

    .nav-link {
        margin: 12px 0;
    }

    .btn-test-drive {
        display: inline-block;
        margin-top: 15px;
    }

    .section-header {
        display: block;
    }

    .view-all {
        display: inline-block;
        margin-top: 20px;
    }

    .promo-box {
        padding: 50px 30px;
    }

    .promo-number {
        margin-top: 50px;
    }

}


@media (max-width: 576px) {

    section {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        text-align: center;
    }

    .promo-number strong {
        font-size: 70px;
    }

    .credit-card {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-top,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-social a {
        margin-left: 0;
        margin-right: 15px;
    }

}

/* =========================
   DETAIL CAR PAGE
========================= */

.navbar-detail {
    position: relative;
    background: #111;
}


/* HERO */

.car-detail-hero {
    background: #f3f3f3;
    padding: 100px 0;
}


.detail-hero-content h1 {
    font-size: clamp(65px, 7vw, 110px);

    font-weight: 800;

    line-height: 0.85;

    letter-spacing: -5px;

    margin-bottom: 30px;
}


.detail-hero-content h1 span {
    color: #777;
}


.detail-description {
    color: #666;

    line-height: 1.9;

    max-width: 450px;

    margin-bottom: 35px;
}


/* PRICE */

.detail-price {
    margin-bottom: 35px;
}


.detail-price span {
    display: block;

    font-size: 9px;

    color: #888;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}


.detail-price strong {
    font-size: 25px;

    font-weight: 700;
}


/* BUTTONS */

.detail-buttons {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;
}


.btn-detail-primary,
.btn-detail-outline {
    padding: 16px 24px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.3s;
}


.btn-detail-primary {
    background: #111;

    color: #fff;
}


.btn-detail-primary:hover {
    background: #333;

    color: #fff;
}


.btn-detail-outline {
    border: 1px solid #111;

    color: #111;
}


.btn-detail-outline:hover {
    background: #111;

    color: #fff;
}


/* HERO IMAGE */

.detail-hero-image {
    overflow: hidden;
}


.detail-hero-image img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    transition: 0.6s;
}


.detail-hero-image:hover img {
    transform: scale(1.04);
}


/* QUICK SPECS */

.quick-specs {
    background: #111;

    color: #fff;

    padding: 55px 0;
}


.quick-spec {
    border-right:
        1px solid #333;
}


.quick-spec span {
    display: block;

    color: #888;

    font-size: 9px;

    letter-spacing: 1.5px;

    margin-bottom: 10px;
}


.quick-spec strong {
    font-size: 16px;

    font-weight: 600;
}


/* DETAIL INTRO */

.detail-intro {
    background: #fff;

    padding: 130px 0;
}


.detail-intro h2 {
    font-size: clamp(45px, 6vw, 80px);

    font-weight: 800;

    letter-spacing: -4px;

    line-height: 0.9;
}


.detail-intro p:not(.section-subtitle) {
    max-width: 700px;

    margin: 35px auto 0;

    color: #666;

    line-height: 2;
}


/* SPECIFICATION */

.specification-section {
    background: #f3f3f3;
}


.specification-section h2 {
    font-size: 55px;

    font-weight: 800;

    letter-spacing: -3px;
}


.specification-table {
    border-top:
        1px solid #ccc;
}


.spec-row {
    display: flex;

    justify-content: space-between;

    padding: 25px 0;

    border-bottom:
        1px solid #ccc;
}


.spec-row span {
    color: #777;

    font-size: 11px;

    letter-spacing: 1px;
}


.spec-row strong {
    font-size: 14px;
}


/* FEATURES */

.detail-features {
    background: #fff;
}


.detail-features h2 {
    font-size: clamp(45px, 5vw, 70px);

    font-weight: 800;

    line-height: 0.9;

    letter-spacing: -3px;
}


.feature-list {
    border-top:
        1px solid #ddd;
}


.feature-item {
    display: flex;

    gap: 30px;

    padding: 30px 0;

    border-bottom:
        1px solid #ddd;
}


.feature-item > span {
    color: #999;

    font-size: 12px;
}


.feature-item h3 {
    font-size: 16px;

    font-weight: 700;
}


.feature-item p {
    color: #777;

    line-height: 1.8;

    margin-top: 10px;
}


/* BOOKING */

.booking-section {
    background: #f3f3f3;
}


.booking-box {
    background: #111;

    color: #fff;

    padding: 70px;
}


.booking-box h2 {
    font-size: clamp(40px, 5vw, 65px);

    font-weight: 800;

    line-height: 0.9;

    letter-spacing: -3px;
}


.booking-box p:not(.section-subtitle) {
    color: #aaa;

    margin-top: 25px;

    line-height: 1.8;
}


/* BOOKING FORM */

.booking-form {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.booking-form input {
    border: 1px solid #444;

    background: transparent;

    color: #fff;

    padding: 16px;

    outline: none;
}


.booking-form input:focus {
    border-color: #fff;
}


.booking-form button {
    border: none;

    background: #fff;

    color: #111;

    padding: 17px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.3s;
}


.booking-form button:hover {
    background: #ddd;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .car-detail-hero {
        padding: 70px 0;
    }


    .detail-hero-image {
        margin-top: 50px;
    }


    .quick-spec {
        border-right: none;
    }


    .booking-box {
        padding: 40px;
    }


    .booking-form {
        margin-top: 40px;
    }

}


@media (max-width: 576px) {

    .detail-hero-content h1 {
        font-size: 65px;
    }


    .detail-buttons {
        flex-direction: column;
    }


    .btn-detail-primary,
    .btn-detail-outline {
        text-align: center;
    }


    .detail-hero-image img {
        height: 300px;
    }


    .spec-row {
        gap: 30px;
    }


    .booking-box {
        padding: 30px 20px;
    }

}

/* =========================
   COOLRAY SALES CTA
========================= */

.coolray-price-section {
    background: #f3f3f3;
    padding: 100px 0;
}


.coolray-price-box {
    background: #111;

    color: #fff;

    padding: 70px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 50px;
}


.coolray-price-box h2 {
    font-size: clamp(40px, 5vw, 70px);

    font-weight: 800;

    line-height: 0.9;

    letter-spacing: -3px;

    margin: 0;
}


.coolray-price-action {
    max-width: 400px;
}


.coolray-price-action p {
    color: #aaa;

    line-height: 1.8;

    margin-bottom: 25px;
}


.coolray-sales-btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    background: #fff;

    color: #111;

    padding: 16px 24px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.3s;
}


.coolray-sales-btn:hover {
    background: #ddd;

    color: #111;

}


@media (max-width: 991px) {

    .coolray-price-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 50px 40px;
    }

}


@media (max-width: 576px) {

    .coolray-price-section {
        padding: 70px 0;
    }


    .coolray-price-box {
        padding: 40px 25px;
    }


    .coolray-sales-btn {
        width: 100%;

        justify-content: center;
    }

}

/* =========================================
   CREDIT SIMULATION
========================================= */

.credit-section {
    padding: 120px 0;
    background: #f1f1f1;
}


.credit-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
}


.credit-header h2 {
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}


.credit-header-text {
    max-width: 420px;
    margin: 0;
    line-height: 1.8;
    color: #666;
}


.credit-form-box {
    background: #ffffff;
    padding: 45px;
    height: 100%;
}


.credit-group {
    margin-bottom: 30px;
}


.credit-group label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}


.credit-group select {
    width: 100%;
    border: 1px solid #dcdcdc;
    padding: 16px 18px;
    font-size: 15px;
    background: white;
    outline: none;
}


.credit-price {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 0;

    margin-bottom: 30px;

    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}


.credit-price span {
    font-size: 12px;
    letter-spacing: 1px;
}


.credit-price strong {
    font-size: 20px;
}


.credit-note {
    font-size: 12px;
    line-height: 1.7;
    color: #777;

    margin-top: 20px;
    margin-bottom: 0;
}


/* RESULT BOX */

.credit-result-box {
    background: #161616;
    color: white;

    padding: 50px;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.credit-result-box > p {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #aaa;
}


.credit-result-box h3 {
    font-size: 46px;
    font-weight: 800;
    margin: 0;
}


.credit-result-box > span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #aaa;
}


.credit-result-line {
    width: 100%;
    height: 1px;

    background: #444;

    margin: 35px 0;
}


.credit-summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.credit-summary div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.credit-summary span {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: #999;
}


.credit-summary strong {
    font-size: 16px;
}


.credit-whatsapp-btn {
    width: 100%;

    margin-top: 40px;

    border: none;

    padding: 17px;

    background: white;
    color: #111;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s;
}


.credit-whatsapp-btn:hover {
    background: #dddddd;
}


@media (max-width: 991px) {

    .credit-header {
        display: block;
    }


    .credit-header-text {
        margin-top: 25px;
    }


    .credit-header h2 {
        font-size: 45px;
    }

}


@media (max-width: 576px) {

    .credit-section {
        padding: 80px 0;
    }


    .credit-form-box,
    .credit-result-box {
        padding: 28px;
    }


    .credit-header h2 {
        font-size: 38px;
    }


    .credit-result-box h3 {
        font-size: 34px;
    }


    .credit-summary {
        flex-direction: column;
    }

}

/* =========================
   SOCIAL MEDIA
========================= */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border: 1px solid #333;

    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
}

.social-links i {
    font-size: 18px;
}
/* =========================
   EX2 COLOR SELECTOR
========================= */

.ex2-colors-wrap {
    margin-top: 75px;
    padding-top: 55px;
    border-top: 1px solid #d6d6d6;
}

.ex2-colors-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 30px;
}

.ex2-colors-header h3 {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.ex2-color-controls {
    display: flex;
    gap: 10px;
}

.ex2-color-arrow {
    width: 46px;
    height: 46px;
    border: 1px solid #cfcfcf;
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
}

.ex2-color-arrow:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}

.ex2-color-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.ex2-color-viewport::-webkit-scrollbar {
    display: none;
}

.ex2-color-track {
    display: flex;
    gap: 18px;
    width: max-content;
}

.ex2-color-card {
    width: 220px;
    min-width: 220px;
    padding: 0;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: all 0.25s ease;
}

.ex2-color-card:hover {
    transform: translateY(-3px);
}

.ex2-color-card.active {
    border: 2px solid #111;
}

.ex2-color-image {
    display: block;
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #fff;
}

.ex2-color-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.ex2-color-name {
    display: block;
    padding: 14px 15px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ex2-selected-color {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
}

.ex2-selected-color span {
    font-size: 11px;
    letter-spacing: 1px;
    color: #888;
}

.ex2-selected-color strong {
    font-weight: 700;
}
/* =====================================================
   EX5 COLOR SELECTION
===================================================== */

.ex5-colors-wrap {
    margin-top: 75px;
    border-top: 1px solid #ccc;
    padding-top: 55px;
}


.ex5-colors-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 28px;
}


.ex5-colors-header h3 {
    margin-bottom: 8px;
}


.ex5-color-controls {
    display: flex;
    gap: 8px;
}


.ex5-color-arrow {
    width: 44px;
    height: 44px;

    border: 1px solid #ccc;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    cursor: pointer;

    transition: all 0.2s ease;
}


.ex5-color-arrow:hover {
    background: #111;
    color: #fff;
    border-color: #111;
}


/* VIEWPORT */

.ex5-color-viewport {
    width: 100%;

    overflow-x: auto;

    scrollbar-width: none;

    scroll-behavior: smooth;

    padding: 2px;
}


.ex5-color-viewport::-webkit-scrollbar {
    display: none;
}


/* TRACK */

.ex5-color-track {
    display: flex;

    gap: 18px;

    width: max-content;
}


/* CARD */

.ex5-color-card {
    width: 220px;
    min-width: 220px;

    padding: 0;

    border: 1px solid #ddd;

    background: #fff;

    cursor: pointer;

    text-align: left;

    transition: all 0.2s ease;

    overflow: hidden;
}


.ex5-color-card:hover {
    border-color: #999;
}


.ex5-color-card.active {
    border: 2px solid #111;
}


/* IMAGE */

.ex5-color-image {
    display: block;

    width: 100%;
    height: 150px;

    overflow: hidden;

    background: #fff;
}


.ex5-color-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* NAME */

.ex5-color-name {
    display: block;

    padding: 15px;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    color: #111;
}


/* SELECTED COLOR */

.ex5-selected-color {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 17px;

    font-size: 12px;
}


.ex5-selected-color span {
    color: #777;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;
}


.ex5-selected-color strong {
    font-size: 12px;

    font-weight: 700;

    color: #111;
}


/* MOBILE */

@media (max-width: 768px) {

    .ex5-colors-wrap {
        margin-top: 55px;
        padding-top: 40px;
    }


    .ex5-colors-header {
        align-items: flex-start;
    }


    .ex5-color-card {
        width: 250px;
        min-width: 250px;
    }


    .ex5-color-image {
        height: 165px;
    }

}


@media (max-width: 480px) {

    .ex5-colors-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .ex5-color-controls {
        margin-top: 5px;
    }


    .ex5-color-card {
        width: calc(100vw - 60px);

        min-width: calc(100vw - 60px);
    }

}
/* =====================================================
   EX5 COLOR SELECTOR - MOBILE FIX
===================================================== */

@media (max-width: 768px) {

    .ex5-color-viewport {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .ex5-color-track {
        display: flex;
        width: max-content;
        gap: 12px;
    }

    .ex5-color-card {
        flex: 0 0 180px !important;
        width: 180px !important;
        min-width: 180px !important;
        max-width: 180px !important;

        height: auto !important;

        padding: 0 !important;
        margin: 0 !important;

        overflow: hidden !important;
    }

    .ex5-color-image {
        display: block !important;

        width: 180px !important;
        max-width: 180px !important;

        height: 115px !important;
        max-height: 115px !important;

        overflow: hidden !important;

        background: #fff;
    }

    .ex5-color-image img {
        display: block !important;

        width: 100% !important;
        max-width: 100% !important;

        height: 100% !important;
        max-height: 100% !important;

        object-fit: contain !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .ex5-color-name {
        display: block !important;

        width: 100% !important;

        padding: 10px !important;

        font-size: 10px !important;
        line-height: 1.3 !important;

        white-space: normal;
    }

}


/* =====================================================
   EX5 - HP KECIL
===================================================== */

@media (max-width: 480px) {

    .ex5-color-card {
        flex: 0 0 155px !important;
        width: 155px !important;
        min-width: 155px !important;
        max-width: 155px !important;
    }

    .ex5-color-image {
        width: 155px !important;
        max-width: 155px !important;

        height: 100px !important;
        max-height: 100px !important;
    }

    .ex5-color-image img {
        width: 100% !important;
        max-width: 100% !important;

        height: 100% !important;
        max-height: 100% !important;
    }

}


/* =====================================================
   EX5 - HP SANGAT KECIL
===================================================== */

@media (max-width: 360px) {

    .ex5-color-card {
        flex: 0 0 140px !important;
        width: 140px !important;
        min-width: 140px !important;
        max-width: 140px !important;
    }

    .ex5-color-image {
        width: 140px !important;
        max-width: 140px !important;

        height: 90px !important;
        max-height: 90px !important;
    }

}