/* ============================================
   CRISP MOTORWAY - LUXURY PREMIUM STYLING
   Design Style: Luxury and Premium Brand Aesthetic
   Gold accents, premium fonts, sophisticated colors
   ============================================ */

/* CSS RESET & NORMALIZE */
* {
  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', Arial, sans-serif;
  line-height: 1.7;
  color: #1A2B4A;
  background-color: #F9F9F9;
  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-position: inside;
}

/* LUXURY TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1A2B4A;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h2 {
  font-size: 36px;
  position: relative;
  padding-bottom: 15px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #C9A961 0%, #D4B87A 100%);
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4A4A4A;
}

strong {
  color: #1A2B4A;
  font-weight: 600;
}

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

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(135deg, #1A2B4A 0%, #253555 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #C9A961;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 30px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));;
  filter: invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-menu li a {
  color: #F4F4F4;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #C9A961;
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: #C9A961;
}

.nav-menu li a:hover::after {
  width: 80%;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  border: none;
  color: #1A2B4A;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #1A2B4A 0%, #253555 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  border-left: 3px solid #C9A961;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C9A961;
  border: none;
  color: #1A2B4A;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  color: #F4F4F4;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(201, 169, 97, 0.2);
  color: #C9A961;
  border-color: #C9A961;
  transform: translateX(10px);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: #F4F4F4;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: #D4B87A;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.6;
}

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

.trust-badge {
  display: inline-block;
  background: rgba(201, 169, 97, 0.2);
  color: #D4B87A;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid #C9A961;
  letter-spacing: 0.5px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  color: #1A2B4A;
  border-color: #C9A961;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #D4B87A 0%, #E5C98B 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #F4F4F4;
  border-color: #F4F4F4;
}

.btn-secondary:hover {
  background: #F4F4F4;
  color: #1A2B4A;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(244, 244, 244, 0.3);
}

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

.value-proposition,
.services-preview,
.process,
.testimonials,
.location-info,
.services-overview,
.services-detailed,
.service-packages,
.warranty-info,
.about-story,
.mission-vision,
.team,
.equipment,
.certifications,
.community,
.inspection-overview,
.inspection-checklist,
.inspection-process,
.inspection-packages,
.report-example,
.frequency-guide,
.pricing-philosophy,
.services-pricing,
.package-deals,
.hourly-rates,
.additional-costs,
.payment-methods,
.price-comparison,
.discount-offers,
.contact-methods,
.contact-form-section,
.location-map,
.opening-hours,
.team-contact,
.faq-quick,
.legal-content,
.confirmation,
.next-steps,
.resources,
.social-proof,
.preparation-tips {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.section-subtitle {
  font-size: 18px;
  color: #6A6A6A;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 400;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1A2B4A 0%, #253555 100%);
  color: #F4F4F4;
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 3px solid #C9A961;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #D4B87A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: #D4B87A;
  transition: color 0.3s ease;
}

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

.page-hero h1 {
  color: #F4F4F4;
  margin-bottom: 20px;
}

.page-hero .hero-subtitle {
  color: #D4B87A;
  font-size: 18px;
}

.price-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  color: #1A2B4A;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.last-updated {
  font-size: 14px;
  color: #D4B87A;
  font-style: italic;
  margin-top: 10px;
}

/* CARDS & GRIDS */
.benefits-grid,
.services-grid,
.packages-grid,
.warranty-grid,
.mission-vision-grid,
.values-grid,
.cert-grid,
.methods-grid,
.proof-grid,
.equipment-grid,
.checklist-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.package-card,
.warranty-item,
.mv-card,
.value-item,
.method-card,
.proof-item,
.equipment-item,
.check-category {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C9A961 0%, #D4B87A 100%);
  border-radius: 12px 12px 0 0;
}

.benefit-card:hover,
.service-card:hover,
.package-card:hover,
.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.2);
  border-color: #C9A961;
}

