/* AutoShop Pro — starter styles
   This is intentionally minimal scaffolding, not final design polish.
   Purpose: confirm the layout structure works before investing in visual design. */

* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: #1a1a1a; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header__inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; }
.primary-navigation ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.header-cta-phone { background: #d32f2f; color: #fff; padding: 10px 18px; border-radius: 4px; text-decoration: none; font-weight: 600; }

/* Hero */
.hero { background: #1a1a1a; color: #fff; padding: 80px 20px; text-align: center; }
.hero__cta { display: inline-block; margin-top: 20px; background: #d32f2f; color: #fff; padding: 14px 28px; border-radius: 4px; text-decoration: none; font-weight: 600; }

/* Service grid */
.service-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin: 32px 0; }
.service-card { border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden; }
.service-card__link { text-decoration: none; color: inherit; display: block; }
.service-card__image img, .service-card__image--placeholder { width: 100%; height: 200px; object-fit: cover; background: #eee; display: block; }
.service-card__content { padding: 16px; }
.service-card__category { display: inline-block; font-size: 12px; text-transform: uppercase; color: #d32f2f; font-weight: 600; margin-bottom: 6px; }

/* Before/after */
.before-after-slider__images { display: flex; gap: 16px; }
.before-after-slider__before, .before-after-slider__after { flex: 1; position: relative; }
.before-after-slider .label { position: absolute; top: 8px; left: 8px; background: rgba(0,0,0,0.7); color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 12px; }

/* Quote form */
.quote-cta { background: #f5f5f5; padding: 40px 20px; }
.quote-cta__form { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.quote-cta__form input, .quote-cta__form select, .quote-cta__form textarea { padding: 10px; border: 1px solid #ccc; border-radius: 4px; font-family: inherit; }
.quote-cta__form button { background: #d32f2f; color: #fff; border: none; padding: 14px; border-radius: 4px; font-weight: 600; cursor: pointer; }

/* Breadcrumbs */
.autoshop-breadcrumbs { font-size: 14px; color: #666; margin: 16px 0; }
.autoshop-breadcrumbs a { color: #666; }

/* Footer */
.site-footer { background: #1a1a1a; color: #ccc; margin-top: 60px; padding: 40px 20px; }
.site-footer__inner { max-width: 1200px; margin: 0 auto; }
