 :root {
            --primary: #31b24d;
            --secondary:#FFFF00;
            --dark: #121212;
            --light: #f8f9fa;
            --gray: #2a2a2a;
            ;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background-color: rgba(18, 18, 18, 0.9);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        header.scrolled {
            padding: 15px 5%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .logo {
            display: flex;
            align-items: center;
            animation: driveIn 1.5s ease-out forwards;
        }

        @keyframes driveIn {
            0% {
                transform: translateX(-200px);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .logo i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-right: 10px;
            animation: carBounce 3s infinite;
        }

        @keyframes carBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        .logo h1 {
            font-size: 1.8rem;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
        }

        nav ul li a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }

        nav ul li a:hover::before {
            width: 100%;
        }

        nav ul li a:hover {
            color: var(--secondary);
            text-shadow: var(--neon-glow);
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            color: var(--light);
            cursor: pointer;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size : 1.5rem;
            z-index: 999;
            transition: all 0.3s ease;
            animation: pulse 3s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            20%{
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        .whatsapp-btn img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: var(--primary);
            box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
            transition: all 0.3s ease;
        }
        
        .whatsapp-btn:hover {
            transform: scale();
            background-color: #128C7E;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
            filter: brightness(0.6);
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1.5s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(to left, var(--secondary), var(--primary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .cta-btn {
            padding: 15px 30px;
            background-color: var(--primary);
            color: var(--dark);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0px 0px 30px #38c161;
        }


        @keyframes shine {
            0% {
                left: -50%;
            }
            100% {
                left: 150%;
            }
        }



        /* Services Section */
        .services {
            padding: 100px 5%;
            background-color: var(--gray);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .section-title p {
            font-size: 1.1rem;
            color: #aaa;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: rgba(42, 42, 42, 0.8);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.5s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            position: relative;
            height: 400px;
            perspective: 1000px;
        }

        .service-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .service-card:hover .service-card-inner {
            transform: rotateY(180deg);
        }

        .service-card-front, .service-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .service-card-front {
            background-color: var(--gray);
        }

        .service-card-back {
            background-color: var(--primary);
            transform: rotateY(180deg);
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .service-card:nth-child(1) .service-icon {
            animation: rotate 5s infinite linear;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .service-card:nth-child(2) .service-icon {
            animation: heartbeat 1.5s infinite;
        }

        @keyframes heartbeat {
            0% {
                transform: scale(1);
            }
            25% {
                transform: scale(1.1);
            }
            50% {
                transform: scale(1);
            }
            75% {
                transform: scale(1.1);
            }
            100% {
                transform: scale(1);
            }
        }

        .service-card:nth-child(3) .service-icon {
            animation: flash 3s infinite;
        }

        @keyframes flash {
            0%, 100% {
                opacity: 1;
                filter: drop-shadow(0 0 5px var(--secondary));
            }
            50% {
                opacity: 0.7;
                filter: drop-shadow(0 0 20px var(--secondary));
            }
        }

        .service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            text-align: center;
        }

        .service-card p {
            text-align: center;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }

        .service-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary);
        }

        .service-btn {
            padding: 10px 20px;
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .service-btn:hover {
            background-color: var(--light);
            transform: translateY(-3px);
        }

        /* Differentiators Section */
        .differentiators {
            padding: 100px 5%;
            background-color: var(--dark);
            position: relative;
            overflow: hidden;
        }

        .differentiators::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .diff-content {
            position: relative;
            z-index: 1;
        }

        .before-after {
            display: flex;
            justify-content: center;
            margin: 50px 0;
        }

        .slider-container {
            width: 100%;
            max-width: 800px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .slider-img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .slider-handle {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 6px;
            background-color: var(--secondary);
            left: 50%;
            transform: translateX(-50%);
            cursor: ew-resize;
            z-index: 10;
        }

        .slider-handle::before {
            content: '';
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--secondary);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .counter-section {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 60px 0;
        }

        .counter-item {
            text-align: center;
            margin: 20px;
        }

        .counter-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 10px;
            font-family: 'Orbitron', sans-serif;
        }

        .counter-text {
            font-size: 1.2rem;
            color: var(--light);
        }

        .testimonials {
            margin-top: 80px;
        }

        .testimonials h3 {
            text-align: center;
            margin-bottom: 40px;
            font-size: 2rem;
            color: var(--secondary);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: var(--gray);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .testimonial-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--secondary);
        }

        .testimonial-author {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .testimonial-car {
            color: #aaa;
            font-size: 0.9rem;
        }

        .testimonial-text {
            line-height: 1.6;
            font-style: italic;
        }

        .testimonial-rating {
            color: var(--secondary);
            margin-top: 15px;
        }

        /* Contact Section */
.contact {
    padding: 100px 5%;
    background-color: var(--gray);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.cont-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.contact .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.contact .section-title h2 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--light);
    transition: all 0.3s ease;
}

.contact-info i {
    color: var(--secondary);
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--secondary);
    text-shadow: 0 0 5px rgba(255, 255, 0, 0.5);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(42, 42, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
    color: var(--light);
}

/* Responsive Styles for Contact Section */
@media (max-width: 768px) {
    .contact .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .contact .section-title h2 {
        font-size: 1.8rem;
    }
    
    .contact-info {
        font-size: 1rem;
    }
}

        /* CTA Section */
        .cta-section {
            padding: 100px 5%;
            background: linear-gradient(135deg, var(--primary), var(--dark));
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .offer-timer {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 40px;
            display: inline-block;
        }

        .offer-timer h4 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .timer {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .timer-item {
            background-color: var(--dark);
            padding: 10px 15px;
            border-radius: 5px;
            min-width: 70px;
        }

        .timer-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
            font-family: 'Orbitron', sans-serif;
        }

        .timer-label {
            font-size: 0.8rem;
            color: #aaa;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: flex;
            opacity: 1;
        }

        .modal-content {
            background-color: var(--dark);
            border-radius: 15px;
            width: 90%;
            max-width: 600px;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            transform: translateY(-50px);
            transition: transform 0.3s ease;
        }

        .modal.active .modal-content {
            transform: translateY(0);
        }

        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-modal:hover {
            color: var(--secondary);
        }

        .modal h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--secondary);
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid #444;
            background-color: #333;
            color: var(--light);
            font-family: 'Roboto', sans-serif;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.3);
        }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            color: var(--dark);
            font-weight: 700;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 102, 255, 0.4);
        }

        /* Footer */
        footer {
            background-color: var(--gray);
            padding: 60px 5% 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .footer-column p, .footer-column a {
            color: #aaa;
            line-height: 1.6;
            margin-bottom: 15px;
            display: block;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: var(--secondary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            transition: all 0.3s ease;
        }

        .icon {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
            color: var(--light);
        }

        .map-container {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .opening-hours {
            margin-top: 20px;
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #444;
        }

        .hour-item:last-child {
            border-bottom: none;
        }

        .hour-day {
            font-weight: 500;
        }

        .hour-time {
            color: #aaa;
        }

        .open-now {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: 500;
            margin-top: 15px;
            animation: pulse 2s infinite;
        }

        .open {
            background-color: rgba(0, 255, 0, 0.2);
            color: #0f0;
        }

        .closed {
            background-color: rgba(255, 0, 0, 0.2);
            color: #f00;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #666;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            nav ul li {
                margin-left: 20px;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--dark);
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            nav.active {
                transform: translateY(0);
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 15px 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .counter-number {
                font-size: 2.5rem;
            }
            
            .cta-content h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .logo h1 {
                font-size: 1.5rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .cta-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .timer {
                flex-wrap: wrap;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }