/* ===== VELOCITY AUTO PARTS - Crimson Red Theme ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Top Bar */
.top-bar { background: #1a1a1a; color: #ccc; padding: 8px 0; font-size: 13px; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }

/* Header */
.header-main { background: #fff; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; }
.logo img { width: 140px; height: auto; }
.nav-menu { list-style: none; display: flex; gap: 30px; }
.nav-menu a { font-weight: 600; font-size: 15px; color: #333; transition: color 0.3s; }
.nav-menu a:hover, .nav-menu a.active { color: #DC2626; }
.header-cta { display: flex; align-items: center; gap: 15px; }
.header-phone { font-weight: 700; color: #DC2626; font-size: 15px; }
.btn-primary { background: #DC2626; color: #fff; padding: 10px 22px; border-radius: 5px; font-weight: 600; transition: background 0.3s; }
.btn-primary:hover { background: #B91C1C; }

/* Hero Section */
.hero { position: relative; height: 500px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 600px; }
.hero-content h1 { font-size: 48px; font-weight: 800; line-height: 1.1; margin-bottom: 15px; }
.hero-content h1 span { color: #DC2626; }
.hero-content p { font-size: 18px; margin-bottom: 25px; color: #ddd; }
.hero-btns { display: flex; gap: 15px; }
.btn-secondary { background: transparent; color: #fff; padding: 12px 28px; border: 2px solid #fff; border-radius: 5px; font-weight: 600; transition: all 0.3s; }
.btn-secondary:hover { background: #fff; color: #333; }
.btn-hero { background: #DC2626; color: #fff; padding: 12px 28px; border: 2px solid #DC2626; border-radius: 5px; font-weight: 600; transition: all 0.3s; }
.btn-hero:hover { background: #B91C1C; border-color: #B91C1C; }

/* Section Titles */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 36px; font-weight: 800; color: #1a1a1a; margin-bottom: 10px; }
.section-title p { font-size: 16px; color: #666; }

/* Categories Grid */
.categories { padding: 70px 0; background: #f8f8f8; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.category-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.08); transition: transform 0.3s, box-shadow 0.3s; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.category-card img { width: 100%; height: 220px; object-fit: cover; }
.category-card-content { padding: 20px; }
.category-card-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: #1a1a1a; }
.category-card-content p { font-size: 14px; color: #666; margin-bottom: 12px; }
.category-card-content .card-link { color: #DC2626; font-weight: 600; font-size: 14px; }

/* Features */
.features { padding: 70px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-item { text-align: center; padding: 30px 20px; }
.feature-icon { font-size: 40px; margin-bottom: 15px; }
.feature-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #1a1a1a; }
.feature-item p { font-size: 14px; color: #666; }

/* Products Grid */
.products { padding: 70px 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.product-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 3px 15px rgba(0,0,0,0.08); transition: transform 0.3s; }
.product-card:hover { transform: translateY(-3px); }
.product-card img { width: 100%; height: 200px; object-fit: cover; }
.product-card-content { padding: 20px; }
.product-card-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 5px; }
.product-card-content .price { color: #DC2626; font-weight: 800; font-size: 20px; margin-bottom: 8px; }
.product-card-content p { font-size: 13px; color: #666; margin-bottom: 12px; }

/* Page Banner */
.page-banner { background: linear-gradient(135deg, #1a1a1a 0%, #333 100%); padding: 60px 0; text-align: center; color: #fff; }
.page-banner h1 { font-size: 42px; font-weight: 800; margin-bottom: 10px; }
.page-banner p { font-size: 16px; color: #ccc; }

/* About Section */
.about-section { padding: 70px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; color: #1a1a1a; }
.about-content p { margin-bottom: 15px; color: #555; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.stat-item { text-align: center; padding: 20px; background: #f8f8f8; border-radius: 8px; }
.stat-item .number { font-size: 28px; font-weight: 800; color: #DC2626; }
.stat-item .label { font-size: 13px; color: #666; margin-top: 5px; }

/* Contact Section */
.contact-section { padding: 70px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; margin-bottom: 15px; font-size: 14px; }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form button { background: #DC2626; color: #fff; border: none; padding: 14px 30px; border-radius: 5px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.contact-form button:hover { background: #B91C1C; }
.contact-info-card { background: #f8f8f8; padding: 20px; border-radius: 8px; margin-bottom: 15px; }
.contact-info-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #1a1a1a; }
.contact-info-card p { font-size: 14px; color: #555; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card { background: #fff; border-radius: 10px; padding: 30px; text-align: center; box-shadow: 0 3px 15px rgba(0,0,0,0.08); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-3px); }
.service-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 15px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: #1a1a1a; }
.service-card p { font-size: 14px; color: #666; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, #DC2626 0%, #991B1B 100%); padding: 60px 0; text-align: center; color: #fff; }
.cta-section h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; }
.cta-section p { font-size: 16px; margin-bottom: 25px; color: rgba(255,255,255,0.9); }
.btn-white { background: #fff; color: #DC2626; padding: 14px 30px; border-radius: 5px; font-weight: 700; transition: all 0.3s; }
.btn-white:hover { background: #f0f0f0; }

/* Footer */
.footer { background: #111; color: #ccc; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-about p { font-size: 14px; margin-top: 15px; color: #999; }
.footer-links h4 { color: #fff; font-size: 16px; margin-bottom: 15px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #999; font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: #DC2626; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 13px; color: #666; }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .header-cta { gap: 10px; }
    .hero-content h1 { font-size: 32px; }
    .category-grid, .product-grid, .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-row { grid-template-columns: repeat(3, 1fr); }
}
