/* Motorbike Showroom - Sporty & Dynamic CSS */
@import url('https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Inter:wght@400;700;900&display=swap');

:root {
    --moto-red: #e63946;
    --moto-black: #121212;
    --moto-dark: #1a1a1a;
    --moto-white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--moto-black);
    color: var(--moto-white);
}

h1, h2, h3, .syncopate {
    font-family: 'Syncopate', sans-serif;
    text-transform: uppercase;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.moto-hero {
    height: 100vh;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%), url('https://images.unsplash.com/photo-1558981403-c5f91cbba527?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.moto-hero h1 {
    font-size: 6rem;
    line-height: 1;
    margin-bottom: 20px;
}

.moto-hero p {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* Car/Moto Grid */
.section-padding {
    padding: 120px 0;
}

.section-header {
    margin-bottom: 60px;
    border-left: 10px solid var(--moto-red);
    padding-left: 30px;
}

.moto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.moto-card {
    background: var(--moto-dark);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    border-bottom: 5px solid transparent;
}

.moto-card:hover {
    transform: translateY(-10px);
    border-color: var(--moto-red);
}

.moto-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--moto-red);
    margin-bottom: 20px;
}

/* Contact Form */
.moto-contact {
    background: var(--moto-red);
    padding: 100px 0;
    color: var(--moto-white);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--moto-black);
    padding: 60px;
    border-radius: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 2px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
}

.btn-moto {
    padding: 20px 50px;
    background: var(--moto-red);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-moto:hover {
    background: #fff;
    color: var(--moto-red);
}

/* AOS Styles */
[data-aos] {
    opacity: 0;
    transform: skewX(-5deg) translateX(-50px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: skewX(0) translateX(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .moto-hero h1 { font-size: 4rem; }
    .moto-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .moto-hero h1 { font-size: 3rem; }
    .moto-grid { grid-template-columns: 1fr; }
    .form-container { padding: 30px; }
}
