* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary: #1a1a1a;
--secondary: #ff6b35;
--accent: #f7931e;
--light: #f8f9fa;
--gray: #6c757d;
--dark-gray: #2c3e50;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--primary);
overflow-x: hidden;
}

/* Header */
header {
background: rgba(26, 26, 26, 0.95);
backdrop-filter: blur(10px);
color: white;
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

.logo {
font-size: 1.5rem;
font-weight: bold;
background: linear-gradient(135deg, var(--secondary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}

.nav-links a {
color: white;
text-decoration: none;
transition: all 0.3s;
font-weight: 500;
position: relative;
}

.nav-links a:after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--secondary);
transition: width 0.3s;
}

.nav-links a:hover:after {
width: 100%;
}

.menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
}

.menu-toggle span {
width: 25px;
height: 3px;
background: white;
margin: 3px 0;
transition: 0.3s;
border-radius: 3px;
}

/* Hero Section */
.hero {
background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(44, 62, 80, 0.85)), 
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%231a1a1a;stop-opacity:1" /><stop offset="100%" style="stop-color:%232c3e50;stop-opacity:1" /></linearGradient></defs><rect fill="url(%23grad1)" width="1200" height="800"/><circle cx="200" cy="150" r="100" fill="%23ff6b35" opacity="0.1"/><circle cx="1000" cy="600" r="150" fill="%23f7931e" opacity="0.1"/><path d="M0 400 Q300 350 600 400 T1200 400 V800 H0 Z" fill="%23000" opacity="0.2"/></svg>');
background-size: cover;
background-position: center;
background-attachment: fixed;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
padding: 0 2rem;
margin-top: 70px;
position: relative;
overflow: hidden;
}

.hero:before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
0%, 100% { opacity: 0.5; }
50% { opacity: 1; }
}

.hero-content {
position: relative;
z-index: 1;
}

.hero-badge {
display: inline-block;
background: rgba(255, 107, 53, 0.2);
border: 2px solid var(--secondary);
padding: 0.5rem 1.5rem;
border-radius: 50px;
margin-bottom: 1.5rem;
font-weight: 600;
letter-spacing: 1px;
animation: fadeInUp 1s ease;
}

