/* CYBER TIRE - Custom CSS */
/* Cyber-Mechanical Design System for Tire Service */

:root {
    /* Color Palette */
    --cosmic-black: #0D0D0D;
    --cyber-orange: #FF4500;
    --neon-cyan: #00FFFF;
    --metallic-gray: #2C2C2C;
    --pure-white: #FFFFFF;
    --electric-blue: #0080FF;
    --cyber-orange-light: #FF6B35;

    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #0D0D0D 0%, #2C2C2C 100%);
    --button-gradient: linear-gradient(45deg, #FF4500 0%, #FF6B35 100%);
    --hover-gradient: radial-gradient(circle, #00FFFF 0%, #0080FF 100%);

    /* Typography */
    --font-heading: 'Orbitron', monospace;
    --font-body: 'Exo 2', sans-serif;
    --font-accent: 'Audiowide', cursive;

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 15px;

    /* Animations */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.6s ease-in-out;
    --cyber-pulse: 2s ease-in-out infinite;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--cosmic-black);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--metallic-gray);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--cyber-orange), var(--neon-cyan));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--neon-cyan), var(--cyber-orange));
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cosmic-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
}

.cyber-loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 255, 255, 0.2);
    border-top: 3px solid var(--neon-cyan);
    border-radius: 50%;
    animation: cyberSpin 1s linear infinite;
    position: relative;
    margin: 0 auto 20px;
}

.cyber-loader::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid rgba(255, 69, 0, 0.1);
    border-left: 2px solid var(--cyber-orange);
    border-radius: 50%;
    animation: cyberSpin 2s linear infinite reverse;
}

@keyframes cyberSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cyber-loader-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    animation: cyberPulse 1.5s ease-in-out infinite;
    margin-bottom: 20px;
}

.loading-progress {
    width: 200px;
    margin: 0 auto;
}

.cyber-progress {
    width: 100%;
    height: 8px;
    background: rgba(45, 45, 45, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    background-image: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        rgba(0, 255, 255, 0.1) 10px,
        rgba(0, 255, 255, 0.1) 12px
    );
}

.cyber-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--cyber-orange) 100%);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
}

.cyber-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
    transform: translateX(-100%);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cyber-progress-text {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
    margin-top: 10px;
}

/* Particles Container */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(odd) {
    background: var(--cyber-orange);
    animation-duration: 8s;
}

.particle:nth-child(3n) {
    background: var(--electric-blue);
    animation-duration: 10s;
}

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

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(45, 45, 45, 0.95);
    border-top: 2px solid var(--neon-cyan);
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

/* Navigation */
.cyber-navbar {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    padding: 15px 0;
    transition: all var(--transition-fast);
}

.cyber-navbar.scrolled {
    background: rgba(13, 13, 13, 0.98);
    border-bottom-color: var(--neon-cyan);
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.2);
}

.navbar-brand {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 24px;
    color: var(--pure-white);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.logo-icon {
    font-size: 24px;
    animation: logoRotate 10s linear infinite;
}

@keyframes logoRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.language-switch {
    padding: 8px 12px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neon-cyan);
    cursor: pointer;
}

.phone-link {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.phone-link:hover {
    color: var(--cyber-orange);
    text-shadow: 0 0 10px var(--cyber-orange);
}

.phone-icon {
    margin-right: 5px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 20px;
    transition: all var(--transition-fast);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--cyber-orange));
    transform: translateX(-50%);
    transition: width var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.cyber-burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.cyber-burger span {
    width: 25px;
    height: 2px;
    background: var(--neon-cyan);
    transition: all var(--transition-fast);
}

/* Buttons */
.cyber-btn-primary {
    background: var(--button-gradient);
    border: 2px solid var(--cyber-orange);
    border-radius: 0;
    color: var(--pure-white);
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 400;
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    box-shadow:
        0 0 10px rgba(255, 69, 0, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.cyber-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.cyber-btn-primary:hover::before {
    left: 100%;
}

.cyber-btn-primary:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow:
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cyber-btn-primary.pulse {
    animation: cyberPulse var(--cyber-pulse);
}

@keyframes cyberPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 69, 0, 0.8), 0 0 50px rgba(255, 69, 0, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
    }
}

.cyber-btn-outline {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid var(--neon-cyan);
    border-radius: 0;
    color: var(--neon-cyan);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow:
        0 0 10px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.cyber-btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-cyan), var(--electric-blue));
    transition: width 0.4s ease;
    z-index: -1;
}

.cyber-btn-outline:hover::after {
    width: 100%;
}

.cyber-btn-outline:hover {
    color: var(--cosmic-black);
    border-color: var(--electric-blue);
    box-shadow:
        0 0 20px var(--neon-cyan),
        0 0 40px var(--electric-blue);
}

.cyber-btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 20px;
    text-transform: capitalize;
    position: relative;
    transition: all var(--transition-fast);
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
    background-size: 8px 8px;
}

.cyber-btn-ghost:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Form Elements */
.cyber-input {
    background: rgba(45, 45, 45, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 0;
    color: var(--pure-white);
    font-family: var(--font-body);
    font-size: 16px;
    padding: 15px 20px;
    width: 100%;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    background-image:
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.cyber-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    background: rgba(45, 45, 45, 0.95);
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.cyber-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.cyber-input-group {
    position: relative;
    margin-bottom: 25px;
}

.cyber-label {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--cosmic-black);
    color: var(--neon-cyan);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 10px;
    z-index: 2;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.cyber-select {
    background: rgba(45, 45, 45, 0.9);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 0;
    color: var(--pure-white);
    font-family: var(--font-body);
    font-size: 16px;
    padding: 15px 45px 15px 20px;
    width: 100%;
    cursor: pointer;
    position: relative;
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--neon-cyan) 50%),
        linear-gradient(135deg, var(--neon-cyan) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.cyber-select:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.cyber-select:focus {
    outline: none;
    border-color: var(--cyber-orange);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
}

.cyber-select option {
    background: var(--metallic-gray);
    color: var(--pure-white);
    padding: 10px;
}

/* Cards */
.cyber-card {
    background: rgba(45, 45, 45, 0.9);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 0;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-image:
        linear-gradient(45deg, rgba(0, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 60px 60px;
    box-shadow:
        inset 0 0 50px rgba(0, 255, 255, 0.05),
        0 5px 30px rgba(0, 0, 0, 0.3);
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 255, 255, 0.1) 0%,
        rgba(255, 69, 0, 0.1) 50%,
        rgba(0, 128, 255, 0.1) 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.cyber-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-cyan);
    box-shadow:
        0 20px 60px rgba(0, 255, 255, 0.3),
        inset 0 0 50px rgba(0, 255, 255, 0.1);
}

.cyber-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--cyber-orange);
    border-right: 2px solid var(--cyber-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.cyber-card > * {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.cyber-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at 30% 40%,
        rgba(0, 255, 255, 0.1) 0%,
        transparent 50%
    ),
    radial-gradient(
        circle at 70% 60%,
        rgba(255, 69, 0, 0.1) 0%,
        transparent 50%
    );
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-title .cyber-accent {
    color: var(--cyber-orange);
    text-shadow: 0 0 30px var(--cyber-orange);
}

.hero-title .subtitle {
    display: block;
    font-size: 32px;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.feature-icon {
    font-size: 20px;
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.wheel-3d-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    perspective: 1000px;
}

.wheel-3d {
    width: 300px;
    height: 300px;
    position: relative;
    margin: 0 auto;
    animation: wheelRotate 20s linear infinite;
}

.wheel-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border: 8px solid var(--metallic-gray);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        var(--metallic-gray) 0%,
        var(--cosmic-black) 70%
    );
    box-shadow:
        0 0 50px rgba(0, 255, 255, 0.3),
        inset 0 0 50px rgba(255, 69, 0, 0.2);
}

.wheel-rim {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 4px solid var(--neon-cyan);
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--neon-cyan) 0deg,
        var(--cyber-orange) 90deg,
        var(--neon-cyan) 180deg,
        var(--electric-blue) 270deg,
        var(--neon-cyan) 360deg
    );
    animation: rimPulse 4s ease-in-out infinite;
}

@keyframes rimPulse {
    0%, 100% {
        box-shadow: 0 0 20px var(--neon-cyan);
    }
    50% {
        box-shadow: 0 0 40px var(--cyber-orange), 0 0 80px var(--neon-cyan);
    }
}

.wheel-spokes {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
}

.wheel-spokes span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 40%;
    background: linear-gradient(to bottom, var(--neon-cyan), transparent);
    transform-origin: bottom center;
}

.wheel-spokes span:nth-child(1) { transform: translate(-50%, -100%) rotate(0deg); }
.wheel-spokes span:nth-child(2) { transform: translate(-50%, -100%) rotate(72deg); }
.wheel-spokes span:nth-child(3) { transform: translate(-50%, -100%) rotate(144deg); }
.wheel-spokes span:nth-child(4) { transform: translate(-50%, -100%) rotate(216deg); }
.wheel-spokes span:nth-child(5) { transform: translate(-50%, -100%) rotate(288deg); }

