/* ========================================
   INDUSTRIAL MODERN DESIGN SYSTEM
   AutoWerk Stenon - Professional Car Service
   ======================================== */

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

*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2A2A2A;
  background-color: #F5F5F5;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #8A0C20;
}

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

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: #1A1A1A;
}

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

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

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

header img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

header nav a {
  color: #F5F5F5;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

header nav a:hover {
  color: #C8102E;
}

header nav a:hover::after {
  width: 100%;
}

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #F5F5F5;
  border: 2px solid #C8102E;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #F5F5F5;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C8102E;
  border-left-color: #C8102E;
  padding-left: 24px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: #C8102E;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.btn-primary:hover {
  background: #8A0C20;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.4);
}

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

.btn-secondary:hover {
  background: #1A1A1A;
  color: #F5F5F5;
  border-color: #1A1A1A;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
  color: #F5F5F5;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(200, 16, 46, 0.05) 35px, rgba(200, 16, 46, 0.05) 70px);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

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

.hero p {
  font-size: 18px;
  color: #D4D4D4;
  margin-bottom: 32px;
  max-width: 700px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.trust-badges span {
  background: rgba(200, 16, 46, 0.9);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #2D2D2D 0%, #1A1A1A 100%);
  color: #F5F5F5;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  border-bottom: 3px solid #C8102E;
}

.page-hero h1 {
  color: #F5F5F5;
  font-size: 48px;
}

.page-hero p {
  color: #D4D4D4;
  font-size: 18px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #A0A0A0;
}

.breadcrumb a {
  color: #C8102E;
}

.breadcrumb a:hover {
  color: #8A0C20;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* SERVICE CARDS */
.service-grid,
.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 32px 0;
}

.service-card,
.card {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #C8102E;
  transition: height 0.3s ease;
}

.service-card:hover {
  border-color: #C8102E;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.2);
}

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

.service-card h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

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

.service-card .price {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #C8102E;
  margin-top: 16px;
}

/* SERVICE LIST */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0;
}

.service-item {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-left: 4px solid #C8102E;
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.service-item:hover {
  border-left-width: 8px;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.15);
}

.service-item h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.service-item p {
  color: #555555;
  margin-bottom: 16px;
}

.service-item .price {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #C8102E;
  margin-right: 16px;
}

.service-item .duration {
  display: inline-block;
  font-size: 14px;
  color: #777777;
  font-style: italic;
}

/* FEATURES */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.feature,
.feature-item {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.feature:hover,
.feature-item:hover {
  border-color: #C8102E;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.2);
}

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

.feature p,
.feature-item p {
  color: #555555;
  font-size: 14px;
}

/* VALUES */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.value-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  border: 2px solid #E0E0E0;
  border-top: 4px solid #C8102E;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.2);
}

.value-card h3 {
  color: #C8102E;
  margin-bottom: 16px;
}

.value-card p {
  color: #555555;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: #F5F5F5;
  padding: 60px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(200, 16, 46, 0.03) 35px, rgba(200, 16, 46, 0.03) 70px);
  pointer-events: none;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials h2 {
  color: #F5F5F5;
  text-align: center;
  margin-bottom: 48px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-left: 4px solid #C8102E;
  border-radius: 4px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-card span {
  color: #1A1A1A;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.company-story,
.gallery-intro,
.pricing-intro {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-story h2,
.gallery-intro h2,
.pricing-intro h2 {
  color: #1A1A1A;
  margin-bottom: 24px;
}

.company-story p,
.gallery-intro p,
.pricing-intro p {
  color: #555555;
  margin-bottom: 16px;
}

/* CERTIFICATIONS */
.certifications {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
}

.certifications h2 {
  color: #1A1A1A;
  margin-bottom: 24px;
}

.certifications ul {
  list-style: none;
  padding: 0;
}

.certifications li {
  color: #555555;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid #E0E0E0;
}

.certifications li:last-child {
  border-bottom: none;
}

.certifications li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C8102E;
  font-weight: 700;
  font-size: 18px;
}

/* PRICING TABLE */
.pricing-table {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-table h2 {
  color: #1A1A1A;
  margin-bottom: 32px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #FFFFFF;
}

th {
  background: #1A1A1A;
  color: #F5F5F5;
  padding: 16px;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #2D2D2D;
}

td {
  padding: 16px;
  border: 1px solid #E0E0E0;
  color: #555555;
}

tr:nth-child(even) {
  background: #F9F9F9;
}

tr:hover {
  background: #FEF5F6;
}

/* PAYMENT OPTIONS */
.payment-options {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
}

.payment-options h2 {
  color: #1A1A1A;
  margin-bottom: 24px;
}

.payment-options ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.payment-options li {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 16px 24px;
  color: #555555;
  font-weight: 600;
  transition: all 0.3s ease;
}

.payment-options li:hover {
  border-color: #C8102E;
  color: #C8102E;
}

/* FACILITY SHOWCASE */
.facility-showcase {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.facility-showcase h2 {
  color: #1A1A1A;
  margin-bottom: 24px;
}

.facility-showcase ul {
  list-style: none;
  padding: 0;
}

.facility-showcase li {
  color: #555555;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid #E0E0E0;
}

.facility-showcase li:last-child {
  border-bottom: none;
}

.facility-showcase li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C8102E;
  font-weight: 700;
  font-size: 18px;
}

/* WORK EXAMPLES */
.example-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.example-item {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.example-item:hover {
  border-color: #C8102E;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.2);
}

.example-item h3 {
  color: #C8102E;
  margin-bottom: 16px;
}

.example-item p {
  color: #555555;
}

/* CONTACT */
.contact-methods {
  margin-bottom: 60px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.contact-method {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-method:hover {
  border-color: #C8102E;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.2);
}

.contact-method img {
  width: 48px;
  height: 48px;
  filter: invert(15%) sepia(89%) saturate(3500%) hue-rotate(340deg) brightness(90%);
}

.contact-method h3 {
  color: #1A1A1A;
  margin-bottom: 16px;
}

.contact-method p {
  color: #555555;
  margin-bottom: 8px;
}

/* FORM PLACEHOLDER */
.form-placeholder {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 40px;
  margin: 32px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-placeholder p {
  color: #555555;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 8px;
}

.form-placeholder p:last-child {
  border-bottom: none;
  color: #C8102E;
  font-weight: 600;
  font-size: 14px;
}

/* BUSINESS HOURS */
.business-hours {
  background: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
}

.business-hours h2 {
  color: #1A1A1A;
  margin-bottom: 24px;
}

.business-hours ul {
  list-style: none;
  padding: 0;
}

.business-hours li {
  color: #555555;
  padding: 12px 0;
  border-bottom: 1px solid #E0E0E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.business-hours li:last-child {
  border-bottom: none;
}

/* LOCATION MAP */
.location-map {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location-map h2 {
  color: #1A1A1A;
  margin-bottom: 24px;
}

.location-map p {
  color: #555555;
  margin-bottom: 16px;
}

/* LEGAL CONTENT */
.legal-content {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  color: #1A1A1A;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  color: #C8102E;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

.legal-content p {
  color: #555555;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
}

.legal-content li {
  color: #555555;
  margin-bottom: 8px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: #F5F5F5;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.thank-you-hero h1 {
  color: #F5F5F5;
  font-size: 56px;
}

.thank-you-hero p {
  color: #D4D4D4;
  font-size: 24px;
}

.confirmation {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 60px 40px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #C8102E;
  color: #FFFFFF;
  font-size: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.3);
}

.confirmation p {
  color: #555555;
  font-size: 18px;
  margin-bottom: 16px;
}

/* STEPS */
.steps-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.step,
.link-card {
  background: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  padding: 32px;
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step:hover,
.link-card:hover {
  border-color: #C8102E;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(200, 16, 46, 0.2);
}

.step img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  filter: invert(15%) sepia(89%) saturate(3500%) hue-rotate(340deg) brightness(90%);
}

.step h3,
.link-card h3 {
  color: #1A1A1A;
  margin-bottom: 12px;
}

.step p,
.link-card p {
  color: #555555;
  font-size: 14px;
}

.link-card h3 a {
  color: #C8102E;
}

.link-card h3 a:hover {
  color: #8A0C20;
}

/* CTA SECTIONS */
.cta-section,
.cta-banner {
  background: linear-gradient(135deg, #C8102E 0%, #8A0C20 100%);
  color: #F5F5F5;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.3);
}

.cta-section h2,
.cta-banner h2 {
  color: #F5F5F5;
  margin-bottom: 16px;
}

.cta-section p,
.cta-banner p {
  color: #F5F5F5;
  font-size: 18px;
  margin-bottom: 16px;
}

.cta-section .btn-primary {
  background: #FFFFFF;
  color: #C8102E;
}

.cta-section .btn-primary:hover {
  background: #F5F5F5;
  color: #8A0C20;
}

.cta-section .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background: #FFFFFF;
  color: #C8102E;
}

/* SERVICE GUARANTEE */
.service-guarantee,
.why-choose {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-guarantee h2,
.why-choose h2 {
  color: #1A1A1A;
  margin-bottom: 24px;
  text-align: center;
}

.service-guarantee ul {
  list-style: none;
  padding: 0;
}

.service-guarantee li {
  color: #555555;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid #E0E0E0;
}

.service-guarantee li:last-child {
  border-bottom: none;
}

.service-guarantee li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C8102E;
  font-weight: 700;
  font-size: 18px;
}

/* URGENT CONTACT */
.urgent-contact {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: #F5F5F5;
  padding: 40px 20px;
  margin-bottom: 40px;
  text-align: center;
  border-radius: 4px;
  border: 3px solid #C8102E;
}

.urgent-contact h2 {
  color: #F5F5F5;
  margin-bottom: 16px;
}

.urgent-contact p {
  color: #D4D4D4;
  margin-bottom: 16px;
}

.urgent-contact strong {
  color: #C8102E;
  font-size: 24px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: #D4D4D4;
  padding: 60px 20px 32px;
  border-top: 3px solid #C8102E;
}

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

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

.footer-section h3 {
  color: #F5F5F5;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #3D3D3D;
  justify-content: center;
}

.footer-nav a {
  color: #D4D4D4;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #C8102E;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: #F5F5F5;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  border-top: 3px solid #C8102E;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-banner p {
  color: #D4D4D4;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

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

.cookie-accept:hover {
  background: #8A0C20;
}

.cookie-reject {
  background: transparent;
  color: #F5F5F5;
  border: 2px solid #F5F5F5;
}

.cookie-reject:hover {
  background: #F5F5F5;
  color: #1A1A1A;
}

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

.cookie-settings:hover {
  background: #C8102E;
  color: #FFFFFF;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

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

.cookie-category {
  padding: 16px;
  border: 2px solid #E0E0E0;
  border-radius: 4px;
  margin-bottom: 16px;
}

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

.cookie-category p {
  color: #555555;
  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: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 18px;
  }
  
  /* Header */
  header nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header img {
    height: 40px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .trust-badges {
    gap: 12px;
  }
  
  .trust-badges span {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  /* Sections */
  section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  /* Cards */
  .service-card,
  .card,
  .value-card {
    flex: 1 1 100%;
  }
  
  .feature,
  .feature-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
  }
  
  .example-item,
  .contact-method {
    flex: 1 1 100%;
  }
  
  .step,
  .link-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 calc(50% - 8px);
  }
  
  /* Table */
  table {
    font-size: 14px;
  }
  
  th, td {
    padding: 12px 8px;
  }
  
  /* Thank You */
  .thank-you-hero h1 {
    font-size: 32px;
  }
  
  .thank-you-hero p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .trust-badges {
    flex-direction: column;
    width: 100%;
  }
  
  .trust-badges span {
    width: 100%;
    text-align: center;
  }
  
  .feature,
  .feature-item,
  .step,
  .link-card {
    flex: 1 1 100%;
  }
  
  .cookie-buttons button {
    flex: 1 1 100%;
  }
  
  table {
    font-size: 12px;
  }
  
  th, td {
    padding: 8px 4px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  * {
    background: #FFFFFF !important;
    color: #000000 !important;
  }
}