/* ========================================
   BRILSON CLEAN - MODERN BOLD CSS STYLES
   Design Style: Bold Modern with Strong Typography
   ======================================== */

/* 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', Arial, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* TYPOGRAPHY - BOLD & STRONG */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1A3B5C;
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 24px;
}

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

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

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

a:hover {
  color: #C8A876;
}

strong {
  font-weight: 700;
  color: #1A3B5C;
}

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

li {
  margin-bottom: 8px;
}

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

/* HEADER - BOLD & PROMINENT */
header {
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(26, 59, 92, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid #C8A876;
}

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

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1A3B5C;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #C8A876;
  border-bottom-color: #C8A876;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: #1A3B5C;
  color: #FFFFFF;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 59, 92, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1A3B5C;
  z-index: 1002;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #C8A876;
  border-color: #C8A876;
}

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  padding: 12px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #C8A876;
  padding-left: 12px;
}

/* BUTTONS - BOLD & GEOMETRIC */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: 8px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #1A3B5C;
  color: #FFFFFF;
  border-color: #1A3B5C;
  box-shadow: 0 4px 12px rgba(26, 59, 92, 0.3);
}

.btn-primary:hover {
  background: #C8A876;
  border-color: #C8A876;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 168, 118, 0.4);
}

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

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

.btn-outline {
  background: transparent;
  color: #1A3B5C;
  border-color: #C8A876;
}

.btn-outline:hover {
  background: #C8A876;
  color: #FFFFFF;
  border-color: #C8A876;
}

/* HERO SECTION - BOLD & IMPACTFUL */
.hero {
  background: linear-gradient(135deg, #1A3B5C 0%, #2C5A8C 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #E8F1F8;
  margin-bottom: 40px;
  font-weight: 400;
}

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

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

.trust-indicators span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* SECTIONS - GEOMETRIC & SPACED */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle,
.page-subtitle {
  font-size: 18px;
  color: #666666;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 400;
}

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

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, #1A3B5C 0%, #2C5A8C 100%);
  padding: 60px 20px;
  margin-bottom: 48px;
}

.page-header h1 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 16px;
}

.page-header .page-subtitle {
  color: #E8F1F8;
  text-align: center;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 14px;
  flex-wrap: wrap;
}

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

.breadcrumb span {
  color: #C8A876;
}

/* GRID LAYOUTS - FLEXBOX ONLY */
.benefits-grid,
.services-grid,
.vehicle-grid,
.process-steps,
.stats-grid,
.advantages-grid,
.options-grid,
.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

/* CARDS - BOLD GEOMETRIC DESIGN */
.benefit-card,
.service-card,
.vehicle-card,
.option-card,
.advantage-card,
.method-card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #E8F1F8;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  position: relative;
}

.benefit-card:hover,
.service-card:hover,
.vehicle-card:hover,
.option-card:hover,
.advantage-card:hover,
.method-card:hover {
  border-color: #C8A876;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(26, 59, 92, 0.15);
}

.benefit-card h3,
.service-card h3,
.vehicle-card h3,
.option-card h3,
.advantage-card h3,
.method-card h3 {
  color: #1A3B5C;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p,
.service-card p,
.option-card p,
.advantage-card p,
.method-card p {
  color: #333333;
  line-height: 1.7;
}

/* SERVICE PRICES - PROMINENT */
.service-price,
.vehicle-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #C8A876;
  margin: 20px 0;
  display: block;
}

/* VEHICLE CARDS */
.vehicle-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #C8A876;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vehicle-image-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #E8F1F8 0%, #C8A876 100%);
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1A3B5C;
}

