*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
scroll-padding-top:110px;
}

body{
background:#05080f;
color:#fff;
overflow-x:hidden;
}

section[id]{
scroll-margin-top:110px;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* NAVBAR */

header{
position:fixed;
width:100%;
top:0;
left:0;
z-index:999;
background:transparent;
box-shadow:0 4px 30px rgba(0,0,0,.2);
transition: all 0.3s ease-in-out;
}

header.scrolled{
background:rgba(5,8,15,.95);
backdrop-filter:blur(10px);
box-shadow:0 4px 20px rgba(0,0,0,.6);
border-bottom:1px solid rgba(255,255,255,.05);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 0;
transition: all 0.3s ease-in-out;
}

.logo{
display:flex;
align-items:center;
gap:12px;
font-size:28px;
font-weight:800;
}

.logo-img{
height:60px;
width:auto;
object-fit:contain;
transition: all 0.3s ease-in-out;
}

.logo-img2{
height:45px;
width:auto;
object-fit:contain;
transition: all 0.3s ease-in-out;
}

@media(min-width: 992px) {
    .navbar {
        padding: 18px 0;
    }
    .logo-img {
        height: 70px;
        margin: -15px 0;
    }
    .logo-img2 {
        height: 55px;
        margin: -10px -4px;
    }
    header.scrolled .navbar {
        padding: 10px 0;
    }
    header.scrolled .logo-img {
        height: 55px;
        margin: -10px 0;
    }
    header.scrolled .logo-img2 {
        height: 42px;
        margin: -6px -4px;
    }
}

.logo span{
color:#00d5ff;
}

nav ul{
display:flex;
gap:35px;
list-style:none;
}

nav ul li a{
text-decoration:none;
color:white;
font-weight:500;
transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
color:#00d5ff;
font-weight:700;
}

/* HAMBURGER */
.hamburger{
display:none;
flex-direction:column;
gap:5px;
background:none;
border:none;
cursor:pointer;
padding:8px;
z-index:999;
}

.hamburger span{
display:block;
width:28px;
height:3px;
background:#fff;
border-radius:3px;
transition:all .3s ease;
transform-origin:center;
}

/* Hamburger Active → X */
.hamburger.active span:nth-child(1){
transform:rotate(45deg) translate(6px,6px);
width:28px;
}

.hamburger.active span:nth-child(2){
opacity:0;
transform:scaleX(0);
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
width:28px;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
position:relative;
padding-top:90px;
padding-bottom:40px;
background-image:url('images/latar.png');
background-size:cover;
background-position:center;
background-repeat:no-repeat;
background-attachment:fixed;
}

.hero::before{
content:'';
position:absolute;
inset:0;
background:rgba(5,8,15,.6);
pointer-events:none;
}

.hero::after{
content:'';
position:absolute;
width:700px;
height:700px;
background:#00d5ff20;
border-radius:50%;
filter:blur(180px);
right:-150px;
top:-150px;
pointer-events:none;
}

.hero-content{
display:grid;
grid-template-columns:1fr 1fr;
align-items:center;
gap:50px;
}

.tag{
display:inline-block;
padding:10px 18px;
background:#0f172a;
border:1px solid #00d5ff;
border-radius:50px;
margin-bottom:25px;
font-size:14px;
}

.hero-text h1{
font-size:72px;
line-height:1.1;
font-weight:900;
margin-bottom:25px;
}

.hero-text h1 span{
color:#00d5ff;
display:block;
}

.hero-text p{
font-size:18px;
line-height:1.8;
color:#d1d5db;
max-width:600px;
margin-bottom:35px;
}

.hero-btn{
display:flex;
gap:20px;
margin-bottom:50px;
}

.btn-primary{
background:#00d5ff;
padding:16px 32px;
border-radius:10px;
font-weight:700;
text-decoration:none;
color:#000;
}

.btn-secondary{
border:2px solid #00d5ff;
padding:16px 32px;
border-radius:10px;
font-weight:700;
text-decoration:none;
color:white;
}

.hero-info{
display:flex;
gap:50px;
}

.hero-info h3{
font-size:34px;
color:#00d5ff;
}

.hero-info span{
color:#cbd5e1;
}

.hero-image{
text-align:center;
}

.hero-image img{
width:100%;
max-width:700px;
filter:drop-shadow(0 0 40px #00d5ff80);
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%{
transform:translateY(0);
}
50%{
transform:translateY(-15px);
}
100%{
transform:translateY(0);
}
}

@media(max-width:991px){

.hero-content{
grid-template-columns:1fr;
text-align:center;
}

.hero-text h1{
font-size:50px;
}

.hero-info{
justify-content:center;
}

.hero-btn{
justify-content:center;
}

.hamburger{
display:flex;
}

.navbar nav{
position:fixed;
top:0;
left:0;
width:100%;
max-height:auto;
background:#0a0f1a;
flex-direction:column;
padding:40px;
transition:transform .4s ease;
z-index:998;
transform:translateY(-150%);
visibility:hidden;
}

.navbar nav.open{
transform:translateY(0);
top:0;
visibility:visible;
}

.navbar nav ul{
flex-direction:column;
gap:30px;
}

}
/* ==========================
   ARMADA SECTION
========================== */

.armada{
padding:120px 0;
background:linear-gradient(
160deg,
#070b14 0%,
#0a1225 30%,
#070b14 60%,
#0d1a30 100%
);
position:relative;
overflow:hidden;
}

.armada::before{
content:'';
position:absolute;
width:500px;
height:500px;
background:radial-gradient(circle,#00d5ff15,transparent 70%);
border-radius:50%;
top:-100px;
left:-100px;
animation:glowArmada 6s ease-in-out infinite;
pointer-events:none;
}

.armada::after{
content:'';
position:absolute;
width:400px;
height:400px;
background:radial-gradient(circle,#00d5ff10,transparent 70%);
border-radius:50%;
bottom:-50px;
right:-50px;
animation:glowArmada 8s ease-in-out infinite reverse;
pointer-events:none;
}

@keyframes glowArmada{
0%,100%{opacity:.5;transform:scale(1);}
50%{opacity:1;transform:scale(1.3);}
}

.armada .section-title,
.armada .armada-grid{
position:relative;
z-index:2;
}

.section-title{
text-align:center;
max-width:800px;
margin:auto;
margin-bottom:70px;
}

.section-title span{
color:#00d5ff;
font-weight:700;
letter-spacing:2px;
font-size:14px;
}

.section-title h2{
font-size:48px;
font-weight:800;
margin:20px 0;
line-height:1.2;
}

.section-title p{
color:#cbd5e1;
line-height:1.9;
font-size:16px;
max-width:650px;
margin:0 auto;
text-align:center;
}

.armada-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.car-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
border-radius:25px;
overflow:hidden;
transition:.4s;
backdrop-filter:blur(10px);
}

.car-card:hover{
transform:translateY(-10px);
border-color:#00d5ff;
box-shadow:0 0 35px rgba(0,213,255,.25);
}

.car-image{
padding:8px 8px 0 8px;
background:linear-gradient(
135deg,
#08111d,
#101b2c
);
overflow:hidden;
}

.car-image img{
width:100%;
height:280px;
object-fit:contain;
transition:.4s;
transform:scale(1.12);
}

.car-card:hover img{
transform:scale(1.2);
}

.car-content{
padding:25px;
}

.car-content h3{
font-size:24px;
margin-bottom:15px;
font-weight:700;
}

.car-info{
display:flex;
justify-content:space-between;
margin-bottom:20px;
color:#cbd5e1;
font-size:14px;
}

.car-info i{
color:#00d5ff;
margin-right:5px;
}

.price{
margin-bottom:25px;
color:#94a3b8;
}

.price h4{
margin-top:5px;
font-size:28px;
color:#00d5ff;
font-weight:800;
}

.btn-book{
display:block;
width:100%;
text-align:center;
padding:14px;
background:#00d5ff;
color:#000;
font-weight:700;
text-decoration:none;
border-radius:12px;
transition:.3s;
}

.btn-book:hover{
background:#18e2ff;
}

@media(max-width:768px){

.section-title h2{
font-size:34px;
}

.armada{
padding:80px 0;
}

}
/* ==========================
   SERVICES SECTION
========================== */

.services{
padding:120px 0;
background:#05080f;
position:relative;
overflow:hidden;
}

.services::before{
content:'';
position:absolute;
width:500px;
height:500px;
background:#00d5ff15;
border-radius:50%;
filter:blur(150px);
left:-200px;
top:50px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
position:relative;
z-index:2;
}

.service-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
padding:40px 30px;
border-radius:25px;
text-align:center;
transition:.4s;
backdrop-filter:blur(10px);
}

.service-card:hover{
transform:translateY(-10px);
border-color:#00d5ff;
box-shadow:0 0 35px rgba(0,213,255,.25);
}

.service-icon{
width:85px;
height:85px;
margin:auto;
margin-bottom:25px;
display:flex;
align-items:center;
justify-content:center;
border-radius:20px;
background:linear-gradient(
135deg,
#00d5ff,
#00a8ff
);
}

.service-icon i{
font-size:32px;
color:#000;
}

.service-card h3{
font-size:24px;
margin-bottom:15px;
font-weight:700;
}

.service-card p{
color:#cbd5e1;
line-height:1.8;
font-size:15px;
}

@media(max-width:768px){

.services{
padding:80px 0;
}

.service-card{
padding:30px 20px;
}

}
/* ==========================
   TESTIMONIALS SECTION
========================== */

.testimonials{
padding:120px 0;
background:#070b14;
position:relative;
overflow:hidden;
}

.testimonials::after{
content:'';
position:absolute;
width:600px;
height:600px;
background:#00d5ff15;
border-radius:50%;
filter:blur(180px);
right:-250px;
bottom:-200px;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
position:relative;
z-index:2;
}

.testimonial-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
padding:35px;
border-radius:25px;
transition:.4s;
backdrop-filter:blur(10px);
}

.testimonial-card:hover{
transform:translateY(-10px);
border-color:#00d5ff;
box-shadow:0 0 35px rgba(0,213,255,.25);
}

.stars{
font-size:22px;
color:#00d5ff;
margin-bottom:20px;
letter-spacing:3px;
}

.testimonial-card p{
color:#cbd5e1;
line-height:1.9;
margin-bottom:25px;
font-size:15px;
}

.client{
display:flex;
align-items:center;
gap:15px;
}

.client-avatar{
width:55px;
height:55px;
border-radius:50%;
background:linear-gradient(
135deg,
#00d5ff,
#00a8ff
);
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
font-size:20px;
color:#000;
}

.client h4{
font-size:18px;
font-weight:700;
margin-bottom:4px;
}

.client span{
font-size:14px;
color:#94a3b8;
}

@media(max-width:768px){

.testimonials{
padding:80px 0;
}

.testimonial-card{
padding:25px;
}

}
/* ==========================
   FAQ SECTION
========================== */

.faq{
padding:120px 0;
background:#05080f;
}

.faq-container{
max-width:900px;
margin:auto;
}

.faq-item{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
border-radius:18px;
margin-bottom:20px;
overflow:hidden;
transition:.3s;
}

.faq-item:hover{
border-color:#00d5ff;
}

.faq-question{
padding:25px 30px;
cursor:pointer;
display:flex;
justify-content:space-between;
align-items:center;
font-size:18px;
font-weight:600;
}

.faq-question i{
color:#00d5ff;
transition:.3s;
}

.faq-answer{
max-height:0;
overflow:hidden;
padding:0 30px;
color:#cbd5e1;
line-height:1.8;
transition:.4s ease;
}

.faq-item.active .faq-answer{
max-height:200px;
padding:0 30px 25px;
}

.faq-item.active .faq-question i{
transform:rotate(45deg);
}

@media(max-width:768px){

.faq{
padding:80px 0;
}

.faq-question{
font-size:16px;
padding:20px;
}

.faq-answer{
font-size:14px;
}

}
/* ==========================
   CTA SECTION
========================== */

.cta{
padding:120px 0;
background:#070b14;
}

.cta-box{

background:linear-gradient(
135deg,
#00d5ff,
#0099ff
);

padding:80px 60px;

border-radius:30px;

text-align:center;

position:relative;

overflow:hidden;
}

.cta-box::before{

content:'';

position:absolute;

width:400px;
height:400px;

background:rgba(255,255,255,.15);

border-radius:50%;

top:-200px;
right:-150px;
}

.cta-box span{

display:inline-block;

background:rgba(255,255,255,.15);

padding:10px 20px;

border-radius:50px;

font-size:14px;

font-weight:600;

margin-bottom:20px;
}

.cta-box h2{

font-size:52px;

font-weight:800;

color:#fff;

margin-bottom:20px;

line-height:1.2;
}

.cta-box p{

max-width:750px;

margin:auto;

font-size:18px;

line-height:1.8;

margin-bottom:40px;

color:#f8fafc;
}

.cta-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;
}

