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

:root {
    --neon-green: #00ff41;
    --vibrant-purple: #ff00ff;
    --deep-blue: #1a1a8a;
    --light-gray: #f8f8f8;
    --white: #ffffff;
    --dark-gray: #333333;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header removed - using floating button instead */

.cta-button {
    background: var(--neon-green);
    color: var(--dark-gray);
    border: none;
    padding: 12px 24px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 65, 0.3);
    min-width: 44px;
    min-height: 44px;
    font-size: 14px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 65, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    background: linear-gradient(135deg, #f0f0f8 0%, #e8e8f5 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--vibrant-purple) 1px, transparent 1px),
        radial-gradient(var(--neon-green) 1px, transparent 1px);
    background-size: 30px 30px, 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--neon-green) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.06;
    animation: pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--vibrant-purple) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.06;
    animation: pulse 4s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: heroLogoFloat 3s ease-in-out infinite;
}

.hero-logo-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.brand-name {
    color: var(--neon-green);
    display: block;
    margin-top: 0.5rem;
    text-shadow: 
        1px 1px 0 var(--vibrant-purple),
        2px 2px 0 var(--vibrant-purple),
        3px 3px 0 var(--vibrant-purple),
        4px 4px 0 var(--vibrant-purple),
        5px 5px 0 var(--vibrant-purple),
        6px 6px 0 var(--vibrant-purple),
        7px 7px 10px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 255, 65, 0.5);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    font-size: 16px;
    padding: 16px 32px;
    box-shadow: 0 6px 25px rgba(0, 255, 65, 0.4);
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 80px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            var(--vibrant-purple),
            var(--vibrant-purple) 2px,
            transparent 2px,
            transparent 20px
        );
    opacity: 0.05;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-gray);
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

.testimonial-card {
    min-width: 300px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    border: 3px solid var(--neon-green);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(var(--vibrant-purple) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.stars {
    font-size: 1.2rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 16px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--vibrant-purple);
    position: relative;
    z-index: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--vibrant-purple);
    color: var(--white);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.slider-btn:hover {
    background: var(--neon-green);
    color: var(--dark-gray);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Contact Section */
.contact {
    position: relative;
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.contact-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ff41' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-item {
    flex: 1;
    max-width: none;
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid var(--vibrant-purple);
    transition: transform 0.3s ease;
    min-height: 120px;
    text-align: center;
}

.contact-info {
    flex: 1;
}

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

.contact-icon {
    font-size: 2rem;
    margin-right: 20px;
    background: var(--neon-green);
    padding: 15px;
    border-radius: 50%;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--vibrant-purple);
    font-weight: 600;
}

.contact-email {
    color: var(--vibrant-purple);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-email:hover {
    color: var(--neon-green);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.3);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.social-link {
    color: var(--neon-green);
    transition: color 0.3s ease;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--vibrant-purple);
}

/* Services Section */
.services {
    position: relative;
    padding: 80px 0;
    background: var(--white);
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid var(--neon-green);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 65, 0.2);
}

.service-card:nth-child(even) {
    border-color: var(--vibrant-purple);
}

