/* =====================================================
   LANDMARK TRUCKING - Futuristic Tech Theme
   ===================================================== */

/* CSS Variables */
:root {
    --color-void: #030712;
    --color-dark: #0a0f1a;
    --color-deeper: #0d1424;
    --color-surface: #111827;
    --color-elevated: #1a2332;
    --color-border: #1e293b;
    --color-muted: #64748b;
    --color-light: #cbd5e1;
    --color-white: #f1f5f9;
    
    /* Futuristic Cyan Accent */
    --color-primary: #00f0ff;
    --color-primary-dim: #00b8c5;
    --color-primary-glow: rgba(0, 240, 255, 0.4);
    
    /* Secondary - Electric Magenta */
    --color-secondary: #f0abfc;
    --color-secondary-dim: #c084fc;
    
    /* Tertiary - Neon Green for accents */
    --color-tertiary: #4ade80;
    
    --font-display: 'Orbitron', 'Bebas Neue', sans-serif;
    --font-body: 'Rajdhani', 'Barlow', sans-serif;
    
    --glow-sm: 0 0 10px var(--color-primary-glow);
    --glow-md: 0 0 20px var(--color-primary-glow), 0 0 40px rgba(0, 240, 255, 0.2);
    --glow-lg: 0 0 30px var(--color-primary-glow), 0 0 60px rgba(0, 240, 255, 0.3), 0 0 100px rgba(0, 240, 255, 0.1);
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Import Futuristic Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    color: var(--color-light);
    background-color: var(--color-void);
    overflow-x: hidden;
}

/* Futuristic Grid Background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        linear-gradient(90deg, transparent 99%, rgba(0, 240, 255, 0.03) 100%),
        linear-gradient(0deg, transparent 99%, rgba(0, 240, 255, 0.03) 100%);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: -1;
}

/* Scan line effect */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 240, 255, 0.008) 2px,
        rgba(0, 240, 255, 0.008) 4px
    );
    pointer-events: none;
    z-index: 9998;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Selection */
::selection {
    background: var(--color-primary);
    color: var(--color-void);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.1;
    text-transform: uppercase;
}

.accent {
    color: var(--color-primary);
    text-shadow: var(--glow-sm);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glowing Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dim));
    color: var(--color-void);
    box-shadow: var(--glow-md);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.05);
}

.btn-outline:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow-sm), inset 0 0 30px rgba(0, 240, 255, 0.1);
}

.btn-large {
    padding: 18px 48px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(0, 5, 15, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(0, 5, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    font-size: 24px;
    color: var(--color-primary);
    filter: drop-shadow(0 0 10px var(--color-primary-glow));
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--color-primary-glow)); }
    50% { filter: drop-shadow(0 0 20px var(--color-primary-glow)) drop-shadow(0 0 30px rgba(0, 240, 255, 0.3)); }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 0.2em;
    text-shadow: 
        0 0 10px #00d4ff,
        0 0 20px #00d4ff,
        0 0 40px #00a0ff,
        0 0 60px #0080ff;
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transition: all var(--transition-fast);
    position: relative;
    padding: 8px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-links a::before {
    content: '[';
    position: absolute;
    left: -12px;
    opacity: 0;
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.nav-links a::after {
    content: ']';
    position: absolute;
    right: -12px;
    opacity: 0;
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-primary);
    text-shadow: var(--glow-sm);
}

