/* ============================================
   RomaWheels - Industrial Modern CSS Styles
   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', sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* Industrial Modern Color Palette */
:root {
  --primary-red: #A01830;
  --dark-bg: #1A1A1A;
  --darker-bg: #0F0F0F;
  --steel-gray: #3A3A3A;
  --light-gray: #E0E0E0;
  --metallic-silver: #C0C0C0;
  --accent-gold: #D4A900;
  --white: #FFFFFF;
  --border-metal: #4A4A4A;
  --shadow-dark: rgba(0, 0, 0, 0.5);
  --overlay-dark: rgba(26, 26, 26, 0.95);
}

/* Typography - Industrial Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px var(--shadow-dark);
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--primary-red);
  padding-bottom: 12px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--metallic-silver);
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--metallic-silver);
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--light-gray);
}

a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-red);
  text-decoration: underline;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: var(--light-gray);
}

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

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

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

/* Header Styles - Industrial Design */
header {
  background-color: var(--darker-bg);
  border-bottom: 3px solid var(--primary-red);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px var(--shadow-dark);
}

.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 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

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

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

.main-nav a {
  color: var(--light-gray);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--primary-red);
  text-decoration: none;
  background-color: rgba(160, 24, 48, 0.1);
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Buttons - Industrial Style */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.btn-primary {
  background-color: var(--primary-red);
  color: #FFFFFF;
  border-color: var(--primary-red);
  box-shadow: 0 4px 12px rgba(160, 24, 48, 0.3);
}

.btn-primary:hover {
  background-color: #8A1528;
  border-color: #8A1528;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(160, 24, 48, 0.5);
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 4px 12px rgba(212, 169, 0, 0.2);
}

.btn-secondary:hover {
  background-color: var(--accent-gold);
  color: var(--dark-bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 169, 0, 0.4);
  text-decoration: none;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: var(--primary-red);
  color: #FFFFFF;
  border: 2px solid var(--accent-gold);
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 4px 12px var(--shadow-dark);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--overlay-dark);
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px var(--shadow-dark);
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--primary-red);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid var(--accent-gold);
  padding: 8px 16px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: var(--primary-red);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 80px;
  padding: 20px;
}

.mobile-nav a {
  color: var(--light-gray);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-metal);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  color: var(--accent-gold);
  background-color: rgba(160, 24, 48, 0.2);
  padding-left: 30px;
  text-decoration: none;
  border-left: 4px solid var(--primary-red);
}

/* Hero Section - Industrial Design */
.hero {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 50%, var(--steel-gray) 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  border-bottom: 4px solid var(--primary-red);
  margin-bottom: 40px;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: 3px 3px 8px var(--shadow-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tagline {
  font-size: 24px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 300;
  text-shadow: 2px 2px 4px var(--shadow-dark);
}

.hero-description {
  font-size: 18px;
  color: var(--light-gray);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-metal);
}

.trust-indicators span {
  font-size: 14px;
  color: var(--metallic-silver);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  background-color: rgba(192, 192, 192, 0.1);
  border-left: 3px solid var(--primary-red);
}

/* Page Hero - Industrial Style */
.page-hero {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--steel-gray) 100%);
  padding: 60px 20px 40px;
  text-align: center;
  border-bottom: 4px solid var(--primary-red);
  margin-bottom: 40px;
  position: relative;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold) 0%, var(--primary-red) 50%, var(--accent-gold) 100%);
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--metallic-silver);
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumbs a {
  color: var(--accent-gold);
}

.breadcrumbs a:hover {
  color: var(--primary-red);
}

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

.page-hero p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
}

/* Benefits Grid - Industrial Cards */
.benefits {
  padding: 60px 20px;
  background-color: var(--dark-bg);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.benefit-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: var(--steel-gray);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-gold) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px var(--shadow-dark);
  border-color: var(--accent-gold);
  background-color: #424242;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(75%) sepia(48%) saturate(569%) hue-rotate(5deg) brightness(95%) contrast(89%);
}

.benefit-card h3 {
  margin-bottom: 12px;
  color: #FFFFFF;
}

.benefit-card p {
  font-size: 14px;
  color: var(--light-gray);
}

/* Services Grid */
.services-preview {
  padding: 60px 20px;
  background-color: var(--darker-bg);
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--metallic-silver);
  margin-bottom: 48px;
  font-style: italic;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 300px;
  background-color: var(--steel-gray);
  padding: 32px;
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 24px;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-red) 0%, var(--accent-gold) 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow-dark);
  border-color: var(--accent-gold);
  background-color: #424242;
}

