/* ===================================
   ClearPath Auto - Luxury Premium Style
   Mobile-First Responsive CSS
   =================================== */

/* 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: #1a1a1a;
  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 {
  list-style: none;
}

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

h1 {
  font-size: 32px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 28px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

p {
  margin-bottom: 16px;
  color: #2a2a2a;
}

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: linear-gradient(135deg, #1a3a52 0%, #2C5F8D 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 2px solid #E8912D;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: none;
}

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: #E8912D;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  background: rgba(232, 145, 45, 0.1);
  color: #E8912D;
}

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

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #E8912D;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(232, 145, 45, 0.4);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #1a3a52 0%, #2C5F8D 100%);
  z-index: 999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #E8912D;
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(232, 145, 45, 0.2);
  border-left-color: #E8912D;
  transform: translateX(5px);
}

/* ===================================
   HERO SECTIONS
   =================================== */

.hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2C5F8D 50%, #1a3a52 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50 50 100 0 50z" fill="%23E8912D" opacity="0.03"/></svg>');
  background-size: 100px 100px;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.indicator {
  background: rgba(232, 145, 45, 0.15);
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(232, 145, 45, 0.3);
  color: #E8912D;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, #E8912D 0%, #d17a1f 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(232, 145, 45, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d17a1f 0%, #E8912D 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 145, 45, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #E8912D;
  border: 2px solid #E8912D;
}

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

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

/* ===================================
   SECTIONS
   =================================== */

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

section {
  padding: 60px 20px;
}

.section-intro,
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ===================================
   CARDS & GRIDS
   =================================== */

.solutions-grid,
.services-grid,
.benefits-grid,
.differentiators-grid,
.resources-grid,
.values-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.solution-card,
.service-card,
.benefit-card,
.diff-card,
.resource-card,
.value-card,
.stat-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 280px;
  max-width: 360px;
  border: 2px solid transparent;
  position: relative;
}

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

.solution-card:hover,
.service-card:hover,
.benefit-card:hover,
.diff-card:hover,
.resource-card:hover,
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(232, 145, 45, 0.2);
  border-color: rgba(232, 145, 45, 0.3);
}

.service-card h3,
.solution-card h3,
.benefit-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
  font-size: 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #E8912D;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.metric {
  font-size: 32px;
  font-weight: 700;
  color: #2C5F8D;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
}

/* ===================================
   FEATURED PACKAGE
   =================================== */

.featured-package {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
}

.package-card.featured {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a52 100%);
  color: #ffffff;
  padding: 48px;
  border-radius: 16px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(44, 95, 141, 0.3);
  position: relative;
  overflow: hidden;
}

.package-card.featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 145, 45, 0.1) 0%, transparent 70%);
}

.badge {
  display: inline-block;
  background: #E8912D;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.package-card.featured h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 16px;
}

.package-card.featured .price {
  font-size: 42px;
  color: #E8912D;
  margin: 20px 0;
}

.savings {
  font-size: 16px;
  color: #E8912D;
  font-weight: 600;
  margin-left: 12px;
}

.package-card.featured ul {
  list-style: none;
  margin: 24px 0;
}

.package-card.featured li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #f0f0f0;
  font-size: 16px;
}

.package-card.featured li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8912D;
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   SERVICE ITEMS
   =================================== */

.services-list {
  margin-top: 40px;
}

.service-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border-left: 6px solid #E8912D;
}

.service-item h3 {
  color: #2C5F8D;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-item .price {
  font-size: 28px;
  margin: 16px 0;
}

.service-item ul {
  list-style: none;
  margin: 24px 0;
}

.service-item li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4a4a4a;
}

.service-item li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #E8912D;
  font-weight: 700;
}

.ideal-for {
  background: rgba(232, 145, 45, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  color: #2C5F8D;
  margin-top: 16px;
  display: inline-block;
}

/* ===================================
   HOW IT WORKS / STEPS
   =================================== */

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(232, 145, 45, 0.15);
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: #E8912D;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  opacity: 0.3;
}

.step h3 {
  color: #2C5F8D;
  font-size: 22px;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
}

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

.testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 500px;
  border-top: 4px solid #E8912D;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(232, 145, 45, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: #2C5F8D;
  margin-bottom: 8px;
  font-size: 15px;
}

.rating {
  color: #E8912D;
  font-size: 18px;
  margin-top: 12px;
}

