


:root {
    --primary: #C58351;    
    --secondary: #E8B887;  
    --dark: #0F172A;       
    --light: #F4F5F7;     
    --white: #FFFFFF;
    --gray: #94A3B8;
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.nav-brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-brand-text span {
    color: var(--primary);
    font-weight: 400;
    margin-left: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #CBD5E1;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

.btn-kontak {
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary), #A0633B);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-kontak:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 131, 81, 0.4);
}


.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--white);
    cursor: pointer;
}


.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    background: linear-gradient(135deg, #020617, var(--dark)); 
    color: var(--white);
    min-height: 80vh;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    
    background-clip: text; 
    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    background-image: linear-gradient(to right, #C58351, #ffffff);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #94A3B8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary), #A0633B);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(197, 131, 81, 0.4);
}

.btn-secondary {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 13px 30px;
    border-radius: 50px;
    font-weight: 700;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: rotate(-3deg);
    transition: 0.5s;
}

.hero-image img:hover {
    transform: rotate(0) scale(1.03);
}


.armada-section {
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--dark);
}

.section-title span {
    color: var(--primary);
}

.armada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}


.armada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card-mobil-baru {
    background: var(--white);
    border: 1px solid #E2E8F0;
    border-radius: 0; 
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.card-mobil-baru:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.card-img-baru {
    border-bottom: 2px solid #E2E8F0;
}

.card-img-baru img {
    width: 100%;
    height: auto; 
    display: block;
    
}

.img-placeholder {
    background: #ddd;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
}

.card-body-baru {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mobil-title-baru {
    text-align: center;
    font-size: 14px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.mobil-harga-baru {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #0F172A; 
    margin-bottom: 20px;
}

.btn-pesan-baru {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: #334155; 
    color: #ffffff;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 30px;
    transition: 0.3s;
}

.btn-pesan-baru:hover {
    background: #1E293B;
    color: #ffffff;
}

.btn-pesan-baru i {
    font-size: 20px;
    margin-top: 3px;
}

.mobil-fitur-baru {
    text-align: left;
}


.mobil-fitur-baru h4 {
    font-size: 16px; 
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

.fitur-list p, 
.fitur-list ul li {
    font-size: 13px; 
    color: #475569;
    line-height: 1.6;
    margin-bottom: 6px; 
}


.fitur-list {
    padding-left: 5px;
}


.fitur-list ul {
    list-style: none;
    padding-left: 0;
}

.terms-section {
    padding: 80px 5%;
    background: #E2E8F0;
}

.terms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.terms-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary);
}

.terms-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.terms-header h3 {
    font-size: 20px;
    color: var(--dark);
}

.terms-card ul {
    list-style: none;
}

.terms-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 14px;
}

.terms-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}


.site-footer {
    background: var(--dark);
    color: #CBD5E1;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    border-top: 2px solid rgba(197, 131, 81, 0.2);
}

.btn-wa {
    transition: all 0.3s ease;
}

.btn-wa:hover, 
.btn-wa:active {
    background: #25D366 !important; 
    color: var(--white) !important;
    border-color: #25D366 !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4) !important;
}

@media (max-width: 768px) {
    
    .navbar {
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
    }

    
    .menu-toggle {
        display: block; 
        order: 2; 
    }

    
    .btn-kontak {
        display: none; 
    }

    
    .nav-links {
        display: none; 
        flex-direction: column;
        width: 100%;
        gap: 15px;
        padding: 20px 0 10px 0;
        text-align: center;
        order: 3; 
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 15px;
    }

    
    .nav-links.active {
        display: flex; 
    }

    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 5%;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    
    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .hero-image img {
        transform: rotate(0); 
        max-width: 100%;
    }
}


.tentang-section {
    padding: 80px 5%;
    background: var(--white);
    text-align: center;
}


.tentang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    text-align: left;
}

.tentang-col p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}


.tentang-kontak {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius);
    border-top: 4px solid var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.tentang-kontak h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 22px;
}

.tentang-kontak p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 15px;
}


.kontak-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nomor-hp {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nomor-hp i {
    color: var(--primary);
    font-size: 24px;
    margin-top: 4px;
}

.btn-wa-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
}

.btn-wa-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
    color: #fff;
}
.btn-wa-solid i {
    font-size: 20px;
    margin-top: 4px;
}

    .tentang-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
        text-align: center;
    }
    .kontak-action {
        flex-direction: column;
        gap: 15px;
    }
    
.btn-lihat-semua {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary); 
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(197, 131, 81, 0.2);
}

.btn-lihat-semua:hover {
    background: var(--dark); 
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(15, 23, 42, 0.3);
}

.btn-lihat-semua i {
    font-size: 20px;
    margin-top: 4px;
}