.service-card:hover::after {
  transform: scaleY(1);
}

.service-card h3 {
  margin-bottom: 16px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  margin-bottom: 16px;
  flex-grow: 1;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 4px var(--shadow-dark);
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.features-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
  font-size: 14px;
}

.features-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
  font-size: 18px;
}

.view-all-link {
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-top: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: var(--primary-red);
  transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
  padding: 60px 20px;
  background-color: var(--dark-bg);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 16px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFFFFF;
  color: var(--dark-bg);
  padding: 32px;
  border-left: 4px solid var(--primary-red);
  border-radius: 2px;
  box-shadow: 0 8px 24px var(--shadow-dark);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 64px;
  color: var(--accent-gold);
  position: absolute;
  top: 16px;
  left: 16px;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
  border-left-width: 6px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #2C3E50;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-card .location,
.testimonial-card .date {
  font-size: 14px;
  color: #666666;
  margin-bottom: 4px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-red) 0%, #6A0F1E 100%);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent-gold);
  border-bottom: 4px solid var(--accent-gold);
  margin: 60px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255, 255, 255, 0.05) 15px, rgba(255, 255, 255, 0.05) 30px);
  pointer-events: none;
}

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
  border: none;
  display: block;
}

.cta-banner p {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-line,
.contact-info {
  font-size: 14px;
  color: var(--light-gray);
  margin-top: 24px;
}

/* Vehicle Grid */
.vehicles {
  padding: 60px 20px;
  background-color: var(--darker-bg);
}

.vehicles h2 {
  margin-bottom: 16px;
}

.vehicle-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 40px;
}

.vehicle-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background-color: var(--steel-gray);
  padding: 28px;
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 24px;
}

.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-gold) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow-dark);
  border-color: var(--accent-gold);
  background-color: #424242;
}

.vehicle-card:hover::before {
  transform: scaleX(1);
}

.vehicle-card h3 {
  margin-bottom: 12px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.specs {
  font-size: 14px;
  color: var(--metallic-silver);
  margin-bottom: 12px;
  padding: 8px 12px;
  background-color: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--primary-red);
}

.features {
  font-size: 14px;
  margin-bottom: 20px;
  flex-grow: 1;
  color: var(--light-gray);
}

.vehicle-card .price {
  font-size: 24px;
  margin-bottom: 20px;
}

/* Fleet Features */
.fleet-features {
  padding: 60px 20px;
  background-color: var(--dark-bg);
}

.fleet-features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.feature-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  text-align: center;
  padding: 24px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px var(--shadow-dark);
  border-color: var(--accent-gold);
  background-color: #424242;
}

.feature-item img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  filter: brightness(0) saturate(100%) invert(75%) sepia(48%) saturate(569%) hue-rotate(5deg) brightness(95%) contrast(89%);
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 14px;
}

/* Services Detailed */
.services-detailed {
  padding: 60px 20px;
  background-color: var(--darker-bg);
}

.services-detailed h2 {
  margin-bottom: 48px;
}

.service-detail {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 48px;
  padding: 32px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  flex-wrap: wrap;
}

.service-detail img {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(75%) sepia(48%) saturate(569%) hue-rotate(5deg) brightness(95%) contrast(89%);
}

.service-info {
  flex: 1;
  min-width: 300px;
}

.service-info h3 {
  margin-bottom: 8px;
}

.service-info .tagline {
  font-size: 16px;
  color: var(--accent-gold);
  font-style: italic;
  margin-bottom: 16px;
}

.service-info .price {
  margin: 20px 0;
}

/* Special Services */
.special-services {
  padding: 60px 20px;
  background-color: var(--dark-bg);
}

.special-services h2 {
  margin-bottom: 48px;
}

/* Benefits List */
.benefits-grid.benefits-list,
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.benefit-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px var(--shadow-dark);
  border-color: var(--accent-gold);
}

.benefit-item img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(75%) sepia(48%) saturate(569%) hue-rotate(5deg) brightness(95%) contrast(89%);
}

.benefit-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.benefit-item p {
  font-size: 14px;
}

/* Pricing Tables */
.pricing-tables {
  padding: 60px 20px;
  background-color: var(--darker-bg);
}

.pricing-tables h2 {
  text-align: center;
  margin-bottom: 16px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.pricing-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 280px;
  background-color: var(--steel-gray);
  padding: 32px;
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 24px;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-red) 0%, var(--accent-gold) 100%);
}