@keyframes wheelRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.holographic-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.holographic-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    animation: particleOrbit 8s linear infinite;
}

.holographic-particles span:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.holographic-particles span:nth-child(2) {
    top: 20%;
    right: 10%;
    background: var(--cyber-orange);
    animation-delay: 1.6s;
}

.holographic-particles span:nth-child(3) {
    bottom: 20%;
    left: 20%;
    background: var(--electric-blue);
    animation-delay: 3.2s;
}

.holographic-particles span:nth-child(4) {
    bottom: 10%;
    right: 20%;
    animation-delay: 4.8s;
}

.holographic-particles span:nth-child(5) {
    top: 50%;
    left: 5%;
    background: var(--cyber-orange);
    animation-delay: 6.4s;
}

@keyframes particleOrbit {
    0% {
        transform: scale(1) translateY(0px);
        opacity: 0.8;
    }
    25% {
        transform: scale(1.5) translateY(-20px);
        opacity: 1;
    }
    50% {
        transform: scale(1) translateY(-10px);
        opacity: 0.6;
    }
    75% {
        transform: scale(0.8) translateY(-30px);
        opacity: 0.9;
    }
    100% {
        transform: scale(1) translateY(0px);
        opacity: 0.8;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    font-size: 18px;
    margin-top: 5px;
    color: var(--neon-cyan);
}

/* Section Styles */
.services-section,
.advantages-section,
.prices-section,
.about-section,
.reviews-section,
.booking-section,
.contact-section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 36px;
    color: var(--pure-white);
    margin-bottom: 20px;
}

.section-title .cyber-accent {
    color: var(--cyber-orange);
    text-shadow: 0 0 20px var(--cyber-orange);
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon {
    margin-bottom: 20px;
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-3d {
    font-size: 48px;
    animation: iconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 255, 255, 0.3));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.service-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.service-features li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--cyber-orange);
}

.service-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--cyber-orange);
    margin: 15px 0;
    text-shadow: 0 0 10px var(--cyber-orange);
}

.service-btn {
    margin-top: auto;
    width: 100%;
}

/* Advantages Section */
.advantage-block {
    background: rgba(45, 45, 45, 0.8);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.diagonal-block-1,
.diagonal-block-3 {
    border-left: 3px solid var(--cyber-orange);
}

.diagonal-block-2,
.diagonal-block-4 {
    border-right: 3px solid var(--neon-cyan);
}

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

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px var(--cyber-orange));
}

.advantage-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.advantage-content ul {
    list-style: none;
    padding: 0;
}

.advantage-content li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 25px;
}

.advantage-content li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--cyber-orange);
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 36px;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Price Cards */
.prices-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.price-card {
    background: linear-gradient(135deg, rgba(0, 13, 13, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
}

.price-card.featured {
    border-color: var(--cyber-orange);
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(13, 0, 0, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
}

.price-card.featured::before {
    content: 'ПОПУЛЯРНИЙ';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--button-gradient);
    color: var(--pure-white);
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 8px 20px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}

.price-card:hover {
    border-color: var(--neon-cyan);
    box-shadow:
        0 20px 50px rgba(0, 255, 255, 0.2),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.price-card.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.price-header {
    margin-bottom: 30px;
}

.price-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.price-body {
    margin-bottom: 30px;
    flex-grow: 1;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    margin: 20px 0;
}

.price-currency {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.price-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.price-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 25px;
    font-size: 14px;
}

.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyber-orange);
    font-weight: bold;
}

.service-price-item {
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.service-price-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
}

.service-price-icon {
    font-size: 32px;
    filter: drop-shadow(0 5px 10px var(--cyber-orange));
}

.service-price-content {
    flex-grow: 1;
}

.service-price-content h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 16px;
    color: var(--pure-white);
    margin-bottom: 5px;
}

.service-price-content .price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--cyber-orange);
    text-shadow: 0 0 10px var(--cyber-orange);
}

.discount-info {
    background: rgba(45, 45, 45, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.discount-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 255, 255, 0.05);
    transition: all var(--transition-fast);
}

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

.discount-icon {
    font-size: 36px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px var(--cyber-orange));
}

.discount-card h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--pure-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discount-value {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 24px;
    color: var(--cyber-orange);
    text-shadow: 0 0 15px var(--cyber-orange);
    margin-bottom: 10px;
}

