/* ========================================
   EuroRoute Explorer - Scandinavian Clean Design
   ======================================== */

/* 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.7;
  color: #2C3E50;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #1A252F;
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 600;
}

h1 {
  font-size: 42px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
}

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

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

a:hover {
  color: #C17B3A;
}

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

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

li {
  margin-bottom: 8px;
  color: #4A5568;
}

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

/* Header */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 20px 0;
}

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

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

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

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

.main-nav a {
  color: #2C3E50;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #2C5F8D;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #2C3E50;
  cursor: pointer;
  padding: 8px;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 101;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: #2C5F8D;
}

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C3E50;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #C17B3A;
}

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

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

.mobile-nav a:hover {
  color: #2C5F8D;
  padding-left: 8px;
}

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

.btn-primary {
  background-color: #2C5F8D;
  color: #FFFFFF;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background-color: #1E4567;
  border-color: #1E4567;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8D5B7 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  color: #1A252F;
  margin-bottom: 24px;
}

.subheadline {
  font-size: 18px;
  color: #4A5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badge {
  display: inline-block;
  background-color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  color: #2C5F8D;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Page Hero (smaller version for internal pages) */
.page-hero {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8D5B7 100%);
  padding: 60px 20px 40px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

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

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #4A5568;
}

/* Value Proposition */
.value-proposition {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 60px 40px;
}

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

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

.benefit-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background-color: #FAFAFA;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

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

/* Featured Routes / Routes Grid */
.featured-routes,
.routes-showcase {
  background-color: #FAFAFA;
}

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

.route-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.route-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.route-card h3 {
  color: #2C5F8D;
  font-size: 24px;
}

.route-details {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.route-details span {
  padding: 6px 12px;
  background-color: #F0F4F8;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #2C5F8D;
}

.route-price {
  font-size: 24px;
  font-weight: 700;
  color: #C17B3A;
  margin-top: 8px;
}

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

/* How It Works */
.how-it-works {
  background-color: #FFFFFF;
}

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

.step-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  margin-bottom: 20px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #2C5F8D;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-card h3 {
  margin-bottom: 12px;
}

/* Testimonials */
.testimonials {
  background-color: #F0F4F8;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card.featured {
  border-left: 4px solid #C17B3A;
}

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

.quote {
  font-style: italic;
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.7;
}

.author,
.author-info {
  font-weight: 600;
  color: #4A5568;
  font-size: 14px;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-info .location,
.author-info .route,
.author-info .date {
  font-weight: 400;
  font-size: 13px;
  color: #718096;
}

.verified-badge {
  display: inline-block;
  background-color: #E8D5B7;
  color: #2C5F8D;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
}

.testimonials .btn-secondary {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

/* Trust Signals */
.trust-signals {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  text-align: center;
}

.trust-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 150px;
  padding: 20px;
}

.trust-item h3 {
  font-size: 32px;
  color: #2C5F8D;
  margin-bottom: 8px;
}

.trust-item p {
  font-size: 14px;
  color: #4A5568;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2C5F8D 0%, #1E4567 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
  border-radius: 8px;
  margin: 60px 0;
}

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

.cta-section p {
  color: #E8D5B7;
  font-size: 18px;
  margin-bottom: 32px;
}

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

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

.contact-info {
  margin-top: 24px;
  font-size: 16px;
  color: #E8D5B7;
}

/* About Page - Company Story */
.company-story {
  background-color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 8px;
}

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

.timeline-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #F0F4F8;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

/* Mission Vision */
.mission-vision {
  background-color: #FAFAFA;
}

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

.mission-card,
.vision-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

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

.value-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid #C17B3A;
  margin-bottom: 20px;
}

/* Why Choose Us */
.why-choose-us {
  background-color: #FFFFFF;
}

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

.differentiator-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 32px;
  background-color: #FAFAFA;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.differentiator-card img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

/* Statistics */
.statistics {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8D5B7 100%);
  padding: 60px 20px;
}

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

.stat-card {
  flex: 1 1 calc(16.66% - 32px);
  min-width: 150px;
  text-align: center;
  padding: 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #2C5F8D;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: #4A5568;
}

/* Planning Process */
.planning-process {
  background-color: #FFFFFF;
}

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

.process-step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  padding: 32px 24px;
  background-color: #F0F4F8;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.timeline-note {
  text-align: center;
  font-style: italic;
  color: #4A5568;
  margin-top: 24px;
}

/* Best Travel Times */
.best-travel-times {
  background-color: #FAFAFA;
}

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

.season-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

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

/* Checklist */
.documents-requirements {
  background-color: #FFFFFF;
}

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

.checklist-item {
  padding: 24px;
  background-color: #F0F4F8;
  border-radius: 8px;
  border-left: 4px solid #C17B3A;
}