.pricing-card.featured {
  border-color: var(--accent-gold);
  border-width: 3px;
  transform: scale(1.05);
  background-color: #424242;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow-dark);
  border-color: var(--accent-gold);
}

.pricing-card h3 {
  margin-bottom: 12px;
  color: #FFFFFF;
  text-align: center;
}

.models {
  font-size: 14px;
  color: var(--metallic-silver);
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-metal);
}

.price-list {
  margin-bottom: 24px;
  flex-grow: 1;
}

.price-list p {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(74, 74, 74, 0.5);
}

.price-list strong {
  color: var(--accent-gold);
  font-size: 18px;
}

.included {
  font-size: 13px;
  color: var(--light-gray);
  margin-bottom: 24px;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--primary-red);
}

/* Additional Services */
.additional-services {
  padding: 60px 20px;
  background-color: var(--dark-bg);
}

.additional-services h2 {
  margin-bottom: 48px;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 24px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  border-left: 4px solid var(--primary-red);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.service-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px var(--shadow-dark);
  border-left-color: var(--accent-gold);
}

.service-item h4 {
  margin-bottom: 8px;
  color: #FFFFFF;
}

.service-item .price {
  font-size: 22px;
  margin: 12px 0;
}

.service-item p {
  font-size: 14px;
}

/* Special Offers */
.special-offers {
  padding: 60px 20px;
  background-color: var(--darker-bg);
}

.special-offers h2 {
  text-align: center;
  margin-bottom: 48px;
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 32px;
}

.offer-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-red) 0%, #6A0F1E 100%);
  border: 3px solid var(--accent-gold);
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(160, 24, 48, 0.6);
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: var(--accent-gold);
  color: var(--dark-bg);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
}

.offer-card h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.offer-card p {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.validity,
.code {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 600;
}

.highlight-badge {
  display: inline-block;
  background-color: var(--accent-gold);
  color: var(--dark-bg);
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 24px;
  border-radius: 2px;
  box-shadow: 0 4px 12px rgba(212, 169, 0, 0.4);
}

/* Story & Mission */
.story,
.mission {
  padding: 60px 20px;
}

.story {
  background-color: var(--darker-bg);
}

.mission {
  background-color: var(--dark-bg);
}

.text-section {
  max-width: 900px;
  margin: 0 auto 48px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 48px;
}

.milestone {
  flex: 1 1 calc(20% - 24px);
  min-width: 160px;
  text-align: center;
  padding: 20px;
  background-color: var(--steel-gray);
  border-left: 4px solid var(--primary-red);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.milestone:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px var(--shadow-dark);
  border-left-color: var(--accent-gold);
}

.milestone strong {
  display: block;
  font-size: 24px;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 48px;
}

.value-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 240px;
  text-align: center;
  padding: 28px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px var(--shadow-dark);
  border-color: var(--accent-gold);
}

.value-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(75%) sepia(48%) saturate(569%) hue-rotate(5deg) brightness(95%) contrast(89%);
}

/* Statistics */
.statistics {
  padding: 60px 20px;
  background-color: var(--darker-bg);
}

.statistics h2 {
  text-align: center;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.stat-item {
  flex: 1 1 calc(16.666% - 32px);
  min-width: 160px;
  text-align: center;
  padding: 32px 20px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px var(--shadow-dark);
  border-color: var(--accent-gold);
  background-color: #424242;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px var(--shadow-dark);
}

.stat-label {
  font-size: 14px;
  color: var(--metallic-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Choose */
.why-choose {
  padding: 60px 20px;
  background-color: var(--dark-bg);
}

.why-choose h2 {
  text-align: center;
  margin-bottom: 48px;
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.reason-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-left: 4px solid var(--primary-red);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.reason-item:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 20px var(--shadow-dark);
  border-left-color: var(--accent-gold);
}

.reason-item img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(75%) sepia(48%) saturate(569%) hue-rotate(5deg) brightness(95%) contrast(89%);
}

/* Contact Pages */
.contact-methods {
  padding: 60px 20px;
  background-color: var(--darker-bg);
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.method-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  text-align: center;
  padding: 32px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-top: 4px solid var(--primary-red);
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow-dark);
  border-top-color: var(--accent-gold);
}

.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(75%) sepia(48%) saturate(569%) hue-rotate(5deg) brightness(95%) contrast(89%);
}

