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

html {
    scroll-behavior: smooth;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-touch-callout: none;
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 2rem;
    text-decoration: none;
    z-index: 100;
    box-shadow: 0 10px 35px rgba(255, 215, 0, 0.4);
    animation: float-bounce 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6);
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* LOADING SCREEN */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
    opacity: 1;
    visibility: visible;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loading-car {
    font-size: 5rem;
    color: #FFD700;
    animation: car-bounce 1s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

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

.loading-track {
    width: 300px;
    height: 4px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #FFD700 0%, #FFC700 100%);
    border-radius: 2px;
    animation: progress-fill 2.5s ease-in-out forwards;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

@keyframes progress-fill {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.loading-text {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #f5f5f5;
    letter-spacing: 2px;
    animation: text-fade-in 1s ease-out 0.3s both;
}

.loading-text span {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.loading-subtext {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-style: italic;
    animation: text-fade-in 1s ease-out 0.6s both;
}

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

@keyframes text-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f5f5f5;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.6rem;
    color: #FFD700;
}

.logo span {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.nav-links a:hover {
    color: #FFD700;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* BURGER MENU */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.35rem;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #f5f5f5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* LANDING HERO - NEW SPLIT LAYOUT */
.landing-hero {
    display: flex;
    width: 100%;
    min-height: 100vh;
    margin-top: 60px;
}

.landing-hero-left {
    flex: 1;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.landing-hero-content {
    text-align: center;
    animation: slideInUp 0.6s ease-out;
}

.landing-hero-icon {
    font-size: 100px;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.landing-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.landing-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 2rem;
    font-weight: 500;
}

.landing-hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
}

.landing-hero-feature i {
    font-size: 1.4rem;
    color: #1a1a1a;
}

.landing-content-section {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.landing-form-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.landing-form-shape1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.landing-form-shape2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 50%;
    bottom: -50px;
    left: -50px;
}

.landing-content-container {
    max-width: 420px;
    width: 100%;
    position: relative;
    z-index: 2;
    animation: slideInUp 0.6s ease-out;
}

.landing-content-card {
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
}

.landing-content-header {
    text-align: center;
    margin-bottom: 2rem;
}

.landing-content-header i {
    font-size: 2.5rem;
    color: #FFD700;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.landing-content-header h2 {
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #f5f5f5;
    margin-bottom: 1rem;
}

.landing-content-header p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.landing-content-body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.landing-stat-box {
    text-align: center;
}

.landing-stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.landing-stat-label {
    font-size: 0.75rem;
    color: #b0b0b0;
    font-weight: 500;
}

.landing-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.landing-btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #1a1a1a;
    border: none;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.landing-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.landing-btn-primary:hover::before {
    left: 100%;
}

.landing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.landing-btn-secondary {
    width: 100%;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-btn-secondary:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.landing-info-box {
    background: rgba(255, 215, 0, 0.05);
    border-left: 4px solid #FFD700;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
}

.landing-info-box i {
    color: #FFD700;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.landing-info-box h4 {
    color: #f5f5f5;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.landing-info-box p {
    color: #b0b0b0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Responsive Landing Hero */
@media (max-width: 1024px) {
    .landing-hero {
        flex-direction: column;
    }

    .landing-hero-left {
        min-height: 40vh;
        padding: 2rem 1.5rem;
    }

    .landing-hero-title {
        font-size: 2rem;
    }

    .landing-hero-subtitle {
        font-size: 1rem;
    }

    .landing-hero-icon {
        font-size: 80px;
    }

    .landing-content-section {
        min-height: 60vh;
        padding: 2rem 1.5rem;
    }

    .landing-content-card {
        padding: 2rem;
    }

    .landing-content-body {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .landing-hero {
        flex-direction: column;
        min-height: auto;
        margin-top: 60px;
        overflow-y: auto;
    }

    .landing-hero-left {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .landing-hero-title {
        font-size: 1.8rem;
    }

    .landing-hero-subtitle {
        font-size: 0.9rem;
    }

    .landing-hero-icon {
        font-size: 60px;
    }

    .landing-content-section {
        min-height: auto;
        padding: 2rem 1rem;
        position: static;
    }

    .landing-content-container {
        max-width: 100%;
    }

    .landing-content-card {
        padding: 1.5rem;
    }

    .landing-content-header h2 {
        font-size: 1.3rem;
    }

    .landing-content-body {
        grid-template-columns: 1fr;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .landing-cta-buttons {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.3) 40%, rgba(13, 13, 13, 0.6) 100%);
    z-index: 0;
}

/* Hero Container */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    gap: 0;
    z-index: 2;
    position: relative;
}

/* Left Column */
.hero-left {
    margin-top: 80px;
    flex: 1;
    animation: fadeInLeft 1s ease-out;
    padding: 0 5%;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #f5f5f5;
    line-height: 1.15;
    margin-bottom: 0.8rem;
    letter-spacing: -2px;
}

.hero-title span {
    color: #FFD700;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    display: inline;
}

.hero-description {
    font-size: 0.8rem;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    max-width: 400px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

/* Trust Badges */
.hero-badges {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.75rem;
    color: #d0d0d0;
}

.badge i {
    color: #FFD700;
    font-size: 1.1rem;
}

.btn {
    padding: 0.7rem 1.6rem;
    border: none;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn i {
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #000;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

/* Right Column - Image */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    animation: fadeInRight 1s ease-out;
    z-index: -1;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 750px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-car-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
    position: relative;
    z-index: 0;
}

/* Scroll Indicator */
.hero::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    z-index: 10;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: #FFD700;
    border-radius: 2px;
    animation: scroll-down 2s infinite;
    z-index: 10;
}

@keyframes scroll-down {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}


/* STATS SECTION */
.stats {
    padding: 5rem 5%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(13, 13, 13, 0.8) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    transition: all 0.4s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 500;
}

/* FEATURES */
.features {
    padding: 5rem 5%;
    background: rgba(20, 20, 20, 0.8);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    color: #f5f5f5;
}

.section-title span {
    color: #FFD700;
}

/* RENTAL TYPES SECTION */
.rental-types {
    padding: 5rem 5%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.5) 0%, rgba(13, 13, 13, 0.5) 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.rental-types-slider-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.rental-types-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Desktop: 3 cards per row, 2 cards di bawah center */
@media (min-width: 1025px) {
    .rental-card {
        grid-column: span 2;
    }
    
    .rental-card:nth-child(4) {
        grid-column: 2 / span 2;
    }
    
    .rental-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* Tablet: 2 cards per row */
@media (max-width: 1024px) {
    .rental-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1 card per row */
@media (max-width: 767px) {
    .rental-types-grid {
        grid-template-columns: 1fr;
    }
}

.rental-types-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    overflow: visible;
    width: 100%;
    transition: none;
}

.rental-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(13, 13, 13, 0.9) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 100%;
    height: 100%;
}

.rental-card:hover {
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15), 0 0 30px rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
}

.rental-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFD700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.rental-card h3 {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin: 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.rental-card p {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
    flex-grow: 1;
}

.rental-slider-dots {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
}

.rental-btn {
    padding: 0.7rem 1.8rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1.5px solid #FFD700;
    color: #FFD700;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    margin-top: auto;
}

.rental-btn:hover {
    background: #FFD700;
    color: #000;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: #FFD700;
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.feature-card p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* VEHICLES - DESKTOP FIRST */
.vehicles {
    padding: 5rem 5%;
    background: rgba(10, 10, 10, 0.5);
}

.vehicles-slider-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

.vehicles-slider-container:active {
    cursor: grabbing;
}

.vehicles-slider {
    display: flex;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    align-items: stretch;
    transition: transform 0.5s ease-out;
}

.vehicle-card {
    flex: 0 0 calc(25% - 1.125rem);
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    min-height: 0;
    user-select: none;
    -webkit-user-select: none;
}

.vehicle-card:hover {
    border-color: #FFD700;
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
}

.vehicle-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    flex-shrink: 0;
}

.vehicle-image img {
    width: 85%;
    height: auto;
    max-height: 180px;
    min-height: 80px;
    object-fit: contain;
    object-position: center;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.vehicle-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.8rem;
}

.vehicle-info h4 {
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #fff;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin: 0;
    font-size: 0.8rem;
    color: #a0a0a0;
}

.vehicle-specs span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.vehicle-specs i {
    color: #FFD700;
    width: 14px;
    font-size: 0.8rem;
}

.vehicle-price {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

.vehicle-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    display: block;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
}

.vehicle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid #FFD700;
    color: #FFD700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover:not(:disabled) {
    background: #FFD700;
    color: #000;
    transform: scale(1.08);
}

.slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot:hover {
    background: rgba(255, 215, 0, 0.5);
}

.slider-dot.active {
    background: #FFD700;
    width: 32px;
    border-radius: 5px;
}

/* ===== TABLET VEHICLES (768px - 1024px) ===== */
@media (max-width: 1024px) and (min-width: 768px) {
    .vehicle-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .vehicles-slider {
        gap: 1.2rem;
    }

    .vehicle-image {
        height: 160px;
    }

    .vehicle-image img {
        max-height: 140px;
        min-height: 70px;
        image-rendering: -webkit-optimize-contrast;
    }

    .vehicle-info {
        padding: 1.2rem;
        gap: 0.6rem;
    }

    .vehicle-info h4 {
        font-size: 1rem;
    }

    .vehicle-specs {
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .vehicle-price {
        font-size: 1.1rem;
    }

    .vehicle-btn {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .slider-controls {
        gap: 1.5rem;
    }
}

/* ===== MOBILE VEHICLES (≤767px) ===== */
@media (max-width: 767px) {
    .vehicles {
        padding: 3rem 1rem;
    }

    .vehicles-slider-container {
        padding: 0;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .vehicle-card {
        flex: 0 0 100%;
    }

    .vehicles-slider {
        gap: 1rem;
    }

    .vehicle-image {
        height: 140px;
    }

    .vehicle-image img {
        width: 80%;
        max-height: 120px;
        min-height: 60px;
        image-rendering: -webkit-optimize-contrast;
    }

    .vehicle-info {
        padding: 1rem;
        gap: 0.5rem;
    }

    .vehicle-info h4 {
        font-size: 0.95rem;
    }

    .vehicle-specs {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        font-size: 0.7rem;
    }

    .vehicle-specs span {
        gap: 0.3rem;
    }

    .vehicle-specs i {
        width: 12px;
        font-size: 0.7rem;
    }

    .vehicle-price {
        font-size: 1rem;
        margin: 0.3rem 0;
    }

    .vehicle-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }

    .slider-controls {
        gap: 1rem;
        margin-top: 2rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        font-size: 0.9rem;
        display: flex;
    }

    .slider-dot {
        display: none;
    }

    .slider-dot.active {
        width: 24px;
    }
}
}

/* HOW IT WORKS */
.how-it-works {
    padding: 5rem 5%;
    background: rgba(20, 20, 20, 0.8);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.step-arrow {
    position: absolute;
    top: 30px;
    right: -25px;
    color: #FFD700;
    font-size: 1.5rem;
}

.step:last-child .step-arrow {
    display: none;
}

.step h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.step p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* PRICING */
.pricing {
    padding: 5rem 5%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: #FFD700;
    transform: scale(1.05);
    background: rgba(255, 215, 0, 0.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.pricing-price {
    font-size: 2.5rem;
    color: #FFD700;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.pricing-price span {
    font-size: 1rem;
    color: #b0b0b0;
}

.pricing-features {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-features li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: #b0b0b0;
    font-size: 0.95rem;
}

.pricing-features li:before {
    content: "✓ ";
    color: #FFD700;
    font-weight: 700;
    margin-right: 0.5rem;
}

.pricing-btn {
    width: 100%;
    padding: 0.9rem;
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.pricing-card.featured .pricing-btn {
    background: #FFD700;
    color: #000;
}

.pricing-btn:hover {
    transform: translateY(-3px);
}

/* TESTIMONIALS */
.testimonials {
    padding: 5rem 5%;
    background: rgba(20, 20, 20, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-info h5 {
    color: #f5f5f5;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.testimonial-info p {
    color: #b0b0b0;
    font-size: 0.8rem;
}

/* LOCATION */
.location {
    padding: 3rem 5%;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.location-info {
    display: flex;
    flex-direction: column;
}

.location-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.address-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.address-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.address-icon {
    font-size: 1.8rem;
    color: #FFD700;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
}

.address-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-family: 'Montserrat', sans-serif;
}

.address-text p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* FOOTER */
footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 5%;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: #b0b0b0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h5 {
    color: #f5f5f5;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-section p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.scroll-fade {
    opacity: 1 !important;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.scroll-fade.lazy {
    opacity: 1 !important;
    transform: translateY(0);
}

.scroll-fade.visible {
    opacity: 1 !important;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

/* RESPONSIVE DESIGN */

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rental-types-slider-container {
        gap: 1rem;
    }

    .vehicles-slider-container {
        padding: 0 0.8rem;
    }

    .vehicles-slider {
        gap: 0.8rem;
    }

    .vehicle-card {
        flex: 0 0 calc(50% - 0.4rem);
        opacity: 1 !important;
        visibility: visible !important;
        display: flex;
        flex-direction: column;
    }

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

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

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

    .location-container {
        grid-template-columns: 1fr;
    }

    .hero-container {
        gap: 0;
        padding: 0 3%;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-badges {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .badge {
        font-size: 0.8rem;
    }

    .hero-image-wrapper {
        max-width: 500px;
        height: 420px;
        display: none;
    }

    .hero {
        background-image: url('/img/gambar_bg.png');
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
    }

    .hero-bg {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.5) 100%);
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    nav {
        padding: 1rem 3%;
    }

    .logo {
        font-size: 1rem;
    }

    .logo i {
        font-size: 1.2rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem 3%;
        z-index: 999;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 3%;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        text-align: center;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        text-align: justify;
    }

    .hero-buttons {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons .btn i {
        display: none;
    }

    .hero-buttons .btn {
        flex: 1;
        min-width: 140px;
        max-width: 180px;
        text-align: center;
    }

    .hero-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        justify-items: center;
        margin-top: 2rem;
    }

    .hero-badges .badge:last-child {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .badge {
        font-size: 0.8rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 100%;
        height: 280px;
        display: none;
    }

    .hero {
        background-image: url('/img/gambar_bg.png');
        background-size: cover;
        background-position: center right;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .hero-bg {
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 100%);
    }

    .scroll-indicator {
        bottom: 20px;
    }

    /* RENTAL TYPES */
    .rental-types {
        padding: 3rem 3%;
    }

    .rental-types-slider-container {
        gap: 1rem;
    }

    .rental-types-grid {
        grid-template-columns: 1fr;
    }

    .rental-card {
        padding: 1.5rem 1rem;
    }

    .rental-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .rental-card h3 {
        font-size: 1rem;
    }

    .rental-card p {
        font-size: 0.8rem;
    }

    /* FEATURES */
    .features {
        padding: 3rem 3%;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }
    /* VEHICLES - MOBILE CSS REMOVED FOR DEBUGGING */

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    /* HOW IT WORKS */
    .how-it-works {
        padding: 3rem 3%;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .step-arrow {
        display: none !important;
    }

    .step h4 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.8rem;
    }

    /* STATS */
    .stats {
        padding: 3rem 3%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* PRICING */
    .pricing {
        padding: 3rem 3%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-title {
        font-size: 1.3rem;
    }

    .pricing-price {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    /* TESTIMONIALS */
    .testimonials {
        padding: 3rem 3%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .testimonial-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .testimonial-info h5 {
        font-size: 0.9rem;
    }

    .testimonial-info p {
        font-size: 0.7rem;
    }

    /* LOCATION */
    .location {
        padding: 3rem 3%;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-info h3 {
        font-size: 1.5rem;
    }

    .address-item {
        gap: 1rem;
    }

    .address-icon {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
    }

    .address-text h4 {
        font-size: 1rem;
    }

    .address-text p {
        font-size: 0.85rem;
    }

    .location-map iframe {
        height: 300px !important;
    }

    /* FOOTER */
    footer {
        padding: 2rem 3%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h5 {
        font-size: 1rem;
    }

    .footer-section a,
    .footer-section p {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-title { font-size: 1.6rem !important; }
    .hero-description { font-size: 0.75rem !important; }
    .hero-left { padding: 0 3% !important; }
    .hero-right { display: none !important; }
    .section-title { font-size: 1.8rem !important; }
    .stats { padding: 2rem 3% !important; }
    .features { padding: 2rem 3% !important; }
    .rental-types { padding: 2rem 3% !important; }
    .vehicles { padding: 2rem 3% !important; }
    .how-it-works { padding: 2rem 3% !important; }
    .location { padding: 2rem 3% !important; }
    .whatsapp-float { width: 55px !important; height: 55px !important; }
}
