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

#header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
background:rgba(0,0,0,.85);
backdrop-filter:blur(15px);
-webkit-backdrop-filter:blur(15px);
transition:.35s;
box-shadow:0 5px 20px rgba(0,0,0,.25);
}

.navContainer{
display:flex;
align-items:center;
justify-content:space-between;
height:80px;
}

.logo img{
height:55px;
width:auto;
}

#navMenu{
display:flex;
align-items:center;
gap:35px;
}

#navMenu a{
color:#fff;
font-size:15px;
font-weight:600;
text-decoration:none;
transition:.3s;
}

#navMenu a:hover{
color:#FDB913;
}

.headerBtn{
background:#FDB913;
color:#111;
padding:12px 24px;
border-radius:50px;
font-weight:700;
box-shadow:0 8px 25px rgba(253,185,19,.25);
transition:.3s;
}

.headerBtn:hover{
transform:translateY(-3px);
box-shadow:0 14px 30px rgba(253,185,19,.35);
}

#menuBtn{
display:none;
font-size:28px;
color:#fff;
cursor:pointer;

}

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

#hero{

padding:170px 0 110px;

background:

linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),

url(images/hero-bg.webp);

background-size:cover;

background-position:center;

background-repeat:no-repeat;

color:#fff;

}

.heroGrid{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:70px;

}

.heroTag{

display:inline-block;

padding:10px 18px;

background:#ffd000;

color:#111;

border-radius:40px;

font-weight:700;

margin-bottom:25px;

}

.heroLeft h1{

font-size:62px;

font-weight:800;

line-height:1.1;

margin-bottom:25px;

}

.heroLeft h1 span{

display:block;

color:#ffd000;

}

.heroLeft p{

font-size:20px;

margin-bottom:35px;

}

.heroList{

display:grid;

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

gap:18px;

margin-bottom:35px;

}

.heroList i{

color:#ffd000;

font-size:18px;

}

.heroList li{

display:flex;

align-items:center;

gap:10px;

font-size:17px;

font-weight:500;

}

.heroList i{

color:#ffd000;

font-size:18px;

}

.heroButtons{

display:flex;

gap:20px;

margin-bottom:45px;

flex-wrap:wrap;

}

.btnPrimary{

background:#ffd000;

color:#111;

padding:16px 34px;

border-radius:50px;

font-weight:700;

box-shadow:0 10px 25px rgba(255,208,0,.30);

transition:.3s;

}

.btnSecondary{

border:2px solid #fff;

color:#fff;

padding:16px 34px;

border-radius:50px;

font-weight:700;

transition:.3s;

}
.btnPrimary:hover,
.btnSecondary:hover{
    transform:translateY(-4px);
}

.heroStats{

display:grid;

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

gap:18px;

}

.statBox{

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

backdrop-filter:blur(12px);

-webkit-backdrop-filter:blur(12px);

padding:20px;

border-radius:18px;

text-align:center;

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

}

.statBox h3{

font-size:30px;

color:#ffd000;

margin-bottom:8px;

}

.heroRight img{
    width:100%;
    height:auto;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}

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

section{

padding:90px 0;

}

.sectionTitle{

text-align:center;

margin-bottom:60px;

}

.sectionTitle h2{

font-size:42px;

font-weight:800;

color:#111;

margin-bottom:15px;

}

.sectionTitle p{

font-size:18px;

color:#666;

max-width:700px;

margin:auto;

}

/* ===========================
PURPOSE
=========================== */

#purpose{

background:#fff;

}

.purposeGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.purposeCard{

background:#fff;

border-radius:20px;

padding:30px;

text-align:center;

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

transition:.35s;

cursor:pointer;

border:1px solid rgba(0,0,0,.05);

}

.purposeCard:hover{

transform:translateY(-10px);

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

}

.purposeCard img{

height:85px;

margin:auto;

margin-bottom:20px;

}

.purposeCard h3{

font-size:22px;

margin-bottom:12px;

}

.purposeCard p{

color:#666;

font-size:15px;

}

/* ===========================
CATEGORY
=========================== */

