/* D Automotive Repair & Performance - Professional Auto Design */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #2d3748; background: #ffffff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.header { background: linear-gradient(135deg, #1a202c, #2d3748); color: white; padding: 1rem 0; position: fixed; top: 0; width: 100%; z-index: 1000; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: #e53e3e; }
.cta-button { background: #e53e3e; color: white; padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; }
.cta-button:hover { background: #c53030; transform: translateY(-2px); }

.hero { background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%); padding: 8rem 0 4rem; }
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content h1 { font-size: 3.5rem; font-weight: 700; color: #1a202c; margin-bottom: 1.5rem; line-height: 1.1; }
.highlight { color: #e53e3e; }
.hero-subtitle { font-size: 1.25rem; color: #4a5568; margin-bottom: 2rem; }
.hero-stats { display: flex; gap: 2rem; margin-bottom: 2.5rem; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 700; color: #e53e3e; }
.stat-label { font-size: 0.9rem; color: #718096; font-weight: 500; }
.cta-button-large { background: linear-gradient(135deg, #e53e3e, #c53030); color: white; padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1.125rem; display: inline-block; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(229, 62, 62, 0.3); }
.cta-button-large:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229, 62, 62, 0.4); }
.hero-image img { width: 100%; height: 400px; object-fit: cover; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.services { padding: 5rem 0; background: white; }
.services h2 { text-align: center; font-size: 2.5rem; font-weight: 700; color: #1a202c; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.service-card { background: #f7fafc; padding: 2rem; border-radius: 12px; text-align: center; border-left: 4px solid #e53e3e; transition: all 0.3s ease; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.service-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.service-card h3 { font-size: 1.5rem; font-weight: 600; color: #1a202c; margin-bottom: 1rem; }
.service-card p { color: #4a5568; line-height: 1.6; }

.testimonials { padding: 5rem 0; background: #1a202c; color: white; }
.testimonials h2 { text-align: center; font-size: 2.5rem; font-weight: 700; margin-bottom: 3rem; color: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.testimonial { background: rgba(255,255,255,0.1); padding: 2rem; border-radius: 12px; backdrop-filter: blur(10px); }
.stars { color: #fbb84d; font-size: 1.2rem; margin-bottom: 1rem; }
.testimonial p { font-size: 1.1rem; line-height: 1.6; margin-bottom: 1rem; font-style: italic; }
.author { font-weight: 600; color: #e53e3e; }

.contact { padding: 5rem 0; background: #f7fafc; }
.contact h2 { text-align: center; font-size: 2.5rem; font-weight: 700; color: #1a202c; margin-bottom: 3rem; }
.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.info-item { text-align: center; padding: 1.5rem; }
.info-item .icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.info-item h3 { font-size: 1.2rem; color: #e53e3e; margin-bottom: 1rem; }
.info-item p { color: #4a5568; line-height: 1.6; }
.cta-section { text-align: center; }
.trust-message { font-size: 1.2rem; color: #1a202c; background: white; padding: 1.5rem; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 2rem; }

.footer { background: #1a202c; color: #a0aec0; padding: 2rem 0; text-align: center; }

@media (max-width: 768px) {
    .hero-container { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .contact-info { grid-template-columns: 1fr; }
    .hero-stats { justify-content: center; }
}