.cta-whatsapp{

background:#fff;

color:#000;

padding:18px 35px;

border-radius:12px;

font-weight:700;

text-decoration:none;

transition:.3s;
}

.cta-whatsapp:hover{

transform:translateY(-4px);

box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.cta-whatsapp i{

margin-right:8px;

font-size:20px;
}

.cta-armada{

border:2px solid #fff;

color:#fff;

padding:18px 35px;

border-radius:12px;

font-weight:700;

text-decoration:none;

transition:.3s;
}

.cta-armada:hover{

background:#fff;

color:#000;
}

@media(max-width:768px){

.cta{
padding:80px 0;
}

.cta-box{
padding:50px 25px;
}

.cta-box h2{
font-size:34px;
}

.cta-box p{
font-size:15px;
}

}
.footer{
background:#03060d;
padding-top:80px;
border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1.5fr;
gap:40px;
padding-bottom:50px;
}

.footer-logo{
font-size:26px;
font-weight:800;
margin-bottom:18px;
letter-spacing:0.5px;
}

.footer-logo span{
color:#00d5ff;
}

.footer-col p{
color:#94a3b8;
line-height:1.8;
margin-bottom:22px;
font-size:14px;
}

.footer-col h3{
margin-bottom:22px;
font-size:20px;
font-weight:700;
position:relative;
padding-bottom:12px;
}

.footer-col h3::after{
content:'';
position:absolute;
bottom:0;
left:0;
width:35px;
height:3px;
background:#00d5ff;
border-radius:2px;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:12px;
color:#cbd5e1;
font-size:14px;
}

.footer-col ul li a{
text-decoration:none;
color:#cbd5e1;
transition:.3s;
font-size:14px;
}

.footer-col ul li a:hover{
color:#00d5ff;
padding-left:5px;
}

.footer-social{
display:flex;
gap:12px;
}

.footer-social a{
width:42px;
height:42px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.1);
color:#fff;
text-decoration:none;
transition:.3s;
font-size:16px;
}