#category{

background:#f5f5f5;

}

.categoryGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:22px;
}

.categoryCard{

background:#fff;

border-radius:18px;

overflow:hidden;

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

transition:.35s;

color:#111;

border:1px solid rgba(0,0,0,.05);

}

.categoryCard:hover{

transform:translateY(-8px);

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

}

.categoryCard img{

width:100%;

height:180px;

object-fit:cover;

}

.categoryCard h3{

padding:18px 20px 8px;

font-size:22px;

}

.categoryCard p{

padding:0 20px 22px;

color:#666;

font-size:15px;

}

.categoryCard:hover{

transform:translateY(-10px);

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

}

.categoryCard img{

width:100%;

height:170px;

object-fit:cover;

}

.categoryCard h3{

font-size:22px;

padding:20px 20px 8px;

}

.categoryCard p{

padding:0 20px 25px;

color:#666;

}

/* ===========================
FLEET
=========================== */

#fleet{
background:#f7f7f7;
}

.fleetFilter{
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
margin-bottom:50px;
}

.fleetFilter button{
padding:12px 24px;
border:none;
border-radius:40px;
background:#fff;
font-weight:700;
cursor:pointer;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.fleetFilter button:hover,
.fleetFilter .active{
background:#FDB913;
color:#111;
}

.fleetGrid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.carCard{
background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,.08);
transition:.35s;
border:1px solid #eee;
}

.carCard:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.carCard img{
width:100%;
aspect-ratio:16/9;
object-fit:contain;
background:#fff;
padding:20px;
}

.carContent{
padding:25px;
}

.carContent h3{
font-size:24px;
margin-bottom:12px;
}

.price{
font-size:34px;
font-weight:800;
color:#111;
margin-bottom:20px;
}

.price .from{
font-size:15px;
font-weight:600;
color:#777;
}

.price span:last-child{
font-size:16px;
font-weight:500;
color:#666;
}

.carContent ul{
margin:20px 0;
display:flex;
flex-direction:column;
gap:10px;
}

.carContent li{
color:#555;
font-size:15px;
}

.carContent .heroButtons{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
margin-top:25px;
}

.bookBtn{
display:flex;
justify-content:center;
align-items:center;
padding:14px;
background:#FDB913;
color:#111;
font-weight:700;
border-radius:12px;
}

.btnSecondary{
display:flex;
justify-content:center;
align-items:center;
padding:14px;
border:2px solid #111;
color:#111;
background:#fff;
border-radius:12px;
font-weight:700;
}

.bookBtn:hover,
.btnSecondary:hover{
transform:translateY(-3px);
}

/* ===========================
FLEET PREMIUM
=========================== */

/* ===========================
FLEET FINAL
=========================== */

.carCard{
position:relative;
}

.carCard:nth-child(1)::after{
content:"🔥 PALING POPULAR";
position:absolute;
top:18px;
left:-36px;
width:180px;
text-align:center;
padding:8px 0;
background:#e53935;
color:#fff;
font-size:12px;
font-weight:700;
transform:rotate(-45deg);
box-shadow:0 5px 15px rgba(0,0,0,.25);
}

.carCard:nth-child(2)::after{
content:"⭐ BEST VALUE";
position:absolute;
top:18px;
left:-42px;
width:180px;
text-align:center;
padding:8px 0;
background:#18a058;
color:#fff;
font-size:12px;
font-weight:700;
transform:rotate(-45deg);
box-shadow:0 5px 15px rgba(0,0,0,.25);
}

.carContent ul{
padding-top:10px;
border-top:1px solid #eee;
}

.carContent li{
padding:8px 0;
border-bottom:1px dashed #ececec;
}

.price{
color:#FDB913;
}

.price span:last-child{
color:#777;
}

.bookBtn{
font-size:16px;
font-weight:800;
letter-spacing:.3px;
}

.btnSecondary{
font-size:15px;
font-weight:700;
}

.carCard:hover .price{
transform:scale(1.05);
transition:.3s;
}

.carCard:hover h3{
color:#FDB913;
transition:.3s;
}

@media(max-width:991px){

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

}

@media(max-width:576px){

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

.carCard::after{
font-size:10px;
width:150px;
left:-38px;
}

}
.carCard{
position:relative;
overflow:hidden;
}

.carCard::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#FDB913,#FFD84D);
}

.carCard:hover img{
transform:scale(1.06);
transition:.35s;
}

.carCard img{
transition:.35s;
}

.carContent h3{
min-height:58px;
line-height:1.35;
}

.price{
display:flex;
align-items:flex-end;
gap:6px;
flex-wrap:wrap;
}

.price::after{
content:"TERMASUK INSURANS";
display:block;
width:100%;
font-size:12px;
font-weight:600;
color:#18a058;
margin-top:6px;
}

.bookBtn,
.btnSecondary{
transition:.3s;
font-size:15px;
}

.bookBtn:hover{
background:#111;
color:#fff;
}

.btnSecondary:hover{
background:#FDB913;
border-color:#FDB913;
color:#111;
}

.carContent ul li{
display:flex;
align-items:center;
gap:8px;
}

.carCard:hover{
border-color:#FDB913;
}

@media(max-width:768px){

.carContent .heroButtons{
grid-template-columns:1fr;
}

.bookBtn,
.btnSecondary{
width:100%;
}

.price{
font-size:30px;
}

.carContent{
padding:20px;
}

}

/* ===========================
HOW IT WORKS
=========================== */

#how{

background:#111;

color:#fff;

}

#how .sectionTitle h2{

color:#fff;

}

#how .sectionTitle p{

color:#bbb;

}

.stepGrid{

display:grid;

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

gap:30px;

}

.stepCard{

background:#1b1b1b;

padding:35px;

border-radius:22px;

text-align:center;

border:1px solid rgba(255,255,255,.05);

transition:.35s;

}

.stepCard:hover{

transform:translateY(-8px);

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

}

.stepCard span{

display:flex;

justify-content:center;

align-items:center;

width:70px;

height:70px;

margin:auto;

margin-bottom:25px;

border-radius:50%;

background:#ffd000;

color:#111;

font-size:30px;

font-weight:800;

}

.stepCard h3{

margin-bottom:15px;

font-size:24px;

}

.stepCard p{

color:#cfcfcf;

}

/* ===========================
COVERAGE
=========================== */

#coverage{

background:#f7f7f7;

}

.coverageGrid{

display:grid;

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

gap:20px;

}

.coverageGrid div{

background:#fff;

padding:22px;

border-radius:15px;

font-weight:700;

text-align:center;

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

border:1px solid rgba(0,0,0,.05);

transition:.3s;

}

.coverageGrid div:hover{

background:#ffd000;

transform:translateY(-5px);

}

/* ===========================
REVIEW
=========================== */

#review{

background:#fff;

}

.testimonial-wrapper{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.testimonial-card{
background:#fff;
padding:35px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
border:1px solid rgba(0,0,0,.05);
transition:.35s;
}

.testimonial-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.testimonial-card p{
margin:20px 0;
color:#666;
line-height:1.8;
}

.testimonial-card h4{
font-size:18px;
}

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

#faq{

background:#f8f8f8;

}

.faq-item{

background:#fff;

padding:28px;

border-radius:15px;

margin-bottom:18px;

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

border:1px solid rgba(0,0,0,.05);

transition:.3s;

}

.faq-item:hover{

transform:translateY(-3px);

}

.faq-item h3{

margin-bottom:10px;

font-size:20px;

}

.faq-item p{

color:#666;

}

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

#cta{

background:#111;

color:#fff;

text-align:center;

}

#cta h2{

font-size:48px;

margin-bottom:20px;

}

#cta p{

font-size:22px;

margin-bottom:35px;

color:#ddd;

}

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

footer{

background:#000;

color:#fff;

padding:70px 0 30px;

}

.footerGrid{

display:grid;

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

gap:40px;

margin-bottom:40px;

}

.footerGrid h3{

margin-bottom:18px;

font-size:22px;

}

.footerGrid p{

color:#bbb;

line-height:1.8;

}

.footerGrid ul{

display:flex;

flex-direction:column;

gap:12px;

}

.footerGrid li{

color:#bbb;

}

.footerGrid li:hover{

color:#ffd000;

}

.footerBottom{

text-align:center;

padding-top:25px;

margin-top:30px;

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

color:#999;

font-size:14px;

}

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

@media(max-width:991px){
#menuBtn{
display:block;
}

#navMenu{
display:none;
}

#navMenu.active{
display:flex;
flex-direction:column;
position:absolute;
top:80px;
left:0;
width:100%;
background:#111;
padding:25px 0;
gap:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.25);
z-index:999;
}

#navMenu.active a{
display:block;
padding:10px 0;
}

#menuBtn.active i{
transform:rotate(90deg);
transition:.3s;
}

.heroGrid,

.stepGrid,

.fleetGrid,

.testimonial-wrapper,

.footerGrid,

.categoryGrid,

.purposeGrid,

.coverageGrid{

grid-template-columns:1fr;

}

.heroLeft h1{

font-size:44px;

}

.heroButtons{

flex-direction:column;

}

.heroStats{

grid-template-columns:1fr;

}

section{

padding:70px 0;

}

.sectionTitle h2{

font-size:34px;

}

#cta h2{

font-size:34px;

}

.container{

width:94%;

}

}

@media(max-width:576px){

.heroLeft h1{

font-size:36px;

}

.heroList{

grid-template-columns:1fr;

}

.btnPrimary,

.btnSecondary,

.bookBtn{

width:100%;

text-align:center;

}

.price{

font-size:30px;

}

.stepCard,

.testimonial-card,

.carCard,

.categoryCard,

.purposeCard,

.faq-item{

border-radius:16px;

}
 
}

/* ===========================
SEO CONTENT
=========================== */

#seoContent{
padding:80px 0;
background:#fff;
}

#seoContent p{
font-size:17px;
line-height:1.9;
color:#444;
margin-bottom:20px;
}

#seoContent ul{
margin-top:20px;
padding-left:20px;
}

#seoContent li{
margin-bottom:10px;
font-weight:600;
}

/* ===========================
WHY BANGI
=========================== */

#whyBangi{
padding:80px 0;
background:#f8f9fb;
}

#whyBangi p{
font-size:17px;
line-height:1.9;
color:#444;
margin-bottom:20px;
}

.heroTag{
display:inline-block;
padding:8px 16px;
background:#FDB913;
color:#111;
font-weight:700;
border-radius:50px;
margin-bottom:20px;
}

.heroTrust{
display:flex;
flex-wrap:wrap;
gap:15px;
margin-top:30px;
font-weight:600;
}

.heroTrust span{
background:#fff;
padding:10px 18px;
border-radius:30px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

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

#aboutBangi{
padding:80px 0;
background:#ffffff;
}

#aboutBangi p{
font-size:17px;
line-height:1.9;
color:#444;
margin-bottom:20px;
}

.seoList{
margin-top:25px;
padding-left:20px;
}

.seoList li{
margin-bottom:12px;
font-size:16px;
}

/* ===========================
SERVICE AREA
=========================== */

#serviceArea{
padding:80px 0;
background:#f8f9fb;
}

.serviceGrid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:40px;
}

.serviceCard{
background:#fff;
padding:25px;
border-radius:16px;
box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.serviceCard h3{
margin-bottom:10px;
}

.serviceCard p{
line-height:1.7;
color:#555;
}

#seoContent{
padding:80px 0;
background:#fff;
}

#seoContent p{
font-size:17px;
line-height:1.9;
margin-bottom:20px;
color:#444;
}

.seoList{
margin-top:20px;
padding-left:20px;
}

.seoList li{
margin-bottom:12px;
}

#faqBangi{
padding:80px 0;
background:#f8f9fb;
}

.faqList{
max-width:900px;
margin:auto;
}

.faqItem{
background:#fff;
padding:25px;
margin-bottom:20px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.faqItem h3{
margin-bottom:10px;
}

.faqItem p{
line-height:1.8;
color:#555;
}