/* =================================================================
   CRIMSON DRIVE - SCANDINAVIAN CLEAN DESIGN SYSTEM
   Premium Automotive Accessories - CSS Stylesheet
   ================================================================= */

/* =================================================================
   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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

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

/* =================================================================
   SCANDINAVIAN DESIGN - COLOR PALETTE
   Light, Natural, Minimal
   ================================================================= */
:root {
  --primary-crimson: #C41E3A;
  --deep-gray: #2C2C2C;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --soft-beige: #FAF8F5;
  --warm-gray: #E8E6E1;
  --charcoal: #3D3D3D;
  --text-dark: #2C2C2C;
  --text-medium: #6B6B6B;
  --text-light: #9B9B9B;
  --border-light: #E0DED9;
  --shadow-soft: rgba(44, 44, 44, 0.08);
  --shadow-medium: rgba(44, 44, 44, 0.12);
}

/* =================================================================
   TYPOGRAPHY - SCANDINAVIAN STYLE
   Clean, Readable, Functional
   ================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--deep-gray);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-medium);
  font-weight: 400;
}

.supporting-text {
  font-size: 16px;
  color: var(--text-medium);
  margin-top: 24px;
}

strong {
  font-weight: 600;
  color: var(--deep-gray);
}

/* Mobile Typography */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
  p { font-size: 15px; }
  .hero-subheadline { font-size: 16px; }
}

/* =================================================================
   CONTAINER & LAYOUT SYSTEM
   ================================================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* Section Spacing - Scandinavian Breathing Room */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  section {
    margin-bottom: 40px;
    padding: 32px 16px;
  }
}

/* =================================================================
   HEADER - MINIMAL SCANDINAVIAN STYLE
   ================================================================= */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px var(--shadow-soft);
}

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

.logo {
  display: flex;
  align-items: center;
}

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

/* Main Navigation - Desktop */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  letter-spacing: 0.3px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-crimson);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--primary-crimson);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  color: var(--deep-gray);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-content .cta-button.primary {
    display: none;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 16px var(--shadow-medium);
  z-index: 2000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  font-size: 32px;
  color: var(--deep-gray);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-bottom: 32px;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary-crimson);
}

/* =================================================================
   BUTTONS - SCANDINAVIAN MINIMAL DESIGN
   ================================================================= */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
}

.cta-button.primary {
  background-color: var(--primary-crimson);
  color: var(--white);
  border-color: var(--primary-crimson);
}

.cta-button.primary:hover {
  background-color: #A01830;
  border-color: #A01830;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--deep-gray);
  border-color: var(--deep-gray);
}

.cta-button.secondary:hover {
  background-color: var(--deep-gray);
  color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
}

/* =================================================================
   HERO SECTION - SCANDINAVIAN CLEAN & SPACIOUS
   ================================================================= */
.hero {
  background: linear-gradient(135deg, var(--soft-beige) 0%, var(--white) 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: var(--deep-gray);
  margin-bottom: 24px;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 768px) {
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-cta .cta-button {
    width: 100%;
  }
}

/* =================================================================
   VALUE PROPOSITION - GRID LAYOUT WITH FLEXBOX
   ================================================================= */
.value-proposition {
  background-color: var(--white);
  padding: 60px 20px;
}

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

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

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  max-width: 250px;
  padding: 24px;
}

.value-item img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  object-fit: contain;
}

.value-item h3 {
  font-size: 16px;
  color: var(--deep-gray);
  margin-bottom: 0;
}

.supporting-text {
  text-align: center;
  color: var(--text-medium);
  max-width: 600px;
  margin: 24px auto 0;
}

@media (max-width: 768px) {
  .values-grid {
    gap: 24px;
  }
  
  .value-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* =================================================================
   SERVICES/PRODUCTS GRID - CARD LAYOUT
   ================================================================= */
.featured-services,
.services-grid-section {
  padding: 60px 20px;
  background-color: var(--soft-beige);
}

.featured-services h2,
.services-grid-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 12px var(--shadow-soft);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-medium);
}

