/* ===========================================
   TOYOTA PREMIUM V3
   Author : ChatGPT
   =========================================== */

:root{

--primary:#EB0A1E;
--primary-dark:#C30014;

--secondary:#111111;

--white:#ffffff;

--light:#f5f7fa;

--gray:#777777;

--border:#e5e5e5;

--radius:18px;

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

--transition:.35s ease;

--container:1200px;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;

background:#fff;

color:#222;

overflow-x:hidden;

line-height:1.7;

}

img{

max-width:100%;

display:block;

}

a{

text-decoration:none;

color:inherit;

}

ul{

list-style:none;

}

.container{

width:min(92%,var(--container));

margin:auto;

}

/* ===========================================
LOADER
=========================================== */

#loader{

position:fixed;

inset:0;

background:#fff;

display:flex;

align-items:center;

justify-content:center;

z-index:99999;

transition:.5s;

}

.spinner{

width:60px;

height:60px;

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%;

z-index:999;

transition:.4s;

padding:18px 0;

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

backdrop-filter:blur(14px);

}

.header.scrolled{

background:#fff;

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

}

.header .container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo{

display:flex;

align-items:center;

gap:15px;

}

.logo img{

width:55px;

}

.logo h2{

font-size:18px;

font-weight:700;

color:#fff;

}

.header.scrolled .logo h2{

color:#111;

}

.logo span{

font-size:13px;

color:#ddd;

}

.header.scrolled .logo span{

color:#666;

}

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

#navbar{

display:flex;

gap:35px;

}

#navbar a{

font-size:15px;

font-weight:500;

color:#fff;

transition:.3s;

position:relative;

}

.header.scrolled #navbar a{

color:#111;

}

#navbar a:hover{

color:var(--primary);

}

#navbar a::after{

content:"";

position:absolute;

bottom:-8px;

left:0;

width:0;

height:2px;

background:var(--primary);

transition:.3s;

}

#navbar a:hover::after{

width:100%;

}

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

.header-action{

display:flex;

gap:12px;

align-items:center;

}

.call,

.wa{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

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

backdrop-filter:blur(10px);

color:#fff;

font-size:20px;

transition:.3s;

}

.call:hover,

.wa:hover{

background:var(--primary);

transform:translateY(-3px);

}

#menu-toggle{

display:none;

background:none;

border:none;

font-size:28px;

color:#fff;

cursor:pointer;

}

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

.hero{

height:100vh;

display:flex;

align-items:center;

position:relative;

overflow:hidden;

background:url("../img/banner/hero.webp")
center center/cover no-repeat;

}

.overlay{

position:absolute;

inset:0;

background:linear-gradient(

90deg,

rgba(0,0,0,.75),

rgba(0,0,0,.45)

);

}

.hero-content{

position:relative;

z-index:2;

max-width:700px;

color:#fff;

}

.hero-badge{

display:inline-block;

padding:8px 18px;

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

backdrop-filter:blur(12px);

border-radius:40px;

font-size:13px;

letter-spacing:1px;

margin-bottom:20px;

}

.hero h1{

font-size:60px;

line-height:1.15;

font-weight:800;

margin-bottom:25px;

}

.hero p{

font-size:18px;

opacity:.95;

margin-bottom:35px;

}

.hero-button{

display:flex;

gap:18px;

flex-wrap:wrap;

}

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

background:var(--primary);

color:#fff;

border-radius:50px;

font-weight:600;

transition:.3s;

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

}

.btn:hover{

background:var(--primary-dark);

transform:translateY(-4px);

}

.btn-outline{

display:inline-flex;

align-items:center;

justify-content:center;

padding:15px 34px;

border-radius:50px;

border:2px solid #fff;

color:#fff;

transition:.3s;

}

.btn-outline:hover{

background:#fff;

color:#111;

}

.hero-info{

display:grid;

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

gap:25px;

margin-top:70px;

}

.hero-info div{

padding:22px;

border-radius:18px;

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

backdrop-filter:blur(14px);

text-align:center;

}

