/* ========================================
   SHADOW IGNITION - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern Aesthetic
   ======================================== */

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ========================================
   TYPOGRAPHY - INDUSTRIAL MODERN
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  border-left: 4px solid #C41E3A;
  padding-left: 16px;
}

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

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

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

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========================================
   HEADER - INDUSTRIAL DESIGN
   ======================================== */
.site-header {
  background: linear-gradient(180deg, #1A1A1A 0%, #121212 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #C41E3A;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(196, 30, 58, 0.3));
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #E0E0E0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C41E3A;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FFFFFF;
}

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

/* ========================================
   MOBILE MENU SYSTEM
   ======================================== */
.mobile-menu-toggle {
  display: none;
  background: #C41E3A;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 2000;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #A01830;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  border-left: 3px solid #C41E3A;
}

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

.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  color: #C41E3A;
  border: 2px solid #C41E3A;
  font-size: 32px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #E0E0E0;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FFFFFF;
  border-left-color: #C41E3A;
  background: rgba(196, 30, 58, 0.1);
  padding-left: 24px;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-content .cta-button {
    display: none;
  }
}

/* ========================================
   BUTTONS - INDUSTRIAL STYLE
   ======================================== */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #C41E3A;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(196, 30, 58, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button.primary {
  background: #C41E3A;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.cta-button.primary:hover {
  background: #A01830;
  border-color: #A01830;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #C41E3A;
  border: 2px solid #C41E3A;
}

.cta-button.secondary:hover {
  background: #C41E3A;
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(196, 30, 58, 0.03) 2px, rgba(196, 30, 58, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(196, 30, 58, 0.03) 2px, rgba(196, 30, 58, 0.03) 4px);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-item {
  font-size: 14px;
  font-weight: 600;
  color: #E0E0E0;
  padding: 12px 20px;
  background: rgba(196, 30, 58, 0.1);
  border-left: 3px solid #C41E3A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
  padding: 60px 20px 40px;
  border-bottom: 3px solid #C41E3A;
}

.breadcrumb {
  font-size: 14px;
  color: #808080;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: #C41E3A;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #FFFFFF;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 24px;
}

/* ========================================
   SERVICE CARDS - INDUSTRIAL DESIGN
   ======================================== */
.services-overview,
.services-grid,
.services-comprehensive {
  padding: 60px 20px;
  background: #0D0D0D;
}

.service-grid,
.service-cards,
.service-grid-full {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.service-card,
.service-card-detailed {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #1A1A1A 0%, #151515 100%);
  padding: 32px 24px;
  border: 1px solid #333333;
  border-left: 4px solid #C41E3A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(196, 30, 58, 0.1) 0%, transparent 100%);
  transition: width 0.4s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover,
.service-card-detailed:hover {
  transform: translateY(-4px);
  border-left-width: 6px;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.2);
}

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(91%) saturate(2638%) hue-rotate(340deg) brightness(87%) contrast(93%);
}

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

.service-card p,
.service-card-detailed p {
  color: #B0B0B0;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-card ul li,
.service-card-detailed ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #B0B0B0;
}

.service-card ul li::before,
.service-card-detailed ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C41E3A;
  font-weight: 700;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C41E3A;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: gap 0.3s ease;
}

.link-arrow::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.3s ease;
}

.link-arrow:hover {
  gap: 12px;
  color: #FFFFFF;
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.price {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  color: #C41E3A;
  margin: 16px 0;
  padding: 8px 16px;
  background: rgba(196, 30, 58, 0.1);
  border-left: 3px solid #C41E3A;
}

/* ========================================
   VALUE PROPOSITION & FEATURES
   ======================================== */
.value-proposition,
.benefits {
  padding: 60px 20px;
  background: #121212;
}

.features-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.feature-item,
.benefit-item {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #1A1A1A;
  border: 1px solid #333333;
  border-top: 3px solid #C41E3A;
  transition: all 0.3s ease;
}

.feature-item:hover,
.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.15);
  border-top-width: 5px;
}

.feature-item img,
.benefit-item img {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(91%) saturate(2638%) hue-rotate(340deg) brightness(87%) contrast(93%);
}

.feature-item h4,
.benefit-item h4 {
  font-size: 18px;
  color: #FFFFFF;
}

.feature-item p,
.benefit-item p {
  color: #B0B0B0;
  line-height: 1.6;
}