.discount-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* About Section */
.about-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-achievements {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.achievement-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 28px;
    color: var(--cyber-orange);
    text-shadow: 0 0 15px var(--cyber-orange);
    display: block;
    margin-bottom: 5px;
}

.achievement-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-container {
    position: relative;
    height: 300px;
    background: var(--metallic-gray);
    border: 2px solid rgba(0, 255, 255, 0.3);
    overflow: hidden;
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--cosmic-black) 0%, var(--metallic-gray) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image:
        linear-gradient(45deg, rgba(0, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 255, 255, 0.05) 25%, transparent 25%);
    background-size: 40px 40px;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--button-gradient);
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--pure-white);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: playButtonPulse 3s ease-in-out infinite;
}

@keyframes playButtonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px rgba(0, 255, 255, 0.8), 0 0 100px rgba(255, 69, 0, 0.4);
    }
}

.video-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--neon-cyan);
    margin-top: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.team-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--cyber-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--cyber-orange);
}

.team-member {
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 25px;
    text-align: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(15px);
}

.team-member:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.member-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--metallic-gray);
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.member-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--pure-white);
}

.member-status.online {
    background: #00FF00;
    box-shadow: 0 0 10px #00FF00;
}

.member-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

.member-position {
    font-weight: 600;
    color: var(--cyber-orange);
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.member-experience {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.member-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.certificates-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--cyber-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px var(--cyber-orange);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.certificate-item {
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    text-align: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.certificate-item:hover {
    border-color: var(--cyber-orange);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
    transform: translateY(-3px);
}

.certificate-icon {
    font-size: 36px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px var(--cyber-orange));
}

.certificate-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews Section */
.overall-rating {
    margin-bottom: 40px;
}

.rating-value {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 48px;
    color: var(--cyber-orange);
    text-shadow: 0 0 30px var(--cyber-orange);
    margin-bottom: 10px;
}

.rating-stars {
    font-size: 24px;
    margin-bottom: 10px;
    filter: drop-shadow(0 3px 6px var(--cyber-orange));
}

.rating-count {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
}

.reviews-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.reviews-container {
    display: flex;
    overflow: hidden;
    border-radius: 0;
}

.review-card {
    min-width: 100%;
    background: rgba(45, 45, 45, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    padding: 40px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s ease;
    backdrop-filter: blur(20px);
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.reviewer-avatar {
    position: relative;
}

.avatar-frame {
    width: 60px;
    height: 60px;
    background: var(--metallic-gray);
    border: 3px solid var(--neon-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.reviewer-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--neon-cyan);
    margin-bottom: 5px;
}

.reviewer-car {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.review-rating {
    font-size: 16px;
    filter: drop-shadow(0 2px 4px var(--cyber-orange));
}

.review-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.review-date {
    text-align: right;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 20px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.carousel-btn {
    background: transparent;
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--neon-cyan);
    color: var(--cosmic-black);
    box-shadow: 0 0 20px var(--neon-cyan);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active,
.dot:hover {
    background: var(--cyber-orange);
    box-shadow: 0 0 15px var(--cyber-orange);
}

/* Booking Section */
.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(45, 45, 45, 0.8);
    border: 2px solid rgba(0, 255, 255, 0.3);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    background: var(--cosmic-black);
    transition: all var(--transition-fast);
}

.step.active .step-number,
.step.completed .step-number {
    border-color: var(--cyber-orange);
    color: var(--cyber-orange);
    background: rgba(255, 69, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.step-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step.active .step-title,
.step.completed .step-title {
    color: var(--cyber-orange);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--neon-cyan);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.form-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.service-option {
    position: relative;
}

.service-option input[type="checkbox"] {
    display: none;
}

.service-label {
    display: block;
    background: rgba(45, 45, 45, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

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

.service-option input[type="checkbox"]:checked + .service-label {
    border-color: var(--cyber-orange);
    background: rgba(255, 69, 0, 0.1);
    box-shadow: 0 15px 40px rgba(255, 69, 0, 0.3);
}

.service-label .service-icon {
    font-size: 32px;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 10px var(--cyber-orange));
}

.service-label .service-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--pure-white);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-label .service-price {
    font-size: 14px;
    color: var(--neon-cyan);
    font-weight: 600;
}

.calendar-container {
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 20px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.calendar-nav {
    background: transparent;
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.calendar-nav:hover {
    background: var(--neon-cyan);
    color: var(--cosmic-black);
}

.calendar-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--neon-cyan);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.calendar-day.selected {
    background: var(--cyber-orange);
    color: var(--pure-white);
    border-color: var(--cyber-orange);
}

.calendar-day.unavailable {
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
}

.time-slots {
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 20px;
}

.time-slots h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.time-slot {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

.time-slot.selected {
    border-color: var(--cyber-orange);
    background: var(--cyber-orange);
    color: var(--pure-white);
}

.time-slot.unavailable {
    opacity: 0.4;
    cursor: not-allowed;
}

.booking-summary {
    background: rgba(13, 13, 13, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    padding: 25px;
    margin-top: 30px;
}

.booking-summary h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--cyber-orange);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    color: var(--neon-cyan);
}

/* Contact Section */
.map-container {
    position: relative;
    height: 400px;
    background: var(--metallic-gray);
    border: 2px solid rgba(0, 255, 255, 0.3);
    overflow: hidden;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--cosmic-black) 0%, var(--metallic-gray) 100%);
    background-image:
        linear-gradient(45deg, rgba(0, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 255, 255, 0.05) 25%, transparent 25%);
    background-size: 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
}

.map-marker {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 15px var(--cyber-orange));
}

.map-info h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.map-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.contact-info {
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(45, 45, 45, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all var(--transition-fast);
    backdrop-filter: blur(15px);
}

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

.contact-icon {
    font-size: 32px;
    filter: drop-shadow(0 5px 15px var(--cyber-orange));
}

.contact-content h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--neon-cyan);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.contact-content a {
    color: var(--cyber-orange);
    text-decoration: none;
    transition: all var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--neon-cyan);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: rgba(255, 69, 0, 0.1);
    border-color: var(--cyber-orange);
    color: var(--cyber-orange);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.directions-section {
    background: rgba(45, 45, 45, 0.4);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 40px;
    backdrop-filter: blur(20px);
}

.directions-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--cyber-orange);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.direction-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(13, 13, 13, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
}

.direction-item:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    transform: translateY(-3px);
}

.direction-icon {
    font-size: 32px;
    filter: drop-shadow(0 5px 15px var(--cyber-orange));
}

.direction-content h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--neon-cyan);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.direction-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--cosmic-black) 0%, var(--metallic-gray) 100%);
    border-top: 2px solid rgba(0, 255, 255, 0.3);
}