.service-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--deep-gray);
}

.service-card p {
  color: var(--text-medium);
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-crimson);
  margin-bottom: 16px;
}

.service-card .cta-button {
  width: 100%;
  margin-top: auto;
}

.link-catalog {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-crimson);
  margin-top: 32px;
  padding: 12px;
  border: 2px solid var(--primary-crimson);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.link-catalog:hover {
  background-color: var(--primary-crimson);
  color: var(--white);
}

@media (max-width: 768px) {
  .services-grid {
    gap: 20px;
  }
  
  .service-card {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }
}

/* =================================================================
   BENEFITS SECTION - FLEXBOX GRID
   ================================================================= */
.benefits {
  padding: 60px 20px;
  background-color: var(--white);
}

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

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

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  max-width: 500px;
  padding: 24px;
  background-color: var(--soft-beige);
  border-radius: 4px;
}

.benefit-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

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

.benefit-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .benefits-grid {
    gap: 20px;
  }
  
  .benefit-item {
    flex: 1 1 100%;
  }
}

/* =================================================================
   PROCESS STEPS - HORIZONTAL FLOW
   ================================================================= */
.process {
  padding: 60px 20px;
  background-color: var(--soft-beige);
  text-align: center;
}

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

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

.step {
  flex: 1 1 250px;
  max-width: 320px;
  padding: 32px 24px;
  background-color: var(--white);
  border-radius: 4px;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  background-color: var(--primary-crimson);
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.step p {
  color: var(--text-medium);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 24px;
  }
  
  .step {
    flex: 1 1 100%;
  }
}

/* =================================================================
   TESTIMONIALS - CARD LAYOUT WITH PROPER CONTRAST
   ================================================================= */
.testimonials {
  padding: 60px 20px;
  background-color: var(--white);
}

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

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

.testimonial-card {
  background-color: var(--soft-beige);
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid var(--primary-crimson);
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--deep-gray);
  font-style: normal;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: var(--primary-crimson);
  font-size: 18px;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    gap: 20px;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
}

/* =================================================================
   TRUST INDICATORS - STATS GRID
   ================================================================= */
.trust-indicators {
  padding: 60px 20px;
  background-color: var(--soft-beige);
}

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

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

.indicator {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background-color: var(--white);
  border-radius: 4px;
}

.indicator .number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-crimson);
  margin-bottom: 8px;
}

.indicator p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .indicators-grid {
    gap: 16px;
  }
  
  .indicator {
    flex: 1 1 calc(50% - 8px);
  }
}

/* =================================================================
   CTA BANNER - CALL TO ACTION
   ================================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-crimson) 0%, #A01830 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 12px;
}

.cta-banner .subtext {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-banner .cta-button.primary {
  background-color: var(--white);
  color: var(--primary-crimson);
  border-color: var(--white);
}

.cta-banner .cta-button.primary:hover {
  background-color: var(--soft-beige);
  border-color: var(--soft-beige);
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 20px;
  }
}

/* =================================================================
   FOOTER - SCANDINAVIAN MINIMAL
   ================================================================= */
footer {
  background-color: var(--deep-gray);
  color: var(--light-gray);
  padding: 60px 20px 24px;
}

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

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
}

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

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

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

.footer-column nav a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

.legal-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.legal-menu a {
  font-size: 13px;
  color: var(--light-gray);
  transition: color 0.3s ease;
}

.legal-menu a:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .legal-menu {
    flex-direction: column;
    gap: 12px;
  }
}

/* =================================================================
   PAGE HERO - INTERNAL PAGES
   ================================================================= */
.page-hero {
  background-color: var(--soft-beige);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-medium);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-crimson);
}

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

.page-hero p {
  color: var(--text-medium);
  font-size: 16px;
}

/* =================================================================
   PRODUCT CATEGORIES - GRID LAYOUT
   ================================================================= */
.product-categories {
  padding: 60px 20px;
  background-color: var(--white);
}

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