.hero-content h1 {
font-size: 4rem;
margin-bottom: 1rem;
animation: fadeInUp 1s ease 0.2s backwards;
text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-content h1 span {
background: linear-gradient(135deg, var(--secondary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-content p {
font-size: 1.4rem;
margin-bottom: 2.5rem;
animation: fadeInUp 1s ease 0.4s backwards;
opacity: 0.9;
}

.cta-buttons {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
padding: 1.2rem 3rem;
border: none;
border-radius: 50px;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
position: relative;
overflow: hidden;
}

.btn:before {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
border-radius: 50%;
background: rgba(255,255,255,0.3);
transform: translate(-50%, -50%);
transition: width 0.6s, height 0.6s;
}

.btn:hover:before {
width: 300px;
height: 300px;
}

.btn-primary {
background: linear-gradient(135deg, var(--secondary), var(--accent));
color: white;
box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
transform: translateY(-5px) scale(1.05);
box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
background: transparent;
color: white;
border: 2px solid white;
}

.btn-secondary:hover {
background: white;
color: var(--primary);
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Trust Badges */
.trust-badges {
display: flex;
justify-content: center;
gap: 3rem;
margin-top: 3rem;
flex-wrap: wrap;
animation: fadeInUp 1s ease 0.8s backwards;
}

.trust-badge {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
}

.trust-badge-icon {
font-size: 2.5rem;
}

.trust-badge-text {
font-size: 0.9rem;
opacity: 0.8;
}

/* Services Section */
.services {
padding: 6rem 2rem;
background: var(--light);
position: relative;
}

.container {
max-width: 1200px;
margin: 0 auto;
}

.section-title {
text-align: center;
font-size: 2.8rem;
margin-bottom: 1rem;
color: var(--primary);
position: relative;
display: inline-block;
width: 100%;
}

.section-subtitle {
text-align: center;
color: var(--gray);
margin-bottom: 4rem;
font-size: 1.2rem;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2.5rem;
}

.service-card {
background: white;
padding: 2.5rem;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: all 0.4s ease;
position: relative;
overflow: hidden;
border: 2px solid transparent;
}

.service-card:before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 5px;
background: linear-gradient(90deg, var(--secondary), var(--accent));
transform: scaleX(0);
transition: transform 0.4s ease;
}

.service-card:hover:before {
transform: scaleX(1);
}

.service-card:hover {
transform: translateY(-15px);
box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
border-color: var(--secondary);
}

.service-icon {
font-size: 3.5rem;
margin-bottom: 1.5rem;
display: inline-block;
transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
margin-bottom: 1rem;
color: var(--primary);
font-size: 1.4rem;
}

.service-card p {
color: var(--gray);
line-height: 1.8;
}

/* Stats Section */
.stats {
padding: 5rem 2rem;
background: linear-gradient(135deg, var(--primary) 0%, var(--dark-gray) 100%);
color: white;
position: relative;
overflow: hidden;
}

.stats:before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
border-radius: 50%;
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 1;
}

.stat-item {
text-align: center;
}

.stat-number {
font-size: 3.5rem;
font-weight: bold;
background: linear-gradient(135deg, var(--secondary), var(--accent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.5rem;
}

.stat-label {
font-size: 1.1rem;
opacity: 0.9;
}

/* About Section */
.about {
padding: 6rem 2rem;
background: white;
}

.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.about-text h2 {
font-size: 2.8rem;
margin-bottom: 1.5rem;
color: var(--primary);
}

.about-text p {
margin-bottom: 1.5rem;
color: var(--gray);
font-size: 1.15rem;
line-height: 1.8;
}

.features-list {
list-style: none;
margin-top: 2rem;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}

.features-list li {
padding: 1rem;
padding-left: 3rem;
position: relative;
color: var(--gray);
background: var(--light);
border-radius: 10px;
transition: all 0.3s;
}

.features-list li:hover {
background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(247,147,30,0.1));
transform: translateX(5px);
}

.features-list li:before {
content: "✓";
position: absolute;
left: 1rem;
color: var(--secondary);
font-weight: bold;
font-size: 1.5rem;
}

.about-image {
background: transparent;
height: 500px;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
font-size: 8rem;
/* box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3); */
position: relative;
overflow: hidden;
}

.about-image:before {
content: '';
position: absolute;
width: 200px;
height: 200px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
top: -50px;
right: -50px;
}

.about-image:after {
content: '';
position: absolute;
width: 150px;
height: 150px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
bottom: -30px;
left: -30px;
}

/* Coverage Section */
.coverage {
padding: 6rem 2rem;
background: var(--light);
text-align: center;
}

/* Payment Methods Section */
.payment-methods {
padding: 6rem 2rem;
background: white;
}

.payment-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.payment-card {
background: var(--light);
padding: 2.5rem 2rem;
border-radius: 20px;
text-align: center;
transition: all 0.4s ease;
border: 3px solid transparent;
position: relative;
overflow: hidden;
}

.payment-card:before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,107,53,0.1), transparent);
transition: left 0.6s;
}

.payment-card:hover:before {
left: 100%;
}

.payment-card:hover {
transform: translateY(-10px);
border-color: var(--secondary);
box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
background: white;
}

.payment-icon {
font-size: 4rem;
margin-bottom: 1.5rem;
display: inline-block;
transition: transform 0.4s ease;
}

.payment-card:hover .payment-icon {
transform: scale(1.2) rotateY(360deg);
}

.payment-card h3 {
color: var(--primary);
margin-bottom: 0.8rem;
font-size: 1.5rem;
}

.payment-card p {
color: var(--gray);
margin-bottom: 1.5rem;
}

.payment-brands {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
justify-content: center;
}

.payment-brands span {
background: white;
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
color: var(--gray);
border: 1px solid #e0e0e0;
font-weight: 500;
}

.payment-highlight {
background: linear-gradient(135deg, var(--secondary), var(--accent));
color: white;
padding: 0.6rem 1.5rem;
border-radius: 25px;
font-weight: 600;
display: inline-block;
margin-top: 0.5rem;
font-size: 0.9rem;
box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.payment-note {
margin-top: 3rem;
background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(247,147,30,0.1));
padding: 2rem;
border-radius: 15px;
border-left: 5px solid var(--secondary);
}

.payment-note p {
color: var(--primary);
font-size: 1.1rem;
margin: 0;
}

.payment-note strong {
color: var(--secondary);
}

/* Coverage Section */
.coverage {
padding: 6rem 2rem;
background: var(--light);
text-align: center;
}

.coverage-items {
display: flex;
justify-content: center;
gap: 3rem;
flex-wrap: wrap;
margin-top: 3rem;
}

.coverage-item {
flex: 1;
min-width: 250px;
max-width: 350px;
padding: 3rem 2rem;
background: white;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
transition: all 0.4s;
}

.coverage-item:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.coverage-item h3 {
font-size: 3rem;
margin-bottom: 1rem;
}

.coverage-item h4 {
color: var(--primary);
margin-bottom: 0.5rem;
font-size: 1.5rem;
}

.coverage-item p {
color: var(--gray);
}

/* Testimonials Section */
.testimonials {
padding: 6rem 2rem;
background: white;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.testimonial-card {
background: var(--light);
padding: 2.5rem;
border-radius: 20px;
position: relative;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: all 0.3s;
}

.testimonial-card:hover {
box-shadow: 0 15px 40px rgba(0,0,0,0.1);
transform: translateY(-5px);
}

.testimonial-card:before {
content: '"';
font-size: 5rem;
position: absolute;
top: 1rem;
left: 1.5rem;
color: var(--secondary);
opacity: 0.2;
}

.testimonial-text {
position: relative;
z-index: 1;
color: var(--gray);
margin-bottom: 1.5rem;
font-style: italic;
line-height: 1.8;
}

.testimonial-author {
display: flex;
align-items: center;
gap: 1rem;
}

.testimonial-avatar {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--secondary), var(--accent));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
font-size: 1.3rem;
}

