/* ===================================
   SHARPHAWKE AUTOWERKSTATT CSS
   Industrial Modern Design Style
   ================================== */

/* CSS RESET & BASE */
* {
  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', Roboto, sans-serif;
  line-height: 1.6;
  color: #2A2A2A;
  background-color: #F5F5F5;
  overflow-x: hidden;
}

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

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

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

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

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

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

a:hover {
  color: #A01828;
}

ul {
  list-style: none;
}

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

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

/* HEADER */
header {
  background-color: #1A1A1A;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #F5F5F5;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  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.active {
  color: #C41E3A;
  border-bottom-color: #C41E3A;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #C41E3A;
  color: #FFF;
  border: none;
  font-size: 24px;
  padding: 12px 16px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1A1A1A;
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C41E3A;
  color: #FFF;
  border: none;
  font-size: 28px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #F5F5F5;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C41E3A;
  padding-left: 10px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #C41E3A;
  background: #C41E3A;
  color: #FFF;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(196, 30, 58, 0.3);
}

.btn:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: #FFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

.btn-primary {
  background: #C41E3A;
  border-color: #C41E3A;
  color: #FFF;
}

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

.btn-primary {
  background: transparent;
  border-color: #1A1A1A;
  color: #1A1A1A;
}

.btn-primary:hover {
  background: #1A1A1A;
  color: #FFF;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  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-subtitle {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.7;
}

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

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

.trust-badges span {
  background: rgba(196, 30, 58, 0.2);
  color: #F5F5F5;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(196, 30, 58, 0.4);
}

/* USP BAR */
.usp-bar {
  background: #C41E3A;
  padding: 20px 0;
  margin-bottom: 60px;
}

.usp-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.usp-item {
  color: #FFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 8px 16px;
}

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

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

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

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

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

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: #999;
}

.breadcrumb a {
  color: #C41E3A;
}

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

/* SERVICE GRID */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  background: #FFF;
  padding: 32px;
  border: 2px solid #E0E0E0;
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  border-color: #C41E3A;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

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

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

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #C41E3A;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 16px;
}

/* SERVICE DETAIL */
.service-detail {
  background: #FFF;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid #C41E3A;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

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

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

.service-info h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.service-features li {
  background: #F5F5F5;
  padding: 8px 16px;
  border-left: 3px solid #C41E3A;
  font-size: 14px;
  font-weight: 600;
  flex: 1 1 calc(50% - 12px);
  min-width: 150px;
}

.service-pricing {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 20px 0;
}

.service-pricing .price {
  font-size: 32px;
  font-weight: 700;
  color: #C41E3A;
  font-family: 'Roboto Condensed', sans-serif;
}

.service-pricing .duration {
  color: #666;
  font-size: 14px;
}

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

.feature {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: #FFF;
  border: 2px solid #E0E0E0;
  transition: all 0.3s ease;
}

.feature:hover {
  border-color: #C41E3A;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.feature h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature p {
  color: #666;
  font-size: 15px;
}

/* PROCESS STEPS */
.steps {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #FFF;
  padding: 32px 24px;
  border: 2px solid #E0E0E0;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #C41E3A;
  color: #FFF;
  font-size: 28px;
  font-weight: 700;
  line-height: 60px;
  border-radius: 50%;
  margin-bottom: 20px;
  font-family: 'Roboto Condensed', sans-serif;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  color: #666;
  font-size: 15px;
}

/* TESTIMONIALS */
.testimonials {
  background: #2A2A2A;
  padding: 60px 20px;
}

.testimonials h2 {
  color: #F5F5F5;
  text-align: center;
  margin-bottom: 40px;
  border-left: none;
  padding-left: 0;
}

.testimonial-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: #FFF;
  padding: 32px;
  border-left: 4px solid #C41E3A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.testimonial-author strong {
  color: #1A1A1A;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  color: #FFA500;
  font-size: 16px;
}

.rating-summary {
  text-align: center;
  color: #F5F5F5;
  font-size: 18px;
  font-weight: 600;
}

/* EMERGENCY BANNER */
.emergency-banner {
  background: #C41E3A;
  padding: 60px 20px;
  text-align: center;
  color: #FFF;
}