.vehicle-details,
.vehicle-specs {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.vehicle-details span,
.vehicle-specs span {
  background: #E8F1F8;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1A3B5C;
}

.vehicle-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.vehicle-highlights span {
  background: #F8F8F8;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 13px;
  color: #666666;
}

.vehicle-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* PROCESS STEPS - GEOMETRIC */
.process-step,
.step,
.step-card {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px 24px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 3px solid #E8F1F8;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.process-step:hover,
.step:hover,
.step-card:hover {
  border-color: #C8A876;
  transform: translateY(-4px);
}

.step-number,
.process-icon {
  width: 60px;
  height: 60px;
  background: #1A3B5C;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
  border: 4px solid #C8A876;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: #F8F8F8;
  padding: 60px 20px;
}

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

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

.testimonial-card,
.testimonial-featured {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #E8F1F8;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.testimonial-card p,
.testimonial-featured p {
  font-size: 16px;
  line-height: 1.8;
  color: #1A1A1A;
  margin-bottom: 24px;
  font-style: italic;
}

.rating {
  color: #C8A876;
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #E8F1F8;
}

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

.testimonial-author span {
  color: #666666;
  font-size: 14px;
}

.rating-summary {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1A3B5C;
  margin-top: 32px;
}

/* CTA BANNER - HIGH CONTRAST */
.cta-banner {
  background: linear-gradient(135deg, #1A3B5C 0%, #2C5A8C 100%);
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

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

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

.cta-banner p {
  color: #E8F1F8;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

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

/* STATS - BOLD NUMBERS */
.stats {
  background: #F8F8F8;
  padding: 60px 20px;
  text-align: center;
}

.stat-item {
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 32px 24px;
  margin-bottom: 24px;
}

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #C8A876;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: #1A3B5C;
  font-weight: 600;
}

/* FILTERS */
.filter-section {
  background: #F8F8F8;
  padding: 32px 20px;
  margin-bottom: 40px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.filter-group {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-weight: 700;
  color: #1A3B5C;
  font-size: 14px;
}

.filter-select,
.filter-input,
.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #E8F1F8;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
  background: #FFFFFF;
}

.filter-select:focus,
.filter-input:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #C8A876;
  box-shadow: 0 0 0 3px rgba(200, 168, 118, 0.1);
}

.results-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 2px solid #E8F1F8;
  flex-wrap: wrap;
  gap: 16px;
}

.results-count {
  font-weight: 700;
  color: #1A3B5C;
  font-size: 16px;
}

.sort-select {
  padding: 8px 16px;
  border: 2px solid #E8F1F8;
  border-radius: 6px;
  font-size: 14px;
  background: #FFFFFF;
}

/* PAGINATION - GEOMETRIC */
.pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.page-btn {
  width: 44px;
  height: 44px;
  border: 2px solid #E8F1F8;
  background: #FFFFFF;
  color: #1A3B5C;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
  background: #1A3B5C;
  color: #FFFFFF;
  border-color: #1A3B5C;
}

/* FORMS - CLEAN & ACCESSIBLE */
.contact-form-section,
.financing-calculator {
  background: #FFFFFF;
  padding: 48px 20px;
}

.form-wrapper,
.calculator-form {
  max-width: 700px;
  margin: 0 auto;
}

.field-group,
.form-group {
  margin-bottom: 24px;
}

.field-group label,
.form-group label {
  display: block;
  font-weight: 700;
  color: #1A3B5C;
  margin-bottom: 8px;
  font-size: 14px;
}

.field-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.field-row .field-group {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
  line-height: 1.6;
}

.form-textarea {
  width: 100%;
  resize: vertical;
  min-height: 120px;
}

.form-note,
.form-redirect-info {
  background: #E8F1F8;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 4px solid #C8A876;
}

/* CALCULATION RESULT */
.calculation-result {
  background: #F8F8F8;
  padding: 32px;
  border-radius: 12px;
  margin: 32px 0;
  border: 3px solid #E8F1F8;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #E8F1F8;
  flex-wrap: wrap;
  gap: 8px;
}

.result-item:last-child {
  border-bottom: none;
}

.result-item span {
  color: #666666;
  font-size: 16px;
}

.result-item strong {
  font-size: 24px;
  color: #C8A876;
  font-weight: 800;
}

.disclaimer {
  font-size: 12px;
  color: #999999;
  font-style: italic;
  margin-top: 16px;
}

/* OPENING HOURS */
.opening-hours {
  background: #F8F8F8;
  padding: 48px 20px;
}

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

.hours-block {
  flex: 1 1 400px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #E8F1F8;
}

.hours-block h3 {
  margin-bottom: 24px;
  color: #1A3B5C;
}

.hours-block ul {
  list-style: none;
  padding: 0;
}

.hours-block li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #E8F1F8;
}

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

.hours-note {
  flex: 1 1 400px;
  padding: 32px;
  background: #E8F1F8;
  border-radius: 12px;
  border-left: 4px solid #C8A876;
}

/* LOCATION & MAP */
.location-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.location-info {
  flex: 1 1 400px;
}

.location-info h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.map-placeholder {
  flex: 1 1 400px;
  height: 400px;
  background: #E8F1F8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #C8A876;
  font-weight: 700;
  color: #1A3B5C;
}

/* FAQ */
.faq-list,
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  border: 2px solid #E8F1F8;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #C8A876;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 2px solid #E8F1F8;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

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

.last-updated,
.update-info {
  font-size: 14px;
  color: #999999;
  font-style: italic;
}

/* COOKIE TABLE */
.cookie-table {
  overflow-x: auto;
  margin: 24px 0;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
}

.cookie-table th,
.cookie-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #E8F1F8;
}

.cookie-table th {
  background: #1A3B5C;
  color: #FFFFFF;
  font-weight: 700;
}

.cookie-table tr:hover {
  background: #F8F8F8;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #E8F1F8 0%, #FFFFFF 100%);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #28A745;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
}

.thank-you-subtitle {
  font-size: 18px;
  color: #666666;
  margin-bottom: 16px;
}

.confirmation-text {
  font-size: 16px;
  color: #999999;
  margin-bottom: 32px;
}

.return-home {
  margin-top: 32px;
}

/* FOOTER - BOLD & CLEAR */
footer {
  background: #1A3B5C;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 250px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.tagline {
  color: #E8F1F8;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column h4 {
  color: #C8A876;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-column a {
  display: block;
  color: #E8F1F8;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-column a:hover {
  color: #C8A876;
  padding-left: 8px;
}

.footer-column p {
  color: #E8F1F8;
  font-size: 14px;
  line-height: 1.7;
}

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A3B5C;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-consent-text a {
  color: #C8A876;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-btn-accept {
  background: #C8A876;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background: #B89866;
}

.cookie-btn-reject {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

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

.cookie-btn-settings {
  background: transparent;
  color: #C8A876;
  border-color: #C8A876;
}

.cookie-btn-settings:hover {
  background: rgba(200, 168, 118, 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: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #1A3B5C;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.cookie-category h4 {
  margin-bottom: 8px;
  color: #1A3B5C;
}

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

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

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

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Grids to single column */
  .benefits-grid,
  .services-grid,
  .vehicle-grid,
  .advantages-grid,
  .options-grid,
  .methods-grid,
  .testimonials-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .vehicle-card,
  .option-card,
  .advantage-card,
  .method-card,
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
  }
  
  .process-step,
  .step,
  .step-card {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Location */
  .location-content {
    flex-direction: column;
  }
  
  /* Filters */
  .filters {
    flex-direction: column;
  }
  
  .filter-group {
    flex: 1 1 100%;
  }
  
  /* Results bar */
  .results-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Field rows */
  .field-row {
    flex-direction: column;
  }
  
  .field-row .field-group {
    flex: 1 1 100%;
  }
  
  /* CTA buttons */
  .cta-buttons,
  .hero-cta,
  .vehicle-actions {
    flex-direction: column;
  }
  
  /* Buttons full width on mobile */
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Hours grid */
  .hours-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  /* Even smaller screens */
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .page-header {
    padding: 40px 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .benefit-card,
  .service-card,
  .vehicle-card {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 42px;
  }
}

/* ACCESSIBILITY & FOCUS STATES */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid #C8A876;
  outline-offset: 2px;
}

/* SMOOTH TRANSITIONS */
* {
  transition-property: background, color, border, transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

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

/* MODERN BOLD STYLE ENHANCEMENTS */
.benefit-card::before,
.service-card::before,
.vehicle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #C8A876;
  border-radius: 12px 0 0 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

/* HIGH CONTRAST TEXT ON TESTIMONIALS */
.testimonial-card,
.testimonial-featured {
  background: #FFFFFF;
}

.testimonial-card p,
.testimonial-featured p {
  color: #1A1A1A;
}

/* ENSURE READABILITY */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* END OF STYLES */