.testimonial-info h4 {
color: var(--primary);
margin-bottom: 0.2rem;
}

.testimonial-rating {
color: var(--accent);
}

/* Contact Section */
.contact {
padding: 6rem 2rem;
background: var(--light);
}

.contact-content {
/* display: grid; */
/* grid-template-columns: 1fr; */
gap: 4rem;
max-width: 450px;
margin: 0 auto;
text-align: center;
}

.contact-info {
display: flex;
flex-direction: column;
gap: 2rem;
}

.contact-item {
display: flex;
align-items: start;
gap: 1.5rem;
background: white;
padding: 2rem;
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
transition: all 0.3s;
}

.contact-item:hover {
transform: translateX(10px);
box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.contact-item-icon {
font-size: 2.5rem;
/* background: linear-gradient(135deg, var(--secondary), var(--accent)); */
-webkit-background-clip: text;
/* -webkit-text-fill-color: transparent; */
background-clip: text;
}

.contact-item h3 {
margin-bottom: 0.5rem;
color: var(--primary);
}

.contact-item p {
color: var(--gray);
}

.contact-form {
background: white;
padding: 3rem;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
margin-bottom: 1.5rem;
}

.form-group label {
display: block;
margin-bottom: 0.8rem;
font-weight: 600;
color: var(--primary);
}

.form-group input,
.form-group textarea {
width: 100%;
padding: 1rem;
border: 2px solid #e0e0e0;
border-radius: 12px;
font-size: 1rem;
transition: all 0.3s;
font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--secondary);
box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
resize: vertical;
min-height: 140px;
}

/* CTA Section */
.cta-section {
padding: 6rem 2rem;
background: linear-gradient(135deg, var(--primary) 0%, var(--dark-gray) 100%);
color: white;
text-align: center;
position: relative;
overflow: hidden;
}

.cta-section:before {
content: '🚛';
position: absolute;
font-size: 20rem;
opacity: 0.03;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

.cta-content {
position: relative;
z-index: 1;
}

.cta-content h2 {
font-size: 3rem;
margin-bottom: 1rem;
}

.cta-content p {
font-size: 1.3rem;
margin-bottom: 2.5rem;
opacity: 0.9;
}

/* Footer */
footer {
background: var(--primary);
color: white;
padding: 4rem 2rem 2rem;
}

.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}

.footer-section h3 {
margin-bottom: 1.5rem;
color: var(--secondary);
}

.footer-section p,
.footer-section a {
color: rgba(255,255,255,0.7);
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
transition: color 0.3s;
}

.footer-section a:hover {
color: var(--secondary);
}

.social-links {
display: flex;
gap: 1rem;
margin-top: 1rem;
}

.social-links a {
width: 50px;
height: 50px;
background: rgba(255,255,255,0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
transition: all 0.3s;
}

.social-links a:hover {
background: var(--secondary);
transform: translateY(-5px);
}

.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid rgba(255,255,255,0.1);
color: rgba(255,255,255,0.5);
}

/* Animations */
@keyframes fadeInUp {
from {
    opacity: 0;
    transform: translateY(30px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Scroll Progress Bar */
.scroll-progress {
position: fixed;
top: 70px;
left: 0;
width: 0;
height: 3px;
background: linear-gradient(90deg, var(--secondary), var(--accent));
z-index: 999;
transition: width 0.1s;
}

/* Responsive */
@media (max-width: 968px) {
.about-content,
.contact-content {
    grid-template-columns: 1fr;
}

.features-list {
    grid-template-columns: 1fr;
}

.footer-content {
    grid-template-columns: 1fr;
    text-align: center;
}

.social-links {
    justify-content: center;
}
}

@media (max-width: 768px) {
.menu-toggle {
    display: flex;
}

.nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--primary);
    width: 100%;
    padding: 2rem;
    transition: right 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.nav-links.active {
    right: 0;
}

.hero-content h1 {
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.1rem;
}

.section-title {
    font-size: 2.2rem;
}

.trust-badges {
    gap: 2rem;
}

.coverage-items {
    flex-direction: column;
}

.cta-content h2 {
    font-size: 2rem;
}
}