:root {
    --primary-red: #e63946;
    --dark-bg: #0b0b0b;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    color: white;
    overflow-x: hidden;
}

/* Glassmorphism Effect */
.glass {
    background: var(--glass-white);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.8);
}

/* Navbar */
.glass-nav {
    position: fixed;
    top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 10%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.logo { font-size: 24px; font-weight: 900; }
.logo span { color: var(--primary-red); }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 30px; }
nav ul li a { color: white; text-decoration: none; transition: 0.3s; }
nav ul li a:hover { color: var(--primary-red); }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex; align-items: center;
    padding: 0 10%;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
}

.hero::before {
    content: ""; position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.7);
}

.hero-content { position: relative; z-index: 2; flex: 1; }
.hero-content h1 { font-size: 4rem; line-height: 1.2; }
.text-red { color: var(--primary-red); }

.hero-image { flex: 1; z-index: 2; text-align: center; }
.hero-image img { width: 120%; filter: drop-shadow(0 20px 30px rgba(230, 57, 70, 0.4)); }

/* Buttons */
.btn-main {
    display: inline-block; padding: 15px 40px;
    background: var(--primary-red); color: white;
    text-decoration: none; border-radius: 50px;
    margin-top: 20px; font-weight: bold; transition: 0.4s;
}
.btn-main:hover { transform: scale(1.1); box-shadow: 0 0 20px var(--primary-red); }

/* Fleet Grid */
.fleet { padding: 100px 10%; text-align: center; }
.fleet h2 { font-size: 3rem; margin-bottom: 50px; }

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

.car-card {
    padding: 30px;
    transition: 0.5s ease-in-out;
}

.car-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-15px);
}

.car-card img { width: 100%; margin-bottom: 20px; transition: 0.5s; }
.car-card:hover img { transform: scale(1.1) rotate(-5deg); }

/* Contact Form */
.contact-section { padding: 100px 10%; display: flex; justify-content: center; }
.contact-container { padding: 50px; width: 100%; max-width: 600px; text-align: center; }
.input-group { margin-bottom: 20px; }
.input-group input, .input-group textarea {
    width: 100%; padding: 15px; background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border); border-radius: 10px; color: white;
}