/* =================================================================
   BLAZING COAST AUTO - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern with Dark Colors & Metallic Accents
   ================================================================= */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background-color: #0A0A0A;
  overflow-x: hidden;
}

/* INDUSTRIAL MODERN TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Russo One', 'Impact', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #C41E3A;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #F0A500;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #B0B0B0;
}

a {
  color: #F0A500;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #C41E3A;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* HEADER STYLES - INDUSTRIAL DARK */
header {
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
  border-bottom: 2px solid #C41E3A;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(240, 165, 0, 0.4));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAVIGATION - INDUSTRIAL STYLE */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-family: 'Russo One', sans-serif;
  font-size: 14px;
  color: #E0E0E0;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 30, 58, 0.1) 50%, transparent 100%);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F0A500;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #F0A500;
  background: rgba(196, 30, 58, 0.2);
}

.main-nav a:hover::after {
  width: 80%;
}

.header-cta {
  display: flex;
  gap: 16px;
}

/* MOBILE MENU TOGGLE - INDUSTRIAL BURGER */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C41E3A 0%, #8B1529 100%);
  border: 2px solid #F0A500;
  color: #FFFFFF;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.6);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #8B1529 0%, #C41E3A 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(240, 165, 0, 0.8);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.8);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-left: 3px solid #C41E3A;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #F0A500;
  color: #F0A500;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #C41E3A;
  color: #FFFFFF;
  transform: rotate(90deg);
  border-color: #C41E3A;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
  color: #E0E0E0;
  text-transform: uppercase;
  padding: 16px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.mobile-nav a:hover {
  border-left-color: #F0A500;
  background: rgba(196, 30, 58, 0.2);
  color: #F0A500;
  transform: translateX(8px);
}

/* BUTTONS - INDUSTRIAL METALLIC */
.btn-primary,
.btn-secondary,
.btn-link {
  font-family: 'Russo One', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 32px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #C41E3A 0%, #8B1529 100%);
  color: #FFFFFF;
  border-color: #F0A500;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8B1529 0%, #C41E3A 100%);
  box-shadow: 0 6px 20px rgba(240, 165, 0, 0.7);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: #F0A500;
  border: 2px solid #F0A500;
}

.btn-secondary:hover {
  background: #F0A500;
  color: #0A0A0A;
  box-shadow: 0 4px 12px rgba(240, 165, 0, 0.5);
}

.btn-link {
  background: transparent;
  color: #F0A500;
  padding: 8px 16px;
  font-size: 14px;
  border-bottom: 2px solid #F0A500;
  border-radius: 0;
}

.btn-link:hover {
  color: #C41E3A;
  border-bottom-color: #C41E3A;
}

