/* =================================================================
   AutoCare Detailing - Minimalist Design System
   ================================================================= */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

ul, ol {
  list-style-position: inside;
}

/* =================================================================
   Typography - Minimalist Scale
   ================================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1A1A1A;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
}

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

/* =================================================================
   Container & Layout - Flexbox Only
   ================================================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* =================================================================
   Header & Navigation
   ================================================================= */

header {
  background-color: #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

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

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

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #2C2C2C;
  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: #1A4D7C;
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #1A4D7C;
}

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

/* =================================================================
   Mobile Menu Button & Overlay
   ================================================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #1A4D7C;
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #0D3A5C;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1999;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #2C2C2C;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2C2C2C;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #1A4D7C;
}

/* =================================================================
   Hero Section - Minimalist
   ================================================================= */

.hero {
  background-color: #F8F9FA;
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  margin-bottom: 20px;
  color: #1A1A1A;
}

.subheadline {
  font-size: 20px;
  color: #555555;
  margin-bottom: 16px;
  font-weight: 400;
}

.value-proposition {
  font-size: 18px;
  color: #666666;
  margin-bottom: 32px;
}

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

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background-color: #E8F4F8;
  color: #1A4D7C;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.breadcrumbs {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
}

.breadcrumbs a {
  color: #1A4D7C;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* =================================================================
   Buttons - Clean Minimalist Style
   ================================================================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #1A4D7C;
  color: #FFFFFF;
  border-color: #1A4D7C;
}

.btn-primary:hover {
  background-color: #0D3A5C;
  border-color: #0D3A5C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 77, 124, 0.2);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #1A4D7C;
  border-color: #1A4D7C;
}

.btn-secondary:hover {
  background-color: #1A4D7C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 77, 124, 0.15);
}

/* =================================================================
   Sections - Consistent Spacing
   ================================================================= */

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

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

.intro-text {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-section {
  margin-bottom: 40px;
}

.text-section h2 {
  margin-bottom: 20px;
}

.text-section h3 {
  margin-bottom: 16px;
}

.text-section p {
  margin-bottom: 16px;
}

.text-section ul,
.text-section ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

.text-section li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.last-updated {
  font-size: 14px;
  color: #888888;
  font-style: italic;
}

/* =================================================================
   Benefits Grid - Flexbox Layout
   ================================================================= */

.benefits {
  background-color: #FFFFFF;
}

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

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

.benefit-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A4D7C;
}

.benefit-card p {
  color: #555555;
  margin-bottom: 0;
}

/* =================================================================
   Services Overview - Flexbox Cards
   ================================================================= */

.services-overview {
  background-color: #F8F9FA;
}

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

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

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #E0E0E0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #1A4D7C;
}

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

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #1A4D7C;
  margin-bottom: 0;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* =================================================================
   Service Detail Pages
   ================================================================= */

.services-detailed {
  background-color: #FFFFFF;
}

.service-detail {
  margin-bottom: 48px;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 4px;
  border-left: 4px solid #1A4D7C;
  position: relative;
}

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

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: #1A4D7C;
  margin-bottom: 20px;
}

.service-detail p {
  margin-bottom: 20px;
  color: #555555;
}

.service-detail ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.service-detail li {
  margin-bottom: 12px;
  color: #555555;
  line-height: 1.8;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #FF6B35;
  color: #FFFFFF;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* =================================================================
   Pricing Section
   ================================================================= */

.pricing {
  background-color: #FFFFFF;
}

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

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 60px;
}

.price-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #1A4D7C;
}

.price-card.featured {
  border-color: #1A4D7C;
  border-width: 3px;
  box-shadow: 0 8px 24px rgba(26, 77, 124, 0.15);
}

.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.price-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.price-card .price {
  font-size: 40px;
  font-weight: 700;
  color: #1A4D7C;
  margin-bottom: 24px;
}

.price-card ul {
  text-align: left;
  margin-bottom: 32px;
  padding-left: 20px;
}

.price-card li {
  margin-bottom: 12px;
  color: #555555;
  line-height: 1.8;
}

.price-card .duration {
  font-size: 14px;
  color: #888888;
  margin-bottom: 24px;
}

/* =================================================================
   Additional Services List
   ================================================================= */

.additional-services {
  background-color: #F8F9FA;
}

.additional-services h2 {
  text-align: center;
  margin-bottom: 40px;
}

.services-list {
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 4px;
  margin-bottom: 16px;
  transition: box-shadow 0.3s ease;
  flex-wrap: wrap;
  gap: 16px;
}

.service-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-name {
  font-size: 16px;
  color: #2C2C2C;
  font-weight: 500;
}

.service-price {
  font-size: 20px;
  font-weight: 700;
  color: #1A4D7C;
}

/* =================================================================
   Pricing Info Grid
   ================================================================= */

.pricing-info {
  background-color: #FFFFFF;
}

.pricing-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.info-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
  text-align: center;
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A4D7C;
}

.info-card p {
  color: #555555;
  margin-bottom: 0;
}

/* =================================================================
   Testimonials - Readable Dark Text
   ================================================================= */

.testimonials {
  background-color: #F8F9FA;
}

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

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #2C2C2C;
  margin-bottom: 16px;
}

.testimonial-card .author {
  font-size: 14px;
  font-weight: 600;
  color: #1A4D7C;
  font-style: italic;
  margin-bottom: 0;
}

/* =================================================================
   About Page - Stats & Values
   ================================================================= */

.about-story {
  background-color: #FFFFFF;
}

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

.stat-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1A4D7C;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #555555;
  font-weight: 500;
}

