/* ==========================================================
   TOYOTA PAMULANG PREMIUM V6
   STYLE.CSS - PART 1
========================================================== */

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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    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;
}

button,
input,
textarea,
select{
    font-family:inherit;
}

/* ===========================
   VARIABLES
=========================== */

:root{

    --primary:#EB0A1E;
    --primary-dark:#C70018;

    --black:#111111;
    --dark:#1c1c1c;

    --gray:#777;
    --light:#f7f7f7;
    --white:#ffffff;

    --radius:18px;

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

    --transition:.35s ease;

}

/* ===========================
   CONTAINER
=========================== */

.container{

    width:92%;
    max-width:1240px;

    margin:auto;

}

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

section{

    padding:90px 0;

}

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

.section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 60px;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:.85rem;

    margin-bottom:15px;

}

.section-title h2{

    font-size:clamp(2rem,4vw,3rem);

    margin-bottom:18px;

    color:var(--black);

}

.section-title p{

    color:var(--gray);

}

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

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:14px 30px;

    border-radius:999px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid var(--primary);

    color:var(--primary);

    background:#fff;

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}

/* ===========================
   PRELOADER
=========================== */

#preloader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader{

    width:55px;

    height:55px;

    border:5px solid #eee;

    border-top:5px solid var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

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

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(15px);

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

    z-index:999;

}

.header-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo img{

    width:170px;

}

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

.navbar{

    display:flex;

    align-items:center;

    gap:28px;

}

.navbar a{

    font-size:.96rem;

    font-weight:600;

    color:#222;

    position:relative;

    transition:.3s;

}

.navbar a:hover,
.navbar a.active{

    color:var(--primary);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar a:hover::after,
.navbar a.active::after{

    width:100%;

}

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

.menu-toggle{

    display:none;

    width:34px;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:100%;

    height:3px;

    background:#222;

    margin:6px 0;

    border-radius:20px;

    transition:.35s;

}

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

.hero{

    padding-top:150px;

    padding-bottom:90px;

    background:linear-gradient(135deg,#ffffff,#f7f7f7);

}

.hero-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero-badge{

    display:inline-block;

    background:#FFE8EA;

    color:var(--primary);

    padding:10px 18px;

    border-radius:999px;

    font-size:.85rem;

    font-weight:600;

    margin-bottom:20px;

}

.hero-text h1{

    font-size:clamp(2.6rem,5vw,4.3rem);

    line-height:1.15;

    color:#111;

    margin-bottom:25px;

    font-weight:700;

}

.hero-text p{

    color:#666;

    font-size:1.05rem;

    margin-bottom:35px;

}

.hero-button{

    display:flex;

    flex-wrap:wrap;

    gap:16px;

}

.hero-image{

    text-align:center;

}

.hero-image img{

    width:100%;

    max-width:580px;

    margin:auto;

    border-radius:24px;

    box-shadow:var(--shadow);

}
/* ==========================================================
   TOYOTA PAMULANG PREMIUM V6
   STYLE.CSS - PART 2
   ABOUT • COUNTER • SERVICE • WHY US • PRODUCT
========================================================== */

/* ===========================
   ABOUT
=========================== */

.about-grid{

    display:grid;

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

    gap:70px;

    align-items:center;

}

.about-content h3{

    font-size:2rem;

    color:var(--black);

    margin-bottom:20px;

}

.about-content p{

    color:var(--gray);

    margin-bottom:20px;

}

.about-list{

    display:grid;

    gap:14px;

    margin-top:25px;

}

.about-list li{

    display:flex;

    align-items:center;

    gap:12px;

    color:#444;

    font-weight:500;

}

.about-list i{

    color:var(--primary);

}

.about-image img{

    width:100%;

    border-radius:22px;

    box-shadow:var(--shadow);

}

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

.counter{

    background:#fafafa;

}

.counter-grid{

    display:grid;

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

    gap:25px;

}

.counter-box{

    background:#fff;

    border-radius:20px;

    padding:40px 20px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.counter-box:hover{

    transform:translateY(-8px);

}

.counter-box h2{

    color:var(--primary);

    font-size:2.8rem;

    margin-bottom:10px;

}

.counter-box p{

    color:var(--gray);

}

/* ===========================
   SERVICES
=========================== */

.services{

    background:#fff;

}

.service-grid{

    display:grid;

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

    gap:28px;

}

.service-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

}

.service-card i{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:#FFE9EC;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

}

.service-card h3{

    margin-bottom:15px;

    color:var(--black);

}

.service-card p{

    color:var(--gray);

}

/* ===========================
   WHY US
=========================== */

.why-us{

    background:#fafafa;

}

.why-grid{

    display:grid;

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

    gap:30px;

}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow);

}