.categories-grid,
.category-showcase .categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-card,
.category-item {
  background-color: var(--soft-beige);
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover,
.category-item:hover {
  background-color: var(--warm-gray);
  transform: translateY(-4px);
}

.category-card h3,
.category-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.category-card p,
.category-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .categories-grid {
    gap: 16px;
  }
  
  .category-card,
  .category-item {
    flex: 1 1 100%;
  }
}

/* =================================================================
   FEATURES LIST
   ================================================================= */
.product-features {
  padding: 60px 20px;
  background-color: var(--soft-beige);
}

.product-features h2 {
  text-align: center;
  margin-bottom: 40px;
}

.features-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background-color: var(--white);
  border-radius: 4px;
  font-size: 16px;
  color: var(--text-dark);
}

.features-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--primary-crimson);
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

/* =================================================================
   FAQ SECTION
   ================================================================= */
.faq-section,
.faq-contact {
  padding: 60px 20px;
  background-color: var(--white);
}

.faq-section h2,
.faq-contact h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background-color: var(--soft-beige);
  border-radius: 4px;
  border-left: 4px solid var(--primary-crimson);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--deep-gray);
}

.faq-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

/* =================================================================
   ABOUT US PAGE SECTIONS
   ================================================================= */
.story-section,
.team-intro,
.location-info {
  padding: 60px 20px;
  background-color: var(--white);
}

.story-section h2,
.team-intro h2,
.location-info h2 {
  margin-bottom: 24px;
}

.story-section p,
.team-intro p,
.location-info p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.mission-vision {
  padding: 60px 20px;
  background-color: var(--soft-beige);
}

.mission-vision .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.mission,
.vision {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
  padding: 32px;
  background-color: var(--white);
  border-radius: 4px;
}

.mission h2,
.vision h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.mission p,
.vision p {
  color: var(--text-medium);
}

@media (max-width: 768px) {
  .mission-vision .container {
    flex-direction: column;
  }
  
  .mission,
  .vision {
    flex: 1 1 100%;
  }
}

.values {
  padding: 60px 20px;
  background-color: var(--white);
}

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

.value-card {
  background-color: var(--soft-beige);
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  max-width: 500px;
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.achievements {
  padding: 60px 20px;
  background-color: var(--soft-beige);
}

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

.achievements-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.achievement {
  flex: 1 1 calc(33.333% - 11px);
  min-width: 200px;
  max-width: 300px;
  padding: 24px;
  background-color: var(--white);
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  color: var(--deep-gray);
}

@media (max-width: 768px) {
  .achievements-grid {
    gap: 12px;
  }
  
  .achievement {
    flex: 1 1 calc(50% - 6px);
  }
}

/* =================================================================
   GALLERY PAGE
   ================================================================= */
.showcase-intro {
  padding: 40px 20px;
  background-color: var(--white);
  text-align: center;
}

.showcase-intro h2 {
  margin-bottom: 24px;
}

.showcase-intro .stats {
  font-size: 14px;
  color: var(--text-medium);
  margin-top: 24px;
}

.category-showcase {
  padding: 60px 20px;
  background-color: var(--soft-beige);
}

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

.featured-projects {
  padding: 60px 20px;
  background-color: var(--white);
}

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

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

.project-card {
  background-color: var(--soft-beige);
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  max-width: 400px;
  margin-bottom: 20px;
}

.project-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.project-card p {
  color: var(--text-medium);
  margin-bottom: 16px;
}

.project-card .result {
  font-weight: 600;
  color: var(--primary-crimson);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .projects-grid {
    gap: 20px;
  }
  
  .project-card {
    flex: 1 1 100%;
  }
}

.installation-process {
  padding: 60px 20px;
  background-color: var(--soft-beige);
}

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

.client-cars {
  padding: 60px 20px;
  background-color: var(--white);
  text-align: center;
}

.client-cars h2 {
  margin-bottom: 24px;
}

.brands-list {
  max-width: 600px;
  margin: 32px auto;
}

.brands-list p {
  margin-bottom: 16px;
  font-size: 15px;
}

/* =================================================================
   CONTACT PAGE
   ================================================================= */
.contact-intro {
  padding: 40px 20px;
  background-color: var(--white);
  text-align: center;
}

.contact-methods {
  padding: 60px 20px;
  background-color: var(--soft-beige);
}

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

.method-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 4px;
  text-align: center;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  max-width: 350px;
}

