/* ==========================================
   MCA TRANSPORT - FUTURISTIC DESIGN 2025
   Neon Cyberpunk Theme
   ========================================== */

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

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

:root {
    /* Futuristic Neon Colors */
    --neon-cyan: #00ffff;
    --neon-magenta: #ff00ff;
    --neon-blue: #0080ff;
    --neon-purple: #8000ff;
    --neon-pink: #ff0080;
    --neon-green: #00ff80;
    --neon-orange: #ff8000;

    /* Backgrounds */
    --bg-dark: #030014;
    --bg-darker: #010008;
    --bg-card: rgba(10, 10, 40, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);

    /* Text */
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-dim: rgba(255, 255, 255, 0.4);

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    --gradient-blue: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    --gradient-fire: linear-gradient(135deg, var(--neon-orange), var(--neon-pink));

    /* Glass */
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);

    /* Shadows & Glows */
    --glow-cyan: 0 0 30px rgba(0, 255, 255, 0.5);
    --glow-magenta: 0 0 30px rgba(255, 0, 255, 0.5);
    --glow-blue: 0 0 30px rgba(0, 128, 255, 0.5);

    /* Timing */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Spacing */
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(0, 255, 255, 0.15), transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(255, 0, 255, 0.12), transparent 50%),
        radial-gradient(ellipse 40% 60% at 50% 50%, rgba(128, 0, 255, 0.08), transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   GLOWING TEXT EFFECTS
   ========================================== */
.text-glow {
    text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-cyan { color: var(--neon-cyan); }
.text-magenta { color: var(--neon-magenta); }
.text-blue { color: var(--neon-blue); }

/* ==========================================
   NAVIGATION - Floating Futuristic Bar
   ========================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 12px 24px;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(3, 0, 20, 0.9);
    box-shadow: var(--glow-cyan), 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar .logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    position: relative;
    padding: 10px 20px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    opacity: 0.15;
}

.nav-cta {
    display: flex;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 2px;
    transition: var(--transition-fast);
    box-shadow: 0 0 10px var(--neon-cyan);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 100px;
    left: 24px;
    right: 24px;
    background: rgba(3, 0, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu a {
    display: block;
    padding: 16px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.mobile-menu a:hover {
    border-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
}

/* ==========================================
   BUTTONS - Neon Futuristic Style
   ========================================== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn .icon {
    width: 18px;
    height: 18px;
}

/* Primary Button - Glowing Cyan */
.btn-primary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon-cyan);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-primary:hover {
    color: var(--bg-dark);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6), inset 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-3px);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

/* Secondary Button - Magenta */
.btn-secondary {
    background: transparent;
    color: var(--neon-magenta);
    border: 2px solid var(--neon-magenta);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3), inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--neon-magenta);
    color: var(--bg-dark);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
    transform: translateY(-3px);
}

/* Gradient Button */
.btn-gradient {
    background: var(--gradient-main);
    color: var(--bg-dark);
    border: none;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
}

.btn-gradient:hover {
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.6), 0 0 80px rgba(255, 0, 255, 0.4);
    transform: translateY(-3px) scale(1.02);
}

/* Ghost Button */
.btn-ghost {
    background: var(--glass-bg);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* ==========================================
   HERO SECTION - Futuristic Landing
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    animation: float-particle 20s infinite linear;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; animation-delay: -5s; animation-duration: 20s; background: var(--neon-magenta); box-shadow: 0 0 10px var(--neon-magenta); }
.particle:nth-child(3) { left: 30%; animation-delay: -10s; animation-duration: 28s; }
.particle:nth-child(4) { left: 40%; animation-delay: -3s; animation-duration: 22s; background: var(--neon-purple); box-shadow: 0 0 10px var(--neon-purple); }
.particle:nth-child(5) { left: 50%; animation-delay: -7s; animation-duration: 24s; }
.particle:nth-child(6) { left: 60%; animation-delay: -12s; animation-duration: 26s; background: var(--neon-magenta); box-shadow: 0 0 10px var(--neon-magenta); }
.particle:nth-child(7) { left: 70%; animation-delay: -2s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: -8s; animation-duration: 23s; background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); }
.particle:nth-child(9) { left: 90%; animation-delay: -15s; animation-duration: 27s; }
.particle:nth-child(10) { left: 95%; animation-delay: -4s; animation-duration: 19s; background: var(--neon-cyan); }

@keyframes float-particle {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Scanning Line - Full Page */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), var(--neon-magenta), transparent);
    animation: scan-full 8s infinite linear;
    opacity: 0.6;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 0 15px var(--neon-cyan), 0 0 30px var(--neon-magenta);
}

@keyframes scan-full {
    0% { top: 0; }
    100% { top: 100%; }
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--neon-cyan);
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 32px;
    box-shadow: var(--glow-cyan);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.4); }
    50% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.8); }
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero h1 .line {
    display: block;
}

.hero h1 .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 24px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.hero-stat:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.hero-stat .value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stat .label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-darker);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--neon-magenta);
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--neon-magenta);
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ==========================================
   SERVICE CARDS - Glassmorphism Futuristic
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:nth-child(2) { border-color: rgba(255, 0, 255, 0.2); }
.service-card:nth-child(2):hover { border-color: var(--neon-magenta); box-shadow: 0 20px 60px rgba(255, 0, 255, 0.2); }
.service-card:nth-child(2)::before { background: var(--gradient-fire); }

.service-card:nth-child(3) { border-color: rgba(128, 0, 255, 0.2); }
.service-card:nth-child(3):hover { border-color: var(--neon-purple); box-shadow: 0 20px 60px rgba(128, 0, 255, 0.2); }
.service-card:nth-child(3)::before { background: var(--gradient-blue); }

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--neon-cyan);
    border-radius: 20px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    background: var(--gradient-main);
    opacity: 0.2;
    z-index: -1;
}

.service-icon i {
    width: 36px;
    height: 36px;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px currentColor);
}

.service-card:nth-child(2) .service-icon { border-color: var(--neon-magenta); }
.service-card:nth-child(2) .service-icon i { color: var(--neon-magenta); }
.service-card:nth-child(3) .service-icon { border-color: var(--neon-purple); }
.service-card:nth-child(3) .service-icon i { color: var(--neon-purple); }

.service-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    width: 16px;
    height: 16px;
    color: var(--neon-green);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 16px;
    text-shadow: 0 0 20px currentColor;
}

.service-link i {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

/* ==========================================
   HOW IT WORKS - Timeline
   ========================================== */
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 100px;
    right: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta), var(--neon-purple));
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    margin: 0 auto 28px;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4), inset 0 0 30px rgba(0, 255, 255, 0.1);
    animation: pulse-border 3s infinite;
}

.process-step:nth-child(2) .step-number {
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.4), inset 0 0 30px rgba(255, 0, 255, 0.1);
    animation-delay: 1s;
}

.process-step:nth-child(3) .step-number {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(128, 0, 255, 0.4), inset 0 0 30px rgba(128, 0, 255, 0.1);
    animation-delay: 2s;
}

@keyframes pulse-border {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.process-step h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-card {
    text-align: center;
    padding: 48px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}

.stat-card .number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-card .label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-box {
    position: relative;
    padding: 80px 60px;
    background: var(--glass-bg);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.2);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(0, 255, 255, 0.2), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(255, 0, 255, 0.2), transparent 50%);
    pointer-events: none;
}

.cta-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    position: relative;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-main);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand img {
    height: 45px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.footer-nav h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--neon-cyan);
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 14px;
}

.footer-nav a {
    color: var(--text-dim);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-nav a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.footer-nav a i {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-dim);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--neon-cyan);
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--glass-bg);
    border: 1px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-cyan);
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    box-shadow: var(--glow-cyan);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
}

.back-to-top i {
    width: 24px;
    height: 24px;
}

/* ==========================================
   PAGE HEADER - Internal Pages
   ========================================== */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 255, 255, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at top right, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    position: relative;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ==========================================
   SERVICES PAGE SHOWCASE
   ========================================== */
.service-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-main);
}

.showcase-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.15);
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-item.reverse::before {
    left: auto;
    right: 0;
}

.showcase-content {
    position: relative;
    z-index: 1;
}

.showcase-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 20px;
}

.showcase-tag.magenta {
    background: rgba(255, 0, 255, 0.1);
    border-color: var(--neon-magenta);
    color: var(--neon-magenta);
}

.showcase-tag.purple {
    background: rgba(128, 0, 255, 0.1);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.showcase-tag.green {
    background: rgba(0, 255, 128, 0.1);
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.showcase-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.showcase-content .tagline {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 24px;
}

.showcase-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.showcase-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.showcase-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius);
}

.showcase-feature i {
    width: 20px;
    height: 20px;
    color: var(--neon-cyan);
    flex-shrink: 0;
}

.showcase-feature strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.showcase-feature span {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.showcase-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.3));
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text-white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--neon-cyan);
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 20px;
    height: 20px;
    color: var(--neon-magenta);
}

.contact-item span,
.contact-item a {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-item a:hover {
    color: var(--neon-cyan);
}

/* ==========================================
   NEW COMPONENTS - IMPROVED STRUCTURE
   ========================================== */

/* Hero Stats Bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(3, 0, 20, 0.9);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 24px 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon-cyan);
    display: block;
    line-height: 1;
}

.stat-item .stat-value .stat-unit {
    font-size: 1rem;
    color: var(--neon-magenta);
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--neon-cyan), transparent);
}

/* New Service Cards - Compact */
.services-grid-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.service-card-new {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.service-card-new:hover {
    border-color: var(--neon-cyan);
    transform: translateX(8px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.service-card-new.featured {
    border-color: rgba(255, 0, 255, 0.3);
    background: rgba(255, 0, 255, 0.05);
}

.service-card-new.featured:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.service-icon-new {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 12px;
    flex-shrink: 0;
}

.service-card-new.featured .service-icon-new {
    background: rgba(255, 0, 255, 0.1);
    border-color: var(--neon-magenta);
}

.service-icon-new i {
    width: 24px;
    height: 24px;
    color: var(--neon-cyan);
}

.service-card-new.featured .service-icon-new i {
    color: var(--neon-magenta);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.service-arrow {
    width: 20px;
    height: 20px;
    color: var(--text-dim);
    transition: var(--transition-fast);
}

.service-card-new:hover .service-arrow {
    color: var(--neon-cyan);
    transform: translateX(4px);
}

.service-card-new.featured:hover .service-arrow {
    color: var(--neon-magenta);
}

/* New Process Steps */
.section-process {
    background: rgba(0, 0, 0, 0.3);
}

.process-steps-new {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.process-step-new {
    text-align: center;
    padding: 32px 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    width: 220px;
    transition: var(--transition-smooth);
}

.process-step-new:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.step-num {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.process-step-new h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.process-step-new p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.process-arrow {
    color: var(--neon-cyan);
    opacity: 0.5;
}

.process-arrow i {
    width: 24px;
    height: 24px;
}

/* New Features Grid */
.features-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card-new {
    text-align: center;
    padding: 32px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.feature-card-new:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.feature-card-new i {
    width: 32px;
    height: 32px;
    color: var(--neon-cyan);
    margin-bottom: 16px;
}

.feature-card-new h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.feature-card-new p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* New CTA Section */
.section-cta-new {
    padding: 80px 0;
}

.cta-box-new {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-box-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
}

.cta-box-new h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta-box-new p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Outline Button Style */
.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Section Spacing Adjustments */
.section-services {
    padding: 100px 0 80px;
}

.section-process {
    padding: 80px 0;
}

.section-why {
    padding: 80px 0;
}

/* Gradient Text Helper */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================
   SERVIZI PAGE - NEW STYLES
   ========================================== */

/* Compact Page Header */
.page-header-compact {
    padding: 140px 0 60px;
    text-align: center;
}

.page-header-compact h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 16px 0 8px;
}

.page-header-compact p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Services Page Section */
.section-services-page {
    padding: 40px 0 80px;
}

/* Service Block */
.service-block {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
}

.service-block.featured {
    border-color: rgba(255, 0, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.05), transparent);
}

.service-block.featured:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.service-block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.service-block-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
}

.service-block-icon.cyan {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--neon-cyan);
}

.service-block-icon.magenta {
    background: rgba(255, 0, 255, 0.1);
    border: 1px solid var(--neon-magenta);
}

.service-block-icon.purple {
    background: rgba(128, 0, 255, 0.1);
    border: 1px solid var(--neon-purple);
}

.service-block-icon.green {
    background: rgba(0, 255, 128, 0.1);
    border: 1px solid var(--neon-green);
}

.service-block-icon i {
    width: 28px;
    height: 28px;
}

.service-block-icon.cyan i { color: var(--neon-cyan); }
.service-block-icon.magenta i { color: var(--neon-magenta); }
.service-block-icon.purple i { color: var(--neon-purple); }
.service-block-icon.green i { color: var(--neon-green); }

.service-block-title {
    flex: 1;
}

.service-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.service-tag.cyan {
    background: rgba(0, 255, 255, 0.15);
    color: var(--neon-cyan);
}

.service-tag.magenta {
    background: rgba(255, 0, 255, 0.15);
    color: var(--neon-magenta);
}

.service-tag.purple {
    background: rgba(128, 0, 255, 0.15);
    color: var(--neon-purple);
}

.service-tag.green {
    background: rgba(0, 255, 128, 0.15);
    color: var(--neon-green);
}

.service-block-title h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.service-block-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 700px;
}

.service-block-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.service-block-specs .spec {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-block-specs .spec i {
    width: 16px;
    height: 16px;
    color: var(--neon-cyan);
}

/* Vehicle Section */
.section-vehicle {
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

.vehicle-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.vehicle-spec-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.vehicle-spec-card:hover {
    border-color: var(--neon-cyan);
}

.vehicle-spec-card .spec-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-cyan);
    display: block;
    margin-bottom: 4px;
}

.vehicle-spec-card .spec-value sup {
    font-size: 0.8rem;
}

.vehicle-spec-card .spec-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-features-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.vehicle-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.vehicle-feature-item i {
    width: 16px;
    height: 16px;
    color: var(--neon-green);
}

/* FAQ Section */
.section-faq {
    padding: 80px 0;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--neon-cyan);
}

.faq-item h4 {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item h4 i {
    width: 18px;
    height: 18px;
    color: var(--neon-magenta);
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    padding-left: 30px;
}

/* ==========================================
   CHI SIAMO PAGE - NEW STYLES
   ========================================== */

/* Founder Section */
.section-founder {
    padding: 40px 0 80px;
}

.founder-card-new {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--glass-bg);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-dark);
    flex-shrink: 0;
}

.founder-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.founder-role {
    font-size: 0.9rem;
    color: var(--neon-magenta);
    margin-bottom: 12px;
}

.founder-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.founder-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.founder-meta i {
    width: 14px;
    height: 14px;
    color: var(--neon-cyan);
}

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.story-card {
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.story-card:hover {
    border-color: var(--neon-cyan);
}

.story-label {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--neon-cyan);
    margin-bottom: 12px;
}

.story-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Quote Box */
.quote-box {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(0, 255, 255, 0.1));
    border: 1px solid var(--neon-magenta);
    border-radius: var(--radius-xl);
    position: relative;
}

.quote-box i {
    width: 32px;
    height: 32px;
    color: var(--neon-magenta);
    margin-bottom: 16px;
}

.quote-box p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Values Section */
.section-values {
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

.values-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-item {
    text-align: center;
    padding: 32px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.value-item:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
}

.value-item i {
    width: 32px;
    height: 32px;
    color: var(--neon-cyan);
    margin-bottom: 16px;
}

.value-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Difference Section */
.section-difference {
    padding: 80px 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.difference-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
}

.difference-card.mca {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--neon-cyan);
}

.difference-card.other {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
}

.difference-card h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.difference-card.mca h4 {
    color: var(--neon-cyan);
}

.difference-card.other h4 {
    color: var(--text-dim);
}

.difference-card h4 i {
    width: 20px;
    height: 20px;
}

.difference-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.difference-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.difference-card li:last-child {
    border-bottom: none;
}

.difference-card li i {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.difference-card.mca li i {
    color: var(--neon-green);
}

.difference-card.mca li {
    color: var(--text-light);
}

.difference-card.other li i {
    color: var(--neon-pink);
}

.difference-card.other li {
    color: var(--text-dim);
}

/* ==========================================
   CONTATTI PAGE - NEW STYLES
   ========================================== */

/* Quick Contact Section */
.section-quick-contact {
    padding: 40px 0;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quick-contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.quick-contact-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

.quick-contact-card.whatsapp {
    border-color: rgba(37, 211, 102, 0.3);
}

.quick-contact-card.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.3);
}

.qc-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.quick-contact-card.whatsapp .qc-icon {
    background: rgba(37, 211, 102, 0.1);
}

.qc-icon i,
.qc-icon svg {
    width: 24px;
    height: 24px;
    color: var(--neon-cyan);
}

.quick-contact-card.whatsapp .qc-icon svg {
    color: #25d366;
}

.qc-content {
    display: flex;
    flex-direction: column;
}

