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

:root {
    /* Racing Colors from Logo */
    --racing-red: #dc2626;
    --racing-red-dark: #b91c1c;
    --racing-red-light: #ef4444;
    --racing-black: #1f2937;
    --racing-white: #ffffff;
    --racing-gray: #6b7280;
    --racing-gray-light: #f3f4f6;
    --racing-gray-dark: #374151;
    
    /* Mac-style Colors */
    --mac-blue: #007aff;
    --mac-green: #34c759;
    --mac-orange: #ff9500;
    --mac-red: #ff3b30;
    --mac-purple: #af52de;
    
    /* Shadows and Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Mac-style Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-backdrop: blur(20px);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Orbitron', monospace;
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo .logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all var(--transition-normal);
    /* Remove white background */
    background: transparent;
    mix-blend-mode: multiply;
}

.nav-logo .logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--racing-black);
    font-weight: 500;
    position: relative;
    transition: all var(--transition-fast);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--racing-red);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--racing-red);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--racing-black);
    transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, 
        var(--racing-white) 0%, 
        var(--racing-gray-light) 50%, 
        var(--racing-white) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.racing-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, var(--racing-red) 49%, var(--racing-red) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, var(--racing-red) 49%, var(--racing-red) 51%, transparent 52%);
    background-size: 100px 100px;
    opacity: 0.05;
    animation: racingLines 20s linear infinite;
}

@keyframes racingLines {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.checkered-pattern {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: 
        linear-gradient(45deg, var(--racing-red) 25%, transparent 25%),
        linear-gradient(-45deg, var(--racing-red) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--racing-red) 75%),
        linear-gradient(-45deg, transparent 75%, var(--racing-red) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.1;
    animation: checkeredFloat 6s ease-in-out infinite;
}

@keyframes checkeredFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 3rem;
}

.main-logo {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    height: clamp(120px, 20vw, 200px);
    width: auto;
    max-width: 400px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all var(--transition-normal);
    animation: logoGlow 3s ease-in-out infinite alternate;
    /* Remove white background */
    background: transparent;
    mix-blend-mode: multiply;
}

@keyframes logoGlow {
    0% { 
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 6px 12px rgba(220, 38, 38, 0.3));
        transform: scale(1.02);
    }
}

.hero-logo-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 16px rgba(220, 38, 38, 0.4));
}

.tagline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.racing-tech, .perfect-results {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--racing-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-services h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--racing-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-services p {
    font-size: 1.2rem;
    color: var(--racing-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--racing-red), var(--racing-red-dark));
    color: var(--racing-white);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--racing-black);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.btn-secondary:hover {
    background: var(--racing-gray-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--racing-red);
    position: relative;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--racing-red);
    border-bottom: 2px solid var(--racing-red);
    transform: rotate(45deg);
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--racing-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--racing-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--racing-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--racing-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--racing-red), var(--racing-red-light));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--racing-red), var(--racing-red-dark));
    color: var(--racing-white);
    transform: scale(1.05);
}

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

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--racing-white);
    color: var(--racing-red);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--racing-red), var(--racing-red-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--racing-white);
    box-shadow: var(--shadow-md);
}

.service-card.featured .service-icon {
    background: var(--racing-white);
    color: var(--racing-red);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-features i {
    color: var(--racing-red);
    font-size: 0.8rem;
}

.service-card.featured .service-features i {
    color: var(--racing-white);
}

/* What is Plasticization Section */
.what-is-plasticization {
    padding: 6rem 0;
    background: var(--racing-white);
}

.plasticization-content {
    max-width: 1000px;
    margin: 0 auto;
}

.plasticization-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--racing-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.plasticization-text > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--racing-black);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Ensure 6 items display nicely */
@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--racing-gray-light);
    border-radius: 15px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--racing-red);
    box-shadow: var(--shadow-lg);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--racing-red);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--racing-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-item p {
    color: var(--racing-gray);
    line-height: 1.6;
}

.why-choose {
    background: linear-gradient(135deg, var(--racing-red), var(--racing-red-dark));
    color: var(--racing-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.why-choose h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.why-choose ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.why-choose li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.why-choose i {
    color: var(--racing-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* National Service Section */
.national-service {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--racing-red), var(--racing-red-dark));
    color: var(--racing-white);
}

.national-service .section-header h2 {
    color: var(--racing-white);
}

.national-service .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.national-content {
    max-width: 1200px;
    margin: 0 auto;
}

.national-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.national-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.national-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
}

.national-icon {
    width: 80px;
    height: 80px;
    background: var(--racing-white);
    color: var(--racing-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.national-details h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--racing-white);
}

.national-details p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.shipping-process {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shipping-process h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: var(--racing-white);
    text-align: center;
}

.shipping-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.shipping-step {
    text-align: center;
    position: relative;
}

.shipping-step .step-number {
    width: 80px;
    height: 80px;
    background: var(--racing-white);
    color: var(--racing-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.shipping-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.shipping-step .step-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--racing-white);
}

.shipping-step .step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--racing-gray-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--racing-red), var(--racing-red-dark));
    color: var(--racing-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: var(--racing-red);
    opacity: 0.3;
    z-index: 1;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--racing-black);
}