.method-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  object-fit: contain;
}

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

.method-card p {
  color: var(--text-medium);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .methods-grid {
    gap: 20px;
  }
  
  .method-card {
    flex: 1 1 100%;
  }
}

.contact-form-section {
  padding: 60px 20px;
  background-color: var(--white);
}

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

.contact-form-section > .container > p {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 32px;
}

.form-notice {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background-color: var(--soft-beige);
  border-radius: 4px;
  border-left: 4px solid var(--primary-crimson);
}

.form-notice p {
  margin-bottom: 12px;
  color: var(--text-dark);
}

.form-notice .submit-info {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-medium);
  font-style: italic;
}

.location-details {
  padding: 60px 20px;
  background-color: var(--soft-beige);
}

.location-details h2 {
  margin-bottom: 24px;
}

.location-details p {
  max-width: 700px;
  margin-bottom: 16px;
}

.contact-support {
  padding: 60px 20px;
  background-color: var(--white);
}

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

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

.support-item {
  background-color: var(--soft-beige);
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
}

.support-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.support-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .support-grid {
    gap: 20px;
  }
  
  .support-item {
    flex: 1 1 100%;
  }
}

.trust-badges {
  padding: 60px 20px;
  background-color: var(--soft-beige);
}

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

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

.badge {
  flex: 1 1 calc(25% - 12px);
  min-width: 180px;
  max-width: 250px;
  padding: 24px;
  background-color: var(--white);
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  color: var(--deep-gray);
  font-size: 14px;
}

@media (max-width: 768px) {
  .badges-grid {
    gap: 12px;
  }
  
  .badge {
    flex: 1 1 calc(50% - 6px);
  }
}

/* =================================================================
   LEGAL PAGES
   ================================================================= */
.legal-content {
  padding: 40px 20px;
  background-color: var(--white);
}

.legal-intro {
  padding: 32px;
  background-color: var(--soft-beige);
  border-radius: 4px;
  margin-bottom: 40px;
}

.legal-intro p {
  margin-bottom: 16px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-light);
}

.legal-section:last-of-type {
  border-bottom: none;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--deep-gray);
}

.legal-section h3 {
  font-size: 18px;
  margin-bottom: 12px;
  margin-top: 20px;
}

.legal-section p {
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-section a {
  color: var(--primary-crimson);
  text-decoration: underline;
}

.legal-section a:hover {
  color: #A01830;
}

.legal-footer {
  margin-top: 40px;
  padding: 24px;
  background-color: var(--soft-beige);
  border-radius: 4px;
  text-align: center;
}

.legal-footer p {
  margin-bottom: 8px;
  font-size: 14px;
}

/* =================================================================
   THANK YOU PAGE
   ================================================================= */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--soft-beige) 0%, var(--white) 100%);
  text-align: center;
  margin-bottom: 40px;
}

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

.success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: #4CAF50;
  color: var(--white);
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
}

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

.confirmation {
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-gray);
  margin-bottom: 12px;
}

.next-steps {
  padding: 60px 20px;
  background-color: var(--white);
}

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

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

.step-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  max-width: 320px;
  padding: 32px;
  background-color: var(--soft-beige);
  border-radius: 4px;
  text-align: center;
}

.step-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.step-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.response-time {
  text-align: center;
  font-size: 14px;
  color: var(--text-medium);
  font-style: italic;
}

@media (max-width: 768px) {
  .steps-grid {
    gap: 20px;
  }
  
  .step-card {
    flex: 1 1 100%;
  }
}

.contact-info-box {
  padding: 40px 20px;
  background-color: var(--soft-beige);
  text-align: center;
}