.why-card:hover{

    transform:translateY(-10px);

}

.why-card i{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:#FFE9EC;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

}

.why-card h3{

    margin-bottom:15px;

    color:#111;

}

.why-card p{

    color:var(--gray);

}

/* ===========================
   PRODUCT GRID
=========================== */

.car-grid{

    display:grid;

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

    gap:35px;

}

.car-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:.35s;

}

.car-card:hover{

    transform:translateY(-10px);

}

.car-image{

    position:relative;

    height:240px;

    overflow:hidden;

}

.car-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.car-card:hover .car-image img{

    transform:scale(1.08);

}

.car-label{

    position:absolute;

    top:18px;

    left:18px;

    background:var(--primary);

    color:#fff;

    padding:8px 16px;

    border-radius:999px;

    font-size:.8rem;

    font-weight:600;

}

.car-content{

    padding:28px;

}

.car-content h3{

    font-size:1.5rem;

    color:#111;

    margin-bottom:15px;

}

.price{

    margin-bottom:20px;

    color:var(--gray);

}

.price strong{

    display:block;

    color:var(--primary);

    font-size:1.6rem;

    margin-top:8px;

}

.price small{

    display:block;

    margin-top:8px;

    color:var(--primary);

    font-weight:600;

}

/* ===========================
   SPECIFICATION
=========================== */

.spec-list{

    margin:25px 0;

    display:grid;

    gap:10px;

}

.spec-list li{

    color:#555;

    padding-bottom:10px;

    border-bottom:1px solid #eee;

    font-size:.95rem;

}

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

.car-action{

    display:flex;

    gap:12px;

}

.car-action a{

    flex:1;

    text-align:center;

}

/* ===========================
   TEAM
=========================== */

.team-card{

    display:grid;

    grid-template-columns:320px 1fr;

    gap:45px;

    align-items:center;

    background:#fff;

    border-radius:24px;

    padding:40px;

    box-shadow:var(--shadow);

}

.team-image img{

    width:100%;

    border-radius:20px;

}

.team-content h3{

    font-size:2rem;

    margin-bottom:18px;

}

.team-content p{

    color:var(--gray);

    margin-bottom:25px;

}

.team-info{

    display:grid;

    gap:15px;

    margin-bottom:30px;

}

.team-info div{

    display:flex;

    align-items:center;

    gap:12px;

}

.team-info i{

    color:var(--primary);

    width:24px;

}
/* ==========================================================
   TOYOTA PAMULANG PREMIUM V6
   STYLE.CSS - PART 3
   PROCESS • VISION • CTA • TESTIMONIAL • FAQ
==========================================================*/

/* ===========================
   PROCESS
=========================== */

.process{

    background:#fafafa;

}

.process-grid{

    display:grid;

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

    gap:30px;

}