.step-content p {
    color: var(--racing-gray);
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background: var(--racing-white);
}

.gallery-section {
    margin-bottom: 4rem;
}

.gallery-section h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--racing-red);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.gallery-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--racing-red), var(--racing-red-light));
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Special styling for Άλλες Υπηρεσίες section */
.gallery-section:last-child .gallery-grid {
    display: flex;
    justify-content: center;
    max-width: 250px;
    margin: 0 auto;
}

.gallery-section:last-child .gallery-item {
    max-width: 250px;
}

.gallery-section:last-child .gallery-image img {
    max-height: 150px;
    object-fit: cover;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-image::after {
    content: 'MOTO PerFect';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(220, 38, 38, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    opacity: 0.9;
    transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-image::after {
    opacity: 1;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--racing-white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: var(--racing-white);
}

.video-container {
    max-width: 1000px;
    margin: 0 auto 4rem;
    position: relative;
}

.video-player {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--racing-black);
    aspect-ratio: 16/9;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all var(--transition-normal);
    border-radius: 20px;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--racing-red), var(--racing-red-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--racing-white);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
}

.play-button:hover::before {
    transform: translateX(100%);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

.video-info {
    text-align: center;
    color: var(--racing-white);
}

.video-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-controls {
    background: var(--racing-white);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
    border: 1px solid var(--glass-border);
}

.control-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.control-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--racing-red), var(--racing-red-dark));
    color: var(--racing-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.control-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
}

.control-btn:hover::before {
    transform: translateX(100%);
}

.control-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.control-btn.active {
    background: var(--racing-gray);
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: var(--racing-gray-light);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--racing-red), var(--racing-red-light));
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s ease;
    position: relative;
}

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

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

.progress-handle {
    position: absolute;
    top: 50%;
    left: 0%;
    width: 16px;
    height: 16px;
    background: var(--racing-white);
    border: 2px solid var(--racing-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.progress-handle:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: var(--shadow-lg);
}

.time-display {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--racing-gray);
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.video-description {
    max-width: 1000px;
    margin: 0 auto;
}

.description-content {
    background: var(--racing-gray-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.description-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--racing-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.description-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--racing-black);
    margin-bottom: 2rem;
    text-align: center;
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-features .feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--racing-white);
    border-radius: 15px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.video-features .feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--racing-red);
    box-shadow: var(--shadow-lg);
}

.video-features .feature-item i {
    font-size: 3rem;
    color: var(--racing-red);
    margin-bottom: 1rem;
}

.video-features .feature-item h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--racing-black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.video-features .feature-item p {
    color: var(--racing-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--racing-gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--racing-white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--racing-red), var(--racing-red-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--racing-white);
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--racing-black);
}

.contact-details p {
    color: var(--racing-gray);
    line-height: 1.4;
}

.contact-form {
    background: var(--racing-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--racing-gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--racing-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--racing-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--racing-red), var(--racing-red-dark));
    color: var(--racing-white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--racing-black);
    color: var(--racing-white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo .footer-logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    /* Remove white background and make it white for dark footer */
    background: transparent;
    filter: brightness(0) invert(1);
    transition: all var(--transition-normal);
}

.footer-logo .footer-logo-image:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(220, 38, 38, 0.5));
}

.footer-logo p {
    color: var(--racing-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--racing-white);
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--racing-gray);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--racing-red);
}

.footer-bottom {
    border-top: 1px solid var(--racing-gray-dark);
    padding-top: 1rem;
    text-align: center;
    color: var(--racing-gray);
    font-size: 0.9rem;
}

.legal-notice {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--racing-red);
    font-weight: 600;
    border: 1px solid var(--racing-red);
    padding: 0.5rem;
    border-radius: 5px;
    background: rgba(220, 38, 38, 0.1);
}

/* Video Section Styles */
.video-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

.video-player {
    position: relative;
    width: 100%;
}

.video-player video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-description {
    margin-top: 3rem;
    text-align: center;
}

.video-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--racing-red);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--racing-black);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--racing-gray);
    font-size: 0.9rem;
}

