/* ============================================
   MECHANIK — Industry color overrides
   Primary: #dc2626 (red)
   ============================================ */
/* base.css is loaded via HTML <link>, no @import needed */

:root {
  --color-primary: #dc2626;
  --color-primary-dark: #b91c1c;
  --color-secondary: #f59e0b;
}

/* Service detail lists */
.service-details {
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}

.service-details li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.service-details li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}

/* Hero accent bar — racing stripe */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #991b1b, #dc2626, #f59e0b);
}

/* Service icon color */
.service-icon {
  background: rgba(220, 38, 38, 0.1);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* CTA section gradient — bold red */
.cta-section {
  background: linear-gradient(135deg, #991b1b 0%, #dc2626 50%, #ef4444 100%);
}

/* Testimonial accent */
.testimonial-card {
  border-top: 3px solid var(--color-primary);
}

/* Contact form focus */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Page header accent */
.page-header {
  border-bottom: 3px solid var(--color-primary);
}

/* Active nav link */
.nav-links a[href]:hover {
  color: var(--color-primary);
}

/* Stats number color override */
.stat-number {
  color: var(--color-primary);
}

/* Nav logo accent — subtle red */
.nav-logo {
  border-left: 3px solid var(--color-primary);
  padding-left: 0.75rem;
}

/* Hero overlay slightly darker for red theme readability */
.hero-overlay {
  background: rgba(0, 0, 0, 0.6);
}