.benefit-card img,
.method-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));
}

.service-card h3,
.benefit-card h3 {
  color: #1A2B4A;
  margin-bottom: 15px;
}

.service-card p,
.benefit-card p {
  color: #6A6A6A;
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card .price {
  display: inline-block;
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  color: #1A2B4A;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  margin-top: 15px;
}

/* SERVICE DETAILED CARDS */
.service-detailed-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #C9A961;
  transition: all 0.3s ease;
  position: relative;
}

.service-detailed-card:hover {
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.15);
  transform: translateX(5px);
}

.service-detailed-card h3 {
  color: #1A2B4A;
  margin-bottom: 15px;
}

.service-detailed-card .price {
  display: inline-block;
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  color: #1A2B4A;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

.service-includes {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-includes li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #4A4A4A;
  line-height: 1.6;
}

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

.duration {
  display: inline-block;
  color: #6A6A6A;
  font-style: italic;
  margin-top: 15px;
  padding: 8px 16px;
  background: #F9F9F9;
  border-radius: 6px;
  font-size: 14px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.step,
.process-step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover,
.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.2);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  color: #1A2B4A;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.step h3,
.process-step h3 {
  margin-bottom: 12px;
  color: #1A2B4A;
}

.step p,
.process-step p {
  color: #6A6A6A;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #F9F9F9 0%, #FFFFFF 100%);
  padding: 60px 20px;
}

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

.testimonial-card {
  background: #FFFFFF;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  border-left: 5px solid #C9A961;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.15);
}

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

.testimonial-card .author {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}

.testimonial-card .author strong {
  color: #1A2B4A;
  font-size: 16px;
}

.testimonial-card .author span {
  color: #6A6A6A;
  font-size: 14px;
}

.testimonial-card .rating {
  color: #C9A961;
  font-size: 20px;
  letter-spacing: 2px;
}

.rating-display {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1A2B4A;
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA SECTIONS */
.cta-final,
.cta-section,
.thank-you-cta {
  background: linear-gradient(135deg, #1A2B4A 0%, #253555 100%);
  color: #F4F4F4;
  padding: 80px 20px;
  text-align: center;
  border-top: 3px solid #C9A961;
  border-bottom: 3px solid #C9A961;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-final h2,
.cta-section h2,
.thank-you-cta h2 {
  color: #F4F4F4;
  margin-bottom: 20px;
}

.cta-final h2::after,
.cta-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

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

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

.trust-note,
.guarantee-badge,
.welcome-note {
  display: inline-block;
  margin-top: 30px;
  color: #D4B87A;
  font-size: 14px;
  padding: 10px 20px;
  background: rgba(201, 169, 97, 0.2);
  border-radius: 50px;
  border: 1px solid #C9A961;
}

/* QUALITY BADGES */
.quality-badges,
.principles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 30px 0;
}

.badge,
.principle {
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  color: #1A2B4A;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
  transition: all 0.3s ease;
}

.badge:hover,
.principle:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.5);
}

/* PRICING */
.pricing-list,
.rates-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.price-item,
.rate-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex-wrap: wrap;
  gap: 15px;
  border-left: 4px solid #C9A961;
}

.price-item:hover,
.rate-item:hover {
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.15);
  transform: translateX(5px);
}

.price-item h3 {
  color: #1A2B4A;
  margin-bottom: 0;
  flex: 1;
}