/* Mobile-First Responsive Design */
/* Enhanced touch targets and mobile UX */
@media (max-width: 768px) {
    /* CRITICAL: Fix horizontal scroll issues */
    html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Force all sections to stay within viewport */
    section, div, header, footer, nav {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Fix container widths */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
    }
    
    /* Fix navigation - CRITICAL for mobile */
    .navbar {
        width: 100vw !important;
        max-width: 100vw !important;
        left: 0 !important;
        right: 0 !important;
        overflow-x: hidden !important;
    }
    
    .nav-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        margin: 0 !important;
        position: relative;
        z-index: 1001;
        overflow-x: hidden !important;
    }
    
    .nav-logo {
        max-width: 60% !important;
        overflow: hidden !important;
    }
    
    .nav-logo .logo-image {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .nav-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 45px !important;
        height: 45px !important;
        z-index: 1002;
        background: #dc2626 !important;
        border: 2px solid white !important;
        border-radius: 8px !important;
        padding: 8px;
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4) !important;
        position: relative;
        flex-shrink: 0;
        cursor: pointer !important;
    }
    
    .nav-toggle .bar {
        display: block !important;
        width: 22px !important;
        height: 3px !important;
        background: white !important;
        margin: 2px 0 !important;
        transition: 0.3s !important;
        border-radius: 2px !important;
    }
    /* Larger touch targets for mobile */
    .btn-primary, .btn-secondary {
        min-height: 48px;
        padding: 12px 24px;
        font-size: 1.1rem;
    }
    
    /* Better mobile navigation - FIXED */
    .nav-menu {
        position: fixed !important;
        top: 80px !important;
        left: -100vw !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: calc(100vh - 80px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 1rem !important;
        transition: left var(--transition-normal);
        z-index: 1000;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu .nav-link {
        display: block;
        width: 80%;
        text-align: center;
        padding: 1rem;
        margin: 0.5rem 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        font-size: 1.1rem;
        font-weight: 600;
    }

    .nav-menu.active {
        left: 0 !important;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .tagline {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    /* Fix text overflow in containers */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        margin: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step {
        padding: 1rem;
        text-align: center;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

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

    .control-group {
        flex-wrap: wrap;
        justify-content: center;
    }

    .progress-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .time-display {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    /* Fix hero section for mobile */
    .hero {
        padding: 100px 0 2rem 0;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero-services h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-services h2 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero-services p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        word-wrap: break-word;
    }
    
    /* Mobile-specific typography */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
    }
    
    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    /* Fix wide elements */
    img, video, iframe {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix tables and pre elements */
    table, pre, code {
        max-width: 100%;
        overflow-x: auto;
        word-wrap: break-word;
    }
    
    /* Better mobile spacing */
    .section-header {
        margin-bottom: 2rem;
    }
    
    /* Mobile-optimized images */
    .hero-logo-image {
        max-width: 280px;
        height: auto;
    }
    
    /* Touch-friendly form elements */
    input, textarea, select {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
    }
    
    /* Mobile-optimized gallery */
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    /* Better mobile video controls */
    .video-container {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .video-section {
        padding: 2rem 0;
    }
    
    .video-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    /* Final fix for horizontal scroll */
    .racing-lines, .checkered-pattern {
        max-width: 100vw;
        overflow: hidden;
    }
    
    /* Fix any remaining wide elements */
    .section-header, .description-content, .plasticization-content {
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    
    /* Fix benefits grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    
    .benefit-item {
        padding: 1rem;
        text-align: center;
        word-wrap: break-word;
    }
    
    /* Fix national service section */
    .national-content, .shipping-process {
        padding: 0;
    }
    
    .national-item, .shipping-step {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* ULTIMATE FIX: Ensure no element exceeds viewport width */
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    /* Force specific problematic elements */
    .hero-background, .racing-lines, .checkered-pattern {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    /* Fix any grid or flex that might overflow */
    .services-grid, .process-steps, .gallery-grid, .benefits-grid, .video-features {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Emergency fix for any remaining wide elements */
    img, video, iframe, canvas, svg {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
    }
    
    /* Fix text elements that might be too wide */
    h1, h2, h3, h4, h5, h6, p, span, div {
        max-width: 100% !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Final safety net */
    body * {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--racing-red);
    outline-offset: 2px;
}

/* Internal Links Styling */
a {
    color: var(--racing-red);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-bottom: 1px solid transparent;
    font-weight: 600;
}

a:hover {
    color: var(--racing-red-dark);
    border-bottom-color: var(--racing-red);
}

/* Links in featured service card (red background) */
.service-card.featured a {
    color: var(--racing-white);
    border-bottom-color: var(--racing-white);
}

.service-card.featured a:hover {
    color: var(--racing-white);
    border-bottom-color: var(--racing-white);
    opacity: 0.8;
}

/* Logo transparency fix */
.logo-transparent {
    background: transparent !important;
    mix-blend-mode: multiply;
}

.logo-transparent-white {
    background: transparent !important;
    filter: brightness(0) invert(1);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --racing-red: #cc0000;
        --racing-black: #000000;
        --racing-white: #ffffff;
        --racing-gray: #666666;
    }
}