.method-card h3 {
  margin-bottom: 16px;
}

.method-card .primary {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.method-card .secondary {
  font-size: 16px;
  color: var(--metallic-silver);
  margin-bottom: 12px;
}

.method-card .hours {
  font-size: 14px;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
}

/* Office Locations */
.office-locations {
  padding: 60px 20px;
  background-color: var(--dark-bg);
}

.office-locations h2 {
  text-align: center;
  margin-bottom: 48px;
}

.locations-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.location-card {
  padding: 32px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-left: 6px solid var(--primary-red);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.location-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px var(--shadow-dark);
  border-left-color: var(--accent-gold);
}

.location-card h3 {
  margin-bottom: 16px;
  color: #FFFFFF;
}

.address,
.phone {
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.description {
  margin: 16px 0;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--accent-gold);
}

.services {
  font-size: 14px;
  color: var(--metallic-silver);
  font-style: italic;
}

/* Contact Form */
.contact-form-section {
  padding: 60px 20px;
  background-color: var(--darker-bg);
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-radius: 2px;
}

.form-note {
  color: var(--light-gray);
}

.form-note p {
  margin-bottom: 16px;
  padding: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--primary-red);
}

.form-note strong {
  color: var(--accent-gold);
  display: block;
  margin-bottom: 8px;
}

.checkboxes {
  margin: 24px 0;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.3);
}

.submit-note {
  text-align: center;
  margin-top: 24px;
  font-weight: 600;
  color: var(--accent-gold);
}

.privacy-note {
  font-size: 13px;
  color: var(--metallic-silver);
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

/* Emergency Contact */
.emergency-contact {
  padding: 60px 20px;
  background-color: var(--dark-bg);
}

.emergency-contact h2 {
  text-align: center;
  margin-bottom: 32px;
}

.emergency-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, var(--primary-red) 0%, #6A0F1E 100%);
  border: 3px solid var(--accent-gold);
  border-radius: 2px;
  text-align: center;
}

.emergency-headline {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.emergency-phone {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
  text-shadow: 2px 2px 4px var(--shadow-dark);
}

.emergency-label {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 24px;
  font-weight: 600;
}

.emergency-box .services {
  color: #FFFFFF;
  margin: 20px 0;
}

.response {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 600;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  background-color: var(--darker-bg);
}

.legal-content .text-section {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--border-metal);
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  padding-left: 32px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* Thank You Page */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--steel-gray) 100%);
  text-align: center;
  border-bottom: 4px solid var(--accent-gold);
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.icon-success {
  margin-bottom: 32px;
}

.icon-success img {
  width: 100px;
  height: 100px;
  filter: brightness(0) saturate(100%) invert(75%) sepia(48%) saturate(569%) hue-rotate(5deg) brightness(95%) contrast(89%);
}

.subheadline {
  font-size: 20px;
  color: var(--metallic-silver);
  margin-bottom: 20px;
}

.confirmation {
  font-size: 16px;
  color: var(--light-gray);
  padding: 20px;
  background-color: rgba(212, 169, 0, 0.1);
  border-left: 4px solid var(--accent-gold);
  margin-top: 24px;
}

/* Next Steps */
.next-steps {
  padding: 60px 20px;
  background-color: var(--dark-bg);
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.step-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-top: 4px solid var(--primary-red);
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px var(--shadow-dark);
  border-top-color: var(--accent-gold);
}

.step-number {
  width: 64px;
  height: 64px;
  background-color: var(--primary-red);
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  border: 3px solid var(--accent-gold);
}

.step-card h3 {
  margin-bottom: 16px;
}

.time {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 600;
  margin-top: 16px;
  text-transform: uppercase;
}

/* Quick Actions */
.quick-actions {
  padding: 60px 20px;
  background-color: var(--darker-bg);
}

.quick-actions h2 {
  text-align: center;
  margin-bottom: 48px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.action-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-radius: 2px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px var(--shadow-dark);
  border-color: var(--accent-gold);
}

.action-card h3 {
  margin-bottom: 12px;
}

.action-card p {
  margin-bottom: 24px;
}

/* Contact Compact */
.contact-compact {
  padding: 60px 20px;
  background-color: var(--dark-bg);
}

.contact-compact h2 {
  text-align: center;
  margin-bottom: 24px;
}

.contact-compact > p {
  text-align: center;
  margin-bottom: 32px;
  font-size: 18px;
}

