* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a2e;
    color: #eee;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, #ffeb3b, transparent),
        radial-gradient(2px 2px at 40px 70px, #9c27b0, transparent),
        radial-gradient(1px 1px at 90px 40px, #ffeb3b, transparent),
        radial-gradient(1px 1px at 130px 80px, #ffeb3b, transparent),
        radial-gradient(2px 2px at 160px 30px, #9c27b0, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    opacity: 0.6;
}

.city-skyline {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    background-image: url('src/assets/cityscape.jpg');
    background-size: cover;
    background-position: bottom center;
    opacity: 0.8;
}

.car {
    position: absolute;
    width: 200px;
    height: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.car1 {
    top: 50%;
    left: -200px;
    background-image: url('src/assets/car1.jpg');
    animation: driveForward 12s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(255, 235, 59, 0.4));
}

.car2 {
    top: 65%;
    right: -200px;
    background-image: url('src/assets/car2.jpg');
    animation: driveReverse 15s ease-in-out infinite 2s;
    transform: scaleX(-1);
    filter: drop-shadow(0 10px 20px rgba(156, 39, 176, 0.4));
}

@keyframes driveForward {
    0% { left: -200px; transform: scale(0.8); }
    50% { left: 50%; transform: scale(1.1) translateX(-50%); }
    100% { left: 120%; transform: scale(0.8); }
}

@keyframes driveReverse {
    0% { right: -200px; transform: scaleX(-1) scale(0.8); }
    50% { right: 50%; transform: scaleX(-1) scale(1.1) translateX(50%); }
    100% { right: 120%; transform: scaleX(-1) scale(0.8); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.gradient-text {
    background: linear-gradient(45deg, #ffeb3b, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: #ffeb3b;
    color: #1a1a2e;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.5);
}

.cta-button.glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

.road {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #2c3e50, #34495e, #2c3e50);
    display: flex;
    align-items: center;
    justify-content: center;
}

.road::after {
    content: '';
    width: 100%;
    height: 3px;
    background: #ffeb3b;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

/* Content Sections */
.content-section {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content-section.dark {
    background-color: #16213e;
}

.container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.container.reverse {
    direction: rtl;
}

.container.reverse > * {
    direction: ltr;
}

.content h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffeb3b;
    color: #1a1a2e;
    border: none;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 235, 59, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #eee;
    border: 2px solid #34495e;
}

.btn-secondary:hover {
    background: #34495e;
    transform: scale(1.05);
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(45deg, rgba(255, 235, 59, 0.2), rgba(156, 39, 176, 0.2));
    padding: 20px;
}

.parallax-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.1s ease-out;
}

.content.centered {
    text-align: center;
    grid-column: 1 / -1;
}

/* Footer */
.footer-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1a1a2e, #16213e);
    position: relative;
    overflow: hidden;
}

.lights-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 235, 59, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(156, 39, 176, 0.3) 0%, transparent 50%);
    animation: cityLights 4s ease-in-out infinite;
    opacity: 0.3;
}

.footer-content {
    text-align: center;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.footer-content h2 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 235, 59, 0.3); }
    50% { box-shadow: 0 0 40px rgba(255, 235, 59, 0.6); }
}

@keyframes cityLights {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .content h2 {
        font-size: 2rem;
    }
    
    .footer-content h2 {
        font-size: 2.5rem;
    }
    
    .car {
        width: 120px;
        height: 60px;
    }
    
    .buttons {
        flex-direction: column;
    }
}