.footer-main {
    padding: 60px 0;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 28px;
    color: var(--pure-white);
    text-shadow: 0 0 20px var(--neon-cyan);
}

.logo-tagline {
    font-size: 14px;
    color: var(--cyber-orange);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 30px;
    line-height: 1.6;
}

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

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-social .social-link:hover {
    background: rgba(255, 69, 0, 0.1);
    border-color: var(--cyber-orange);
    color: var(--cyber-orange);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.footer-menu h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--cyber-orange);
    text-shadow: 0 0 10px var(--cyber-orange);
}

.footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--neon-cyan);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-quick-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-quick-icon {
    color: var(--cyber-orange);
    font-size: 16px;
}

.contact-quick-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.contact-quick-item a:hover {
    color: var(--cyber-orange);
    text-shadow: 0 0 10px var(--cyber-orange);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-lang {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-lang .active {
    color: var(--neon-cyan);
    font-weight: 600;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--cosmic-black) 0%, var(--metallic-gray) 100%);
    border-left: 2px solid var(--neon-cyan);
    z-index: 9999;
    transition: right 0.3s ease;
    backdrop-filter: blur(20px);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 20px;
    color: var(--neon-cyan);
}

.mobile-close {
    background: transparent;
    border: 1px solid var(--cyber-orange);
    color: var(--cyber-orange);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.mobile-close:hover {
    background: var(--cyber-orange);
    color: var(--pure-white);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body);
    font-size: 16px;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--cyber-orange));
    transition: width var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--neon-cyan);
    border-left-color: var(--neon-cyan);
    background: rgba(0, 255, 255, 0.05);
    padding-left: 30px;
    text-shadow: 0 0 10px var(--neon-cyan);
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active::before {
    width: 20px;
}

.mobile-cta {
    text-align: center;
}

.mobile-phone {
    display: block;
    color: var(--cyber-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.mobile-phone:hover {
    text-shadow: 0 0 15px var(--cyber-orange);
}

/* Glitch Text Effect */
.glitch-text {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--pure-white);
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cosmic-black);
}

.glitch-text::before {
    animation: glitchAnim1 0.5s infinite linear alternate-reverse;
    color: var(--cyber-orange);
    z-index: -1;
    clip: rect(0, 900px, 0, 0);
}

