/* =========================================
   RESET
========================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f8fc;
    color:#222;
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

section{
    padding:90px 0;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================================
   BUTTON
========================================= */

.btn-primary{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:15px 34px;

    background:#EB0A1E;
    color:#fff;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-primary:hover{

    background:#c50819;

    transform:translateY(-3px);

}

.btn-secondary{

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

    padding:15px 34px;

    border:2px solid #EB0A1E;

    color:#EB0A1E;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-secondary:hover{

    background:#EB0A1E;

    color:#fff;

}

/* =========================================
   HEADER
========================================= */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:#fff;

    box-shadow:0 2px 15px rgba(0,0,0,.06);

    transition:.3s;

}

.header.sticky{

    box-shadow:0 5px 20px rgba(0,0,0,.12);

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo img{

    height:55px;

}

.navbar{

    display:flex;

    align-items:center;

    gap:35px;

}

.navbar a{

    font-weight:500;

    color:#333;

    transition:.3s;

}

.navbar a:hover{

    color:#EB0A1E;

}

.btn-header{

    background:#EB0A1E;

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;

}

.btn-header:hover{

    background:#c50819;

}

.menu-toggle{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/* =========================================
   SECTION TITLE
========================================= */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#EB0A1E;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-title h2{

    font-size:38px;

    margin-top:12px;

    margin-bottom:15px;

}

.section-title p{

    color:#666;

    max-width:700px;

    margin:auto;

}
/* =========================================
   HERO
========================================= */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url(images/hero-bg.webp) center/cover;
    color:#fff;
}
.hero-content h1{
    color:#222;
}

.hero-content p{
    color:#666;
}

.hero-tag{
    color:#fff; /* tetap putih karena badge merah */
}

.hero-feature h3{
    color:#e60012;
}

.hero-feature span{
    color:#666;
}
.hero .container{
    position:relative;
    z-index:2;
}

.hero-content{
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(10px);
    padding:45px;
    border-radius:25px;
}

.hero-tag{
    color:#fff;
}

.hero-content h1{
    color:#fff;
}

.hero-content p{
    color:#f5f5f5;
}

.hero-feature h3{
    color:#fff;
}

.hero-feature span{
    color:#ddd;
}
.hero-container{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

}

.hero-tag{

display:inline-block;

padding:10px 22px;

background:#e60012;

color:white;

border-radius:40px;

font-size:14px;

font-weight:700;

margin-bottom:25px;

}

.hero h1{

font-size:60px;

font-weight:800;

line-height:1.15;

margin-bottom:25px;

}

.hero p{

font-size:20px;

color:#666;

line-height:1.8;

margin-bottom:35px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:45px;

}

.btn-primary{

background:#e60012;

color:white;

padding:18px 35px;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.btn-primary:hover{

background:#111;

}

.btn-secondary{

border:2px solid #e60012;

color:#e60012;

padding:18px 35px;

border-radius:50px;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.btn-secondary:hover{

background:#e60012;

color:white;

}

.hero-feature{

display:flex;

gap:40px;

}

.hero-feature h3{

font-size:32px;

color:#e60012;

margin-bottom:5px;

}

.hero-feature span{

color:#666;

}

.hero-image{

text-align:center;

}

.hero-image img{

width:100%;

max-width:650px;

animation:float 4s ease-in-out infinite;

filter:drop-shadow(0 30px 40px rgba(0,0,0,.15));

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

@media(max-width:768px){

.hero{

padding:120px 0 70px;

text-align:center;

}

.hero-container{

grid-template-columns:1fr;

}

.hero h1{

font-size:38px;

}

.hero p{

font-size:17px;

}

.hero-buttons{

flex-direction:column;

}

.hero-feature{

justify-content:center;

gap:20px;

}

.hero-image{

margin-top:40px;

}

}
/* =========================================
   FLOATING SOCIAL
========================================= */

.floating-social{

    position:fixed;

    right:20px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:15px;

    z-index:999;

}

.floating-social a{

    width:58px;

    height:58px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:#fff;

    font-size:22px;

    box-shadow:0 8px 18px rgba(0,0,0,.18);

    transition:.3s;

}

.floating-social a:hover{

    transform:translateY(-5px) scale(1.08);

}

.wa{

    background:#25D366;

}

.call{

    background:#EB0A1E;

}

.ig{

    background:#E1306C;

}

.tiktok{

    background:#000;

}

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

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0);

    }

}

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

.promo-card,
.item,
.card{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}

section{
    opacity:1;
    transform:none;
}
.mobil-card{
    opacity:1 !important;
    transform:none !important;
}
/* =========================================
   RESPONSIVE HERO
========================================= */

@media(max-width:992px){

.hero-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-content h1{

    font-size:42px;

}

.hero-button{

    justify-content:center;

}

.hero-info{

    justify-content:center;

}

.hero-image{

    margin-top:40px;

}

}