.price-item .price,
.rate-price {
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  color: #1A2B4A;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 22px;
  box-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

.rate-type {
  font-weight: 600;
  color: #1A2B4A;
}

.price-note,
.rate-note,
.guarantee-text,
.financing-note,
.value-text,
.holiday-note,
.confirmation-note,
.privacy-note {
  text-align: center;
  color: #6A6A6A;
  font-style: italic;
  margin-top: 20px;
  font-size: 14px;
}

/* PACKAGE PRICING */
.package-card .package-services {
  color: #6A6A6A;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.regular-price {
  color: #999;
  text-decoration: line-through;
  font-size: 18px;
}

.special-price {
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  color: #1A2B4A;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 24px;
}

.savings,
.package-card .savings {
  display: inline-block;
  background: #C41E3A;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}

.package-card.featured {
  border: 3px solid #C9A961;
  transform: scale(1.05);
}

/* INFO GRIDS */
.info-grid,
.payment-grid,
.team-stats,
.team-contacts,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
}

.info-card,
.payment-method,
.stat,
.contact-card,
.resource-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 240px;
  background: #FFFFFF;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.info-card:hover,
.resource-card:hover {
  border-color: #C9A961;
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.15);
  transform: translateY(-5px);
}

.info-card h3 {
  color: #1A2B4A;
  margin-bottom: 12px;
}

.payment-method {
  background: linear-gradient(135deg, #F9F9F9 0%, #FFFFFF 100%);
  font-weight: 600;
  color: #1A2B4A;
  border: 2px solid #E0E0E0;
}

.stat strong {
  display: block;
  font-size: 36px;
  color: #C9A961;
  margin-bottom: 10px;
}

.stat p {
  color: #6A6A6A;
  margin-bottom: 0;
}

/* CONTACT FORMS */
.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.form-info {
  background: #F9F9F9;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #C9A961;
}

.form-placeholder {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #E0E0E0;
}

.form-placeholder p {
  margin-bottom: 20px;
  color: #6A6A6A;
  line-height: 2;
}

.form-placeholder strong {
  display: block;
  color: #1A2B4A;
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.form-actions {
  margin-top: 30px;
  text-align: center;
}

/* HOURS LIST */
.hours-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.hours-item:hover {
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15);
  transform: translateX(5px);
}

.hours-item .day {
  font-weight: 600;
  color: #1A2B4A;
}

.hours-item .time {
  color: #6A6A6A;
  font-weight: 500;
}

/* LISTS */
.comparison-list,
.offers-list,
.community-list,
.tips-list,
.frequency-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.comparison-list li,
.offers-list li,
.community-list li,
.tips-list li,
.frequency-list li {
  padding: 15px 15px 15px 40px;
  margin-bottom: 15px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  color: #4A4A4A;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.comparison-list li:hover,
.offers-list li:hover,
.community-list li:hover,
.tips-list li:hover {
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.15);
  transform: translateX(5px);
}

.comparison-list li::before,
.offers-list li::before,
.community-list li::before,
.tips-list li::before,
.frequency-list li::before {
  content: '✓';
  position: absolute;
  left: 15px;
  color: #C9A961;
  font-weight: 700;
  font-size: 18px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.faq-item {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #C9A961;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(201, 169, 97, 0.15);
  transform: translateX(5px);
}

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

.faq-item p {
  color: #6A6A6A;
  margin-bottom: 0;
}

/* MILESTONES & TIMELINE */
.milestones,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin: 40px 0;
}

.milestone,
.timeline-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #C9A961;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.milestone:hover,
.timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.2);
}

.milestone .year {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #C9A961;
  margin-bottom: 15px;
}

.milestone p,
.timeline-item p {
  color: #4A4A4A;
  margin-bottom: 0;
}

.timeline-item strong {
  display: block;
  color: #1A2B4A;
  font-size: 18px;
  margin-bottom: 10px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1A2B4A 0%, #253555 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 3px solid #C9A961;
}

.success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  color: #1A2B4A;
  border-radius: 50%;
  font-size: 48px;
  margin: 0 auto 30px;
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.4);
}

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

.testimonial-quote {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
  border-left: 5px solid #C9A961;
}

.testimonial-quote p {
  font-style: italic;
  color: #1A2B4A;
  margin-bottom: 15px;
  font-size: 18px;
}

.testimonial-quote span {
  color: #6A6A6A;
  font-weight: 600;
}

