/* ===================================
   GLINT & SHADOW AUTOSERVICE
   GEOMETRIC STRUCTURED DESIGN SYSTEM
   =================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

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

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

li {
  margin-bottom: 8px;
}

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

a:hover {
  color: #1A1A1A;
}

/* CONTAINER & LAYOUT - STRUCTURED GRID */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

/* ANGULAR NAVIGATION */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #F5F5F5;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  background: transparent;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  height: 3px;
  background: #C41E3A;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: #C41E3A;
  background: rgba(196, 30, 58, 0.1);
}

.main-nav a:hover::before {
  transform: scaleX(1);
}

/* MOBILE MENU BUTTON - GEOMETRIC */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background: #C41E3A;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

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

/* MOBILE MENU OVERLAY - STRUCTURED */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  border-left: 4px solid #C41E3A;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  color: #C41E3A;
  border: 2px solid #C41E3A;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

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

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

.mobile-nav a {
  color: #F5F5F5;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 24px;
  background: rgba(196, 30, 58, 0.1);
  border-left: 4px solid #C41E3A;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

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

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

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

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

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 rgba(196, 30, 58, 0.5);
}

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

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ANGULAR BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #C41E3A;
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.4);
}

.btn-primary:hover {
  background: #A01830;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 3px solid #C41E3A;
}

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

/* GEOMETRIC BADGES */
.trust-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(196, 30, 58, 0.2);
  color: #FFFFFF;
  padding: 8px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #C41E3A;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}

/* SECTIONS - STRUCTURED LAYOUT */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

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

.section-subtitle {
  font-size: 18px;
  color: #2D2D2D;
  margin-bottom: 40px;
  text-align: center;
}

/* SERVICES GRID - GEOMETRIC CARDS */
.services-overview {
  background: #F5F5F5;
  border-top: 4px solid #C41E3A;
  border-bottom: 4px solid #C41E3A;
}

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

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