.saved,
.result {
  font-weight: 600;
  color: #E8912D;
  font-size: 14px;
  margin-top: 8px;
}

/* ===================================
   GUIDE CONTENT
   =================================== */

.guide-content {
  padding: 40px 20px;
}

.toc {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a52 100%);
  color: #ffffff;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(44, 95, 141, 0.2);
}

.toc h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.toc ul {
  list-style: none;
}

.toc li {
  padding: 10px 0 10px 24px;
  position: relative;
  color: #f0f0f0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toc li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E8912D;
}

.toc li:hover {
  color: #E8912D;
  transform: translateX(5px);
}

.chapter {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #E8912D;
}

.chapter h2 {
  color: #2C5F8D;
  font-size: 28px;
  margin-bottom: 20px;
}

.chapter ul {
  list-style: none;
  margin: 20px 0;
}

.chapter li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4a4a4a;
}

.chapter li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8912D;
  font-weight: 700;
}

.tip {
  background: rgba(232, 145, 45, 0.1);
  border-left: 4px solid #E8912D;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  color: #2C5F8D;
}

/* ===================================
   INSPECTION PROCESS
   =================================== */

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.stat {
  background: rgba(232, 145, 45, 0.15);
  padding: 16px 28px;
  border-radius: 8px;
  font-weight: 700;
  color: #2C5F8D;
  font-size: 16px;
  border: 2px solid rgba(232, 145, 45, 0.3);
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  justify-content: center;
}

.category {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a52 100%);
  color: #ffffff;
  padding: 20px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  flex: 1 1 200px;
  box-shadow: 0 4px 15px rgba(44, 95, 141, 0.2);
}

.inspection-category {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #2C5F8D;
}

.inspection-category h3 {
  color: #2C5F8D;
  margin-bottom: 20px;
}

.inspection-category ul {
  list-style: none;
}

.inspection-category li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4a4a4a;
  line-height: 1.6;
}

.inspection-category li::before {
  content: '⚙';
  position: absolute;
  left: 0;
  color: #E8912D;
  font-size: 18px;
}

.report-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.report-item {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 250px;
  border-top: 4px solid #E8912D;
}

.example-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #E8912D;
}

.example-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-final,
.cta-section {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a52 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="%23E8912D" opacity="0.05"/></svg>');
  background-size: 100px 100px;
}

.cta-final h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 16px;
}

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

.urgency,
.guarantee {
  background: rgba(232, 145, 45, 0.2);
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-block;
  margin: 12px 0;
  font-weight: 600;
  color: #E8912D;
  border: 1px solid rgba(232, 145, 45, 0.4);
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: linear-gradient(135deg, #1a3a52 0%, #0f2537 100%);
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 200px;
}

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

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

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

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

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

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  color: #E8912D;
  opacity: 0;
  transition: all 0.3s ease;
}

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

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

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

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.last-updated,
.effective-date {
  color: #808080;
  font-size: 14px;
  margin-bottom: 16px;
}

.summary,
.applicability {
  background: rgba(232, 145, 45, 0.1);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #E8912D;
  font-size: 16px;
  font-weight: 600;
  color: #2C5F8D;
  margin-bottom: 32px;
}

.policy-section {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.policy-section h2 {
  color: #2C5F8D;
  font-size: 24px;
  margin-bottom: 16px;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-methods,
.booking-info,
.service-area,
.office-info {
  padding: 40px 20px;
}

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

.method-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 450px;
  border-top: 4px solid #E8912D;
}

.method-card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.detail {
  font-size: 18px;
  font-weight: 700;
  color: #2C5F8D;
  margin: 16px 0;
}

.best-for {
  background: rgba(232, 145, 45, 0.1);
  padding: 12px 16px;
  border-radius: 8px;
  margin-top: 16px;
  font-size: 14px;
  color: #2a2a2a;
}

.booking-details {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.booking-details ul {
  list-style: none;
  margin: 24px 0;
}

.booking-details li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #4a4a4a;
}

.booking-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8912D;
  font-weight: 700;
}

.confirmation {
  background: rgba(232, 145, 45, 0.1);
  padding: 16px 24px;
  border-radius: 8px;
  margin-top: 24px;
  font-weight: 600;
  color: #2C5F8D;
}

.primary-area {
  font-size: 22px;
  font-weight: 700;
  color: #2C5F8D;
  text-align: center;
  margin: 32px 0;
}