.hero-info h3{

font-size:34px;

margin-bottom:8px;

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

section{

padding:100px 0;

position:relative;

}

.section-title{

max-width:700px;

margin:0 auto 70px;

text-align:center;

}

.section-title span{

display:inline-block;

padding:8px 20px;

background:#ffe7ea;

color:var(--primary);

border-radius:50px;

font-size:13px;

font-weight:600;

letter-spacing:1px;

margin-bottom:18px;

text-transform:uppercase;

}

.section-title h2{

font-size:42px;

font-weight:700;

line-height:1.25;

margin-bottom:18px;

color:#111;

}

.section-title p{

font-size:16px;

color:#666;

line-height:1.8;

}

/* ===========================================
STATISTICS
=========================================== */

.stats{

background:#f8f9fb;

}

.stats-grid{

display:grid;

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

gap:30px;

}

.stats-card{

background:#fff;

padding:45px 30px;

border-radius:var(--radius);

text-align:center;

box-shadow:var(--shadow);

transition:var(--transition);

border:1px solid transparent;

}

.stats-card:hover{

transform:translateY(-10px);

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

}

.stats-card i{

font-size:52px;

color:var(--primary);

margin-bottom:20px;

}

.stats-card h2{

font-size:42px;

font-weight:700;

margin-bottom:12px;

color:#111;

}

.stats-card p{

color:#777;

font-size:15px;

}

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

.about{

background:#fff;

}

.about-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image{

position:relative;

}

.about-image img{

width:100%;

border-radius:25px;

box-shadow:0 30px 60px rgba(0,0,0,.12);

}

.section-badge{

display:inline-block;

padding:8px 18px;

background:#ffe7ea;

color:var(--primary);

border-radius:30px;

font-size:13px;

font-weight:600;

margin-bottom:20px;

}

.about-content h2{

font-size:42px;

margin-bottom:12px;

font-weight:700;

}

.about-content h4{

font-size:18px;

font-weight:500;

color:var(--primary);

margin-bottom:25px;

}

.about-content p{

font-size:16px;

color:#666;

margin-bottom:35px;

line-height:1.9;

}

.about-feature{

display:grid;

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

gap:18px;

margin-bottom:40px;

}

.about-feature div{

display:flex;

align-items:center;

gap:10px;

font-size:15px;

font-weight:500;

}

.about-feature i{

color:var(--primary);

font-size:20px;

}

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

.services{

background:#f8f9fb;

}

.services-grid{

display:grid;

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

gap:30px;

}

.service-card{

background:#fff;

padding:45px 35px;

border-radius:20px;

text-align:center;

transition:.35s;

box-shadow:var(--shadow);

}

.service-card:hover{

transform:translateY(-12px);

}

.service-card i{

font-size:55px;

color:var(--primary);

margin-bottom:22px;

}

.service-card h3{

font-size:22px;

margin-bottom:15px;

}

.service-card p{

font-size:15px;

color:#666;

line-height:1.8;

}

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

.card{

background:#fff;

border-radius:20px;

box-shadow:var(--shadow);

overflow:hidden;

transition:.35s;

}

.card:hover{

transform:translateY(-10px);

}

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

.center-button{

margin-top:60px;

text-align:center;

}

.btn-small{

display:inline-flex;

align-items:center;

justify-content:center;

padding:12px 25px;

border-radius:40px;

background:var(--primary);

color:#fff;

font-size:14px;

font-weight:600;

transition:.3s;

}

.btn-small:hover{

background:var(--primary-dark);

}

.btn-wa{

display:inline-flex;

align-items:center;

justify-content:center;

padding:12px 25px;

border-radius:40px;

background:#25D366;

color:#fff;

font-size:14px;

font-weight:600;

transition:.3s;

}

.btn-wa:hover{

transform:translateY(-3px);

}

.reveal{

opacity:0;

transform:translateY(40px);

transition:1s;

}

.reveal.active{

opacity:1;

transform:none;

}
/* ===========================================
PRODUCTS
=========================================== */

.products{

background:#ffffff;

}

.product-grid{

display:grid;

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

gap:35px;

}

.product-card{

background:#fff;

border-radius:22px;

overflow:hidden;

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

transition:.35s;

border:1px solid #eee;

}

.product-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.product-card img{

width:100%;

height:240px;

object-fit:cover;

transition:.5s;

}

.product-card:hover img{

transform:scale(1.08);

}

.product-content{

padding:28px;

}

.product-content h3{

font-size:26px;

font-weight:700;

margin-bottom:10px;

}

.product-content p{

color:#888;

font-size:14px;

}

.product-content h4{

color:var(--primary);

font-size:28px;

margin:10px 0 25px;

font-weight:700;

}

.product-content ul{

margin-bottom:28px;

}

.product-content ul li{

display:flex;

align-items:center;

gap:10px;

margin-bottom:14px;

font-size:15px;

color:#555;

}

.product-content ul i{

color:var(--primary);

font-size:18px;

}

.product-button{

display:flex;

gap:15px;

flex-wrap:wrap;

}

.product-button .btn-small,

.product-button .btn-wa{

flex:1;

}

/* ===========================================
PROMO
=========================================== */

.promo{

background:#f8f9fb;

}

.promo-box{

display:grid;

grid-template-columns:1.1fr .9fr;

gap:60px;

align-items:center;

background:#fff;

padding:70px;

border-radius:25px;

box-shadow:var(--shadow);

}

.promo-content h2{

font-size:42px;

margin:20px 0;

}

.promo-content p{

color:#666;

line-height:1.9;

margin-bottom:30px;

}

.promo-list{

display:grid;

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

gap:18px;

margin-bottom:40px;

}

.promo-list li{

display:flex;

align-items:center;

gap:10px;

font-weight:500;

}

.promo-list i{

color:var(--primary);

}

.promo-image img{

border-radius:20px;

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

}

/* ===========================================
SIMULATION
=========================================== */

.simulation{

background:#ffffff;

}

.simulation-grid{

display:grid;

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

gap:30px;

}

.simulation-card{

background:#fff;

padding:45px 35px;

border-radius:22px;

text-align:center;

box-shadow:var(--shadow);

transition:.35s;

}

.simulation-card:hover{

transform:translateY(-10px);

}

.simulation-card i{

font-size:58px;

color:var(--primary);

margin-bottom:20px;

}

.simulation-card h3{

font-size:22px;

margin-bottom:15px;

}

.simulation-card p{

font-size:15px;

color:#666;

line-height:1.8;

}

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

.testimonial{

background:#f8f9fb;

}

.testimonial-grid{

display:grid;

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

gap:35px;

}

.testimonial-card{

background:#fff;

padding:40px 30px;

text-align:center;

border-radius:22px;

box-shadow:var(--shadow);

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.testimonial-card img{

width:90px;

height:90px;

border-radius:50%;

margin:0 auto 20px;

object-fit:cover;

border:4px solid #EB0A1E;

}

.testimonial-card h3{

font-size:22px;

margin-bottom:5px;

}

.testimonial-card span{

color:var(--primary);

font-weight:600;

display:block;

margin-bottom:20px;

}

.testimonial-card p{

font-size:15px;

line-height:1.8;

color:#666;

font-style:italic;

margin-bottom:18px;

}

.rating{

font-size:22px;

color:#FFC107;

letter-spacing:4px;

}

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

.cta{

padding:120px 0;

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

}

.cta-box{

max-width:900px;

margin:auto;

text-align:center;

color:#fff;

}

.cta-box h2{

font-size:48px;

font-weight:700;

margin-bottom:20px;

}

.cta-box p{

font-size:18px;

line-height:1.8;

margin-bottom:40px;

opacity:.95;

}

.cta-button{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.cta .btn{

background:#fff;

color:#111;

}

.cta .btn:hover{

background:#111;

color:#fff;

}

.cta .btn-outline{

border:2px solid #fff;

color:#fff;

}

.cta .btn-outline:hover{

background:#fff;

color:#111;

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

.faq{

background:#fff;

}

.faq-list{

max-width:900px;

margin:auto;

}

.faq-item{

background:#fff;

border:1px solid #eee;

border-radius:18px;

padding:22px 28px;

margin-bottom:20px;

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

transition:.35s;

}

.faq-item:hover{

border-color:var(--primary);

}

.faq-item summary{

font-size:18px;

font-weight:600;

cursor:pointer;

list-style:none;

position:relative;

padding-right:35px;

}

.faq-item summary::-webkit-details-marker{

display:none;

}

.faq-item summary::after{

content:"+";

position:absolute;

right:0;

top:0;

font-size:26px;

font-weight:700;

color:var(--primary);

transition:.3s;

}

.faq-item[open] summary::after{

content:"−";

}

.faq-item p{

margin-top:18px;

color:#666;

line-height:1.9;

}

/* ===========================================
MAP
=========================================== */

.maps{

background:#f8f9fb;

}

.map-box{

overflow:hidden;

border-radius:24px;

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

}

.map-box iframe{

width:100%;

height:500px;

border:0;

display:block;

}

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

.footer{

background:#111;

color:#fff;

padding:80px 0 25px;

}

.footer-grid{

display:grid;

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

gap:45px;

}

.footer h3{

font-size:22px;

margin-bottom:22px;

}

.footer p{

color:#bbb;

line-height:1.9;

}

.footer ul{

padding:0;

}

.footer ul li{

margin-bottom:14px;

}

.footer ul li a{

color:#bbb;

transition:.3s;

}

.footer ul li a:hover{

color:#fff;

padding-left:6px;

}

.social{

display:flex;

gap:15px;

margin-top:20px;

}

.social a{

width:46px;

height:46px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

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

font-size:20px;

transition:.35s;

}

.social a:hover{

background:var(--primary);

transform:translateY(-5px);

}

.footer-bottom{

margin-top:60px;

padding-top:25px;

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

text-align:center;

font-size:14px;

color:#aaa;

}

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

.floating-wa{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

border-radius:50%;

background:#25D366;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

box-shadow:0 15px 35px rgba(0,0,0,.25);

z-index:999;

transition:.35s;

animation:waFloat 2s infinite;

}

.floating-wa:hover{

transform:scale(1.1);

}

@keyframes waFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

100%{

transform:translateY(0);

}

}

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

#backToTop{

position:fixed;

right:25px;

bottom:105px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:var(--primary);

color:#fff;

font-size:22px;

cursor:pointer;

display:none;

box-shadow:0 12px 30px rgba(0,0,0,.2);

transition:.35s;

z-index:998;

}

#backToTop:hover{

transform:translateY(-5px);

background:var(--primary-dark);

}

#backToTop.show{

display:flex;

align-items:center;

justify-content:center;

}

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

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#f3f3f3;

}

::-webkit-scrollbar-thumb{

background:var(--primary);

border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

background:var(--primary-dark);

}

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

::selection{

background:var(--primary);

color:#fff;

}

/* ===========================================
UTILITY
=========================================== */

.text-center{

text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.shadow{

box-shadow:var(--shadow);

}

.radius{

border-radius:var(--radius);

}

.hidden{

display:none;

}