.nav-links a:hover::before,
.nav-links a:hover::after {
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-fast);
    box-shadow: var(--glow-sm);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 50% 60%, rgba(0, 50, 80, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 20%, rgba(0, 240, 255, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 80%, rgba(240, 171, 252, 0.04) 0%, transparent 40%),
        linear-gradient(180deg, var(--color-void) 0%, #050a12 50%, #0a1525 100%);
}

/* Animated circuit lines */
.road-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.road-lines .line {
    position: absolute;
    background: linear-gradient(180deg, var(--color-primary), transparent);
    opacity: 0.6;
}

.road-lines .line:nth-child(1) {
    left: 20%;
    width: 1px;
    height: 200px;
    animation: circuit-flow 3s ease-in-out infinite;
}

.road-lines .line:nth-child(2) {
    left: 50%;
    width: 2px;
    height: 300px;
    animation: circuit-flow 2.5s ease-in-out infinite 0.5s;
}

.road-lines .line:nth-child(3) {
    left: 80%;
    width: 1px;
    height: 150px;
    animation: circuit-flow 3.5s ease-in-out infinite 1s;
}

@keyframes circuit-flow {
    0% {
        top: -200px;
        opacity: 0;
    }
    20% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.8;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* =====================================================
   HOLOGRAPHIC TRUCK BACKGROUND
   ===================================================== */

.holo-truck {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1400px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.holo-truck-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: 
        drop-shadow(0 0 40px rgba(0, 240, 255, 0.6))
        drop-shadow(0 0 80px rgba(0, 240, 255, 0.4));
    animation: holo-float 6s ease-in-out infinite;
}

@keyframes holo-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.4)) drop-shadow(0 0 60px rgba(0, 240, 255, 0.2));
    }
    50% { 
        transform: translateY(-10px) scale(1.01);
        filter: drop-shadow(0 0 40px rgba(0, 240, 255, 0.5)) drop-shadow(0 0 80px rgba(0, 240, 255, 0.3));
    }
}

/* Glow effect behind truck */
.holo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 240, 255, 0.15) 0%,
        rgba(0, 240, 255, 0.05) 40%,
        transparent 70%
    );
    z-index: -1;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

/* Horizontal scanline effect */
.holo-scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 240, 255, 0.8), 
        rgba(255, 255, 255, 0.9),
        rgba(0, 240, 255, 0.8), 
        transparent
    );
    filter: blur(1px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.8);
    animation: scanline-sweep 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes scanline-sweep {
    0% { 
        top: -5%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        top: 105%;
        opacity: 0;
    }
}

/* Flicker effect overlay */
.holo-truck::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    animation: holo-flicker 8s infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes holo-flicker {
    0%, 100% { opacity: 0; }
    92% { opacity: 0; }
    93% { opacity: 0.03; background: rgba(0, 240, 255, 0.1); }
    94% { opacity: 0; }
    96% { opacity: 0; }
    97% { opacity: 0.02; background: rgba(255, 255, 255, 0.05); }
    98% { opacity: 0; }
}

/* Grid lines overlay for extra tech feel */
.holo-truck::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 240, 255, 0.02) 2px,
            rgba(0, 240, 255, 0.02) 4px
        );
    pointer-events: none;
    z-index: 4;
}

/* Responsive */
@media (max-width: 1024px) {
    .holo-truck {
        max-width: 750px;
    }
    
    .holo-truck-img {
        opacity: 0.4;
    }
}

@media (max-width: 768px) {
    .holo-truck {
        max-width: 550px;
    }
    
    .holo-truck-img {
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .holo-truck {
        max-width: 400px;
        top: 45%;
    }
    
    .holo-truck-img {
        opacity: 0.2;
    }
}

/* Floating particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: var(--glow-sm);
    animation: float-particle 15s linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.5);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.hero-badge::before {
    content: '◆';
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero-tagline {
    font-family: 'Michroma', 'Orbitron', sans-serif;
    font-size: clamp(15px, 3.1vw, 41px);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #ffffff;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 
        0 0 15px rgba(255, 30, 60, 0.8),
        0 0 30px rgba(255, 30, 60, 0.6),
        0 0 60px rgba(255, 0, 40, 0.5),
        0 0 100px rgba(255, 0, 40, 0.3);
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 18px;
    color: #ffffff;
    max-width: 550px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
    line-height: 1.7;
    font-weight: 600;
    text-shadow: 
        0 0 20px rgba(0, 0, 0, 1),
        0 2px 15px rgba(0, 0, 0, 0.95),
        0 4px 30px rgba(0, 0, 0, 0.9),
        2px 2px 4px rgba(0, 0, 0, 1);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 70px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 1.2s forwards;
    opacity: 0;
    padding: 20px 0;
}

.stat {
    text-align: center;
    position: relative;
}

.stat::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
}

.stat:last-child::after {
    display: none;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-primary);
    text-shadow: 
        0 0 20px rgba(0, 240, 255, 0.8),
        0 0 40px rgba(0, 240, 255, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.95);
}

.stat-label {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.95);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
    0%, 100% { 
        opacity: 1;
        height: 50px;
    }
    50% { 
        opacity: 0.5;
        height: 30px;
    }
}

/* Section Styling */
section {
    padding: 140px 0;
    position: relative;
}

.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 240, 255, 0.05);
    border-left: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.section-tag::before {
    content: '//';
    opacity: 0.5;
}