.coverage-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}

.coverage-list li {
  background: rgba(232, 145, 45, 0.1);
  padding: 12px 20px;
  border-radius: 8px;
  color: #2C5F8D;
  font-weight: 600;
}

.regional,
.note {
  text-align: center;
  color: #808080;
  font-size: 14px;
  margin: 16px 0;
}

.office-details {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-top: 32px;
}

.address {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F8D;
  margin-bottom: 24px;
}

.hours {
  background: rgba(232, 145, 45, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.parking,
.transit {
  color: #4a4a4a;
  margin: 12px 0;
  padding-left: 24px;
  position: relative;
}

.parking::before {
  content: '🅿';
  position: absolute;
  left: 0;
}

.transit::before {
  content: '🚊';
  position: absolute;
  left: 0;
}

.urgency-section {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a52 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.urgency-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.urgency-section p {
  color: #f0f0f0;
  font-size: 18px;
}

.cta-text {
  font-size: 20px;
  margin-top: 24px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a52 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 20px;
}

.next-steps {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 12px;
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.next-steps h2 {
  color: #E8912D;
  margin-bottom: 20px;
}

.next-steps ul {
  list-style: none;
  text-align: left;
}

.next-steps li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #f0f0f0;
}

.next-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8912D;
  font-weight: 700;
  font-size: 18px;
}

.while-you-wait {
  padding: 60px 20px;
}

.contact-reminder {
  background: rgba(232, 145, 45, 0.1);
  padding: 40px 20px;
  text-align: center;
}

.social-proof {
  padding: 60px 20px;
  text-align: center;
}

.social-proof .stats {
  margin-bottom: 40px;
}

.social-proof .testimonial {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
  border-top: 4px solid #E8912D;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.our-story,
.our-values,
.our-impact {
  padding: 60px 20px;
}

.our-story p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 24px;
}

.mission {
  background: rgba(232, 145, 45, 0.2);
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  color: #E8912D;
  display: inline-block;
  margin-top: 16px;
}

.promise {
  background: rgba(232, 145, 45, 0.2);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  color: #E8912D;
  display: inline-block;
  margin-top: 16px;
}

.stat-card .number {
  font-size: 48px;
  font-weight: 700;
  color: #E8912D;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .label {
  font-size: 18px;
  font-weight: 700;
  color: #2C5F8D;
  margin-bottom: 8px;
}

.stat-card .context {
  color: #808080;
  font-size: 14px;
}

/* ===================================
   RESOURCES PAGE
   =================================== */

.resources-library {
  padding: 60px 20px;
}

.format {
  display: inline-block;
  background: rgba(44, 95, 141, 0.1);
  color: #2C5F8D;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 12px 0;
}

.expert-articles {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 60px 20px;
}

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

.article-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 380px;
  transition: all 0.3s ease;
  border-top: 4px solid #2C5F8D;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(44, 95, 141, 0.2);
}

.meta {
  color: #808080;
  font-size: 13px;
  font-weight: 600;
  margin-top: 16px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a3a52 0%, #2C5F8D 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

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

.btn-accept {
  background: #E8912D;
  color: #ffffff;
  border: none;
}

.btn-accept:hover {
  background: #d17a1f;
}

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

.btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-settings:hover {
  background: rgba(232, 145, 45, 0.1);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

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

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

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

.cookie-category {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border-left: 4px solid #2C5F8D;
}

.cookie-category h3 {
  color: #2C5F8D;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.toggle-switch.active {
  background: #E8912D;
}

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

.toggle-switch.active::after {
  transform: translateX(24px);
}

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

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

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

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 24px;
  }

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

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

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

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

  .mobile-menu {
    display: none;
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(50% - 16px);
  }

  .solutions-grid,
  .services-grid {
    justify-content: flex-start;
  }

  .solution-card,
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
   =================================== */

@media (min-width: 1024px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

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

  .solution-card,
  .service-card,
  .benefit-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .step {
    flex: 1 1 calc(25% - 24px);
  }

  .main-nav {
    gap: 12px;
  }

  .main-nav a {
    font-size: 15px;
  }

  .cookie-content {
    flex-wrap: nowrap;
  }

  .cookie-buttons {
    flex-wrap: nowrap;
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
  text-align: center;
}

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

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

/* ===================================
   ANIMATIONS
   =================================== */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

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

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

  a {
    text-decoration: underline;
  }
}