*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:linear-gradient(135deg,#050505,#0f0f0f,#1a1a1a);
color:#f5f5f5;
overflow-x:hidden;
}

.top-bar{
width:100%;
background:linear-gradient(90deg,#f5a623,#ffb347);
color:black;
overflow:hidden;
position:fixed;
top:0;
left:0;
z-index:1100;
height:34px;
display:flex;
align-items:center;
}

.top-bar p{
margin:0;
}

.marquee{
white-space:nowrap;
display:inline-block;
animation:scrollText 30s linear infinite;
font-weight:600;
letter-spacing:1px;
font-size:13px;
}

@keyframes scrollText{
0%{transform:translateX(100%);}
100%{transform:translateX(-100%);}
}

header{
position:fixed;
top: 60px;
left:50%;
transform:translateX(-50%);
width:82%;
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 28px;   
background:rgba(15,15,15,0.55);
backdrop-filter:blur(18px);
border:1px solid rgba(245,166,35,0.25);
border-radius:40px;  
z-index:1000;
transition:all .3s ease;
box-shadow:0 8px 25px rgba(0,0,0,0.4);
}

.logo{
position:relative;
padding:8px 20px;
border-radius:50px;
background:rgba(245,166,35,0.08);
border:1px solid rgba(245,166,35,0.25);
backdrop-filter:blur(10px);
flex-shrink: 0;
}

.logo img{
height:50px;
width:auto;
object-fit:contain;
filter:
brightness(1.15)
contrast(1.1)
drop-shadow(0 0 15px rgba(248, 154, 1, 0.6));
transition:.3s;
}

.logo:hover img{
filter:
brightness(1.2)
contrast(1.15)
drop-shadow(0 0 25px rgba(245,166,35,0.9));
}

header nav{
display: flex;
align-items: center;
flex-wrap: wrap;
}

header nav a{
color:#ddd;
text-decoration:none;
margin-left:30px;
font-size:12px;  
font-weight:500;
letter-spacing:.25px;
position:relative;
transition: 0.3s;
}

header nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#f5a623;
transition:.3s;
}

header nav a:hover{
color:#f5a623;
}

header nav a:hover::after{
width:100%;
}

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
}

.hamburger span{
width:25px;
height:3px;
background:#f5a623;
border-radius:3px;
transition:0.3s;
}

@media(max-width:768px){

.hamburger{
display:flex;
}

header{
flex-direction:row;
justify-content:space-between;
align-items:center;
}

#navMenu{
position:absolute;
top:100%;
left:0;
width:100%;
background:rgba(15,15,15,0.98);
backdrop-filter:blur(15px);
flex-direction:column;
align-items:center;
padding:20px 0;
gap:10px;
display:none;
border-radius:0 0 20px 20px;
border-top:1px solid rgba(245,166,35,0.2);
}

#navMenu a{
margin:10px 0;
font-size:12px;
}

#navMenu.active{
display:flex;
}
}

.privacy-dropdown {
  position: relative;
}

.privacy-menu {
  position: absolute;
  top: 35px;
  right: 0;
  background: #111;
  border-radius: 8px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 999;
}

.privacy-menu a {
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 13px;
}

.privacy-menu a:hover {
  background: #f5a623;
  color: #000;
}

.hero{
position:relative;
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:url('truck1.jpg') center/cover no-repeat;
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(rgba(0,0,0,0.80), rgba(0,0,0,0.74));
}

.hero-content{
position:relative;
margin-top: 80px;
z-index:2;
padding:0 15%;
}

.hero h1{
font-size:56px;
margin-bottom:20px;
font-weight:700;
letter-spacing:1px;
}

.hero p{
opacity:.8;
margin-bottom:35px;
font-size:20px;
}

.btn{
padding:16px 40px;
border-radius:50px;
background:linear-gradient(135deg,#f5a623,#ffb347);
color:black;
font-weight:700;
text-decoration:none;
letter-spacing:1px;
transition:.3s;
box-shadow:0 0 25px rgba(245,166,35,0.4);
}

.btn:hover{
transform:scale(1.05);
box-shadow:0 0 40px rgba(245,166,35,0.8);
}

.quote-section{
position:relative;
padding:140px 10%;
background:url('truck2.jpg') center/cover no-repeat;
}

.quote-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(rgba(0,0,0,0.80), rgba(0,0,0,0.74));
}