.checklist-item h3 {
  color: #2C5F8D;
  font-size: 20px;
  margin-bottom: 8px;
}

/* Packing Guide */
.packing-guide {
  background-color: #FAFAFA;
}

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

.packing-category {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.packing-category h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.packing-category ul {
  list-style-type: none;
  padding-left: 0;
}

.packing-category li {
  padding: 8px 0;
  border-bottom: 1px solid #E8D5B7;
}

.packing-category li:last-child {
  border-bottom: none;
}

/* Insurance Guide */
.insurance-guide {
  background-color: #FFFFFF;
}

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

.insurance-card {
  flex: 1 1 calc(33.33% - 32px);
  min-width: 250px;
  background-color: #F0F4F8;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

/* Reviews Page */
.rating-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.average-rating {
  font-size: 48px;
  font-weight: 700;
  color: #2C5F8D;
}

.total-reviews {
  font-size: 16px;
  color: #4A5568;
}

/* Trust Summary */
.trust-summary {
  background-color: #FFFFFF;
  padding: 60px 40px;
}

.rating-distribution {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 16px;
}

.rating-bar .stars {
  color: #C17B3A;
  font-size: 16px;
  min-width: 100px;
}

.rating-bar .bar {
  flex: 1;
  height: 12px;
  background-color: #E8D5B7;
  border-radius: 6px;
  overflow: hidden;
}

.rating-bar .fill {
  height: 100%;
  background-color: #C17B3A;
  border-radius: 6px;
  transition: width 0.6s ease;
}

.rating-bar .percentage {
  min-width: 50px;
  text-align: right;
  font-weight: 600;
  color: #4A5568;
}

/* Satisfaction Metrics */
.satisfaction-metrics {
  background-color: #F0F4F8;
}

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

.metric-card {
  flex: 1 1 calc(20% - 32px);
  min-width: 180px;
  text-align: center;
  padding: 32px 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.metric-score {
  font-size: 36px;
  font-weight: 700;
  color: #2C5F8D;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: #4A5568;
}

/* Review Highlights */
.review-highlights {
  background-color: #FFFFFF;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.tag {
  padding: 12px 24px;
  background-color: #E8D5B7;
  color: #2C5F8D;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.tag:hover {
  background-color: #C17B3A;
  color: #FFFFFF;
  transform: scale(1.05);
}

/* More Testimonials */
.more-testimonials {
  background-color: #FAFAFA;
}

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

.route-name {
  font-size: 13px;
  color: #2C5F8D;
  font-weight: 600;
  margin-top: 8px;
}

/* Contact Methods */
.contact-methods {
  background-color: #FFFFFF;
}

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

.method-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 220px;
  text-align: center;
  padding: 40px 24px;
  background-color: #F0F4F8;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.method-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

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

.contact-detail {
  font-weight: 600;
  color: #2C3E50;
  font-size: 16px;
  margin-bottom: 12px;
}

.availability {
  font-size: 14px;
  color: #4A5568;
}

/* Contact Form */
.contact-form-section {
  background-color: #FAFAFA;
  padding: 60px 20px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.form-fields-display {
  margin-top: 32px;
  padding: 24px;
  background-color: #F0F4F8;
  border-radius: 8px;
}

.form-fields-display ul {
  text-align: left;
  margin: 16px 0 24px;
}

/* Office Location */
.office-location {
  background-color: #FFFFFF;
}

.location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.address-details {
  flex: 1 1 300px;
}

.address-details p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* FAQ Contact */
.faq-contact {
  background-color: #FAFAFA;
}

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

.faq-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

/* Legal Content */
.legal-hero {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8D5B7 100%);
  padding: 60px 20px 40px;
  margin-bottom: 40px;
  text-align: center;
}

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

.legal-content {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

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

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid #E8D5B7;
}

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

.content-wrapper h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #2C5F8D;
}

/* 404 Error Page */
.error-hero {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8D5B7 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #2C5F8D;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.3;
}

.helpful-suggestions {
  background-color: #FFFFFF;
}

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

.suggestion-card {
  flex: 1 1 calc(33.33% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 40px 32px;
  background-color: #FAFAFA;
  border-radius: 8px;
  margin-bottom: 20px;
}

.suggestion-card h3 {
  margin-bottom: 20px;
}

.popular-pages {
  background-color: #FAFAFA;
}

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

.links-grid a {
  padding: 12px 24px;
  background-color: #FFFFFF;
  border-radius: 4px;
  color: #2C5F8D;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.links-grid a:hover {
  background-color: #2C5F8D;
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #F0F4F8 0%, #E8D5B7 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #2C5F8D;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.next-steps {
  background-color: #FFFFFF;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-step {
  padding: 24px;
  background-color: #F0F4F8;
  border-radius: 8px;
  border-left: 4px solid #2C5F8D;
}

.timeline-step h3 {
  color: #2C5F8D;
  margin-bottom: 8px;
}

.timeframe {
  font-size: 14px;
  color: #4A5568;
  font-style: italic;
  margin-top: 8px;
}

.urgent-note {
  text-align: center;
  margin-top: 32px;
  padding: 20px;
  background-color: #E8D5B7;
  border-radius: 8px;
}

.while-waiting {
  background-color: #FAFAFA;
}

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

.action-card {
  flex: 1 1 calc(33.33% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.action-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

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

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: 32px;
}

.contact-method {
  text-align: center;
  flex: 1 1 calc(33.33% - 32px);
  min-width: 200px;
}

.contact-method h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.hours {
  font-size: 14px;
  color: #4A5568;
}

.explore-more {
  background-color: #FAFAFA;
}

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

.explore-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  text-align: center;
  padding: 40px 32px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

/* Route Planning Tips */
.route-planning-tips {
  background-color: #FAFAFA;
}

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

.tip-card {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.tip-card h3 {
  color: #2C5F8D;
  margin-bottom: 12px;
}

.route-planning-tips .btn-secondary {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

/* Custom Route CTA */
.custom-route-cta {
  background: linear-gradient(135deg, #2C5F8D 0%, #1E4567 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
}

.custom-route-cta h2 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.custom-route-cta p {
  color: #E8D5B7;
  margin-bottom: 24px;
}

.custom-route-cta .btn-primary {
  background-color: #C17B3A;
  border-color: #C17B3A;
}

.custom-route-cta .btn-primary:hover {
  background-color: #9F6330;
  border-color: #9F6330;
}

/* Footer */
footer {
  background-color: #1A252F;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

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

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

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #2C3E50;
}

.footer-bottom p {
  color: #718096;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  white-space: nowrap;
}

.cookie-accept {
  background-color: #2C5F8D;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background-color: #1E4567;
}

.cookie-reject {
  background-color: #E2E8F0;
  color: #2C3E50;
}

.cookie-reject:hover {
  background-color: #CBD5E0;
}

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

.cookie-settings:hover {
  background-color: #2C5F8D;
  color: #FFFFFF;
}

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

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h2 {
  color: #2C5F8D;
  margin-bottom: 0;
}

.cookie-close {
  background-color: transparent;
  border: none;
  font-size: 28px;
  color: #4A5568;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.cookie-close:hover {
  color: #2C3E50;
}

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

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

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

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
}

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

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

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

input:checked + .cookie-slider {
  background-color: #2C5F8D;
}

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

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

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

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

.cookie-modal-actions .btn {
  flex: 1;
  min-width: 150px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 { font-size: 38px; }
  h2 { font-size: 28px; }
  
  .benefits-grid .benefit-card,
  .differentiators-grid .differentiator-card,
  .seasons-grid .season-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  .trust-item,
  .stat-card,
  .method-card {
    flex: 1 1 calc(33.33% - 32px);
  }
}

@media (max-width: 768px) {
  /* Mobile menu visibility */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .page-hero h1 { font-size: 32px; }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Grids - Full width on mobile */
  .benefits-grid .benefit-card,
  .routes-grid .route-card,
  .steps-grid .step-card,
  .testimonials-grid .testimonial-card,
  .differentiators-grid .differentiator-card,
  .seasons-grid .season-card,
  .packing-categories .packing-category,
  .insurance-types .insurance-card,
  .methods-grid .method-card,
  .suggestions-grid .suggestion-card,
  .actions-grid .action-card,
  .explore-grid .explore-card,
  .tips-grid .tip-card,
  .mission-grid .mission-card,
  .mission-grid .vision-card {
    flex: 1 1 100%;
  }
  
  .trust-item,
  .stat-card,
  .timeline-item,
  .value-card,
  .process-step,
  .metric-card {
    flex: 1 1 calc(50% - 32px);
  }
  
  /* Sections */
  section {
    padding: 30px 16px;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  .footer-content {
    gap: 32px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  /* Differentiator cards - stack icon and text on mobile */
  .differentiator-card {
    flex-direction: column;
    text-align: center;
  }
  
  .differentiator-card img {
    margin: 0 auto 16px;
  }
}

@media (max-width: 480px) {
  /* Even smaller screens */
  h1 { font-size: 28px; }
  .hero h1 { font-size: 32px; }
  
  .container {
    padding: 0 16px;
  }
  
  .trust-item,
  .stat-card,
  .timeline-item,
  .value-card,
  .process-step,
  .metric-card {
    flex: 1 1 100%;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  .value-proposition,
  .company-story {
    padding: 40px 20px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}