.section-title {
    font-size: clamp(40px, 7vw, 64px);
    color: var(--color-white);
    text-shadow: 
        0 0 20px rgba(255, 30, 60, 0.6),
        0 0 40px rgba(255, 30, 60, 0.4),
        0 0 60px rgba(255, 0, 40, 0.3);
}

.section-desc {
    font-size: 18px;
    color: var(--color-muted);
    margin-top: 20px;
    max-width: 500px;
}

/* Glass Card Effect */
.glass-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.4));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.5;
}

/* Services Section */
.services {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

.service-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(10, 15, 26, 0.9));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    border-right: 1px solid rgba(0, 240, 255, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: var(--glow-md), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(17, 24, 39, 0.9));
    border-color: rgba(0, 240, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 40px;
    padding: 8px 16px;
    background: var(--color-primary);
    color: var(--color-void);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    margin-bottom: 28px;
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
    filter: drop-shadow(0 0 10px var(--color-primary-glow));
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.service-card p {
    color: var(--color-muted);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-link {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.service-link:hover {
    text-shadow: var(--glow-sm);
    gap: 12px;
}

/* Fleet Section */
.fleet {
    position: relative;
    overflow: hidden;
}

.fleet::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--color-primary), transparent);
    opacity: 0.3;
}

.fleet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.fleet-info {
    position: relative;
    z-index: 2;
}

.fleet-desc {
    font-size: 18px;
    color: var(--color-light);
    margin: 28px 0;
    line-height: 1.8;
}

.fleet-features {
    list-style: none;
    margin: 40px 0;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    color: var(--color-light);
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    transition: all var(--transition-fast);
}

.fleet-features li:hover {
    padding-left: 8px;
    border-color: var(--color-primary);
}

.fleet-features .check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 12px;
    clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.fleet-visual {
    position: relative;
}

.truck-showcase {
    display: grid;
    gap: 24px;
}

.truck-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(10, 15, 26, 0.9));
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 36px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    transition: all var(--transition-medium);
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    position: relative;
    overflow: hidden;
}

.truck-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-primary);
    transform: scaleY(0);
    transition: transform var(--transition-medium);
}

.truck-card:hover {
    border-color: var(--color-primary);
    transform: translateX(12px);
    box-shadow: var(--glow-sm);
}

.truck-card:hover::before {
    transform: scaleY(1);
}

.truck-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: var(--color-primary);
    text-shadow: var(--glow-sm);
}

.truck-type {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 0.05em;
}

.truck-count {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 8px 18px;
    letter-spacing: 0.1em;
}

/* About Section */
.about {
    background: transparent;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(10, 15, 26, 0.9));
    border: 1px solid rgba(0, 240, 255, 0.15);
    height: 520px;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.image-pattern {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(0, 240, 255, 0.03) 50%, transparent 70%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 30px,
            rgba(0, 240, 255, 0.02) 30px,
            rgba(0, 240, 255, 0.02) 31px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 30px,
            rgba(0, 240, 255, 0.02) 30px,
            rgba(0, 240, 255, 0.02) 31px
        );
    animation: pattern-shift 20s linear infinite;
}