.quote-container{
position:relative;
z-index:2;
max-width:1200px;
margin:auto;
background:rgba(20,20,20,0.85);
backdrop-filter:blur(25px);
padding:50px;
border-radius:25px;
border:1px solid rgba(245,166,35,0.3);
box-shadow:0 0 40px rgba(245,166,35,0.15);
}

.quote-container h2{
color:#f5a623;
font-size:38px;
margin-bottom:10px;
}

.subtitle{
margin-bottom:40px;
opacity:.8;
}

.form-grid{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:25px;
}

.form-group{
display:flex;
flex-direction:column;
}

.form-group.full-width{
grid-column:1/-1;
}

label{
margin-bottom:8px;
font-size:14px;
color:#ccc;
}

input, select, textarea{
padding:14px;
font-size: 14px;
border-radius:10px;
border:1px solid rgba(245,166,35,0.2);
background:rgba(0,0,0,0.6);
color:white;
}

input[readonly]{
background:rgba(245,166,35,0.1);
color:#f5a623;
font-weight:600;
}

textarea{
min-height:100px;
resize:none;
}

.checkbox-group{
display:flex;
gap:20px;
}

.checkbox-group label{
display:flex;
align-items:center;
gap:8px;
font-size:14px;
}

.agree{
font-size:13px;
display:flex;
gap:10px;
align-items:flex-start;
}

button{
padding:15px;
border:none;
border-radius:40px;
background:linear-gradient(135deg,#f5a623,#ffb347);
color:black;
font-weight:700;
cursor:pointer;
letter-spacing:1px;
transition:.3s;
}

button:hover{
transform:scale(1.03);
}

.booking-section{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:rgba(0,0,0,0.95);
display:none;
align-items:center;
justify-content:center;
z-index:2000;
overflow-y:auto;
padding:60px 20px;
}

.form-grid{
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:18px;
}

.booking-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(rgba(0,0,0,0.95), rgba(0,0,0,0.98));
}

.booking-container{
position:relative;
z-index:2;
max-width:850px;
width:95%;
background:rgba(20,20,20,0.95);
padding:30px;
border-radius:18px;
border:1px solid rgba(245,166,35,0.3);
box-shadow:0 0 30px rgba(245,166,35,0.15);
max-height:85vh;
overflow-y:auto;
}

.booking-section label{
font-size:13px;
margin-bottom:5px;
}

.booking-section input,
.booking-section textarea{
padding:10px;
font-size:14px;
border-radius:8px;
}

.booking-section textarea{
min-height:80px;
}

.close-booking{
position:absolute;
top:15px;
right:20px;
background:none;
border: none;
font-size:28px;
color:#f5a623;
cursor:pointer;
transition:0.3s;
}

.close-booking:hover{
transform:scale(1.2);
color:#ffb347;
}

.terms-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100vh;
background:rgba(0,0,0,0.95);
display:none;
align-items:center;
justify-content:center;
z-index:3000;
padding:20px;
}

.terms-box{
background:rgba(20,20,20,0.95);
max-width:800px;
width:100%;
padding:40px;
border-radius:20px;
border:1px solid rgba(245,166,35,0.3);
position:relative;
max-height:85vh;
overflow-y:auto;
}

.terms-content{
margin:20px 0;
line-height:1.6;
font-size:14px;
}

.close-terms{
position:absolute;
top:15px;
right:20px;
background:none;
border:none;
font-size:26px;
color:#f5a623;
cursor:pointer;
}

.accept-btn{
width:100%;
margin-top:20px;
}

