 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #d32f2f;
            --secondary: #1a1a1a;
            --accent: #ffc107;
            --light: #f5f5f5;
            --white: #ffffff;
            --dark: #0d0d0d;
            --gray: #757575;
        }

        body {
            font-family: 'Rajdhani', sans-serif;
            color: var(--secondary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: 
                linear-gradient(135deg, rgba(211,47,47,0.92) 0%, rgba(26,26,26,0.95) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a1a1a" width="1200" height="800"/><g opacity="0.15" fill="white"><path d="M0 400 L200 350 L400 380 L600 330 L800 360 L1000 320 L1200 340 L1200 800 L0 800 Z"/><circle cx="150" cy="150" r="80"/><circle cx="1000" cy="200" r="100"/><rect x="300" y="500" width="150" height="10" transform="rotate(-15 375 505)"/><rect x="800" y="600" width="120" height="8" transform="rotate(10 860 604)"/></g></svg>');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            display: flex;
            align-items: center;
            color: var(--white);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 80px,
                    rgba(255,255,255,0.03) 80px,
                    rgba(255,255,255,0.03) 81px
                );
            pointer-events: none;
        }

        .diagonal-stripe {
            position: absolute;
            width: 150%;
            height: 200px;
            background: linear-gradient(135deg, transparent 40%, rgba(211,47,47,0.3) 50%, transparent 60%);
            transform: rotate(-15deg);
            top: 20%;
            left: -25%;
            animation: slideStripe 20s ease-in-out infinite;
        }

        @keyframes slideStripe {
            0%, 100% { transform: rotate(-15deg) translateX(0); }
            50% { transform: rotate(-15deg) translateX(100px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            animation: slideInLeft 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.5rem;
            background: var(--primary);
            border-left: 4px solid var(--accent);
            font-size: 0.9rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeIn 1s ease-out 0.2s backwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .hero h1 {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 0.95;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: -2px;
            animation: fadeIn 1s ease-out 0.4s backwards;
        }

        .hero h1 span {
            color: var(--accent);
            display: block;
        }

        .hero-tagline {
            font-size: clamp(1.2rem, 2.5vw, 1.8rem);
            margin-bottom: 2.5rem;
            font-weight: 500;
            opacity: 0.95;
            animation: fadeIn 1s ease-out 0.6s backwards;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
            animation: fadeIn 1s ease-out 0.8s backwards;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.95rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-cta-group {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: fadeIn 1s ease-out 1s backwards;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            padding: 1.4rem 3rem;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-primary {
            background: var(--primary);
            color: var(--white);
            border: 2px solid var(--primary);
            clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .cta-primary:hover::before {
            left: 0;
        }

        .cta-primary:hover {
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(211,47,47,0.4);
        }

        .cta-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .cta-secondary:hover {
            background: var(--white);
            color: var(--secondary);
            transform: translateY(-3px);
        }

        .hero-visual {
            position: relative;
            animation: slideInRight 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .feature-highlight {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-left: 5px solid var(--accent);
            margin-bottom: 1.5rem;
        }

        .feature-highlight h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .feature-highlight p {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(37,211,102,0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse-whatsapp 2s ease-in-out infinite;
        }

        @keyframes pulse-whatsapp {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .whatsapp-float:hover {
            transform: scale(1.15);
            box-shadow: 0 8px 30px rgba(37,211,102,0.6);
        }

        .whatsapp-float i {
            font-size: 2rem;
            color: var(--white);
        }

        /* Section Styles */
        section {
            padding: 6rem 2rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: var(--primary);
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
        }

        .section-title {
            font-family: 'Oswald', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: -1px;
            color: var(--secondary);
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about {
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            margin-top: 3rem;
        }

        .about-content {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--gray);
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: var(--light);
            border-left: 4px solid var(--primary);
            margin-top: 2rem;
        }

        .trust-icon {
            font-size: 2.5rem;
            color: var(--primary);
        }

        .trust-badge h4 {
            font-size: 1.3rem;
            margin-bottom: 0.3rem;
            font-weight: 700;
        }

        .about-features {
            display: grid;
            gap: 1.5rem;
        }

        .about-feature {
            padding: 2rem;
            background: var(--secondary);
            color: var(--white);
            position: relative;
            clip-path: polygon(0 0, 100% 0, 98% 100%, 0% 100%);
            transition: all 0.3s ease;
        }

        .about-feature:hover {
            transform: translateX(10px);
            background: var(--primary);
        }

        .feature-icon-bg {
            width: 60px;
            height: 60px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
        }

        .about-feature:hover .feature-icon-bg {
            background: var(--accent);
        }

        .feature-icon {
            font-size: 1.8rem;
            color: var(--white);
        }

        .about-feature h4 {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .about-feature p {
            opacity: 0.95;
        }

        /* Featured Cars Section */
        .featured-cars {
            background: var(--light);
        }

        .cars-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .car-card {
            background: var(--white);
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .car-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            border-color: var(--primary);
        }

        .car-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .car-image i {
            font-size: 5rem;
            color: var(--gray);
            opacity: 0.3;
        }

        .car-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.5rem 1rem;
            background: var(--primary);
            color: var(--white);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
        }

        .car-info {
            padding: 2rem;
        }

        .car-name {
            font-family: 'Oswald', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            color: var(--secondary);
        }

        .car-price {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .car-price small {
            font-size: 1rem;
            color: var(--gray);
            font-weight: 500;
        }

        .car-specs {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px solid var(--light);
        }

        .spec-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray);
            font-size: 0.95rem;
        }

        .spec-item i {
            color: var(--primary);
        }

        .car-description {
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .car-cta {
            display: flex;
            gap: 1rem;
        }

        .btn-view {
            flex: 1;
            padding: 1rem;
            background: var(--secondary);
            color: var(--white);
            text-align: center;
            text-decoration: none;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s ease;
            clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
        }

        .btn-view:hover {
            background: var(--primary);
        }

        .btn-inquiry {
            padding: 1rem 1.5rem;
            background: var(--accent);
            color: var(--secondary);
            border: none;
            cursor: pointer;
            font-weight: 700;
            transition: all 0.3s ease;
            clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .btn-inquiry:hover {
            transform: scale(1.05);
        }

        /* Services Section */
        .services {
            background: var(--secondary);
            color: var(--white);
        }

        .services .section-title {
            color: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .service-card {
            padding: 3rem 2.5rem;
            background: rgba(255,255,255,0.05);
            border: 2px solid rgba(255,255,255,0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--primary);
            transition: left 0.4s ease;
            z-index: 0;
        }

        .service-card:hover::before {
            left: 0;
        }

        .service-card:hover {
            border-color: var(--accent);
            transform: translateY(-10px);
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        .service-icon-wrapper {
            width: 80px;
            height: 80px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon-wrapper {
            background: var(--accent);
            transform: rotate(-5deg) scale(1.1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--white);
        }

        .service-card:hover .service-icon {
            color: var(--secondary);
        }

        .service-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.7rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .service-card p {
            opacity: 0.9;
            line-height: 1.7;
        }

        /* Why Choose Us Section */
        .why-choose {
            background: var(--white);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .benefit-item {
            padding: 2.5rem;
            background: var(--light);
            border-left: 5px solid var(--primary);
            transition: all 0.3s ease;
        }

        .benefit-item:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateX(15px);
        }

        .benefit-icon-box {
            width: 70px;
            height: 70px;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
            transition: all 0.3s ease;
        }

        .benefit-item:hover .benefit-icon-box {
            background: var(--accent);
            transform: rotate(360deg);
        }

        .benefit-icon {
            font-size: 2rem;
            color: var(--white);
        }

        .benefit-item:hover .benefit-icon {
            color: var(--secondary);
        }

        .benefit-item h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .benefit-item p {
            color: var(--gray);
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .benefit-item:hover p {
            color: rgba(255,255,255,0.95);
        }

        /* Contact Section */
        .contact {
            background: var(--light);
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .contact-card {
            background: var(--white);
            padding: 3rem 2.5rem;
            text-align: center;
            border-top: 5px solid var(--primary);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .contact-icon-container {
            width: 85px;
            height: 85px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-icon-container {
            background: var(--secondary);
            transform: rotate(360deg);
        }

        .contact-icon {
            font-size: 2.2rem;
            color: var(--white);
        }

        .contact-card h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.6rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .contact-card a {
            color: var(--gray);
            text-decoration: none;
            display: block;
            margin: 0.5rem 0;
            font-size: 1.1rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .contact-card a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .contact-card p {
            color: var(--gray);
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .footer-brand p {
            opacity: 0.8;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }

        .social-link i {
            color: var(--white);
            font-size: 1.3rem;
        }

        .footer-section h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.7rem;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            text-align: center;
            opacity: 0.8;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-cta-group {
                justify-content: center;
            }

            .hero-visual {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 1024px) {
            .about-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 4rem 1.5rem;
            }

            .hero {
                background-attachment: scroll;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 2rem;
            }

            .cars-grid {
                grid-template-columns: 1fr;
            }

            .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-float i {
                font-size: 1.6rem;
            }
        }

        /* Scroll Animation */
        .animate-slide {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .animate-slide.visible {
            opacity: 1;
            transform: translateY(0);
        }