.footer-social a:hover{
background:#00d5ff;
color:#000;
border-color:#00d5ff;
transform:translateY(-4px);
box-shadow:0 6px 15px rgba(0,213,255,.3);
}

.contact-item{
display:flex;
align-items:flex-start;
gap:12px;
margin-bottom:16px;
}

.contact-item i{
color:#00d5ff;
font-size:16px;
margin-top:3px;
flex-shrink:0;
}

.contact-item span{
color:#cbd5e1;
line-height:1.6;
font-size:14px;
word-break:break-word;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.08);
padding:22px 0;
text-align:center;
}

.footer-bottom p{
color:#64748b;
font-size:13px;
letter-spacing:0.3px;
}

/* RESPONSIVE */

@media(max-width:991px){

.footer-grid{
grid-template-columns:1fr 1fr;
gap:35px;
}

}

@media(max-width:768px){

.footer{
padding-top:60px;
}

.footer-grid{
grid-template-columns:1fr;
gap:35px;
}

.footer-logo{
font-size:22px;
}

.footer-col h3{
font-size:18px;
margin-bottom:18px;
}

.footer-bottom{
padding:18px 0;
}

}

/* ==========================
   SUBPAGES HERO & STYLING
========================== */
.subpage-banner {
    padding: 150px 0 60px;
    background: linear-gradient(180deg, #03060d 0%, #070b14 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.subpage-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00d5ff15, transparent 70%);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.subpage-banner .section-title {
    margin-bottom: 0;
}

/* ABOUT PAGE SPECIAL HERO (Homepage Background + 3 Cars Parked) */
.about-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 70px;
    background-image: url('images/latar.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 15, 0.72);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.about-hero-text h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.about-hero-text h1 span {
    color: #00d5ff;
    display: block;
}

.about-hero-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 30px;
}