@keyframes pattern-shift {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.year-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    padding: 16px 32px;
    background: var(--color-primary);
    color: var(--color-void);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
    box-shadow: var(--glow-md);
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-lead {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-content p {
    color: var(--color-muted);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.value {
    padding: 24px;
    background: rgba(0, 240, 255, 0.03);
    border-left: 2px solid var(--color-primary);
}

.value h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.value p {
    font-size: 14px;
    margin: 0;
}

/* Testimonials */
.testimonials {
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(0, 240, 255, 0.05) 0%, transparent 50%),
        transparent;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(10, 15, 26, 0.9));
    border: 1px solid rgba(0, 240, 255, 0.1);
    padding: 48px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: var(--glow-sm);
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 100px;
    color: var(--color-primary);
    opacity: 0.2;
    line-height: 0.6;
    position: absolute;
    top: 32px;
    left: 40px;
}

.testimonial-text {
    font-size: 17px;
    color: var(--color-light);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info strong {
    display: block;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.author-info span {
    font-size: 13px;
    color: var(--color-muted);
}

/* Quote Section */
.quote-section {
    position: relative;
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(10, 15, 26, 0.95));
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 72px;
    position: relative;
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 40px 100%, 0 calc(100% - 40px));
}

.quote-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
}

.quote-info .section-title {
    margin-bottom: 20px;
}

.quote-info p {
    color: var(--color-muted);
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 240, 255, 0.03);
    border-left: 2px solid var(--color-primary);
    transition: all var(--transition-fast);
}

.method:hover {
    background: rgba(0, 240, 255, 0.08);
    padding-left: 28px;
}

.method-icon {
    font-size: 28px;
}

.method strong {
    display: block;
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.method a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.method a:hover {
    text-shadow: var(--glow-sm);
}

/* Form Styles */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(10, 15, 26, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.15);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition-fast);
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: var(--glow-sm);
    background: rgba(0, 240, 255, 0.03);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300f0ff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Section */
.contact {
    background: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info .section-title {
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--color-muted);
    margin-bottom: 48px;
}

.office-info,
.hours {
    margin-bottom: 36px;
    padding: 24px;
    background: rgba(0, 240, 255, 0.03);
    border-left: 2px solid var(--color-primary);
}

.office-info h4,
.hours h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.office-info address {
    font-style: normal;
    color: var(--color-light);
    line-height: 1.8;
}

.hours p {
    color: var(--color-light);
    line-height: 1.9;
}

.map-placeholder {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.9), rgba(10, 15, 26, 0.9));
    border: 1px solid rgba(0, 240, 255, 0.15);
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(0, 240, 255, 0.03) 40px,
            rgba(0, 240, 255, 0.03) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(0, 240, 255, 0.03) 40px,
            rgba(0, 240, 255, 0.03) 41px
        );
}

.map-overlay {
    text-align: center;
    padding: 32px;
    background: rgba(3, 7, 18, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.2);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.map-marker {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
    animation: pulse-glow 2s ease-in-out infinite;
}

.map-overlay p {
    color: var(--color-primary);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Footer */
.footer {
    background: var(--color-void);
    padding: 100px 0 48px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--color-muted);
    margin: 24px 0;
    font-size: 14px;
    max-width: 300px;
    line-height: 1.8;
}

.certifications {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cert {
    padding: 8px 14px;
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.2);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 28px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-fast);
    color: var(--color-primary);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
}

.footer-bottom p {
    color: var(--color-muted);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: var(--color-muted);
    text-decoration: none;
    font-size: 13px;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fleet-content,
    .about-grid,
    .quote-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .navbar .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    section {
        padding: 100px 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 32px;
    }
    
    .stat::after {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quote-wrapper {
        padding: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .image-frame {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 24px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