.service-card:nth-child(even):hover {
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* About Section */
.about {
    position: relative;
    padding: 80px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.about-text h3 {
    font-family: 'Orbitron', monospace;
    color: var(--dark-gray);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-text h4 {
    font-family: 'Orbitron', monospace;
    color: var(--vibrant-purple);
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.about-features {
    list-style: none;
    padding: 0;
}

.about-features li {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--dark-gray);
    padding-left: 0;
}

.about-coverage {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid var(--neon-green);
    height: fit-content;
}

.about-coverage h4 {
    font-family: 'Orbitron', monospace;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.coverage-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.coverage-item {
    background: linear-gradient(45deg, var(--neon-green), var(--vibrant-purple));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Photo Gallery Section */
.gallery {
    position: relative;
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.gallery-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            var(--neon-green),
            var(--neon-green) 2px,
            transparent 2px,
            transparent 40px
        ),
        repeating-linear-gradient(
            0deg,
            var(--vibrant-purple),
            var(--vibrant-purple) 2px,
            transparent 2px,
            transparent 40px
        );
    opacity: 0.05;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid var(--neon-green);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.3);
}

.gallery-item:nth-child(even) {
    border-color: var(--vibrant-purple);
}

.gallery-item:nth-child(even):hover {
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
}

/* Gallery Placeholder System */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--vibrant-purple) 100%);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 20px 20px, 30px 30px;
    animation: float 4s ease-in-out infinite;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.placeholder-title {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    text-transform: uppercase;
    text-align: center;
    z-index: 2;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Individual placeholder gradients */
.placeholder-1 { background: linear-gradient(135deg, #00ff41 0%, #ff00ff 100%); }
.placeholder-2 { background: linear-gradient(135deg, #ff00ff 0%, #1a1a8a 100%); }
.placeholder-3 { background: linear-gradient(135deg, #1a1a8a 0%, #00ff41 100%); }
.placeholder-4 { background: linear-gradient(135deg, #00ff41 30%, #ff00ff 70%); }
.placeholder-5 { background: linear-gradient(135deg, #ff00ff 30%, #1a1a8a 70%); }
.placeholder-6 { background: linear-gradient(135deg, #1a1a8a 30%, #00ff41 70%); }

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

/* Image replacement system */
.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: none; /* Hidden by default, shown when image is added */
}

.gallery-item.has-image .gallery-placeholder {
    display: none;
}

.gallery-item.has-image .gallery-img {
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 255, 65, 0.9) 0%,
        rgba(255, 0, 255, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes heroRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 0.4; }
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

/* No floating button - clean design */

/* Mobile Styles (Default) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-text {
        font-size: 1.2rem;
    }
    
    .hero::before, .hero::after {
        width: 100px;
        height: 100px;
    }
    
    .hero-logo-img {
        width: 180px;
        height: 180px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-grid {
        max-width: 100%;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .header .container {
        flex-direction: row;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial-card {
        min-width: 350px;
    }
    
    .hero-logo-img {
        width: 220px;
        height: 220px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Desktop Styles */
@media (min-width: 1025px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .testimonial-card {
        min-width: 400px;
    }
    
    .hero-cta {
        font-size: 18px;
        padding: 18px 36px;
    }
}

/* High contrast for accessibility */
@media (prefers-contrast: high) {
    :root {
        --neon-green: #00cc00;
        --vibrant-purple: #cc00cc;
        --shadow: rgba(0, 0, 0, 0.3);
    }
    
    .testimonial-card::before,
    .hero-bg-pattern,
    .testimonials-bg-pattern,
    .contact-bg-pattern {
        opacity: 0.05;
    }
}

/* 404 Error Page */
.error-404 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #f0f0f8 0%, #e8e8f5 100%);
    overflow: hidden;
}

.error-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--vibrant-purple) 1px, transparent 1px),
        radial-gradient(var(--neon-green) 1px, transparent 1px);
    background-size: 30px 30px, 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.error-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

.error-logo {
    margin-bottom: 2rem;
    animation: heroLogoFloat 3s ease-in-out infinite;
}

.error-logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.error-number {
    font-family: 'Orbitron', monospace;
    font-size: 8rem;
    font-weight: 900;
    color: var(--neon-green);
    text-shadow: 
        2px 2px 0 var(--vibrant-purple),
        4px 4px 0 var(--vibrant-purple),
        6px 6px 0 var(--vibrant-purple),
        8px 8px 0 var(--vibrant-purple),
        10px 10px 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 255, 65, 0.5);
    margin-bottom: 1rem;
    line-height: 1;
}

.error-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.error-subtitle {
    color: var(--vibrant-purple);
    display: block;
    font-size: 1.8rem;
    margin-top: 0.5rem;
}

.error-message {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.error-cta-secondary {
    background: var(--vibrant-purple);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.error-cta-secondary:hover {
    box-shadow: 0 6px 20px rgba(255, 0, 255, 0.4);
}

.error-suggestions {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--neon-green);
    margin-top: 2rem;
}

.error-suggestions h3 {
    font-family: 'Orbitron', monospace;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
}

.error-suggestions a {
    color: var(--vibrant-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.error-suggestions a:hover {
    color: var(--neon-green);
}

/* 404 Mobile Responsiveness */
@media (max-width: 768px) {
    .error-number {
        font-size: 5rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-subtitle {
        font-size: 1.4rem;
    }
    
    .error-logo-img {
        width: 120px;
        height: 120px;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .cta-button {
        width: 80%;
        max-width: 250px;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}