* {
margin:0;
padding:0;
box-sizing:border-box;
}

body {
font-family:'Poppins',sans-serif;
line-height:1.6;
color:#222;
overflow-x:hidden;
}

.container {
width:90%;
max-width:1200px;
margin:auto;
}

header {
position:fixed;
width:100%;
background:rgba(0,0,0,0.7);
backdrop-filter:blur(10px);
z-index:1000;
}

.nav-container {
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 0;
}

.logo h2 {
color:white;
}

.logo span {
color:#ddd;
font-size:13px;
}

nav {
display:flex;
gap:20px;
}

nav a {
color:white;
text-decoration:none;
margin:0 12px;
position:relative;
}

nav a::after {
content:'';
position:absolute;
left:0;
bottom:-5px;
width:0;
height:2px;
background:#ff6b00;
transition:0.3s;
}

nav a:hover::after {
width:100%;
}

.hamburger {
display:none;
background:none;
border:none;
cursor:pointer;
flex-direction:column;
gap:6px;
padding:0;
z-index:1001;
}

.hamburger span {
width:25px;
height:3px;
background:white;
border-radius:3px;
transition:0.3s;
display:block;
}

.hamburger.active span:nth-child(1) {
transform:rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
opacity:0;
}

.hamburger.active span:nth-child(3) {
transform:rotate(-45deg) translate(7px, -7px);
}

.btn {
background:#ff6b00;
color:white;
padding:12px 22px;
border-radius:30px;
text-decoration:none;
display:inline-block;
transition:0.4s;
}

.btn:hover {
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(255,107,0,0.4);
}

.secondary {
background:transparent;
border:1px solid white;
}

.small {
padding:10px 18px;
font-size:14px;
}

.hero {
height:100vh;
background:url('https://lh3.googleusercontent.com/gps-cs-s/APNQkAFo1J3wGGCYu8F9KSJ14ZMfUWBQ3lzzU9ASyzvYCwRMF3fJGi372-ChiXfUxWSClSbQAVyMa75ge1IXlwrevY7PrO741C9qpTgco41j7ucW9WOqE1cyLQfo4LwTFHVGtjJ-DY9y=s1360-w1360-h1020-rw') center/cover;
position:relative;
display:flex;
align-items:center;
margin-top:70px;
}

.overlay {
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

.hero-content {
position:relative;
color:white;
animation:fadeUp 1.5s ease;
}

.hero-content h1 {
font-size:60px;
max-width:800px;
margin-bottom:20px;
}

.hero-content p {
font-size:20px;
max-width:700px;
margin-bottom:30px;
}

.hero-buttons {
display:flex;
gap:15px;
flex-wrap:wrap;
}

.hero-media img {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
}

.section {
padding:100px 0;
}

.section-title {
text-align:center;
margin-bottom:60px;
}

.section-title h2 {
font-size:42px;
margin-bottom:10px;
}

.cards,
.fleet-grid,
.footer-grid {
display:grid;
gap:30px;
}

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

.card {
background:white;
padding:35px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.4s;
color:#222 !important;
}

.card h3 {
color:#222 !important;
}

.card p {
color:#222 !important;
}

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

.dark-section {
background:#111;
color:white;
}

.light h2,
.light p {
color:white;
}

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

.fleet-card {
background:white;
color:black;
border-radius:20px;
overflow:hidden;
transition:0.5s;
}

.fleet-card:hover {
transform:translateY(-12px);
}

.fleet-card img {
width:100%;
height:260px;
object-fit:cover;
transition:0.6s;
}

.fleet-card:hover img {
transform:scale(1.1);
}

.fleet-card h3,
.fleet-card p {
padding:20px;
}

footer {
background:#111;
color:white;
padding:70px 0;
}

.footer-grid {
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
}

.floating-buttons {
position:fixed;
right:20px;
bottom:20px;
display:flex;
flex-direction:column;
gap:15px;
z-index:999;
}

.call-btn,
.whatsapp-btn {
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:white;
font-size:26px;
text-decoration:none;
}

.call-btn {
background:black;
}

.whatsapp-btn {
background:#25D366;
}

.pricing-table {
width:100%;
border-collapse:collapse;
background:white;
color:black;
border-radius:20px;
overflow:hidden;
}

.pricing-table th,
.pricing-table td {
padding:18px;
border-bottom:1px solid #ddd;
text-align:center;
}

.pricing-table th {
background:#ff6b00;
color:white;
}

.pricing-table tr:hover {
background:#f5f5f5;
}

.feature-box {
background:#f5f5f5;
padding:40px;
text-align:center;
border-radius:20px;
transition:0.4s;
}

.feature-box:hover {
transform:translateY(-10px);
}

@keyframes fadeUp {
from {
opacity:0;
transform:translateY(40px);
}

to {
opacity:1;
transform:translateY(0);
}
}

@media(max-width:768px){
.hamburger {
display:flex;
}

.nav-container {
position:relative;
}

nav {
position:absolute;
top:100%;
left:0;
width:100%;
background:rgba(0,0,0,0.95);
flex-direction:column;
padding:20px;
gap:0;
display:none;
margin-top:0;
}

nav.active {
display:flex;
}

nav a {
padding:15px 10px;
margin:0;
border-bottom:1px solid rgba(255,255,255,0.1);
}

nav a:last-child {
border-bottom:none;
}

.btn {
padding:10px 18px;
font-size:14px;
}

.hero {
margin-top:0;
}

.hero-content h1 {
font-size:38px;
}

.hero-content p {
font-size:18px;
}

.hero-buttons {
flex-direction:column;
gap:10px;
}

.hero-buttons .btn {
width:100%;
text-align:center;
}

.section {
padding:60px 0;
}

.section-title h2 {
font-size:32px;
}

.card {
padding:25px;
color:#222 !important;
}

.card h3,
.card p {
color:#222 !important;
}

.fleet-card img {
height:200px;
}

.floating-buttons {
right:15px;
bottom:15px;
gap:10px;
}

.call-btn,
.whatsapp-btn {
width:50px;
height:50px;
font-size:20px;
}

footer {
padding:50px 0;
}
}

@media(max-width:480px){
.logo h2 {
font-size:18px;
}

.logo span {
font-size:11px;
}

.hero-content h1 {
font-size:28px;
}

.hero-content p {
font-size:16px;
}

.section-title h2 {
font-size:26px;
}

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

.card {
color:#222 !important;
}

.card h3,
.card p {
color:#222 !important;
}

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

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

nav a {
padding:12px 10px;
font-size:14px;
}
}