.emergency-banner h2 {
  color: #FFF;
  border-left: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.emergency-banner p {
  color: #FFF;
  font-size: 18px;
  margin-bottom: 24px;
}

/* LOCATION INFO */
.location-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.location-details {
  flex: 1;
  min-width: 300px;
}

.location-details h3 {
  font-size: 22px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.info-note {
  color: #666;
  font-size: 14px;
  margin-top: 16px;
  padding: 12px;
  background: #F5F5F5;
  border-left: 3px solid #C41E3A;
}

/* CTA SECTIONS */
.cta-section,
.cta-final {
  background: #1A1A1A;
  padding: 60px 20px;
  text-align: center;
  color: #F5F5F5;
}

.cta-section h2,
.cta-final h2 {
  color: #F5F5F5;
  border-left: none;
  padding-left: 0;
  margin-bottom: 16px;
}

.cta-section p,
.cta-final p {
  color: #E0E0E0;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.guarantee {
  margin-top: 24px;
  color: #C41E3A;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CONTACT OPTIONS */
.contact-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #FFF;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #E0E0E0;
  transition: all 0.3s ease;
}

.contact-option:hover {
  border-color: #C41E3A;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.contact-option h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-value {
  font-size: 20px;
  font-weight: 700;
  color: #C41E3A;
  margin: 16px 0;
}

.contact-value a {
  color: #C41E3A;
}

/* FORMS */
.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #FFF;
  padding: 40px;
  border: 2px solid #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1A1A1A;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-instruction {
  color: #666;
  font-size: 14px;
  margin-top: 4px;
  padding: 12px;
  background: #F5F5F5;
  border-left: 3px solid #C41E3A;
}

.form-note {
  color: #666;
  font-size: 14px;
  margin: 24px 0;
  padding: 12px;
  background: #F5F5F5;
  border-left: 3px solid #C41E3A;
}

/* PRICING */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.price-item {
  background: #FFF;
  padding: 32px;
  border: 2px solid #E0E0E0;
  border-left: 4px solid #C41E3A;
  transition: all 0.3s ease;
}

.price-item:hover {
  border-color: #C41E3A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-item h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.price-details {
  display: flex;
  gap: 24px;
  align-items: baseline;
  margin: 20px 0;
}

.price-details .price {
  font-size: 36px;
  font-weight: 700;
  color: #C41E3A;
  font-family: 'Roboto Condensed', sans-serif;
}

.price-details .duration {
  color: #666;
  font-size: 14px;
}

.note {
  color: #666;
  font-size: 14px;
  font-style: italic;
  margin-top: 8px;
}

/* TEAM */
.team-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #FFF;
  padding: 32px;
  border: 2px solid #E0E0E0;
  border-left: 4px solid #C41E3A;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.role {
  color: #C41E3A;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

/* VALUES & QUALITY */
.values-grid,
.quality-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.value,
.quality-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #FFF;
  padding: 32px;
  border: 2px solid #E0E0E0;
  transition: all 0.3s ease;
}