.contact-info-box h2 {
  margin-bottom: 16px;
}

.contact-info-box p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.suggested-content {
  padding: 60px 20px;
  background-color: var(--white);
}

.suggested-content h2 {
  text-align: center;
  margin-bottom: 12px;
}

.suggested-content > .container > p {
  text-align: center;
  color: var(--text-medium);
  margin-bottom: 40px;
}

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

.suggestion-card {
  background-color: var(--soft-beige);
  padding: 32px;
  border-radius: 4px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
}

.suggestion-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.suggestion-card p {
  color: var(--text-medium);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .suggestions-grid {
    gap: 20px;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
  }
}

.social-engagement {
  padding: 60px 20px;
  background-color: var(--soft-beige);
  text-align: center;
}

.social-engagement h2 {
  margin-bottom: 16px;
}

.social-engagement p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}

.testimonial-single {
  padding: 60px 20px;
  background-color: var(--white);
}

.testimonial-single h2 {
  text-align: center;
  margin-bottom: 40px;
}

.testimonial-single .testimonial-card {
  max-width: 700px;
  margin: 0 auto;
}

.return-home {
  padding: 60px 20px;
  background-color: var(--soft-beige);
  text-align: center;
}

.return-home h2 {
  margin-bottom: 16px;
}

.return-home p {
  margin-bottom: 32px;
}

.return-home .closing {
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-crimson);
}

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

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-buttons .cta-button {
    width: 100%;
  }
}

.return-navigation {
  padding: 60px 20px;
  background-color: var(--white);
  text-align: center;
}

.return-navigation h2 {
  margin-bottom: 32px;
}

.cta-contact,
.cta-gallery,
.cta-journey {
  padding: 60px 20px;
  background-color: var(--soft-beige);
  text-align: center;
}

.cta-contact h2,
.cta-gallery h2,
.cta-journey h2 {
  margin-bottom: 16px;
}

.cta-contact p,
.cta-gallery p,
.cta-journey p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.category-intro {
  text-align: center;
  font-size: 16px;
  color: var(--text-medium);
  margin-bottom: 40px;
}

/* =================================================================
   COOKIE CONSENT BANNER - SCANDINAVIAN STYLE
   ================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 2px solid var(--border-light);
  box-shadow: 0 -4px 16px var(--shadow-medium);
  padding: 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-content {
  flex: 1 1 300px;
}

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

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

.cookie-banner-actions button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-accept {
  background-color: var(--primary-crimson);
  color: var(--white);
  border: 2px solid var(--primary-crimson);
}

.cookie-accept:hover {
  background-color: #A01830;
  border-color: #A01830;
}

.cookie-reject {
  background-color: transparent;
  color: var(--deep-gray);
  border: 2px solid var(--deep-gray);
}

.cookie-reject:hover {
  background-color: var(--deep-gray);
  color: var(--white);
}

.cookie-settings {
  background-color: transparent;
  color: var(--text-medium);
  border: 2px solid var(--border-light);
}

.cookie-settings:hover {
  border-color: var(--text-medium);
  color: var(--deep-gray);
}

@media (max-width: 768px) {
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-actions {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner-actions button {
    width: 100%;
  }
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 44, 44, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 4px;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 8px 32px var(--shadow-medium);
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: var(--deep-gray);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: var(--soft-beige);
  border-radius: 4px;
}

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

.cookie-category p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  appearance: none;
  background-color: var(--warm-gray);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--white);
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: var(--primary-crimson);
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-actions button {
  flex: 1;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cookie-save {
  background-color: var(--primary-crimson);
  color: var(--white);
  border: 2px solid var(--primary-crimson);
}

.cookie-save:hover {
  background-color: #A01830;
  border-color: #A01830;
}

@media (max-width: 768px) {
  .cookie-modal-content {
    padding: 24px;
    width: 95%;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
}

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

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

/* =================================================================
   ANIMATIONS & TRANSITIONS
   ================================================================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--primary-crimson);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-banner,
  .cta-button {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
}