/* ========================================
   SERVICE LISTS
   ======================================== */
.services-detailed {
  padding: 60px 20px;
  background: #0D0D0D;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px;
  background: #1A1A1A;
  border-left: 4px solid #C41E3A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.2);
  border-left-width: 6px;
}

.service-item h3,
.service-item h4 {
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.service-item p {
  color: #B0B0B0;
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS - READABLE DESIGN
   ======================================== */
.testimonials {
  padding: 60px 20px;
  background: #121212;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-left: 4px solid #C41E3A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.25);
}

.rating {
  color: #C41E3A;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #1A1A1A;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
}

.author {
  color: #333333;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* ========================================
   PROCESS STEPS
   ======================================== */
.process,
.diagnostic-process {
  padding: 60px 20px;
  background: #0D0D0D;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #1A1A1A;
  border: 1px solid #333333;
  position: relative;
  transition: all 0.3s ease;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #C41E3A 0%, transparent 100%);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(196, 30, 58, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C41E3A;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

.step h3,
.step h4 {
  font-size: 18px;
  color: #FFFFFF;
}

.step p {
  color: #B0B0B0;
  line-height: 1.6;
}

/* ========================================
   PRICING CARDS
   ======================================== */
.pricing {
  padding: 60px 20px;
  background: #121212;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.pricing-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
  background: #1A1A1A;
  border: 2px solid #333333;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.popular {
  border-color: #C41E3A;
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.pricing-card.popular::before {
  content: 'EMPFOHLEN';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #C41E3A;
  color: #FFFFFF;
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(196, 30, 58, 0.2);
  border-color: #C41E3A;
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.pricing-card .price {
  font-size: 36px;
  color: #C41E3A;
  margin: 24px 0;
  display: block;
}

.pricing-card ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  text-align: left;
}

.pricing-card ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #B0B0B0;
  border-bottom: 1px solid #333333;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C41E3A;
  font-weight: 700;
  font-size: 18px;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: #808080;
  font-size: 14px;
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.cta-banner,
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #0D0D0D 100%);
  text-align: center;
  border-top: 3px solid #C41E3A;
  border-bottom: 3px solid #C41E3A;
}

.cta-banner h2,
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
  border: none;
  padding: 0;
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons,
.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info-banner {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #333333;
}

.contact-info-banner p {
  color: #E0E0E0;
  font-size: 16px;
}

/* ========================================
   LOCATION & CONTACT INFO
   ======================================== */
.location-info,
.location-details,
.contact-methods {
  padding: 60px 20px;
  background: #121212;
}

.location-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.location-details,
.method-card {
  flex: 1 1 300px;
  padding: 32px;
  background: #1A1A1A;
  border-left: 4px solid #C41E3A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.location-details h3,
.location-details h4,
.method-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.location-details p,
.method-card p {
  color: #B0B0B0;
  line-height: 1.8;
  margin-bottom: 12px;
}

.parking-info,
.response-time {
  color: #C41E3A;
  font-weight: 600;
  margin-top: 16px;
}

.method-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(91%) saturate(2638%) hue-rotate(340deg) brightness(87%) contrast(93%);
}

/* ========================================
   CONTACT FORMS
   ======================================== */
.contact-form-section,
.appointment-booking {
  padding: 60px 20px;
  background: #0D0D0D;
}

.form-wrapper,
.booking-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  padding: 40px;
  background: #1A1A1A;
  border: 1px solid #333333;
  border-top: 4px solid #C41E3A;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.form-note,
.booking-note {
  margin-bottom: 32px;
  padding: 20px;
  background: rgba(196, 30, 58, 0.1);
  border-left: 3px solid #C41E3A;
}

.form-fields-display,
.booking-fields-display {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  color: #E0E0E0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.field-display {
  padding: 14px 16px;
  background: #0D0D0D;
  border: 1px solid #333333;
  color: #808080;
  font-size: 14px;
  border-left: 3px solid #C41E3A;
}

.privacy-note {
  margin-top: 24px;
  padding: 16px;
  background: rgba(196, 30, 58, 0.05);
  border: 1px solid #333333;
}

.privacy-note p {
  color: #B0B0B0;
  font-size: 13px;
}

.privacy-note a {
  color: #C41E3A;
  text-decoration: underline;
}

.alternative-text {
  text-align: center;
  margin-top: 24px;
  color: #808080;
  font-size: 14px;
}

/* ========================================
   STATISTICS
   ======================================== */
.statistics,
.comparison {
  padding: 60px 20px;
  background: #121212;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 180px;
  text-align: center;
  padding: 32px 20px;
  background: #1A1A1A;
  border: 1px solid #333333;
  border-top: 3px solid #C41E3A;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(196, 30, 58, 0.2);
  border-top-width: 5px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #C41E3A;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: #B0B0B0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   LEGAL PAGES
   ======================================== */
.legal-hero {
  padding: 60px 20px 40px;
  background: #0D0D0D;
  border-bottom: 3px solid #C41E3A;
}

.last-updated {
  color: #808080;
  font-size: 14px;
}

.legal-content {
  padding: 60px 20px;
  background: #121212;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: #1A1A1A;
  border: 1px solid #333333;
  line-height: 1.8;
}

.content-wrapper h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.content-wrapper h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #E0E0E0;
}

.content-wrapper p {
  margin-bottom: 16px;
  color: #B0B0B0;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 16px 0 16px 24px;
  color: #B0B0B0;
}

.content-wrapper li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.content-wrapper a {
  color: #C41E3A;
  text-decoration: underline;
}

.content-wrapper a:hover {
  color: #FFFFFF;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.confirmation-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
  text-align: center;
}

.confirmation-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: #C41E3A;
  color: #FFFFFF;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

.confirmation-subtitle {
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 24px;
}

.next-steps {
  padding: 60px 20px;
  background: #121212;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  background: #1A1A1A;
  border-left: 4px solid #C41E3A;
}

.step-text h4 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.step-text p {
  color: #B0B0B0;
}

.expected-response {
  text-align: center;
  margin-top: 32px;
  color: #C41E3A;
  font-weight: 600;
  font-size: 16px;
}

.alternative-actions {
  padding: 60px 20px;
  background: #0D0D0D;
}

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.action-card {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 32px;
  background: #1A1A1A;
  border: 1px solid #333333;
  border-top: 3px solid #C41E3A;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.2);
}

.action-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(91%) saturate(2638%) hue-rotate(340deg) brightness(87%) contrast(93%);
}

/* ========================================
   FOOTER - INDUSTRIAL STYLE
   ======================================== */
.site-footer {
  background: linear-gradient(180deg, #0D0D0D 0%, #000000 100%);
  padding: 60px 20px 20px;
  border-top: 3px solid #C41E3A;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333333;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(196, 30, 58, 0.3));
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: #C41E3A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: #B0B0B0;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-col a:hover {
  color: #FFFFFF;
  padding-left: 8px;
}

.footer-col p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
}

.footer-bottom p {
  color: #808080;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #808080;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #C41E3A;
}

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

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

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

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

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

.cookie-button {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #C41E3A;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-button.accept {
  background: #C41E3A;
  color: #FFFFFF;
}

.cookie-button.accept:hover {
  background: #A01830;
  border-color: #A01830;
}

.cookie-button.reject,
.cookie-button.settings {
  background: transparent;
  color: #C41E3A;
}

.cookie-button.reject:hover,
.cookie-button.settings:hover {
  background: rgba(196, 30, 58, 0.1);
  color: #FFFFFF;
}

/* ========================================
   COOKIE SETTINGS MODAL
   ======================================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #1A1A1A;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 2px solid #C41E3A;
  box-shadow: 0 8px 32px rgba(196, 30, 58, 0.3);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: #FFFFFF;
  font-size: 24px;
}

.cookie-modal-close {
  background: transparent;
  color: #C41E3A;
  border: 2px solid #C41E3A;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #C41E3A;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #0D0D0D;
  border-left: 3px solid #C41E3A;
}

.cookie-category h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-category p {
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .service-grid,
  .service-cards,
  .features-grid,
  .benefits-grid {
    flex-direction: column;
  }
  
  .service-card,
  .feature-item,
  .benefit-item {
    flex: 1 1 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card.popular {
    transform: scale(1);
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .form-wrapper,
  .booking-wrapper {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .stat-number {
    font-size: 36px;
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
:focus {
  outline: 2px solid #C41E3A;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #C41E3A;
  outline-offset: 2px;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .site-header {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
  }
  
  p, li {
    color: black;
  }
}