.glitch-text::after {
    animation: glitchAnim2 0.5s infinite linear alternate-reverse;
    color: var(--neon-cyan);
    z-index: -2;
    clip: rect(0, 900px, 0, 0);
}

@keyframes glitchAnim1 {
    0% { clip: rect(132px, 9999px, 142px, 0); }
    10% { clip: rect(40px, 9999px, 80px, 0); }
    20% { clip: rect(89px, 9999px, 130px, 0); }
    30% { clip: rect(0px, 9999px, 30px, 0); }
    40% { clip: rect(70px, 9999px, 120px, 0); }
    50% { clip: rect(65px, 9999px, 130px, 0); }
    60% { clip: rect(22px, 9999px, 80px, 0); }
    70% { clip: rect(80px, 9999px, 120px, 0); }
    80% { clip: rect(37px, 9999px, 130px, 0); }
    90% { clip: rect(10px, 9999px, 80px, 0); }
    100% { clip: rect(50px, 9999px, 130px, 0); }
}

@keyframes glitchAnim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    25% { clip: rect(10px, 9999px, 105px, 0); }
    50% { clip: rect(85px, 9999px, 140px, 0); }
    75% { clip: rect(25px, 9999px, 75px, 0); }
    100% { clip: rect(45px, 9999px, 125px, 0); }
}

/* Modal Styles */
.cyber-modal .modal-content {
    background: rgba(45, 45, 45, 0.95);
    border: 2px solid var(--neon-cyan);
    border-radius: 0;
    backdrop-filter: blur(20px);
}

.cyber-modal .modal-header {
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
    padding: 25px 30px;
}

.cyber-modal .modal-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-modal .btn-close {
    background: none;
    border: 1px solid var(--cyber-orange);
    color: var(--cyber-orange);
    opacity: 1;
    font-size: 18px;
    padding: 8px;
}

.cyber-modal .btn-close:hover {
    background: var(--cyber-orange);
    color: var(--pure-white);
}

.cyber-modal .modal-body {
    padding: 30px;
}

.cyber-modal .modal-footer {
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.calculator-result {
    text-align: center;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.result-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 32px;
    color: var(--cyber-orange);
    text-shadow: 0 0 20px var(--cyber-orange);
    margin-bottom: 5px;
}

.result-time {
    font-size: 14px;
    color: var(--neon-cyan);
}

.service-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.service-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--cyber-orange);
}

.service-check label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-title .subtitle {
        font-size: 24px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .wheel-3d-container {
        width: 300px;
        height: 300px;
    }

    .wheel-3d {
        width: 250px;
        height: 250px;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .about-achievements {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
        text-align: center;
    }

    .hero-title .subtitle {
        font-size: 20px;
    }

    .hero-description {
        text-align: center;
        font-size: 16px;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .wheel-3d-container {
        width: 250px;
        height: 250px;
        margin: 30px auto;
    }

    .wheel-3d {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 28px;
        text-align: center;
    }

    .booking-steps {
        flex-wrap: wrap;
        gap: 20px;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .step-title {
        font-size: 12px;
    }

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

    .time-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-navigation {
        flex-direction: column;
    }

    .prices-filter {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        font-size: 12px;
        padding: 8px 16px;
    }

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

    .social-links {
        flex-wrap: wrap;
    }

    .mobile-menu {
        width: 280px;
    }
}

@media (max-width: 575.98px) {
    .hero-features {
        text-align: center;
    }

    .feature-item {
        justify-content: center;
        font-size: 14px;
    }

    .stats-container {
        flex-direction: column;
        text-align: center;
    }

    .advantage-block {
        margin-bottom: 20px;
        padding: 25px 20px;
        clip-path: none;
    }

    .review-card {
        padding: 25px 20px;
    }

    .review-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .directions-section {
        padding: 30px 20px;
    }

    .direction-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .mobile-menu {
        width: 100%;
        right: -100%;
    }

    .cyber-modal .modal-dialog {
        margin: 0;
        height: 100vh;
        max-width: 100%;
    }

    .cyber-modal .modal-content {
        height: 100vh;
        border-radius: 0;
    }
}

/* Print Styles */
@media print {
    .particles-container,
    .loading-screen,
    .cookie-banner,
    .cyber-navbar,
    .mobile-menu {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .cyber-card,
    .price-card,
    .advantage-block {
        border: 1px solid #ccc !important;
        background: white !important;
        box-shadow: none !important;
    }
}