* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0b0b0b;
    color: white;
    scroll-behavior: smooth;
    overflow-x: hidden;
    animation: pageFade 0.8s ease;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 0, 0, 0.12), rgba(255, 0, 0, 0));
    pointer-events: none;
    z-index: -1;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    background: linear-gradient(90deg, #0c0c0c 0%, #1d0000 55%, #0a0a0a 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 70, 70, 0.3);
}

.logo-area img {
    height: 60px;
    background: white;
    padding: 5px 10px;
    border-radius: 10px;
}

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

.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s;
    position: relative;
}

nav a:hover {
    color: red;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: red;
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, #ff2b2b 0%, #9d0000 100%);
    padding: 8px 20px;
    border-radius: 20px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 8px;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
    padding: 150px 80px;
    background:
        linear-gradient(110deg, rgba(10, 10, 10, 0.86) 0%, rgba(50, 0, 0, 0.68) 45%, rgba(8, 8, 8, 0.84) 100%),
        url('https://images.pexels.com/photos/3802510/pexels-photo-3802510.jpeg?auto=compress&cs=tinysrgb&w=1800');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(40, 0, 0, 0.42) 100%);
    z-index: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 0, 0, 0.7) 50%, transparent 100%);
}

.hero h1 {
    font-size: 50px;
    animation: riseUp 0.9s ease both;
}

.hero h1 span {
    color: red;
}

.badge {
    background: #1a1a1a;
    padding: 8px 15px;
    border-radius: 20px;
    color: red;
    display: inline-block;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    margin: 20px 0;
    line-height: 1.7;
    animation: riseUp 1.1s ease both;
}

.hero-btn {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-btn a {
    margin-right: 0;
}

.info {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info span {
    display: inline-block;
    font-size: 14px;
    color: #f3f3f3;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 7px 12px;
    border-radius: 999px;
}

.hero-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-card {
    position: relative;
    width: min(560px, 100%);
    border-radius: 16px;
    padding: 10px;
    background: linear-gradient(145deg, #2a0000, #120000);
    border: 1px solid rgba(255, 35, 35, 0.35);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
    overflow: hidden;
}

.hero-slider-card::before {
    content: none;
    position: absolute;
    inset: 0;
    background: none;
    opacity: 0;
    pointer-events: none;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    padding: 0;
    background: transparent;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(22px) scale(0.98);
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: heroSlideIn 0.45s ease;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.45));
}

.hero-slide[data-model="fortuner"] img,
.hero-slide[data-model="hiace"] img {
    transform: scale(1.12);
}

.hero-slide[data-model="hiace"] img {
    transform: scale(1.22);
}

.hero-slide[data-model="zenix"] img {
    transform: scale(0.9);
}

.hero-slider-dots {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.hero-slider-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: 0.3s;
}

.hero-slider-dots button.active {
    width: 24px;
    border-radius: 999px;
    background: #ff1b1b;
}

.btn-primary {
    background: red;
    padding: 12px 25px;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-secondary {
    border: 2px solid red;
    padding: 12px 25px;
    border-radius: 25px;
    color: red;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 0, 0, 0.3);
}

/* MOBIL */
.mobil {
    padding: 100px 80px;
    background: #111;
}

.mobil h2 {
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

.note {
    margin-top: 20px;
    color: #aaa;
}

/* TENTANG */
.tentang {
    padding: 100px 80px;
    background: #0d0d0d;
}

.tentang h2 {
    color: #ff2b2b;
    margin-bottom: 24px;
    font-size: 34px;
}

.tentang-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
}

.tentang-main,
.tentang-side {
    background: #141414;
    border: 1px solid rgba(255, 45, 45, 0.24);
    border-radius: 14px;
    padding: 22px;
}

.tentang-main p {
    color: #dfdfdf;
    line-height: 1.8;
    margin-bottom: 12px;
}

.tentang-main p:last-child {
    margin-bottom: 0;
}

.tentang-side h3 {
    margin-bottom: 12px;
    color: #fff;
}

.tentang-side ul {
    padding-left: 18px;
    color: #d8d8d8;
    line-height: 1.8;
}

.syarat,
.testimoni,
.saran {
    padding: 100px 80px;
}

.syarat {
    background: #101010;
}

.testimoni {
    background: #0b0b0b;
}

.saran {
    background: #111;
}

.syarat h2,
.testimoni h2,
.saran h2 {
    color: #ff2b2b;
    margin-bottom: 24px;
    font-size: 34px;
}

.terms-grid,
.testimoni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.terms-card,
.testi-item,
.feedback-form,
.kontak-grid {
    background: #141414;
    border: 1px solid rgba(255, 45, 45, 0.28);
    border-radius: 14px;
    padding: 20px;
}

.terms-card h3 {
    margin-bottom: 12px;
    color: #fff;
}

.terms-card ul {
    padding-left: 18px;
    color: #d8d8d8;
    line-height: 1.8;
}

.testi-item p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 12px;
}