.value:hover,
.quality-item:hover {
  border-color: #C41E3A;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.quality-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

/* LISTS */
.service-list,
.additional-list,
.cert-list,
.sustainability-list,
.hours-list,
.payment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.service-list li,
.additional-list li,
.cert-list li,
.sustainability-list li,
.hours-list li,
.payment-list li {
  background: #FFF;
  padding: 16px 20px;
  border-left: 4px solid #C41E3A;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-list li:hover,
.additional-list li:hover,
.cert-list li:hover,
.sustainability-list li:hover {
  background: #F5F5F5;
  padding-left: 28px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* BRANDS */
.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.brands-list span {
  background: #1A1A1A;
  color: #FFF;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #1A1A1A;
  transition: all 0.3s ease;
}

.brands-list span:hover {
  background: #C41E3A;
  border-color: #C41E3A;
}

/* MILESTONES */
.milestones {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 40px 0;
  justify-content: center;
}

.milestone {
  background: #1A1A1A;
  color: #FFF;
  padding: 24px 32px;
  text-align: center;
  min-width: 180px;
  border-top: 4px solid #C41E3A;
}

.milestone strong {
  display: block;
  font-size: 32px;
  color: #C41E3A;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 8px;
}

/* FACILITY */
.facility-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.facility-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #FFF;
  padding: 32px;
  border: 2px solid #E0E0E0;
  border-top: 4px solid #C41E3A;
  transition: all 0.3s ease;
}

.facility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.facility-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* BOOKING STEPS */
.steps-horizontal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0;
}

.steps-horizontal .step {
  flex: 1 1 calc(25% - 16px);
  min-width: 200px;
  background: #FFF;
  padding: 24px 16px;
  border: 2px solid #E0E0E0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.steps-horizontal .step-number {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  margin-bottom: 0;
}

.steps-horizontal .step span:last-child {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #1A1A1A;
}

/* BENEFITS */
.benefits-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.benefit {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  background: #FFF;
  padding: 32px;
  text-align: center;
  border: 2px solid #E0E0E0;
  transition: all 0.3s ease;
}

.benefit:hover {
  border-color: #C41E3A;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.benefit h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* CONTACT METHODS */
.contact-methods {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #FFF;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #E0E0E0;
  border-top: 4px solid #C41E3A;
  transition: all 0.3s ease;
}

.method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.method img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.method h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-detail {
  font-size: 20px;
  font-weight: 700;
  color: #C41E3A;
  margin: 16px 0;
  display: block;
}

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

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

.success-icon {
  width: 100px;
  height: 100px;
  background: #28A745;
  color: #FFF;
  font-size: 64px;
  line-height: 100px;
  border-radius: 50%;
  margin: 0 auto 32px;
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.4);
}

.thank-you-content h1 {
  color: #F5F5F5;
  margin-bottom: 16px;
}

.message {
  font-size: 24px;
  font-weight: 600;
  color: #F5F5F5;
  margin-bottom: 16px;
}

.submessage {
  font-size: 18px;
  color: #E0E0E0;
  margin-bottom: 32px;
}

/* 404 ERROR */
.error-hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
  padding: 100px 20px;
  text-align: center;
  color: #F5F5F5;
}

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

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #C41E3A;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
}

.error-content h1 {
  color: #F5F5F5;
  margin-bottom: 16px;
}

.error-content p {
  color: #E0E0E0;
  font-size: 18px;
}

.error-submessage {
  color: #B0B0B0;
  font-size: 16px;
}

.help-options {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.help-option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: #FFF;
  padding: 40px 32px;
  text-align: center;
  border: 2px solid #E0E0E0;
  transition: all 0.3s ease;
}

.help-option:hover {
  border-color: #C41E3A;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.help-option img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.page-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.page-link {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #FFF;
  padding: 32px 24px;
  border: 2px solid #E0E0E0;
  border-left: 4px solid #C41E3A;
  transition: all 0.3s ease;
}

.page-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-link h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.page-link a {
  color: #C41E3A;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #FFF;
  padding: 40px;
  border: 2px solid #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: #666;
}

/* FOOTER */
footer {
  background: #1A1A1A;
  color: #F5F5F5;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-info,
.footer-contact,
.footer-hours,
.footer-links {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-info img {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-info p,
.footer-contact p,
.footer-hours p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.7;
}

footer h3 {
  color: #F5F5F5;
  font-size: 18px;
  margin-bottom: 16px;
  border-left: none;
  padding-left: 0;
}

.footer-contact a,
.footer-links a {
  color: #B0B0B0;
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: #C41E3A;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A1A;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  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;
  min-width: 300px;
  color: #F5F5F5;
}

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

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

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 13px;
}

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

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

.cookie-modal-content {
  background: #FFF;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 2px solid #E0E0E0;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #C41E3A;
  color: #FFF;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #A01828;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E0E0E0;
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

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

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

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

.cookie-toggle.active::after {
  left: 27px;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

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

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

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

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

  .service-detail {
    flex-direction: column;
    padding: 24px;
  }

  .service-features li {
    flex: 1 1 100%;
  }

  .feature,
  .step,
  .benefit,
  .help-option,
  .page-link {
    flex: 1 1 100%;
  }

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

  .contact-option,
  .method {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-info,
  .footer-contact,
  .footer-hours,
  .footer-links {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }

  .steps-horizontal {
    flex-direction: column;
  }

  .steps-horizontal .step {
    flex: 1 1 100%;
  }

  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero {
    padding: 60px 20px;
  }

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

  section {
    padding: 30px 15px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .service-card,
  .price-item,
  .team-member,
  .value,
  .quality-item {
    padding: 20px;
  }

  .form-container {
    padding: 24px;
  }

  .legal-content {
    padding: 24px;
  }
}

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

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

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

/* ANIMATIONS */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .btn {
    display: none;
  }

  body {
    background: #FFF;
    color: #000;
  }

  .container {
    max-width: 100%;
  }
}