.faq-section{
padding:140px 10%;
background:linear-gradient(135deg,#0a0a0a,#111);
}

.faq-container{
max-width:900px;
margin:auto;
}

.faq-item{
margin-bottom:20px;
border-radius:10px;
background:rgba(20,20,20,0.85);
border:1px solid rgba(245,166,35,0.2);
overflow:hidden;
transition:.3s;
}

.faq-question{
width:100%;
background:none;
border:none;
color:#fff;
text-align:left;
padding:20px;
font-size:16px;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
}

.faq-question span{
color:#f5a623;
font-size:20px;
}

.faq-answer{
max-height:0;
overflow:hidden;
padding:0 0;
font-size:14px;
opacity:.8;
transition:max-height .4s ease, padding .3s ease;
}

.faq-item.active .faq-answer{
max-height:200px;
padding:20px;
}

.section{
padding:60px 10%;
text-align:center;
}

.section-title{
font-size:46px;
margin-bottom:60px;
font-weight:600;
color:#f5a623;
letter-spacing:1px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:10px;
}

.card{
padding:40px;
border-radius:25px;
background:rgba(20,20,20,0.8);
border:1px solid rgba(245,166,35,0.2);
backdrop-filter:blur(15px);
transition:.4s;
}

.card:hover{
transform:translateY(-15px);
box-shadow:0 0 40px rgba(245,166,35,0.3);
border:1px solid rgba(245,166,35,0.6);
}

.card i{
font-size:32px;
margin-bottom:10px;
color:#f5a623;
}

.features{
margin-top:40px;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.features div{
background:rgba(25,25,25,0.8);
padding:20px;
border-radius:15px;
border:1px solid rgba(245,166,35,0.2);
}

.contact-section{
padding:140px 10%;
background:linear-gradient(135deg,#050505,#0f0f0f);
position:relative;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.contact-info h2{
font-size:36px;
color:#f5a623;
margin-bottom:10px;
}

.contact-subtitle{
opacity:.8;
margin-bottom:40px;
}

.contact-item{
display:flex;
align-items:flex-start;
gap:20px;
margin-bottom:30px;
padding:20px;
background:rgba(20,20,20,0.8);
border-radius:15px;
font-size:14px;
border:1px solid rgba(245,166,35,0.2);
transition:.3s;
}

.contact-item:hover{
box-shadow:0 0 30px rgba(245,166,35,0.2);
border:1px solid rgba(245,166,35,0.5);
}

.contact-item small{
display:block;
margin-top:4px;
font-size:14px;
opacity:.7;
}

.contact-item i{
font-size:22px;
color:#f5a623;
margin-top:5px;
}

.contact-item h4{
margin-bottom:5px;
}

.compliance-box{
margin-top:40px;
padding:25px;
border-radius:20px;
background:rgba(20,20,20,0.9);
border:1px solid rgba(245,166,35,0.3);
box-shadow:0 0 30px rgba(245,166,35,0.1);
transition:.3s;
}

.compliance-box:hover{
border:1px solid rgba(245,166,35,0.6);
box-shadow:0 0 40px rgba(245,166,35,0.3);
}

.compliance-box h4{
color:#f5a623;
margin-bottom:15px;
letter-spacing:1px;
}

.compliance-details p{
margin-bottom:6px;
font-size:15px;
}

.compliance-details strong{
color:#f5a623;
}

.compliance-logos{
margin-top:20px;
display:flex;
gap:20px;
align-items:center;
justify-content:center;
flex-wrap:wrap;
}

.compliance-logos img{
max-height:60px;
width:auto;
object-fit:contain;
filter:brightness(1.1);
transition:0.3s ease;
}

.compliance-logos img:hover{
transform:scale(1.08);
filter:brightness(1.2);
}

.contact-form{
background:rgba(20,20,20,0.85);
backdrop-filter:blur(20px);
padding:40px;
border-radius:25px;
border:1px solid rgba(245,166,35,0.3);
box-shadow:0 0 40px rgba(245,166,35,0.1);
}

.contact-form h3{
margin-bottom:25px;
color:#f5a623;
}

.contact-form form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea, select{
padding:14px;
border-radius:10px;
border:1px solid rgba(245,166,35,0.2);
background:rgba(0,0,0,0.7);
color:white;
}

.contact-form textarea{
min-height:185px;
resize:none;
}

.contact-form button{
padding:14px;
border:none;
border-radius:40px;
background:linear-gradient(135deg,#f5a623,#ffb347);
color:black;
font-weight:700;
cursor:pointer;
transition:.3s;
}

.contact-form button:hover{
transform:scale(1.03);
box-shadow:0 0 30px rgba(245,166,35,0.6);
}

.map-container{
margin-top:60px;
border-radius:20px;
overflow:hidden;
border:1px solid rgba(245,166,35,0.3);
box-shadow:0 0 40px rgba(245,166,35,0.1);
}

footer{
padding:50px;
text-align:center;
background:#0a0a0a;
color:#888;
border-top:1px solid rgba(245,166,35,0.2);
}

/* RESPONSIVE FIXES */

img{
max-width:100%;
height:auto;
display:block;
}

.section{
padding:clamp(60px,8vw,100px) 5%;
}

.contact-wrapper{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:60px;
}

.hero{
background-size:cover;
background-position:center;
}



@media (max-width:1024px){

header{
width:92%;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.hero-content{
padding:0 8%;
}

.quote-section,
.contact-section,
.faq-section{
padding:100px 6%;
}

.form-grid{
grid-template-columns:repeat(2,1fr);
}

.contact-wrapper{
grid-template-columns:1fr;
gap:40px;
}

.section-title{
font-size:36px;
}

}



@media (max-width:768px){

.hero{
height:auto;
padding:120px 20px 80px;
}

.hero h1{
font-size:34px;
}

.hero p{
font-size:16px;
}

.hero-content{
padding:0;
}

.btn{
padding:14px 30px;
}

.quote-container{
padding:30px 20px;
}

.form-grid{
grid-template-columns:1fr;
}

.section-title{
font-size:30px;
margin-bottom:40px;
}

.contact-section{
padding:100px 20px;
}

.contact-form{
padding:25px;
}

.features{
grid-template-columns:1fr;
}

.services-grid{
grid-template-columns:1fr;
}

.booking-container{
width:100%;
padding:20px;
}

}



@media (max-width:480px){

.logo img{
height:36px;
}

.company-name{
font-size:20px;
}

.hero h1{
font-size:26px;
}

.hero p{
font-size:14px;
}

.section-title{
font-size:24px;
}

.card{
padding:25px;
}

.quote-container h2{
font-size:26px;
}

.contact-info h2{
font-size:26px;
}

.top-bar{
height:30px;
}

.marquee{
font-size:11px;
}

}
img{
max-width:100%;
height:auto;
display:block;
}

.hero h1{
font-size:clamp(28px,5vw,56px);
}

.section-title{
font-size:clamp(26px,4vw,46px);
}

.hero p{
font-size:clamp(14px,2vw,20px);
}

.contact-info h2{
font-size:clamp(24px,3vw,36px);
}

.section,
.quote-section,
.contact-section,
.faq-section{
padding:clamp(70px,10vw,140px) 6%;
max-width:1400px;
margin:auto;
}

.hero{
background-size:cover;
background-position:center;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.form-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.contact-wrapper{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:60px;
}


@media (max-width:1024px){

header{
width:92%;
}

.hero-content{
padding:0 8%;
}

.section-title{
font-size:clamp(24px,4vw,36px);
}

.contact-wrapper{
gap:40px;
}

}


@media (max-width:768px){

.hero{
height:auto;
padding:120px 20px 80px;
}

.hero-content{
padding:0;
}

.btn{
padding:14px 30px;
}

.quote-container{
padding:30px 20px;
}

.contact-form{
padding:25px;
}

.booking-container{
width:100%;
padding:20px;
}

.services-grid,
.features{
grid-template-columns:1fr;
}

}

@media (max-width:480px){

.logo img{
height:36px;
}

.company-name{
font-size:20px;
}

.hero h1{
font-size:26px;
}

.hero p{
font-size:14px;
}

.section-title{
font-size:24px;
}

.card{
padding:25px;
}

.quote-container h2{
font-size:26px;
}

.contact-info h2{
font-size:26px;
}

.top-bar{
height:30px;
}

.marquee{
font-size:11px;
}

}