.testi-item h4 {
    color: #ff4c4c;
}

.saran-subtitle {
    color: #d3d3d3;
    margin-bottom: 16px;
}

.feedback-form {
    max-width: 860px;
}

.feedback-form .btn-primary {
    border: 0;
    cursor: pointer;
}

/* KONTAK */
.kontak {
    padding: 100px 80px;
    background: #111;
}

.kontak h2 {
    margin-bottom: 20px;
}

.kontak-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.kontak-grid {
    display: grid;
    gap: 10px;
    max-width: 100%;
}

.kontak-grid p {
    margin: 0;
    line-height: 1.6;
}

.kontak-map-card {
    background: #141414;
    border: 1px solid rgba(255, 45, 45, 0.28);
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kontak-map-card h3 {
    margin: 0;
    color: #fff;
}

.kontak-map-card iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background: black;
    font-size: 14px;
}
/* ARMADA */
.armada {
    padding: 100px 80px;
    background: #0f0f0f;
}

.armada h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 14px;
    color: red;
}

.armada-subtitle {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 40px;
    color: #d5d5d5;
    line-height: 1.7;
}

.kategori {
    margin-bottom: 70px;
}

.kategori h3 {
    margin-bottom: 30px;
    font-size: 22px;
    color: white;
    border-left: 4px solid red;
    padding-left: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 25px;
}

.item {
    background: #171717;
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    transition: 0.3s;
    border: 1px solid rgba(255, 45, 45, 0.22);
    position: relative;
    overflow: hidden;
}

.item:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 18px 35px rgba(255,0,0,0.32);
    border-color: rgba(255, 0, 0, 0.45);
}

.item h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.item p {
    color: red;
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 19px;
}

.item a {
    display: inline-block;
    padding: 8px 15px;
    background: red;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
}

.kategori small {
    color: #aaa;
}
.filter-btn {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn button {
    background: #1a1a1a;
    color: white;
    border: 1px solid rgba(255, 35, 35, 0.25);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    transform: translateY(0);
}

.filter-btn button:hover,
.filter-btn .active {
    background: linear-gradient(135deg, #ff2e2e 0%, #8a0000 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,0,0,0.35);
}

.kategori-content {
    display: none;
}

.kategori-content.active {
    display: block;
    animation: fadeTab 0.45s ease;
}

.kategori-content h3 {
    margin-bottom: 18px;
    font-size: 22px;
    color: white;
    border-left: 4px solid red;
    padding-left: 10px;
}

.kategori-content small {
    display: block;
    margin-bottom: 20px;
    color: #aaa;
}

.item-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
    background: radial-gradient(circle at center, #ff3b3b 0%, #b30000 45%, #4d0000 75%, #140000 100%);
    aspect-ratio: 4 / 3;
    padding: 8px;
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    border-radius: 10px;
}

.item:hover .vehicle-img {
    transform: scale(1.03);
}

.item[data-model="innova reborn"] .vehicle-img,
.item[data-model="terios"] .vehicle-img,
.item[data-model="innova zenix hybrid"] .vehicle-img,
.item[data-model="new alphard"] .vehicle-img {
    object-fit: contain;
    object-position: center;
    transform: scale(1);
}

.item[data-model="innova reborn"]:hover .vehicle-img,
.item[data-model="terios"]:hover .vehicle-img,
.item[data-model="innova zenix hybrid"]:hover .vehicle-img,
.item[data-model="new alphard"]:hover .vehicle-img {
    transform: scale(1.02);
}

.item-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(45,0,0,0.35));
}