.process-card{

    background:#fff;

    padding:40px 30px;

    text-align:center;

    border-radius:24px;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.process-card:hover{

    transform:translateY(-10px);

}

.process-number{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

    font-weight:700;

}

.process-card h3{

    margin-bottom:15px;

    color:var(--black);

}

.process-card p{

    color:var(--gray);

}

/* ===========================
   VISION
=========================== */

.vision{

    background:#fff;

}

.vision-grid{

    display:grid;

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

    gap:35px;

}

.vision-card{

    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:var(--shadow);

    transition:.35s;

}

.vision-card:hover{

    transform:translateY(-8px);

}

.vision-card i{

    width:75px;

    height:75px;

    border-radius:50%;

    background:#FFE9EC;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.vision-card h3{

    margin-bottom:20px;

    color:#111;

}

.vision-card p{

    color:var(--gray);

}

.vision-card ul{

    display:grid;

    gap:15px;

}

.vision-card li{

    position:relative;

    padding-left:25px;

    color:#555;

}

.vision-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--primary);

    font-weight:700;

}

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

.cta{

    background:linear-gradient(135deg,#EB0A1E,#B50016);

    color:#fff;

}

.cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.cta-box span{

    display:inline-block;

    margin-bottom:15px;

    letter-spacing:2px;

    font-weight:600;

    text-transform:uppercase;

}

.cta-box h2{

    font-size:clamp(2rem,5vw,3.3rem);

    margin-bottom:20px;

}

.cta-box p{

    max-width:700px;

    margin:0 auto 35px;

    color:rgba(255,255,255,.9);

}

.cta-button{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

.cta .btn-secondary{

    border:2px solid #fff;

    color:#fff;

    background:transparent;

}

.cta .btn-secondary:hover{

    background:#fff;

    color:var(--primary);

}

/* ===========================
   TESTIMONIAL
=========================== */

.testimonial{

    background:#f8f8f8;

}

.testimonial-grid{

    display:grid;

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

    gap:30px;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    box-shadow:var(--shadow);

    transition:.35s;

    position:relative;

}

.testimonial-card:hover{

    transform:translateY(-10px);

}

.testimonial-card i{

    font-size:35px;

    color:var(--primary);

    margin-bottom:20px;

}

.testimonial-card p{

    color:var(--gray);

    margin-bottom:20px;

}

.testimonial-card h4{

    color:#F7B500;

    margin-bottom:8px;

}

.testimonial-card span{

    color:#444;

    font-weight:500;

}

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

.faq{

    background:#fff;

}

.faq-item{

    background:#fff;

    border-radius:18px;

    box-shadow:var(--shadow);

    margin-bottom:18px;

    overflow:hidden;

}

.faq-question{

    padding:22px 28px;

    cursor:pointer;

    font-weight:600;

    position:relative;

    transition:.3s;

}

.faq-question:hover{

    color:var(--primary);

}

.faq-question::after{

    content:"+";

    position:absolute;

    right:28px;

    top:50%;

    transform:translateY(-50%);

    font-size:1.5rem;

    color:var(--primary);

}

.faq-item.active .faq-question::after{

    content:"−";

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

}

.faq-answer p{

    padding:0 28px 25px;

    color:var(--gray);

}

/* ===========================
   COMMON CARD EFFECT
=========================== */

.service-card,
.why-card,
.process-card,
.team-card,
.counter-box,
.vision-card,
.testimonial-card{

    border:1px solid transparent;

}

.service-card:hover,
.why-card:hover,
.process-card:hover,
.team-card:hover,
.counter-box:hover,
.vision-card:hover,
.testimonial-card:hover{

    border-color:rgba(235,10,30,.15);

}
/* ==========================================================
   TOYOTA PAMULANG PREMIUM V6
   STYLE.CSS - PART 4
   FOOTER • FLOATING WA • BACK TO TOP • UTILITIES
==========================================================*/

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

.footer{

    background:#111;

    color:#ddd;

    padding:80px 0 25px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:50px;

    margin-bottom:50px;

}

.footer-about img{

    width:180px;

    margin-bottom:20px;

}

.footer-about p{

    color:#bdbdbd;

    line-height:1.8;

}

.footer h3{

    color:#fff;

    margin-bottom:20px;

    font-size:1.2rem;

}

.footer ul{

    display:grid;

    gap:14px;

}

.footer ul li{

    display:flex;

    align-items:center;

    gap:10px;

}

.footer ul li i{

    color:var(--primary);

}

.footer ul li a{

    transition:.3s;

}

.footer ul li a:hover{

    color:var(--primary);

    padding-left:6px;

}

.copyright{

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

    padding-top:25px;

    text-align:center;

    color:#999;

    font-size:.95rem;

}

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

.floating-whatsapp{

    position:fixed;

    right:25px;

    bottom:25px;

    width:62px;

    height:62px;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:30px;

    z-index:999;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

    transition:.35s;

}

.floating-whatsapp:hover{

    transform:scale(1.12);

}

/* Pulse Animation */

.floating-whatsapp::before{

    content:"";

    position:absolute;

    inset:-6px;

    border-radius:50%;

    border:2px solid rgba(37,211,102,.35);

    animation:waPulse 2s infinite;

}

@keyframes waPulse{

    0%{

        transform:scale(.8);

        opacity:1;

    }

    100%{

        transform:scale(1.5);

        opacity:0;

    }

}

/* ===========================
   BACK TO TOP
=========================== */

#backToTop{

    position:fixed;

    right:25px;

    bottom:100px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:998;

    box-shadow:0 15px 35px rgba(235,10,30,.30);

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    transform:translateY(-5px);

}

/* ===========================
   SCROLL PROGRESS
=========================== */

#scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:var(--primary);

    z-index:99999;

}