.contact-info,
.contact-display {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: var(--steel-gray);
  border: 2px solid var(--border-metal);
  border-left: 6px solid var(--primary-red);
  border-radius: 2px;
  text-align: center;
}

.contact-info p,
.contact-display p {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-display {
  margin-top: 32px;
}

/* Footer - Industrial Design */
footer {
  background-color: var(--darker-bg);
  border-top: 4px solid var(--primary-red);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 240px;
}

.footer-section img {
  height: 50px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--primary-red);
  padding-bottom: 8px;
}

.footer-section p {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--light-gray);
}

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

.footer-nav a {
  color: var(--light-gray);
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: var(--accent-gold);
  padding-left: 8px;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--border-metal);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--metallic-silver);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--overlay-dark);
  border-top: 3px solid var(--primary-red);
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 20px var(--shadow-dark);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 8px;
}

.cookie-text a {
  color: var(--accent-gold);
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  background-color: transparent;
  color: #FFFFFF;
}

.cookie-accept {
  background-color: var(--primary-red) !important;
  border-color: var(--primary-red) !important;
  color: #FFFFFF !important;
}

.cookie-accept:hover {
  background-color: #8A1528 !important;
  transform: translateY(-2px);
}

.cookie-reject {
  border-color: var(--border-metal) !important;
}

.cookie-reject:hover {
  border-color: var(--light-gray) !important;
  background-color: rgba(192, 192, 192, 0.1) !important;
}

.cookie-settings {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
}

.cookie-settings:hover {
  background-color: var(--accent-gold) !important;
  color: var(--dark-bg) !important;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.modal-content {
  background-color: var(--steel-gray);
  border: 3px solid var(--primary-red);
  border-radius: 2px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 32px var(--shadow-dark);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: 2px solid var(--accent-gold);
  color: #FFFFFF;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background-color: var(--primary-red);
  transform: rotate(90deg);
}

.modal-content h3 {
  margin-bottom: 24px;
  color: #FFFFFF;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.3);
  border-left: 4px solid var(--primary-red);
  border-radius: 2px;
}

.cookie-category h4 {
  margin-bottom: 8px;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: var(--light-gray);
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-metal);
  transition: 0.3s;
  border-radius: 24px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: var(--primary-red);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* Responsive Design - Mobile First */
@media screen and (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .tagline {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  /* Stack elements vertically */
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .vehicle-grid,
  .features-grid,
  .pricing-grid,
  .methods-grid,
  .reasons-grid,
  .values-grid,
  .stats-grid,
  .steps-grid,
  .actions-grid {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .vehicle-card,
  .feature-item,
  .pricing-card,
  .method-card,
  .reason-item,
  .value-item,
  .stat-item,
  .step-card,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Service detail */
  .service-detail {
    flex-direction: column;
  }

  .service-detail img {
    width: 80px;
    height: 80px;
  }

  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }

  /* Padding adjustments */
  .hero,
  .page-hero {
    padding: 60px 20px 40px;
  }

  .section,
  .benefits,
  .services-preview,
  .testimonials,
  .vehicles,
  .fleet-features,
  .services-detailed,
  .special-services,
  .pricing-tables,
  .additional-services,
  .special-offers,
  .story,
  .mission,
  .statistics,
  .why-choose,
  .contact-methods,
  .office-locations,
  .contact-form-section,
  .emergency-contact,
  .legal-content,
  .thank-you-hero,
  .next-steps,
  .quick-actions,
  .contact-compact {
    padding: 40px 20px;
  }

  /* Modal adjustments */
  .modal-content {
    padding: 24px;
    margin: 20px;
  }

  /* Emergency box */
  .emergency-phone {
    font-size: 28px;
  }

  /* Stats */
  .stat-number {
    font-size: 36px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .benefit-card,
  .service-card,
  .vehicle-card {
    flex: 1 1 calc(50% - 24px);
  }

  .feature-item,
  .value-item {
    flex: 1 1 calc(50% - 32px);
  }

  .pricing-card {
    flex: 1 1 calc(50% - 32px);
  }
}

/* Smooth scrolling for all links */
html {
  scroll-padding-top: 80px;
}

/* Selection styling */
::selection {
  background-color: var(--primary-red);
  color: #FFFFFF;
}

::-moz-selection {
  background-color: var(--primary-red);
  color: #FFFFFF;
}

/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--steel-gray);
  border: 2px solid var(--darker-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-red);
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }

  a {
    text-decoration: underline;
  }
}