.values {
  background-color: #F8F9FA;
}

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

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

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border-left: 4px solid #1A4D7C;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A4D7C;
}

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

/* =================================================================
   Gallery
   ================================================================= */

.gallery-showcase {
  background-color: #FFFFFF;
}

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

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

.gallery-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.gallery-item p {
  color: #555555;
  margin-bottom: 0;
}

.results-showcase {
  background-color: #F8F9FA;
}

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

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

.result-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  text-align: center;
}

.result-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A4D7C;
}

.result-card p {
  color: #555555;
  margin-bottom: 0;
}

/* =================================================================
   Contact Page
   ================================================================= */

.contact-methods {
  background-color: #FFFFFF;
}

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

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 40px 32px;
  background-color: #F8F9FA;
  border-radius: 4px;
  text-align: center;
}

.contact-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A4D7C;
}

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

.contact-card strong {
  color: #1A1A1A;
  font-weight: 600;
}

.business-hours {
  background-color: #F8F9FA;
}

.business-hours h2 {
  text-align: center;
  margin-bottom: 40px;
}

.hours-table {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #F0F0F0;
}

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

.hours-row span:first-child {
  font-weight: 600;
  color: #2C2C2C;
}

.hours-row span:last-child {
  color: #555555;
}

.location-info {
  background-color: #FFFFFF;
}

.location-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

.contact-details {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.contact-details p {
  margin-bottom: 12px;
  color: #555555;
  line-height: 1.8;
}

.contact-details strong {
  color: #1A1A1A;
  font-weight: 600;
}

/* =================================================================
   Contact Info Section
   ================================================================= */

.contact-info {
  background-color: #F8F9FA;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* =================================================================
   CTA Section
   ================================================================= */

.cta-section {
  background-color: #1A4D7C;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  margin-bottom: 0;
}

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

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

.cta-section .btn-primary {
  background-color: #FFFFFF;
  color: #1A4D7C;
  border-color: #FFFFFF;
}

.cta-section .btn-primary:hover {
  background-color: #E8F4F8;
  border-color: #E8F4F8;
}

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

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

/* =================================================================
   Thank You Page
   ================================================================= */

.thank-you {
  background-color: #FFFFFF;
  padding: 100px 20px;
}

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

.thank-you-content h1 {
  color: #1A4D7C;
  margin-bottom: 24px;
}

.thank-you-content p {
  font-size: 18px;
  color: #555555;
  margin-bottom: 20px;
}

.next-steps {
  margin-top: 48px;
  padding: 32px;
  background-color: #F8F9FA;
  border-radius: 4px;
  text-align: left;
}

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

.next-steps ol {
  padding-left: 24px;
}

.next-steps li {
  margin-bottom: 16px;
  color: #555555;
  line-height: 1.8;
}

.next-actions {
  background-color: #F8F9FA;
}

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

.action-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.action-card {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 360px;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.action-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

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

.contact-reminder {
  background-color: #FFFFFF;
  text-align: center;
}

.contact-reminder h2 {
  margin-bottom: 24px;
}

.contact-reminder p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 12px;
}

.contact-reminder strong {
  color: #1A1A1A;
}

/* =================================================================
   Legal Content
   ================================================================= */

.legal-content {
  background-color: #FFFFFF;
  max-width: 900px;
  margin: 0 auto;
}

/* =================================================================
   Footer
   ================================================================= */

footer {
  background-color: #1A1A1A;
  color: #E0E0E0;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-section h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 16px;
}

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

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

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

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

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

.footer-bottom p {
  color: #888888;
  font-size: 14px;
  margin-bottom: 0;
}

/* =================================================================
   Cookie Consent Banner
   ================================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 24px 20px;
  z-index: 1998;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
}

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

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

.cookie-banner-buttons .btn {
  padding: 10px 20px;
  font-size: 14px;
}

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

.cookie-settings-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  padding: 40px 32px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #2C2C2C;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CCCCCC;
  transition: 0.3s;
  border-radius: 26px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #1A4D7C;
}

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

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

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

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

/* =================================================================
   Responsive Design - Mobile First
   ================================================================= */

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Cards - single column on mobile */
  .benefits-grid,
  .services-grid,
  .pricing-grid,
  .values-grid,
  .gallery-grid,
  .results-grid,
  .contact-grid,
  .action-cards {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .price-card,
  .value-card,
  .gallery-item,
  .result-card,
  .contact-card,
  .action-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats grid - 2 columns on mobile */
  .stats-grid {
    flex-direction: row;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 16px);
    min-width: calc(50% - 16px);
  }
  
  /* Testimonials */
  .testimonials-slider,
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Service detail */
  .service-detail {
    padding: 24px 20px;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-banner-buttons .btn {
    width: 100%;
  }
  
  /* Info grid - single column */
  .info-grid {
    flex-direction: column;
  }
  
  .info-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  /* Further typography reduction */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  /* Container padding */
  .container {
    padding: 0 16px;
  }
  
  /* Button adjustments */
  .btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  /* Section spacing */
  section {
    margin-bottom: 40px;
    padding: 32px 16px;
  }
  
  /* Stats - full width on very small screens */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  /* Price adjustments */
  .price-card .price {
    font-size: 32px;
  }
  
  .service-card .price {
    font-size: 24px;
  }
  
  /* Cookie modal padding */
  .cookie-modal-content {
    padding: 32px 20px;
  }
}

/* =================================================================
   Animation Utilities
   ================================================================= */

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

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

/* =================================================================
   Print Styles
   ================================================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-settings-modal,
  .cta-section,
  header,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
  
  .container {
    max-width: 100%;
  }
}