@media(max-width:768px){

.hero{

    padding-top:120px;

}

.hero-content h1{

    font-size:34px;

}

.hero-content p{

    font-size:16px;

}

.hero-button{

    flex-direction:column;

}

.hero-button a{

    width:100%;

}

.hero-info{

    gap:20px;

}

.floating-social{

    right:15px;

    bottom:20px;

}

.floating-social a{

    width:50px;

    height:50px;

    font-size:20px;

}

}
/* =========================================
   PROMO
========================================= */
.promo{

padding:100px 0;

background:linear-gradient(180deg,#ffffff,#f8f9fc);

}

.promo-banner{

display:grid;

grid-template-columns:2fr 1fr;

gap:40px;

align-items:center;

}

.promo-left{

background:white;

padding:45px;

border-radius:25px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.promo-badge{

display:inline-block;

background:#e60012;

color:white;

padding:10px 25px;

border-radius:50px;

font-weight:700;

margin-bottom:25px;

}

.promo-left h3{

font-size:34px;

margin-bottom:25px;

}

.promo-left ul{

list-style:none;

padding:0;

}

.promo-left li{

margin-bottom:18px;

font-size:18px;

}

.promo-left i{

color:#e60012;

margin-right:10px;

}

.promo-btn{

display:inline-block;

margin-top:35px;

background:#e60012;

color:white;

padding:18px 35px;

border-radius:50px;

font-weight:bold;

text-decoration:none;

transition:.3s;

}

.promo-btn:hover{

background:black;

}

.promo-right{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.promo-item{

background:white;

padding:30px;

border-radius:20px;

text-align:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

transition:.3s;

}

.promo-item:hover{

transform:translateY(-8px);

}

.promo-item i{

font-size:34px;

color:#e60012;

margin-bottom:15px;

}

@media(max-width:768px){

.promo-banner{

grid-template-columns:1fr;

}

.promo-right{

grid-template-columns:repeat(2,1fr);

}

.promo-left{

padding:30px;

}

.promo-left h3{

font-size:24px;

}

.promo-item{

padding:20px;

}

}

/* =========================================
   MOBIL
========================================= */

.mobil{

    background:#f7f8fc;

}

.mobil-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.mobil-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.mobil-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.mobil-card img{

    width:100%;

    height:220px;

    object-fit:cover;

    transition:.35s;

}

.mobil-card:hover img{

    transform:scale(1.05);

}

.mobil-card h3{

    padding:20px 25px 10px;

    font-size:24px;

}

.mobil-card p{

    padding:0 25px;

    color:#666;

    min-height:55px;

}

.mobil-card a{

    display:block;

    margin:25px;

    text-align:center;

    padding:14px;

    border-radius:50px;

    background:#EB0A1E;

    color:#fff;

    font-weight:600;

    transition:.3s;

}

.mobil-card a:hover{

    background:#c50819;

}

/* =========================================
   KEUNGGULAN PREMIUM
========================================= */

.keunggulan{
    padding:100px 0;
    background:linear-gradient(180deg,#ffffff,#f8f9fc);
}

.keunggulan-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.item{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    border:1px solid #ececec;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.item::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#e60012,#ff4d4d);
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.item:hover::before{
    transform:scaleX(1);
}

.item:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
}

.item i{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#e60012,#ff4040);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    transition:.35s;
}

.item:hover i{
    transform:rotate(10deg) scale(1.1);
}

.item h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
    font-weight:700;
}

.item p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* ===============================
   CTA KEUNGGULAN
=============================== */

.why-cta{
    margin-top:70px;
    padding:60px 40px;
    border-radius:25px;
    background:linear-gradient(135deg,#e60012,#b5000f);
    text-align:center;
    color:#fff;
}

.why-cta h3{
    font-size:36px;
    margin-bottom:15px;
    font-weight:800;
}

.why-cta p{
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
    opacity:.95;
}

.why-cta a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:18px 36px;
    background:#fff;
    color:#e60012;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.why-cta a:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

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

@media(max-width:992px){

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

}

@media(max-width:768px){

.keunggulan{
    padding:70px 0;
}

.keunggulan-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.item{
    padding:30px 20px;
}

.item h3{
    font-size:22px;
}

.item p{
    font-size:14px;
}

.item i{
    width:70px;
    height:70px;
    font-size:28px;
}

.why-cta{
    padding:40px 25px;
}

.why-cta h3{
    font-size:28px;
}

.why-cta p{
    font-size:16px;
}

}

/* =========================================
   TESTIMONI PREMIUM
========================================= */

.testimoni{
    padding:100px 0;
    background:#f8f9fc;
}

.testimoni-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:50px;
}

.testimoni-card{
    background:#fff;
    padding:40px 30px;
    border-radius:24px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    border:1px solid #eee;
}

.testimoni-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.15);
}

.avatar{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#e60012,#ff4d4d);
    display:flex;
    justify-content:center;
    align-items:center;
}

.avatar i{
    color:#fff;
    font-size:36px;
}

.rating{
    color:#FFD700;
    font-size:24px;
    margin-bottom:15px;
    letter-spacing:3px;
}

.testimoni-card p{
    color:#666;
    line-height:1.8;
    font-style:italic;
    margin-bottom:20px;
}

.testimoni-card h3{
    color:#222;
    font-size:22px;
    margin-bottom:5px;
}

.testimoni-card span{
    color:#e60012;
    font-weight:600;
    font-size:14px;
}

@media(max-width:768px){

.testimoni{
    padding:70px 0;
}

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

.testimoni-card{
    padding:30px 20px;
}

}

/* =========================================
   FAQ
========================================= */

.faq{

    background:#fff;

}

.faq-item{

    background:#fff;

    border-radius:15px;

    padding:25px;

    margin-bottom:20px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.faq-item h3{

    color:#EB0A1E;

    margin-bottom:10px;

}

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

.contact{

    background:#f7f8fc;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.contact-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.contact-card:hover{

    transform:translateY(-8px);

}

.contact-card i{

    font-size:50px;

    color:#EB0A1E;

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:10px;

}

.contact-card p{

    color:#666;

    margin-bottom:25px;

}

.contact-card a{

    display:inline-block;

    background:#EB0A1E;

    color:#fff;

    padding:12px 30px;

    border-radius:50px;

    transition:.3s;

}

.contact-card a:hover{

    background:#c50819;

}

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

.footer{

    background:#111;

    color:#fff;

    text-align:center;

    padding:60px 20px;

}

.footer-logo{

    width:150px;

    margin:0 auto 25px;

}

.footer h3{

    margin-bottom:10px;

}

.footer p{

    color:#bbb;

}

.footer-social{

    margin:30px 0;

}

.footer-social a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:48px;

    height:48px;

    margin:0 8px;

    border-radius:50%;

    background:#EB0A1E;

    color:#fff;

    transition:.3s;

}

.footer-social a:hover{

    transform:translateY(-5px);

}

.copyright{

    margin-top:25px;

    font-size:14px;

    color:#888;

}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    .navbar{

        position:fixed;

        top:82px;

        left:-100%;

        width:100%;

        background:#fff;

        flex-direction:column;

        padding:30px 0;

        transition:.3s;

        box-shadow:0 10px 20px rgba(0,0,0,.08);

    }

    .navbar.active{

        left:0;

    }

    .menu-toggle{

        display:block;

    }

    .btn-header{

        display:none;

    }

    .section-title h2{

        font-size:30px;

    }

    .cta h2{

        font-size:30px;

    }

    .cta-button{

        flex-direction:column;

    }

    .cta-button a{

        width:100%;

    }

}
.harga{
    margin:12px 0 6px;
    font-size:22px;
    font-weight:700;
    color:#e60012;
    text-align:center;
}

