:root{

--black:#0f1117;
--white:#ffffff;
--gold:#D4A017;
--red:#D62828;
--gray:#f5f6f8;
--text:#444;
--radius:24px;
--shadow:0 15px 40px rgba(0,0,0,.08);

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#fff;
overflow-x:hidden;
color:var(--text);

}

.container{

max-width:1200px;
margin:auto;
padding:0 30px;

}

/* HEADER */

header{

position:fixed;
top:0;
left:0;
width:100%;
height:85px;

background:rgba(255,255,255,.95);

backdrop-filter:blur(20px);

z-index:999;

box-shadow:0 3px 20px rgba(0,0,0,.05);

}

.navbar{

height:85px;

display:flex;

justify-content:space-between;

align-items:center;

}

.logo img{

height:60px;

}

nav ul{

display:flex;

gap:35px;

list-style:none;

}

nav a{

text-decoration:none;

color:#333;

font-weight:500;

transition:.3s;

}

nav a:hover{

color:var(--gold);

}

.btn-wa{

background:var(--gold);

padding:14px 28px;

border-radius:50px;

text-decoration:none;

color:white;

font-weight:600;

transition:.3s;

}

.btn-wa:hover{

transform:translateY(-3px);

}

/* HERO */

#hero{

padding-top:130px;

min-height:100vh;

display:flex;

align-items:center;

background:

linear-gradient(

135deg,

#ffffff 0%,

#fafafa 60%,

#f0f0f0 100%

);

}

.hero{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

align-items:center;

}

.badge{

display:inline-block;

padding:10px 18px;

background:#fff4d8;

color:#946d00;

border-radius:30px;

font-size:14px;

font-weight:600;

margin-bottom:25px;

}

.hero h1{

font-family:'Montserrat',sans-serif;

font-size:72px;

line-height:1.1;

margin-bottom:25px;

}

.hero h1 span{

color:var(--gold);

}

.hero p{

font-size:18px;

line-height:1.8;

margin-bottom:35px;

color:#666;

}

.hero-button{

display:flex;

gap:20px;

}

.btn-gold{

background:var(--gold);

padding:16px 32px;

border-radius:50px;

text-decoration:none;

color:white;

font-weight:600;

}

.btn-white{

border:2px solid #ddd;

padding:16px 32px;

border-radius:50px;

text-decoration:none;

color:#333;

font-weight:600;

}

.hero-right{

position:relative;

display:flex;

justify-content:center;

align-items:center;

}

.car1{

width:500px;

position:absolute;

top:-20px;

animation:float 5s ease infinite;

}

.car2{

width:450px;

margin-top:180px;

animation:float2 6s ease infinite;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

100%{

transform:translateY(0);

}

}

@keyframes float2{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-10px);

}

100%{

transform:translateY(0);

}

}

/* SECTION */

section{

padding:120px 0;

}

section h2{

font-family:'Montserrat';

font-size:48px;

text-align:center;

margin-bottom:60px;

}

/* GRID */

.grid-4{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.card{

padding:45px;

background:white;

border-radius:var(--radius);

box-shadow:var(--shadow);

text-align:center;

transition:.3s;

}

.card:hover{

transform:translateY(-10px);

}

.card h3{

font-size:42px;

color:var(--gold);

margin-bottom:15px;

}

/* EKOSISTEM */

.eco{

display:grid;

grid-template-columns:repeat(5,1fr);

gap:25px;

}

.eco div{

padding:35px;

background:white;

border-radius:var(--radius);

box-shadow:var(--shadow);

font-weight:600;

text-align:center;

}

/* VEHICLE */

.vehicle-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

}

.vehicle-card{

background:white;

padding:50px;

border-radius:30px;

box-shadow:var(--shadow);

}

.vehicle-card img{

width:100%;

margin-bottom:30px;

}

.vehicle-card h3{

font-size:32px;

margin-bottom:30px;

}

.vehicle-card ul{

list-style:none;

}

.vehicle-card li{

padding:15px 0;

border-bottom:1px solid #eee;

}

/* FAQ */

.faq{

max-width:900px;

margin:auto;

}

.faq h3{

margin-top:30px;

font-size:24px;

}

.faq p{

margin-top:10px;

line-height:1.8;

}

/* FOOTER */

footer{

background:var(--black);

padding:80px 0;

color:white;

text-align:center;

}

footer img{

height:70px;

margin-bottom:20px;

}

footer p{

margin:10px 0;

}

/* RESPONSIVE */

@media(max-width:992px){

.hero{

grid-template-columns:1fr;

}

.grid-4{

grid-template-columns:1fr;

}

.vehicle-grid{

grid-template-columns:1fr;

}

.eco{

grid-template-columns:1fr;

}

.hero h1{

font-size:48px;

}

nav{

display:none;

}

.hero-button{

flex-direction:column;

}

.car1{

position:relative;

width:100%;

}

.car2{

position:relative;

width:100%;

margin-top:20px;

}

}

/* FLOATING WHATSAPP */