.vehicle-meta {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.vehicle-meta li {
    font-size: 12px;
    border: 1px solid #343434;
    padding: 5px 9px;
    border-radius: 999px;
    color: #f2f2f2;
    background: rgba(255, 255, 255, 0.04);
}

.item-actions {
    display: flex;
    gap: 8px;
}

.item-order {
    flex: 1;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    padding: 9px 8px;
    border-radius: 9px;
    transition: 0.3s;
}

.item-order {
    background: red;
    color: white;
}

.item-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 16px rgba(255,0,0,0.22);
}

.reveal-item {
    opacity: 0;
    transform: translateY(18px);
}

.reveal-item.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease var(--delay), transform 0.6s ease var(--delay);
}

.booking-page {
    padding: 130px 80px 60px;
    min-height: 100vh;
    background: linear-gradient(180deg, #130000, #090909);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-card {
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 24px;
}

.booking-form-card h1 {
    color: #ff3d3d;
    margin-bottom: 8px;
}

.booking-intro {
    color: #d7d7d7;
    margin-bottom: 18px;
    line-height: 1.6;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #f1f1f1;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #111;
    border: 1px solid #303030;
    color: #fff;
    border-radius: 10px;
    padding: 11px 12px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d01111;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.14);
}

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

.booking-submit {
    width: 100%;
    border: 0;
    cursor: pointer;
    font-size: 16px;
}

.booking-submit-mobile {
    display: none;
}

.booking-summary h2 {
    margin-bottom: 14px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #363636;
}

.summary-line.total {
    border-bottom: 0;
    margin-top: 6px;
    font-size: 18px;
}

.summary-line strong {
    color: #ff4a4a;
}

.booking-summary small {
    display: block;
    margin-top: 12px;
    color: #a9a9a9;
    line-height: 1.5;
}

.booking-navbar .booking-nav-link a {
    margin-left: 0;
}

@keyframes glowMove {
    from {
        transform: translate(-80px, -20px);
    }
    to {
        transform: translate(80px, 40px);
    }
}

@keyframes floatOrb {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pageFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(24px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 992px) {
    .navbar,
    .hero,
    .armada,
    .syarat,
    .testimoni,
    .saran,
    .tentang,
    .kontak {
        padding-left: 24px;
        padding-right: 24px;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 24px;
        right: 24px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 8px;
        background: rgba(10, 10, 10, 0.96);
        border: 1px solid #2a2a2a;
        border-radius: 14px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
    }

    nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    nav a {
        width: 100%;
        margin-left: 0;
        padding: 12px 14px;
        border-radius: 10px;
    }

    nav a:hover {
        background: rgba(255, 0, 0, 0.12);
    }

    .btn-nav {
        width: 100%;
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .armada h2,
    .syarat h2,
    .testimoni h2,
    .saran h2,
    .tentang h2,
    .kontak h2 {
        text-align: center;
    }

    .logo-text {
        font-size: 13px;
        max-width: 150px;
        line-height: 1.3;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hero-visual {
        min-height: 0;
    }

    .hero-slider-track {
        height: 200px;
    }

    .hero-btn a {
        flex: 1 1 calc(50% - 5px);
        min-width: 0;
        text-align: center;
        padding: 10px 12px;
        font-size: 14px;
    }

    .filter-btn {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .filter-btn button {
        width: 100%;
        margin: 0;
        padding: 10px 8px;
        font-size: 12px;
        line-height: 1.3;
        white-space: normal;
        text-align: center;
        border-radius: 12px;
    }

    .armada .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .armada .item {
        width: 100%;
        padding: 16px;
    }

    .booking-page {
        padding-left: 24px;
        padding-right: 24px;
    }

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

    .kontak-layout {
        grid-template-columns: 1fr;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-submit-desktop {
        display: none;
    }

    .booking-submit-mobile {
        display: block;
        margin-top: 4px;
        position: sticky;
        bottom: 10px;
        z-index: 5;
        box-shadow: 0 12px 22px rgba(0, 0, 0, 0.35);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-navbar {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .booking-navbar .booking-nav-link {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        border: 0;
        background: transparent;
        padding: 0;
        box-shadow: none;
    }
}