.qc-label {
    font-size: 0.8rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qc-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Form Section */
.section-form {
    padding: 40px 0 80px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
}

.form-header-new {
    text-align: center;
    margin-bottom: 32px;
}

.form-header-new h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-header-new p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-form-new .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-group-new.full {
    margin-bottom: 20px;
}

.form-group-new label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group-new input,
.form-group-new select,
.form-group-new textarea {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group-new input:focus,
.form-group-new select:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

.form-group-new input::placeholder,
.form-group-new textarea::placeholder {
    color: var(--text-dim);
}

.form-group-new select {
    cursor: pointer;
}

.form-group-new select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group-new.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.form-group-new.checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--neon-cyan);
    cursor: pointer;
}

.form-group-new.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    cursor: pointer;
}

.form-group-new.checkbox label a {
    color: var(--neon-cyan);
    text-decoration: underline;
}

.contact-form-new button[type="submit"] {
    width: 100%;
}

/* Info Contact Section */
.section-info-contact {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.info-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-box {
    text-align: center;
    padding: 24px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.info-box:hover {
    border-color: var(--neon-cyan);
}

.info-box i {
    width: 28px;
    height: 28px;
    color: var(--neon-cyan);
    margin-bottom: 12px;
}

.info-box h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: var(--text-light);
}

.info-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .navbar {
        top: 16px;
        width: calc(100% - 32px);
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-timeline::before {
        top: 60px;
        left: 60px;
        right: auto;
        width: 2px;
        height: calc(100% - 120px);
    }

    .process-step {
        text-align: left;
        display: flex;
        gap: 32px;
        align-items: flex-start;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .process-step p {
        margin: 0;
        max-width: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .showcase-item,
    .showcase-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .showcase-image {
        order: -1;
    }

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

    /* New Components Responsive */
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        gap: 24px;
    }

    .stat-item .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 16px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 120px 0 140px;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section {
        padding: 60px 0;
    }

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

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

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .showcase-item {
        padding: 32px 24px;
    }

    .showcase-features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 48px 24px;
    }

    /* New Components Mobile */
    .hero-stats-bar {
        padding: 16px 0;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 16px 32px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: calc(50% - 16px);
    }

    .stat-item .stat-value {
        font-size: 1.3rem;
    }

    .stat-item .stat-label {
        font-size: 0.7rem;
    }

    .service-card-new {
        padding: 20px;
        gap: 16px;
    }

    .service-icon-new {
        width: 48px;
        height: 48px;
    }

    .process-steps-new {
        flex-direction: column;
        gap: 16px;
    }

    .process-step-new {
        width: 100%;
        max-width: 300px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .features-grid-new {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .feature-card-new {
        padding: 24px 16px;
    }

    .feature-card-new h4 {
        font-size: 0.8rem;
    }

    .feature-card-new p {
        font-size: 0.8rem;
    }

    .cta-box-new {
        padding: 40px 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-services,
    .section-process,
    .section-why {
        padding: 60px 0;
    }

    .section-cta-new {
        padding: 40px 0;
    }

    /* Servizi Page Mobile */
    .page-header-compact {
        padding: 120px 0 40px;
    }

    .service-block {
        padding: 24px;
    }

    .service-block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .service-block-icon {
        width: 50px;
        height: 50px;
    }

    .service-block-icon i {
        width: 24px;
        height: 24px;
    }

    .service-block-specs {
        flex-direction: column;
        gap: 8px;
    }

    .service-block-specs .spec {
        width: 100%;
    }

    .vehicle-specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .vehicle-spec-card {
        padding: 20px 12px;
    }

    .vehicle-spec-card .spec-value {
        font-size: 1.2rem;
    }

    .vehicle-features-list {
        flex-direction: column;
        align-items: center;
    }

    .faq-list {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-item h4 {
        font-size: 0.85rem;
    }

    /* Chi Siamo Page Mobile */
    .founder-card-new {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .founder-meta {
        justify-content: center;
    }

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

    .quote-box {
        padding: 24px;
    }

    .quote-box p {
        font-size: 1rem;
    }

    .values-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .value-item {
        padding: 24px 16px;
    }

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

    .difference-card {
        padding: 24px;
    }

    /* Contatti Page Mobile */
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-card {
        padding: 20px;
    }

    .form-wrapper {
        padding: 24px;
    }

    .contact-form-new .form-grid {
        grid-template-columns: 1fr;
    }

    .info-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .info-box {
        padding: 20px 12px;
    }

    .info-box h4 {
        font-size: 0.75rem;
    }
}