.floating-whatsapp{

position:fixed;

right:25px;

bottom:25px;

width:65px;

height:65px;

border-radius:50%;

background:#25D366;

display:flex;

justify-content:center;

align-items:center;

font-size:30px;

text-decoration:none;

z-index:9999;

box-shadow:0 10px 30px rgba(0,0,0,.2);

transition:.3s;

}

.floating-whatsapp:hover{

transform:scale(1.1);

}

/* ANIMATION */

.card,

.vehicle-card,

.eco div,

.faq{

opacity:0;

transform:translateY(30px);

transition:all .8s ease;

}

.show{

opacity:1;

transform:translateY(0);

}

.section-desc{

max-width:700px;

margin:0 auto 80px;

text-align:center;

line-height:1.8;

color:#666;

}

.ecosystem-wrapper{

position:relative;

width:500px;

height:500px;

margin:auto;

}

.ecosystem-center{

position:absolute;

top:50%;

left:50%;

transform:translate(-50%,-50%);

}

.ecosystem-logo{

width:180px;

height:180px;

background:white;

border-radius:50%;

box-shadow:0 15px 40px rgba(0,0,0,.08);

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

}

.ecosystem-logo img{

width:100px;

margin-bottom:10px;

}

.ecosystem-logo h3{

font-size:24px;

}

.ecosystem-item{

position:absolute;

width:140px;

height:140px;

background:white;

border-radius:50%;

box-shadow:0 15px 40px rgba(0,0,0,.08);

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

font-size:36px;

font-weight:600;

}

.ecosystem-item span{

font-size:14px;

margin-top:10px;

text-align:center;

}

.top{

top:0;

left:50%;

transform:translateX(-50%);

}

.right{

top:50%;

right:0;

transform:translateY(-50%);

}

.bottom{

bottom:0;

left:50%;

transform:translateX(-50%);

}

.left{

top:50%;

left:0;

transform:translateY(-50%);

}

@media(max-width:768px){

.ecosystem-wrapper{

width:320px;

height:320px;

}

.ecosystem-logo{

width:120px;

height:120px;

}

.ecosystem-logo img{

width:70px;

}

.ecosystem-item{

width:90px;

height:90px;

font-size:24px;

}

.ecosystem-item span{

font-size:11px;

}

}

/* ===================================== */
/* MOBILE VERSION */
/* ===================================== */

@media screen and (max-width:768px){

.container{

padding:0 20px;

}

/* HEADER */

header{

height:70px;

}

.navbar{

height:70px;

}

.logo img{

height:45px;

}

nav{

display:none;

}

.btn-wa{

display:none;

}

/* HERO */

#hero{

padding-top:100px;

padding-bottom:50px;

min-height:auto;

}

.hero{

display:flex;

flex-direction:column;

gap:30px;

}

.hero-left{

text-align:center;

}

.hero h1{

font-size:38px;

line-height:1.2;

}

.hero p{

font-size:16px;

line-height:1.7;

}

.hero-button{

display:flex;

flex-direction:column;

gap:15px;

}

.btn-gold,

.btn-white{

width:100%;

text-align:center;

}

.hero-right{

display:flex;

flex-direction:column;

align-items:center;

gap:20px;

}

.car1{

position:relative;

width:100%;

max-width:320px;

top:0;

}

.car2{

position:relative;

width:100%;

max-width:320px;

margin-top:0;

}

/* SECTION */

section{

padding:70px 0;

}

section h2{

font-size:32px;

margin-bottom:40px;

}

/* CARD */

.grid-4{

grid-template-columns:1fr;

}

.card{

padding:30px;

}

/* EKOSISTEM */

.ecosystem-wrapper{

width:300px;

height:300px;

}

.ecosystem-logo{

width:110px;

height:110px;

}

.ecosystem-logo img{

width:65px;

}

.ecosystem-item{

width:85px;

height:85px;

font-size:22px;

}

.ecosystem-item span{

font-size:10px;

}

/* PARTNERSHIP */

.vehicle-grid{

display:flex;

flex-direction:column;

gap:25px;

}

.vehicle-card{

padding:30px;

}

.vehicle-card h3{

font-size:24px;

}

.vehicle-card li{

font-size:15px;

}

/* FAQ */

.faq h3{

font-size:18px;

}

.faq p{

font-size:15px;

}

/* FOOTER */

footer{

padding:50px 20px;

}

footer img{

height:50px;

}

footer p{

font-size:14px;

}

}

/* VIDEO AVESTA */

.video-avesta-section{
    padding:80px 20px;
    background:#ffffff;
}

.video-heading{
    text-align:center;
    margin-bottom:40px;
}

.video-heading h2{
    font-size:38px;
    font-weight:700;
    color:#0d1b4c;
    margin-bottom:15px;
}

.video-heading p{
    max-width:800px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:18px;
}

.video-container{
    position:relative;
    width:100%;
    max-width:1000px;
    margin:auto;
    padding-bottom:56.25%;
    height:0;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.video-container iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}