/* LEGAL CONTENT */
.legal-content {
  background: #FFFFFF;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 900px;
  margin: 40px auto;
}

.legal-content h2,
.legal-content h3 {
  color: #1A2B4A;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content ul,
.legal-content ol {
  margin: 20px 0;
  padding-left: 30px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #4A4A4A;
  line-height: 1.7;
}

.legal-content a {
  color: #C9A961;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #D4B87A;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1A2B4A 0%, #0F1A2E 100%);
  color: #F4F4F4;
  padding: 60px 20px 30px;
  border-top: 3px solid #C9A961;
}

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

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));
}

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

.footer-section p {
  color: #D0D0D0;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #D0D0D0;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-section ul li a:hover {
  color: #C9A961;
  padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(201, 169, 97, 0.3);
  color: #D0D0D0;
}

/* COOKIE CONSENT */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A2B4A 0%, #253555 100%);
  color: #F4F4F4;
  padding: 25px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  border-top: 3px solid #C9A961;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-text p {
  margin-bottom: 0;
  color: #D4B87A;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #C9A961 0%, #D4B87A 100%);
  color: #1A2B4A;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #D4B87A 0%, #E5C98B 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

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

.cookie-btn-reject:hover {
  background: rgba(244, 244, 244, 0.1);
  transform: translateY(-2px);
}

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

.cookie-btn-settings:hover {
  background: rgba(201, 169, 97, 0.2);
  transform: translateY(-2px);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C9A961;
  border: none;
  color: #1A2B4A;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #D4B87A;
  transform: rotate(90deg);
}

.cookie-category {
  background: #F9F9F9;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #C9A961;
}

.cookie-category h4 {
  color: #1A2B4A;
  margin-bottom: 10px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #E0E0E0;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #C9A961;
}

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

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

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

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  /* Navigation */
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .nav-menu {
    display: none;
  }

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

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  /* Cards & Grids */
  .benefits-grid,
  .services-grid,
  .packages-grid,
  .warranty-grid,
  .methods-grid,
  .proof-grid,
  .equipment-grid,
  .checklist-grid,
  .info-grid,
  .payment-grid,
  .team-stats,
  .team-contacts,
  .resources-grid {
    flex-direction: column;
  }

  .benefit-card,
  .service-card,
  .package-card,
  .warranty-item,
  .mv-card,
  .value-item,
  .method-card,
  .proof-item,
  .equipment-item,
  .check-category,
  .info-card,
  .payment-method,
  .stat,
  .contact-card,
  .resource-card {
    flex: 1 1 100%;
  }

  /* Process Steps */
  .process-steps {
    flex-direction: column;
  }

  .step,
  .process-step {
    flex: 1 1 100%;
  }

  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }

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

  /* Milestones & Timeline */
  .milestones,
  .timeline {
    flex-direction: column;
  }

  .milestone,
  .timeline-item {
    flex: 1 1 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }

  /* Legal Content */
  .legal-content {
    padding: 40px 20px;
  }

  /* Pricing */
  .package-pricing {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Hours */
  .hours-item {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

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

  h2 {
    font-size: 24px;
  }

  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 40px 15px;
  }

  .section,
  .value-proposition,
  .services-preview,
  .process,
  .testimonials {
    padding: 40px 15px;
  }

  .btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .service-detailed-card,
  .benefit-card,
  .testimonial-card {
    padding: 20px;
  }

  .cookie-modal-content {
    padding: 30px 20px;
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero-content,
.page-hero {
  animation: fadeIn 0.8s ease-out;
}

.benefit-card,
.service-card {
  animation: fadeIn 0.6s ease-out;
  animation-fill-mode: both;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

.success-icon {
  animation: pulse 2s ease-in-out infinite;
}

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

.mb-20 {
  margin-bottom: 20px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-40 {
  margin-top: 40px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-section,
  .cta-final {
    display: none;
  }

  body {
    background: #FFFFFF;
    color: #000000;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}