:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #ff6b35;
    --accent: #7c3aed;
    --dark: #0a0a0f;
    --dark-light: #12121a;
    --dark-card: #1a1a25;
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --gradient-1: linear-gradient(135deg, #00d4ff 0%, #7c3aed 50%, #ff6b35 100%);
    --gradient-2: linear-gradient(90deg, #00d4ff 0%, #7c3aed 100%);
    --glass: rgba(26, 26, 37, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
}

/* Boxed Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Background Elements */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--dark);
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Navigation - Boxed */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 15, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Exo 2', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.logo-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 2px;
}

.logo-text span {
    background: var(--gradient-1);
    -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: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-2);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector {
    display: flex;
    gap: 0.3rem;
    background: var(--dark-card);
    padding: 0.3rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
}

.lang-btn {
    padding: 0.4rem 0.7rem;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--gradient-2);
    color: white;
}

.lang-btn:hover:not(.active) {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    gap: 1rem;
}

.nav-links.mobile-open a {
    padding: 0.8rem 1rem;
    border-radius: 8px;
}

.nav-links.mobile-open a:hover {
    background: var(--dark-card);
}

/* Hero Section - Boxed with Video Background */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 15, 0.7) 0%,
        rgba(10, 10, 15, 0.5) 50%,
        rgba(10, 10, 15, 0.8) 100%
    );
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 12rem);
}

.hero-content {
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero h1 .gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s both;
    text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 0.6s ease 0.4s both;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero visual removed - content centered */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles - Boxed */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

/* About Section */
.about {
    background: var(--dark-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1rem;
    color: var(--text-muted);
}

.about-text p {
    margin-bottom: 1.2rem;
}

.about-quote {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text);
    font-size: 1.05rem;
}

.about-image {
    position: relative;
}

.about-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.about-img-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0.1;
    z-index: 1;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: var(--gradient-1);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.experience-badge .years {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Fleet Section */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fleet-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.12);
}

.fleet-card-image {
    height: 220px;
    background: linear-gradient(135deg, var(--dark-light) 0%, var(--dark-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

.fleet-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.fleet-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fleet-card:hover .fleet-card-image::after {
    opacity: 0.1;
}

.fleet-card:hover .fleet-card-image img {
    transform: scale(1.05);
}

.fleet-card-content {
    padding: 1.2rem;
}

.fleet-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

@media (max-width: 768px) {
    .fleet-card-image {
        height: 180px;
        padding: 0.8rem;
    }
    
    .fleet-card-content {
        padding: 1rem;
    }
    
    .fleet-card h3 {
        font-size: 1rem;
    }
    
    .fleet-spec {
        font-size: 0.8rem;
    }
}



.fleet-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Map Section - Real Map */
.map-section {
    background: var(--dark-light);
}

.map-container {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

#europe-map {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    min-height: 300px;
}

@media (max-width: 768px) {
    #europe-map {
        height: 350px;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    #europe-map {
        height: 280px;
        min-height: 200px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero .container {
        padding: 0 0.8rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-buttons .btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

.map-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 1000;
}

.map-info-text {
    font-size: 0.95rem;
}

.map-info-text strong {
    color: var(--primary);
}

.map-legend {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

/* Custom Leaflet Styles */
.leaflet-popup-content-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text);
}

.leaflet-popup-tip {
    background: var(--dark-card);
}

.leaflet-container a.leaflet-popup-close-button {
    color: var(--text-muted);
}

.leaflet-container a.leaflet-popup-close-button:hover {
    color: var(--primary);
}

/* Calculator Section */
.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.calculator-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.9rem 1rem;
    background: var(--dark-light);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.calculate-btn {
    grid-column: 1 / -1;
    padding: 1rem;
    background: var(--gradient-1);
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.price-result {
    grid-column: 1 / -1;
    background: var(--dark-light);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 0.5rem;
    display: none;
}

.price-result.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.price-result .label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.price-result .price {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Drivers Section */
.drivers {
    background: var(--dark-light);
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.driver-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.4s ease;
}

.driver-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.driver-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.driver-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.driver-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.driver-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Career Section */
.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.career-benefits {
    display: grid;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.benefit-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.career-cta {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: sticky;
    top: 100px;
}

.career-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.career-cta p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    background: var(--dark-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.6rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0.8rem;
    max-width: 280px;
    font-size: 0.95rem;
}

.footer-links h4 {
    margin-bottom: 1.2rem;
    color: var(--text);
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container {
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }

    .stat-item {
        text-align: center;
    }

    .about-content,
    .career-content {
        grid-template-columns: 1fr;
    }

    .fleet-grid,
    .drivers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-links h4 {
        font-size: 0.95rem;
    }

    .career-cta {
        position: static;
    }

    .nav-links {
        gap: 1.2rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    /* Hero visual already removed */
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        padding: 5rem 0 2rem;
        display: flex;
        align-items: center;
    }

    .hero .container {
        min-height: calc(100vh - 7rem);
        min-height: calc(100dvh - 7rem);
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-content {
        padding: 0;
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: auto;
        padding-top: 1rem;
    }

    .stat-item {
        flex: 1;
        min-width: 80px;
        max-width: 100px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .about-content {
        gap: 2rem;
    }

    .about-quote {
        font-size: 0.95rem;
    }

    .fleet-grid,
    .drivers-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calculator-container {
        padding: 1.5rem;
    }

    .calculator-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group select,
    .form-group input {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.8rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .calculate-btn {
        padding: 1rem;
        font-size: 1rem;
    }

    .price-result .price {
        font-size: 1.8rem;
    }

    .career-content {
        gap: 2rem;
    }

    .career-cta {
        padding: 1.5rem;
    }

    .benefit-item {
        padding: 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .logo {
        margin-bottom: 0.5rem;
    }

    .footer-brand .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-brand .logo-text {
        font-size: 1.1rem;
    }

    .footer-brand p {
        max-width: 100%;
        font-size: 0.85rem;
        margin-top: 0.5rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links h4 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        color: var(--primary);
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem 1rem;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        display: inline-block;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        padding-top: 1rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .experience-badge .years {
        font-size: 2rem;
    }

    #europe-map {
        height: 300px;
    }

    .map-info {
        flex-direction: column;
        text-align: center;
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .map-legend {
        gap: 0.8rem;
    }

    .hero-video-container::after {
        background: linear-gradient(
            to bottom,
            rgba(10, 10, 15, 0.6) 0%,
            rgba(10, 10, 15, 0.45) 40%,
            rgba(10, 10, 15, 0.7) 100%
        );
    }

    .hero-video {
        object-position: center center;
    }

    .lang-selector {
        gap: 0.2rem;
        padding: 0.2rem;
    }

    .lang-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }
}
