@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#0b0b0b;
color:white;
line-height:1.6;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#000;
backdrop-filter:blur(10px);
z-index:1000;
border-bottom:1px solid rgba(255,255,255,.1);
}

.logo{
font-size:1.6rem;
font-weight:800;
color:#22c55e;
letter-spacing:2px;
text-shadow:0 0 12px rgba(34,197,94,.5);
transition:.3s;
}
.logo:hover{
text-shadow:
0 0 12px rgba(34,197,94,.6),
0 0 24px rgba(34,197,94,.4);
}

.nav-links{
display:flex;
list-style:none;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#22c55e;
}

.hero{
min-height:100vh;
background:
linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
url('uhaul.png');
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
position:relative;
}

.hero-content{
max-width:900px;
padding:20px;
margin-top:220px;
}

.hero h1{
font-size:5rem;
font-weight:800;
color:#22c55e;
margin-bottom:20px;
text-shadow:0 0 25px rgba(34,197,94,.5);
animation:heroSlide 1.2s ease-out;
}

.hero p{
font-size:1.15rem;
margin-top:15px;
margin-bottom:30px;
text-shadow:
0 0 8px rgba(255,255,255,.9),
0 0 16px rgba(255,255,255,.6);
}

.btn{
display:inline-block;
padding:16px 32px;
background:#22c55e;
color:black;
font-weight:700;
text-decoration:none;
border-radius:10px;
transition:.3s;
box-shadow:0 0 20px rgba(34,197,94,.5);
}

.btn:hover{
transform:translateY(-4px);
}

section{
padding:100px 10%;
}

section h2{
text-align:center;
font-size:3rem;
margin-bottom:50px;
color:#22c55e;
text-shadow:0 0 15px rgba(34,197,94,.4);
}
.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#141414;
padding:30px;
border-radius:16px;
border:1px solid rgba(255,255,255,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-10px) scale(1.02);
border-color:#22c55e;
box-shadow:0 0 25px rgba(34,197,94,.25);
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
border-radius:15px;
transition:.3s;
cursor:pointer;
}

.gallery-grid img:hover{
transform:scale(1.03);
}

.review{
background:#141414;
padding:25px;
border-left:5px solid #22c55e;
margin-bottom:20px;
border-radius:10px;
}

#contact{
text-align:center;
}

.phone{
font-size:2rem;
font-weight:700;
color:#22c55e;
margin:15px 0;
}

footer{
padding:40px;
text-align:center;
background:black;
}
.call-float{
position:fixed;
bottom:25px;
right:25px;
width:70px;
height:70px;
background:#22c55e;
color:black;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:32px;
text-decoration:none;
font-weight:bold;
box-shadow:0 0 25px rgba(34,197,94,.5);
z-index:9999;
transition:.3s;
}

.call-float:hover{
transform:scale(1.1);
}
.lightbox{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.9);
display:flex;
justify-content:center;
align-items:center;
z-index:10000;
padding:20px;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:15px;
box-shadow:0 0 40px rgba(0,0,0,.8);
}
footer{
background:#050505;
padding:60px 10%;
text-align:center;
border-top:1px solid rgba(255,255,255,.08);
}

footer h3{
color:#22c55e;
font-size:2rem;
margin-bottom:10px;
}

.footer-tagline{
font-weight:600;
margin-bottom:20px;
}

.footer-links{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}

.footer-links a{
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.footer-links a:hover{
color:#22c55e;
}

.copyright{
opacity:.7;
font-size:.9rem;
}
.hero-badges{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
margin-top:5px;
animation:heroSlide 1.6s ease-out;
}

.hero-badges span{
background:rgba(34,197,94,.15);
border:1px solid rgba(34,197,94,.35);
padding:10px 16px;
border-radius:999px;
font-weight:600;
}
.menu-toggle{
font-size:30px;
cursor:pointer;
display:block;
position:absolute;
left:10px;
top:10px;
  
}

@media (max-width:768px){
.navbar{
padding:10px 8%;
}
  .logo{
margin-left:40px;
}
.menu-toggle{
display:block;
}

.nav-links{
display:none;
}

.nav-links.active{
display:flex;
flex-direction:column;
position:absolute;
top:60px;
left:10px;
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,.2);
width:200px;
gap:15px;
z-index:1000;
}
  .nav-links.active a{
color:black;
font-size:18px;
text-decoration:none;
}

.hero h1{
font-size:3rem;
}

.logo{
text-shadow:
0 0 12px rgba(34,197,94,.9),
0 0 24px rgba(34,197,94,.7);
}

.logo span{
color:white;
text-shadow:
0 0 8px rgba(255,255,255,.9),
0 0 16px rgba(255,255,255,.6);
}
}
.fade-in{
opacity:0;
transform:translateY(40px);
transition:all .8s ease;
}

.fade-in.show{
opacity:1;
transform:translateY(0);
}
@keyframes heroSlide{
from{
opacity:0;
transform:translateY(40px);
}
to{
opacity:1;
transform:translateY(0);
}
}
.book-btn{
background:white;
color:black;
margin-top:15px;
}

.book-btn:hover{
transform:translateY(-4px);
}
.card{
transition:all .3s ease;
}

.card:hover{
transform:translateY(-10px) scale(1.03);
}

.hero-truck {
    width: 320px;
    max-width: 90%;
    display: block;
    margin: 30px auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
.nav-truck {
    width: 50px;
    height: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.logo {
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .hero {
        padding-top: 180px;
    }
}
@media (max-width: 768px) {
    .hero {
        min-height: 120vh;
    }

    .hero-content {
        margin-top: 220px;
    }
}
  
@media (max-width: 768px) {
    .navbar {
        padding: 10px 5%;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-truck {
        width: 35px;
        margin-right: 5px;
    }
}