.service-card {
  background: #FFFFFF;
  padding: 32px;
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  max-width: 300px;
  border: 3px solid #1A1A1A;
  box-shadow: 8px 8px 0 rgba(196, 30, 58, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: #C41E3A;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(196, 30, 58, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

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

.service-card p {
  color: #2D2D2D;
  margin-bottom: 16px;
  font-size: 14px;
}

.service-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0;
}

/* WHY CHOOSE US - STRUCTURED FEATURES */
.why-choose-us {
  background: #FFFFFF;
  text-align: center;
}

.why-choose-us h2 {
  margin-bottom: 48px;
}

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

.feature {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  max-width: 280px;
  padding: 32px;
  background: #F5F5F5;
  border: 3px solid #1A1A1A;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
  position: relative;
}

.feature::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(196, 30, 58, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  border-color: #C41E3A;
}

.feature:hover::after {
  opacity: 1;
}

.feature h3 {
  color: #C41E3A;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.feature p {
  color: #2D2D2D;
  position: relative;
  z-index: 1;
}

/* PROCESS STEPS - ANGULAR DESIGN */
.process {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: #FFFFFF;
  text-align: center;
  border-top: 4px solid #C41E3A;
  border-bottom: 4px solid #C41E3A;
}

.process h2 {
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  max-width: 250px;
  padding: 32px;
  background: rgba(196, 30, 58, 0.1);
  border: 3px solid #C41E3A;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(196, 30, 58, 0.2);
  transform: translateY(-4px);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: #C41E3A;
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 16px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}

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

.step p {
  color: #F5F5F5;
}

/* TESTIMONIALS - GEOMETRIC CARDS */
.testimonials {
  background: #F5F5F5;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  padding: 32px;
  background: #FFFFFF;
  border: 3px solid #1A1A1A;
  box-shadow: 8px 8px 0 rgba(196, 30, 58, 0.2);
  text-align: left;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 80px;
  color: rgba(196, 30, 58, 0.2);
  line-height: 1;
}

.testimonial-card p {
  color: #1A1A1A;
  font-size: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

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

.rating {
  font-size: 18px;
  color: #1A1A1A;
  font-weight: 700;
}

/* LOCATION INFO */
.location-info {
  background: #FFFFFF;
  text-align: center;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.location-details {
  max-width: 600px;
  padding: 32px;
  background: #F5F5F5;
  border: 3px solid #1A1A1A;
  text-align: left;
}

.location-details p {
  margin-bottom: 16px;
  color: #1A1A1A;
}

/* CTA BANNER - GEOMETRIC */
.cta-banner {
  background: linear-gradient(135deg, #C41E3A 0%, #A01830 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid #1A1A1A;
  border-bottom: 4px solid #1A1A1A;
}

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

.cta-banner h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 20px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.urgency {
  margin-top: 16px;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

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

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

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

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
}

.breadcrumb a {
  color: #C41E3A;
  font-weight: 600;
}

/* DETAILED SERVICES */
.services-detailed {
  background: #FFFFFF;
}

.service-detail {
  background: #F5F5F5;
  padding: 32px;
  margin-bottom: 32px;
  border: 3px solid #1A1A1A;
  border-left: 8px solid #C41E3A;
}

.service-detail h2 {
  color: #C41E3A;
  margin-bottom: 16px;
}

.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.service-detail li {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  padding: 12px;
  background: #FFFFFF;
  border: 2px solid #1A1A1A;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  list-style: none;
}

.service-detail .price {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #C41E3A;
}

/* COMPANY STORY & VALUES */
.company-story, .values, .team, .certifications, .equipment, .commitment {
  background: #FFFFFF;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 400px;
  padding: 32px;
  background: #F5F5F5;
  border: 3px solid #1A1A1A;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  position: relative;
  margin-bottom: 20px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  width: 16px;
  height: 16px;
  background: #C41E3A;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

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

/* PRICING */
.pricing-introduction, .pricing-table, .hourly-rate, .additional-services, .pricing-faq, .price-promise {
  background: #FFFFFF;
}

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

.price-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  padding: 32px;
  background: #F5F5F5;
  border: 3px solid #1A1A1A;
  box-shadow: 8px 8px 0 rgba(196, 30, 58, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.price-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(196, 30, 58, 0.4);
  border-color: #C41E3A;
}

.price-card h3 {
  color: #C41E3A;
  margin-bottom: 16px;
  font-size: 22px;
}

.price-card ul {
  margin-bottom: 24px;
}

.price-card li {
  font-size: 14px;
  color: #2D2D2D;
  padding-left: 20px;
  position: relative;
}

.price-card li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: #C41E3A;
}

.price-card .duration {
  font-size: 14px;
  color: #2D2D2D;
  font-style: italic;
  margin-bottom: 16px;
}

.price-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0;
}

.highlight {
  font-size: 20px;
  font-weight: 700;
  color: #C41E3A;
  text-align: center;
  padding: 16px;
  background: rgba(196, 30, 58, 0.1);
  border: 2px solid #C41E3A;
  margin: 32px 0;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

/* FAQ */
.faq-item {
  background: #F5F5F5;
  padding: 24px;
  margin-bottom: 24px;
  border-left: 6px solid #C41E3A;
  border-right: 6px solid #1A1A1A;
}

.faq-item h3 {
  color: #1A1A1A;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #2D2D2D;
}

/* CONTACT METHODS */
.contact-methods, .contact-form-section, .opening-hours, .location-map, .emergency-contact, .contact-faq {
  background: #FFFFFF;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 320px;
  padding: 32px;
  background: #F5F5F5;
  border: 3px solid #1A1A1A;
  text-align: center;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  position: relative;
}

.contact-method::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  background: #C41E3A;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

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

.contact-detail {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 16px;
}

/* FORM PLACEHOLDER */
.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: #F5F5F5;
  border: 3px solid #1A1A1A;
  border-left: 8px solid #C41E3A;
}

.form-placeholder p {
  color: #2D2D2D;
}

.form-placeholder strong {
  color: #C41E3A;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

/* SERVICE INFO */
.service-info {
  background: #F5F5F5;
  padding: 24px;
  margin-bottom: 24px;
  border: 3px solid #1A1A1A;
  border-top: 6px solid #C41E3A;
}

.service-info h3 {
  color: #C41E3A;
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #C41E3A 0%, #A01830 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 8px solid #1A1A1A;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #FFFFFF;
  color: #C41E3A;
  font-size: 60px;
  line-height: 100px;
  margin: 0 auto 24px;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.thank-you-hero h1 {
  color: #FFFFFF;
}

.thank-you-content, .contact-alternative, .next-steps, .social-proof {
  background: #FFFFFF;
  text-align: center;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 280px;
  padding: 24px;
  background: #F5F5F5;
  border: 3px solid #1A1A1A;
  color: #1A1A1A;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.link-card:hover {
  background: #C41E3A;
  color: #FFFFFF;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(196, 30, 58, 0.3);
}

.phone-number {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #C41E3A;
  margin: 24px 0;
}

.confirmation-note {
  font-style: italic;
  color: #2D2D2D;
  margin-top: 24px;
}

/* LEGAL CONTENT */
.legal-content {
  background: #FFFFFF;
  padding: 60px 20px;
}

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

.legal-content h2 {
  color: #1A1A1A;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 6px solid #C41E3A;
}

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

.legal-content p {
  color: #2D2D2D;
  line-height: 1.8;
}

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

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

.last-updated {
  font-style: italic;
  color: #2D2D2D;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #C41E3A;
}

/* BADGES GRID */
.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* CTA SECTION */
.cta-section {
  background: #F5F5F5;
  text-align: center;
  padding: 60px 20px;
  border-top: 4px solid #C41E3A;
  border-bottom: 4px solid #C41E3A;
}

.cta-section h2 {
  margin-bottom: 16px;
}

/* FOOTER - GEOMETRIC */
footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: #F5F5F5;
  padding: 60px 20px 24px;
  border-top: 8px solid #C41E3A;
}

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

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

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

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

.footer-nav a {
  color: #F5F5F5;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '▶';
  position: absolute;
  left: -20px;
  color: #C41E3A;
  font-size: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #C41E3A;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 2px solid rgba(196, 30, 58, 0.5);
}

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

/* COOKIE CONSENT BANNER - GEOMETRIC */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
  color: #FFFFFF;
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #C41E3A;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 4px solid #C41E3A;
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-category {
  background: #F5F5F5;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #C41E3A;
}

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

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

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

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

.cookie-toggle label {
  font-weight: 600;
  color: #1A1A1A;
  cursor: pointer;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .feature {
    flex: 1 1 calc(50% - 32px);
  }
  
  .step {
    flex: 1 1 calc(50% - 32px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* MOBILE MENU */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* HERO */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* GRIDS */
  .services-grid,
  .features-grid,
  .steps-grid,
  .testimonials-grid,
  .values-grid,
  .pricing-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .service-card,
  .feature,
  .step,
  .testimonial-card,
  .value-card,
  .price-card,
  .contact-method {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* COOKIE CONSENT */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-buttons {
    justify-content: center;
  }
  
  /* CTA BUTTONS */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .service-card,
  .feature,
  .step,
  .testimonial-card,
  .value-card,
  .price-card {
    padding: 24px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    color: #000000;
    background: #FFFFFF;
  }
  
  a {
    color: #000000;
    text-decoration: underline;
  }
}