.about-hero-image img {
    width: 100%;
    max-width: 680px;
    filter: drop-shadow(0 0 45px rgba(0, 213, 255, 0.5));
    animation: float 4s ease-in-out infinite;
}

/* ADDRESS HIGHLIGHT CARD */
.address-card-box {
    background: rgba(0, 213, 255, 0.05);
    border: 1px solid rgba(0, 213, 255, 0.25);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.address-card-box i {
    font-size: 36px;
    color: #00d5ff;
    margin-top: 5px;
    background: rgba(0, 213, 255, 0.15);
    padding: 15px;
    border-radius: 15px;
}

.address-card-box h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 700;
}

.address-card-box p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* CONTACT PAGE STYLING */
.contact-section {
    padding: 80px 0 120px;
    background: #05080f;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.contact-info-card:hover {
    border-color: #00d5ff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 213, 255, 0.15);
}

.contact-info-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00d5ff, #0099ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-info-card p, .contact-info-card a {
    color: #cbd5e1;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.5;
}

.contact-info-card a:hover {
    color: #00d5ff;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(15px);
}

/* MODERN MAP & CONTACT BUTTONS */
.btn-maps-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #00d5ff, #0099ff);
    color: #000000;
    font-weight: 700;
    font-size: 13px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 213, 255, 0.3);
}