/* ===========================
   TOAST
=========================== */

.toast{

    position:fixed;

    right:20px;

    bottom:30px;

    background:#111;

    color:#fff;

    padding:16px 22px;

    border-radius:14px;

    opacity:0;

    visibility:hidden;

    transform:translateY(30px);

    transition:.35s;

    z-index:99999;

}

.toast.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.toast.error{

    background:#d32f2f;

}

/* ===========================
   LIGHTBOX
=========================== */

#lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;

    justify-content:center;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99999;

}

#lightbox.show{

    opacity:1;

    visibility:visible;

}

#lightbox img{

    max-width:92%;

    max-height:92%;

    border-radius:15px;

}

/* ===========================
   SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/* ===========================
   TEXT SELECTION
=========================== */

::selection{

    background:var(--primary);

    color:#fff;

}

/* ===========================
   UTILITIES
=========================== */

.text-center{

    text-align:center;

}

.mt-20{

    margin-top:20px;

}

.mt-30{

    margin-top:30px;

}

.mt-50{

    margin-top:50px;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-50{

    margin-bottom:50px;

}

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

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .8s ease both;

}

/* ===========================
   PERFORMANCE
=========================== */

img{

    image-rendering:auto;

}

img,
button,
.btn-primary,
.btn-secondary,
.service-card,
.why-card,
.car-card{

    will-change:transform;

}

/* ===========================
   END PART 4
=========================== */
/* ==========================================
   HASIL SIMULASI
========================================== */

.hasil-simulasi{
    margin-top:40px;
    background:#ffffff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #eee;
    display:none;
}

.hasil-simulasi.show{
    display:block;
}

.hasil-simulasi h2{
    color:#EB0A1E;
    margin-bottom:20px;
    font-size:28px;
}

.hasil-simulasi table{
    width:100%;
    border-collapse:collapse;
}

.hasil-simulasi td{
    padding:14px 0;
    border-bottom:1px solid #eee;
    font-size:16px;
}

.hasil-simulasi td:first-child{
    color:#666;
    width:45%;
}

.hasil-simulasi td:last-child{
    font-weight:600;
    color:#111;
}

.hasil-simulasi strong{
    color:#EB0A1E;
}

.hasil-simulasi .btn{
    margin-top:25px;
}