/* HERO SECTION - INDUSTRIAL DRAMATIC */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #C41E3A;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(196, 30, 58, 0.05) 10px,
    rgba(196, 30, 58, 0.05) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: 20px;
  color: #B0B0B0;
  margin-bottom: 32px;
  line-height: 1.6;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.trust-indicators span {
  font-family: 'Russo One', sans-serif;
  font-size: 14px;
  color: #F0A500;
  padding: 10px 20px;
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid #F0A500;
  border-radius: 4px;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.emergency-contact {
  font-size: 18px;
  color: #F0A500;
  font-weight: 700;
}

.emergency-contact a {
  color: #C41E3A;
  font-size: 20px;
}

/* SECTIONS - INDUSTRIAL LAYOUT */
section {
  padding: 60px 20px;
  margin-bottom: 0;
  position: relative;
}

.section-subtitle {
  font-size: 18px;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 40px;
}

/* SERVICES GRID - FLEXBOX ONLY */
.services-grid,
.benefits-grid,
.values-grid,
.team-grid,
.categories-grid,
.parts-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* SERVICE CARDS - INDUSTRIAL METALLIC */
.service-card,
.benefit-item,
.value-item,
.team-member,
.category-card,
.part-card,
.method {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  padding: 28px;
  border-radius: 8px;
  border: 2px solid #333333;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 0;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C41E3A 0%, #F0A500 100%);
  border-radius: 8px 8px 0 0;
}

.service-card:hover,
.benefit-item:hover,
.value-item:hover,
.category-card:hover {
  border-color: #F0A500;
  box-shadow: 0 8px 24px rgba(240, 165, 0, 0.4);
  transform: translateY(-4px);
}

.service-card h3 {
  color: #F0A500;
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p {
  color: #B0B0B0;
  margin-bottom: 16px;
}

.price {
  font-family: 'Russo One', sans-serif;
  font-size: 24px;
  color: #C41E3A;
  font-weight: 700;
  margin: 16px 0;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #FFFFFF;
  color: #1A1A1A;
  padding: 32px;
  border-radius: 8px;
  border-left: 6px solid #C41E3A;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 0;
}

.testimonial-card p {
  color: #1A1A1A;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-card .author {
  font-family: 'Russo One', sans-serif;
  font-size: 14px;
  color: #C41E3A;
  font-weight: 700;
  text-transform: uppercase;
}

.rating-summary {
  font-family: 'Russo One', sans-serif;
  font-size: 20px;
  color: #F0A500;
  text-align: center;
  margin-top: 24px;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-section {
  flex: 1 1 500px;
}

/* LISTS - INDUSTRIAL STYLE */
ul, ol {
  margin: 24px 0;
  padding-left: 24px;
}

li {
  margin-bottom: 12px;
  color: #B0B0B0;
  line-height: 1.6;
}

li::marker {
  color: #F0A500;
}

/* STATS & TIMELINE */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 32px 0;
}

.stats span {
  font-family: 'Russo One', sans-serif;
  font-size: 18px;
  color: #F0A500;
  padding: 12px 24px;
  background: rgba(240, 165, 0, 0.1);
  border: 2px solid #F0A500;
  border-radius: 4px;
}

.timeline {
  margin: 32px 0;
  padding: 24px;
  background: rgba(196, 30, 58, 0.1);
  border-left: 4px solid #C41E3A;
  border-radius: 4px;
}

.timeline p {
  margin-bottom: 12px;
  font-size: 16px;
}

/* SERVICE DETAIL SECTIONS */
.service-detail {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 8px;
  border: 2px solid #333333;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
}

.service-detail h2 {
  color: #F0A500;
  margin-bottom: 16px;
}

/* PROCESS STEPS */
.process-steps,
.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.process-steps p,
.steps p {
  padding: 16px 24px;
  background: rgba(240, 165, 0, 0.1);
  border-left: 4px solid #F0A500;
  border-radius: 4px;
}

/* CTA SECTIONS */
.cta,
.location-cta {
  background: linear-gradient(135deg, #C41E3A 0%, #8B1529 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  margin: 60px 0;
}

.cta h2,
.location-cta h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta p,
.location-cta p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 24px;
}

/* FORM PLACEHOLDER */
.form-placeholder {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #333333;
  margin: 32px 0;
}

.form-placeholder ul {
  list-style: none;
  padding-left: 0;
}

.form-placeholder li {
  padding: 12px;
  background: rgba(240, 165, 0, 0.1);
  margin-bottom: 8px;
  border-radius: 4px;
  border-left: 3px solid #F0A500;
}

/* LEGAL CONTENT */
.legal-content {
  padding: 60px 20px;
}

.legal-content h1 {
  color: #F0A500;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #C41E3A;
  margin-top: 32px;
  margin-bottom: 16px;
}

/* CONFIRMATION ICON */
.confirmation-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

/* FOOTER - INDUSTRIAL DARK */
footer {
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  padding: 60px 20px 20px;
  border-top: 4px solid #C41E3A;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 220px;
}

.footer-section h4 {
  color: #F0A500;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p,
.footer-section a {
  color: #B0B0B0;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-section a:hover {
  color: #F0A500;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid #333333;
  color: #666666;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.8);
  z-index: 1500;
  border-top: 3px solid #C41E3A;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 400px;
  color: #B0B0B0;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-buttons button {
  font-family: 'Russo One', sans-serif;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: 2px solid transparent;
}

.cookie-accept {
  background: linear-gradient(135deg, #C41E3A 0%, #8B1529 100%);
  color: #FFFFFF;
  border-color: #F0A500;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #8B1529 0%, #C41E3A 100%);
  box-shadow: 0 4px 12px rgba(240, 165, 0, 0.5);
}

.cookie-reject {
  background: transparent;
  color: #B0B0B0;
  border-color: #666666;
}

.cookie-reject:hover {
  background: #333333;
  color: #FFFFFF;
}

.cookie-settings {
  background: transparent;
  color: #F0A500;
  border-color: #F0A500;
}

.cookie-settings:hover {
  background: #F0A500;
  color: #0A0A0A;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  padding: 40px;
  border-radius: 8px;
  border: 2px solid #C41E3A;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  color: #F0A500;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-bottom: 16px;
  border-left: 4px solid #F0A500;
}

.cookie-category h3 {
  color: #F0A500;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #B0B0B0;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 32px;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Grids */
  .services-grid,
  .benefits-grid,
  .values-grid,
  .team-grid,
  .categories-grid,
  .parts-grid,
  .methods-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-item,
  .value-item,
  .team-member,
  .category-card,
  .part-card,
  .method {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

/* TABLET RESPONSIVE */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .benefit-item,
  .value-item,
  .team-member,
  .category-card,
  .part-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* UTILITY CLASSES */
.highlight {
  color: #F0A500;
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

/* SMOOTH SCROLLING */
html {
  scroll-padding-top: 80px;
}

/* FOCUS STYLES FOR ACCESSIBILITY */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #F0A500;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}