.btn-maps-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 213, 255, 0.5);
    color: #000;
}

.map-wrapper-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.map-container-frame {
    border-radius: 18px;
    overflow: hidden;
    height: 320px;
    border: 1px solid rgba(0, 213, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 213, 255, 0.15);
}

.map-container-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-container h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #e2e8f0;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #00d5ff;
    box-shadow: 0 0 15px rgba(0, 213, 255, 0.3);
}

.btn-submit-wa {
    width: 100%;
    padding: 16px;
    background: #00d5ff;
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-wa:hover {
    background: #18e2ff;
    box-shadow: 0 8px 25px rgba(0, 213, 255, 0.4);
    transform: translateY(-2px);
}

/* SEARCH & FILTER FOR ARMADA PAGE */
.filter-search-bar {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.search-input-wrap {
    position: relative;
    min-width: 280px;
    flex: 1;
}

.search-input-wrap i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #00d5ff;
}

.search-input-wrap input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.search-input-wrap input:focus {
    outline: none;
    border-color: #00d5ff;
}

@media(max-width: 991px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-hero-text h1 {
        font-size: 42px;
    }
    .contact-layout-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   MOBILE FIX — hilangkan space/overflow di samping pada HP
============================================================ */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Grid selalu 1 kolom penuh agar tidak meluap ke samping */
@media(max-width: 520px) {

    .armada-grid,
    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    /* Container lebih lebar di layar kecil agar tidak meninggalkan ruang kosong */
    .container {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Hero image jangan melebar melebihi layar */
    .hero-image img,
    .about-hero-image img {
        max-width: 100%;
        width: 100%;
    }

    /* Sembunyikan/mengecilkan glow dekoratif agar tidak memicu scroll */
    .hero::after,
    .armada::before,
    .armada::after,
    .services::before,
    .testimonials::after {
        display: none;
    }

    /* Hero sejajar dengan teks agar tidak terpotong */
    .hero {
        background-attachment: scroll;
    }

    /* Judul hero lebih proporsional */
    .hero-text h1 {
        font-size: 40px;
    }

    /* Kartu armada gambar tidak terlalu tinggi */
    .car-image img {
        height: 220px;
        transform: scale(1.05);
    }

    /* CTA box memenuhi lebar tanpa padding berlebih */
    .cta-box {
        padding: 40px 20px;
    }

    /* Footer grid 1 kolom penuh */
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Layar sangat kecil (mis. 360px) */
@media(max-width: 380px) {
    .hero-text h1 {
        font-size: 34px;
    }
    .btn-primary,
    .btn-secondary {
        padding: 14px 22px;
        font-size: 14px;
    }
    .hero-btn {
        gap: 12px;
        flex-wrap: wrap;
    }
    .hero-info {
        gap: 30px;
        flex-wrap: wrap;
    }
    /* Navigasi mobile full lebar tanpa menyisakan ruang */
    .navbar nav {
        left: 0;
        right: 0;
        width: 100%;
    }
}

/* ============================================================
   NAVBAR FIX MOBILE — logo tidak mendorong tombol hamburger
============================================================ */
@media(max-width: 600px) {

    .navbar {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 8px 0;
    }

    /* Logo dibuat lebih kecil agar menyisakan ruang untuk tombol hamburger */
    .logo {
        gap: 6px;
        font-size: 18px;
        min-width: 0;
        flex: 1;
        overflow: hidden;
    }

    .logo-img {
        height: 34px;
    }

    .logo-img2 {
        height: 26px;
    }

    /* Tombol hamburger selalu terlihat dan tidak terpotong */
    .hamburger {
        flex-shrink: 0;
        margin-left: auto;
        padding: 6px;
    }

    .hamburger span {
        width: 24px;
        height: 3px;
    }
}

/* Layar sangat sempit (mis. 360px) — sembunyikan teks di samping logo */
@media(max-width: 400px) {
    .logo {
        font-size: 16px;
    }
    .logo-img {
        height: 30px;
    }
    .logo-img2 {
        height: 22px;
    }
}