.dp{
    margin:0 0 16px;
    font-size:16px;
    font-weight:600;
    color:#16a34a;
    text-align:center;
}
/* ==========================
   FOTO SALES
========================== */

.foto-sales{
    width:160px;
    height:160px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #EB0A1E; /* Merah Toyota */
    display:block;
    margin:20px auto;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    background:#fff;
}
.foto-sales:hover{
    transform:scale(1.05);
    transition:0.3s ease;
}
.wa-form{
padding:80px 0;
background:#f7f7f7;
}

.wa-form form{
max-width:650px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.wa-form input,
.wa-form select,
.wa-form textarea{
padding:15px;
border:1px solid #ddd;
border-radius:10px;
font-size:16px;
}

.wa-form button{
background:#25D366;
color:#fff;
border:none;
padding:15px;
font-size:18px;
font-weight:700;
border-radius:10px;
cursor:pointer;
}

.review-box{
max-width:600px;
margin:auto;
text-align:center;
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.contact .fa-location-dot{
    color:#EB0A1E;
    margin-right:6px;
}

.contact .btn-secondary{
    margin-top:15px;
    display:inline-block;
}
@media (max-width: 768px) {

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

.hero-content{
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:100%;
}

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

.btn-wa{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    width:calc(100% - 50px);
    margin:25px;
    padding:15px;
    background:#25D366;
    color:#fff !important;
    border-radius:50px;
    font-weight:700;
    font-size:16px;
    box-shadow:0 8px 20px rgba(37,211,102,.25);
    transition:.3s;
}

.btn-wa:hover{
    background:#1FAF54;
    transform:translateY(-3px);
}

.btn-wa i{
    font-size:22px;
}
