/* ===================================
   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: #1A1A1A;
  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: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ===================================
   TYPOGRAPHY - INDUSTRIAL MODERN AESTHETIC
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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: 16px;
}

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

strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

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

/* ===================================
   HEADER - INDUSTRIAL METALLIC STYLE
   =================================== */

header {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  border-bottom: 3px solid #C41E3A;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

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

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

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

.main-nav a {
  color: #E0E0E0;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  color: #FFB84D;
  border-bottom-color: #C41E3A;
  transform: translateY(-2px);
}

.header-contact {
  display: flex;
  gap: 16px;
  align-items: center;
}

.phone-link {
  color: #FFB84D;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 184, 77, 0.1);
  border: 1px solid #FFB84D;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: rgba(255, 184, 77, 0.2);
  transform: scale(1.05);
}

.cta-button {
  background: linear-gradient(135deg, #C41E3A 0%, #9B1129 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #C41E3A;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(196, 30, 58, 0.3);
}

.cta-button:hover {
  background: linear-gradient(135deg, #9B1129 0%, #7A0D1F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 30, 58, 0.5);
}

/* ===================================
   MOBILE MENU - INDUSTRIAL SLIDE-IN
   =================================== */

.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  color: #FFB84D;
  background: rgba(255, 184, 77, 0.1);
  border: 2px solid #FFB84D;
  padding: 8px 16px;
  border-radius: 4px;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 184, 77, 0.2);
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  border-left: 4px solid #C41E3A;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  color: #FFB84D;
  background: rgba(255, 184, 77, 0.1);
  border: 2px solid #FFB84D;
  padding: 8px;
  border-radius: 4px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 184, 77, 0.2);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #E0E0E0;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 184, 77, 0.2);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FFB84D;
  background: rgba(196, 30, 58, 0.1);
  padding-left: 32px;
  border-left: 4px solid #C41E3A;
}

/* ===================================
   HERO SECTION - INDUSTRIAL IMPACT
   =================================== */

.hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid #C41E3A;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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: 900px;
  margin: 0 auto;
}

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

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

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary {
  background: linear-gradient(135deg, #C41E3A 0%, #9B1129 100%);
  color: #FFFFFF;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #C41E3A;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
  display: inline-block;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9B1129 0%, #7A0D1F 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #FFB84D;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #FFB84D;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 184, 77, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 184, 77, 0.3);
}

.btn-primary.center,
.btn-secondary.center {
  margin: 32px auto;
  display: block;
  width: fit-content;
}

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

.trust-badges span {
  color: #FFB84D;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  background: rgba(255, 184, 77, 0.1);
  border: 1px solid #FFB84D;
  border-radius: 4px;
}

.working-hours {
  color: #B0B0B0;
  font-size: 14px;
  margin-top: 24px;
}

/* ===================================
   PROMO BAR - URGENT INDUSTRIAL STYLE
   =================================== */

.promo-bar {
  background: linear-gradient(135deg, #C41E3A 0%, #9B1129 100%);
  padding: 16px 20px;
  text-align: center;
  border-bottom: 2px solid #FFB84D;
}

.promo-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.promo-bar p {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.urgency-phone {
  color: #FFB84D;
  font-weight: 700;
  padding: 8px 20px;
  background: rgba(255, 184, 77, 0.2);
  border: 2px solid #FFB84D;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.urgency-phone:hover {
  background: rgba(255, 184, 77, 0.3);
  transform: scale(1.05);
}

/* ===================================
   SECTIONS - INDUSTRIAL GRID LAYOUT
   =================================== */

.services-featured,
.why-choose,
.testimonials,
.services-detailed,
.parts-categories,
.company-story,
.mission-values {
  padding: 60px 20px;
  background: #1A1A1A;
}

.services-featured {
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
}

.section-subtitle {
  text-align: center;
  color: #B0B0B0;
  font-size: 18px;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   CARD GRIDS - FLEXBOX ONLY
   =================================== */

.services-grid,
.benefits-grid,
.testimonials-grid,
.categories-grid,
.process-steps,
.guarantee-grid,
.values-grid,
.methods-grid,
.packages-grid,
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-card,
.benefit-item,
.testimonial-card,
.category-card,
.step,
.guarantee-item,
.value-item,
.method-card,
.package-card,
.payment-item {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #C41E3A 0%, #FFB84D 100%);
  transition: height 0.3s ease;
}

.service-card:hover::before,
.category-card:hover::before {
  height: 100%;
}

.service-card:hover,
.benefit-item:hover,
.category-card:hover,
.package-card:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.service-card img,
.benefit-item img,
.category-card img {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 2px 8px rgba(255, 184, 77, 0.3));
}

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

.service-card p,
.category-card p {
  color: #B0B0B0;
  flex-grow: 1;
}

.price {
  color: #FFB84D;
  font-weight: 700;
  font-size: 24px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 16px 0;
}

.service-link {
  color: #FFB84D;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #C41E3A;
  transform: translateX(8px);
}

/* ===================================
   DETAILED SERVICE CARDS
   =================================== */

.service-card-detailed {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-radius: 8px;
  padding: 32px;
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card-detailed:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid #3A3A3A;
  border-bottom: 1px solid #3A3A3A;
}

.duration {
  color: #B0B0B0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.service-includes li {
  color: #B0B0B0;
  font-size: 14px;
  padding-left: 8px;
}

/* ===================================
   STATISTICS - INDUSTRIAL COUNTERS
   =================================== */

.stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  border: 2px solid #3A3A3A;
  border-radius: 8px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item strong {
  font-size: 48px;
  color: #FFB84D;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(255, 184, 77, 0.3);
}

.stat-item span {
  color: #B0B0B0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-box {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat-box:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.stat-box strong {
  display: block;
  font-size: 48px;
  color: #FFB84D;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 8px;
}

.stat-box span {
  color: #B0B0B0;
  font-size: 14px;
  text-transform: uppercase;
}

/* ===================================
   TESTIMONIALS - DARK READABLE CARDS
   =================================== */

.testimonials {
  background: #0F0F0F;
  padding: 60px 20px;
}

.testimonial-card {
  background: #2A2A2A;
  border: 2px solid #3A3A3A;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #FFB84D;
  box-shadow: 0 8px 24px rgba(255, 184, 77, 0.2);
}

.rating {
  color: #FFB84D;
  font-size: 24px;
  margin-bottom: 8px;
}

.testimonial-card p {
  color: #E0E0E0;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.client-name {
  color: #B0B0B0;
  font-size: 14px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #3A3A3A;
}

.client-name strong {
  color: #FFFFFF;
}

.google-rating {
  text-align: center;
  color: #FFB84D;
  font-weight: 700;
  font-size: 18px;
  margin-top: 32px;
}

/* ===================================
   CTA SECTIONS - HIGH CONTRAST
   =================================== */

.cta-emergency,
.cta-booking,
.cta-parts,
.cta-estimate,
.cta-visit {
  background: linear-gradient(135deg, #C41E3A 0%, #9B1129 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid #FFB84D;
  border-bottom: 4px solid #FFB84D;
}

.cta-emergency h2,
.cta-booking h2,
.cta-parts h2,
.cta-estimate h2,
.cta-visit h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  border: none;
  padding: 0;
}

.cta-emergency p,
.cta-booking p,
.cta-parts p,
.cta-estimate p,
.cta-visit p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.availability,
.urgency-note,
.response-time,
.location-info {
  color: #FFB84D;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
}

/* ===================================
   LOCATION & CONTACT INFO
   =================================== */

.location-info {
  background: #1A1A1A;
  padding: 60px 20px;
}

.location-content {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.location-details {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-details p {
  color: #E0E0E0;
  font-size: 16px;
  line-height: 1.8;
}

/* ===================================
   PAGE HERO - BREADCRUMB NAVIGATION
   =================================== */

.page-hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 60px 20px;
  text-align: center;
  border-bottom: 4px solid #C41E3A;
}

.breadcrumb {
  text-align: left;
  margin-bottom: 24px;
  color: #B0B0B0;
  font-size: 14px;
}

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

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

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

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

.trust-line,
.trust-badge {
  color: #FFB84D;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.hero-stats span {
  color: #FFB84D;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  background: rgba(255, 184, 77, 0.1);
  border: 1px solid #FFB84D;
  border-radius: 4px;
}

/* ===================================
   PRICING TABLE - INDUSTRIAL DESIGN
   =================================== */

.pricing-table {
  background: #1A1A1A;
  padding: 60px 20px;
}

.table-wrapper {
  overflow-x: auto;
  border: 2px solid #3A3A3A;
  border-radius: 8px;
  background: #2A2A2A;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table thead {
  background: linear-gradient(135deg, #C41E3A 0%, #9B1129 100%);
}

.price-table th {
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid #FFB84D;
}

.price-table td {
  color: #E0E0E0;
  padding: 16px;
  border-bottom: 1px solid #3A3A3A;
}

.price-table tbody tr:hover {
  background: rgba(196, 30, 58, 0.1);
}

.table-note {
  color: #B0B0B0;
  font-size: 14px;
  margin-top: 16px;
  font-style: italic;
}

/* ===================================
   FORMS - INDUSTRIAL INPUT STYLE
   =================================== */

.contact-form-section {
  background: #1A1A1A;
  padding: 60px 20px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-radius: 8px;
  padding: 40px;
}

.form-benefits {
  text-align: center;
  color: #FFB84D;
  font-weight: 700;
  margin-bottom: 32px;
}

.form-note {
  background: rgba(255, 184, 77, 0.1);
  border: 2px solid #FFB84D;
  border-radius: 8px;
  padding: 24px;
  color: #E0E0E0;
}

.form-note p {
  margin-bottom: 16px;
}

.form-note a {
  color: #FFB84D;
  font-weight: 700;
}

/* ===================================
   CONTACT INFO BLOCKS
   =================================== */

.contact-methods,
.contact-info-detailed {
  background: #1A1A1A;
  padding: 60px 20px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.info-block {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.info-block:hover {
  transform: translateY(-4px);
  border-color: #C41E3A;
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.info-block h3 {
  color: #FFB84D;
  font-size: 20px;
  margin-bottom: 16px;
  border-bottom: 2px solid #C41E3A;
  padding-bottom: 8px;
}

.info-block p,
.info-block a {
  color: #E0E0E0;
  line-height: 1.8;
}

.info-block a:hover {
  color: #FFB84D;
}

.response-guarantee,
.working-hours-prominent {
  text-align: center;
  color: #FFB84D;
  font-weight: 700;
  margin-top: 32px;
  padding: 16px;
  background: rgba(255, 184, 77, 0.1);
  border: 2px solid #FFB84D;
  border-radius: 8px;
}

/* ===================================
   LEGAL PAGES - CONTENT STYLING
   =================================== */

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

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-radius: 8px;
  padding: 48px;
}

.content-wrapper h2 {
  color: #FFFFFF;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 4px solid #C41E3A;
  padding-left: 16px;
}

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

.content-wrapper p {
  color: #E0E0E0;
  line-height: 1.9;
  margin-bottom: 20px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.content-wrapper li {
  color: #E0E0E0;
  margin-bottom: 12px;
  line-height: 1.8;
  list-style: disc;
}

.content-wrapper a {
  color: #FFB84D;
  font-weight: 600;
}

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

.last-update {
  color: #B0B0B0;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 24px;
}

/* ===================================
   LISTS & BENEFITS
   =================================== */

.equipment-list,
.tips-list,
.visit-list,
.benefits-list,
.explore-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.equipment-list li,
.tips-list li,
.visit-list li,
.benefits-list li {
  color: #E0E0E0;
  font-size: 16px;
  padding-left: 8px;
  line-height: 1.8;
}

.explore-links li {
  list-style: none;
}

.explore-links a {
  color: #FFB84D;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

.explore-links a:hover {
  color: #C41E3A;
  transform: translateX(8px);
}

/* ===================================
   THANK YOU PAGE - SUCCESS STYLING
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid #FFB84D;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #FFB84D 0%, #FFA500 100%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 72px;
  color: #1A1A1A;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(255, 184, 77, 0.5);
  font-weight: 700;
}

.thank-you-hero h1 {
  color: #FFFFFF;
  font-size: 42px;
  margin-bottom: 24px;
}

.subtitle {
  font-size: 18px;
  color: #B0B0B0;
  line-height: 1.8;
}

.next-steps,
.contact-info-thankyou,
.preparation-tips,
.special-offer-thankyou,
.while-you-wait,
.emergency-reminder {
  background: #1A1A1A;
  padding: 60px 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.step-card {
  background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
  border: 2px solid #3A3A3A;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: #FFB84D;
  box-shadow: 0 8px 24px rgba(255, 184, 77, 0.3);
}

.step-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.special-offer-thankyou {
  background: linear-gradient(135deg, #C41E3A 0%, #9B1129 100%);
  text-align: center;
  border-top: 4px solid #FFB84D;
  border-bottom: 4px solid #FFB84D;
}

.special-offer-thankyou h2 {
  color: #FFFFFF;
  border: none;
  padding: 0;
}

.special-offer-thankyou p {
  color: #FFFFFF;
  font-size: 18px;
}

.promo-code {
  background: rgba(255, 184, 77, 0.2);
  border: 2px solid #FFB84D;
  border-radius: 8px;
  padding: 16px 32px;
  display: inline-block;
  margin: 24px 0;
}

.promo-code strong {
  color: #FFB84D;
  font-size: 32px;
  font-family: 'Oswald', sans-serif;
}

.warning-box {
  background: rgba(196, 30, 58, 0.2);
  border: 2px solid #C41E3A;
  border-radius: 8px;
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.warning-box p {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.warning-box strong {
  color: #FFB84D;
}

.back-navigation {
  background: #1A1A1A;
  padding: 60px 20px;
  text-align: center;
}

.nav-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   FOOTER - INDUSTRIAL DARK DESIGN
   =================================== */

footer {
  background: linear-gradient(135deg, #0F0F0F 0%, #000000 100%);
  border-top: 4px solid #C41E3A;
  padding: 60px 20px 24px;
  color: #B0B0B0;
}

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

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(196, 30, 58, 0.3));
}

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

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

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: #B0B0B0;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #3A3A3A;
}

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

/* ===================================
   COOKIE CONSENT BANNER - FIXED BOTTOM
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  border-top: 3px solid #C41E3A;
  padding: 24px 20px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.cookie-text a {
  color: #FFB84D;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #C41E3A 0%, #9B1129 100%);
  color: #FFFFFF;
  border: 2px solid #C41E3A;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #9B1129 0%, #7A0D1F 100%);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #B0B0B0;
  border: 2px solid #3A3A3A;
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

.cookie-btn-settings {
  background: transparent;
  color: #FFB84D;
  border: 2px solid #FFB84D;
}

.cookie-btn-settings:hover {
  background: rgba(255, 184, 77, 0.1);
  transform: translateY(-2px);
}

/* ===================================
   COOKIE PREFERENCES MODAL
   =================================== */

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

.cookie-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 32px;
  color: #FFB84D;
  background: rgba(255, 184, 77, 0.1);
  border: 2px solid #FFB84D;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(255, 184, 77, 0.2);
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: #FFFFFF;
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #3A3A3A;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: #FFB84D;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #3A3A3A;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #C41E3A;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  /* Hide desktop navigation on mobile */
  .main-nav {
    display: none;
  }
  
  .header-contact {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  /* Adjust padding and spacing */
  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 48px 16px;
  }
  
  /* Stack cards on mobile */
  .service-card,
  .benefit-item,
  .testimonial-card,
  .category-card,
  .step,
  .guarantee-item,
  .value-item,
  .method-card,
  .package-card,
  .payment-item,
  .service-card-detailed,
  .stat-box,
  .info-block,
  .step-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Button adjustments */
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie banner mobile */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 100%;
    text-align: center;
  }
  
  /* Table scrolling on mobile */
  .table-wrapper {
    overflow-x: auto;
  }
  
  /* Content wrapper adjustments */
  .content-wrapper,
  .form-wrapper {
    padding: 24px;
  }
  
  /* Stats adjustments */
  .stats {
    flex-direction: column;
    gap: 24px;
  }
  
  /* Text-image sections stack */
  .location-content {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .category-card,
  .method-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .service-card-detailed {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ===================================
   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; }
.mt-5 { margin-top: 48px; }

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

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }
.p-5 { padding: 48px; }

/* ===================================
   FOCUS STATES FOR ACCESSIBILITY
   =================================== */

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #FFB84D;
  outline-offset: 2px;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .promo-bar {
    display: none !important;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ===================================
   SMOOTH SCROLLING & TRANSITIONS
   =================================== */

* {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

button,
a,
.service-card,
.testimonial-card,
.category-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   LOADING ANIMATION (OPTIONAL)
   =================================== */

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.loading {
  animation: pulse 2s infinite;
}

/* ===================================
   END OF STYLESHEET
   =================================== */