/* =================================
   QUANTIC ARC - SCANDINAVIAN CLEAN DESIGN
   Luxus-Kreuzfahrten am Vierwaldstättersee
   ================================= */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

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

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #D4AF37;
}

ul {
  list-style: none;
}

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

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

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

/* SCANDINAVIAN BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 0.3px;
  background-color: #1B4B7F;
  color: #FFFFFF;
}

.btn:hover {
  background-color: #164169;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 75, 127, 0.2);
  color: #FFFFFF;
}

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

.btn-primary:hover {
  background-color: #164169;
  color: #FFFFFF;
}

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

.btn-secondary:hover {
  background-color: #1B4B7F;
  color: #FFFFFF;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1B4B7F;
  color: #FFFFFF;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: 1002;
  transition: right 0.4s ease;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  padding: 80px 0 40px;
  overflow-y: auto;
}

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

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

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

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

.mobile-nav a:hover {
  background-color: #F7FAFC;
  color: #1B4B7F;
  padding-left: 40px;
}

/* HEADER */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

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

.logo {
  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: 16px;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D4AF37;
  transition: width 0.3s ease;
}

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

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

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 48px;
  color: #1B4B7F;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 20px;
  color: #4A5568;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  padding: 60px 20px 40px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero-minimal {
  background-color: #F7FAFC;
  padding: 40px 20px 32px;
  margin-bottom: 40px;
}

.breadcrumb {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
  display: block;
  text-align: left;
}

.breadcrumb a {
  color: #718096;
}

.breadcrumb a:hover {
  color: #1B4B7F;
}

/* VALUE PROPOSITION */
.value-proposition {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

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

.benefit-card {
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  padding: 32px 24px;
  background-color: #FAFAFA;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.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 24px;
}

.benefit-card h3 {
  margin-bottom: 16px;
  color: #1B4B7F;
}

.benefit-card p {
  color: #4A5568;
  line-height: 1.7;
}

/* SERVICES PREVIEW & GRID */
.services-preview {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #718096;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 340px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.service-card h3 {
  color: #1B4B7F;
  margin-bottom: 12px;
}

.service-card p {
  color: #4A5568;
  flex-grow: 1;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin: 8px 0;
}

.service-card .btn {
  margin-top: auto;
  width: 100%;
}

.link-more {
  display: inline-block;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  color: #1B4B7F;
  transition: all 0.3s ease;
}

.link-more:hover {
  color: #D4AF37;
  transform: translateX(4px);
}

/* SERVICES DETAILED */
.services-grid-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-card-large {
  background-color: #FAFAFA;
  padding: 40px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

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

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

.service-card-large h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.highlights {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.highlights li {
  flex: 1 1 200px;
  padding: 12px 16px;
  background-color: #FFFFFF;
  border-left: 3px solid #D4AF37;
  font-size: 14px;
  color: #4A5568;
}

.duration {
  font-size: 14px;
  color: #718096;
  margin: 16px 0;
}

/* EXPERIENCE HIGHLIGHTS */
.experience-highlights {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}

.two-column .content {
  flex: 1 1 500px;
}

.feature-list {
  margin: 24px 0;
}

.feature-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #4A5568;
  line-height: 1.7;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

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

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

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

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #D4AF37;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card .customer-name {
  font-weight: 600;
  color: #1B4B7F;
  margin-bottom: 4px;
}

.testimonial-card .customer-location,
.testimonial-card .event-date {
  font-size: 14px;
  color: #718096;
}

/* STATS SECTION */
.stats {
  padding: 60px 20px;
  background-color: #1B4B7F;
  color: #FFFFFF;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.stat-item {
  text-align: center;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  font-size: 16px;
  color: #FFFFFF;
  opacity: 0.9;
}

/* CTA BANNER */
.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1B4B7F 0%, #164169 100%);
  text-align: center;
  color: #FFFFFF;
}

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

.cta-banner p {
  color: #FFFFFF;
  opacity: 0.9;
  margin-bottom: 32px;
  font-size: 18px;
}

.cta-banner .btn-primary {
  background-color: #D4AF37;
  color: #1B4B7F;
}

.cta-banner .btn-primary:hover {
  background-color: #C19B2E;
  color: #1B4B7F;
}

.cta-banner .btn-secondary {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.cta-banner .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1B4B7F;
}

/* EXPERIENCE CATEGORIES */
.experience-categories {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.category-card {
  flex: 1 1 320px;
  background-color: #FAFAFA;
  padding: 40px 32px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.category-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.category-card h3 {
  color: #1B4B7F;
}

.category-card ul {
  margin: 16px 0;
}

.category-card ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A5568;
  font-size: 14px;
}

.category-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 20px;
}

/* PLANNING PROCESS */
.planning-process {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

.steps-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.step {
  flex: 1 1 240px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.step-number {
  font-size: 40px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.step h3 {
  color: #1B4B7F;
}

/* COMPANY STORY */
.company-story {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 24px;
  line-height: 1.8;
}

/* MISSION VALUES */
.mission-values {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

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

.value-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
}

/* FLEET SHOWCASE */
.fleet-showcase {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.fleet-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.ship-card {
  flex: 1 1 450px;
  background-color: #FAFAFA;
  padding: 40px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ship-card h3 {
  color: #1B4B7F;
  margin-bottom: 8px;
}

.specs {
  font-size: 14px;
  color: #718096;
  margin-bottom: 16px;
}

.ship-card ul {
  margin-top: 16px;
}

.ship-card ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4A5568;
  font-size: 14px;
}

.ship-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

/* SUSTAINABILITY */
.sustainability {
  padding: 60px 20px;
  background-color: #F7FAFC;
  text-align: center;
}

.sustainability-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.metric {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.metric .value {
  font-size: 48px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
}

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

/* GALLERY SECTIONS */
.gallery-intro {
  padding: 40px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

.seasonal-gallery {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

.seasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.season-card {
  flex: 1 1 260px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

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

.season-card h3 {
  color: #1B4B7F;
  margin-bottom: 12px;
}

.season-card .highlight {
  color: #D4AF37;
  font-weight: 600;
  margin-top: 16px;
}

/* LANDMARKS */
.landmarks {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.landmarks-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.landmark-card {
  flex: 1 1 260px;
  background-color: #FAFAFA;
  padding: 32px 24px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

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

.landmark-card h3 {
  color: #1B4B7F;
  margin-bottom: 12px;
}

/* BOOKING SECTIONS */
.booking-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.booking-info {
  max-width: 1000px;
  margin: 0 auto;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}

.trust-badges span {
  padding: 8px 20px;
  background-color: #E8F4F8;
  color: #1B4B7F;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
}

.services-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.service-option {
  flex: 1 1 300px;
  background-color: #FAFAFA;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.service-option h3 {
  color: #1B4B7F;
}

.service-option .btn {
  margin-top: auto;
  width: 100%;
}

/* BOOKING FAQ */
.booking-faq, .booking-info, .contact-faq {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

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

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

.faq-item h4 {
  color: #1B4B7F;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4A5568;
  line-height: 1.7;
}

/* TRUST SECTION */
.trust-section {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.trust-item {
  flex: 1 1 280px;
  text-align: center;
  padding: 32px 24px;
  background-color: #FAFAFA;
  border-radius: 2px;
}

.trust-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.trust-item h3 {
  color: #1B4B7F;
  font-size: 18px;
  margin-bottom: 8px;
}

/* CONTACT SECTIONS */
.contact-methods {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.contact-card {
  flex: 1 1 350px;
  background-color: #FAFAFA;
  padding: 40px 32px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: all 0.3s ease;
}

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

.contact-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
}

.contact-card h3 {
  color: #1B4B7F;
  margin-bottom: 16px;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

.form-notice {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px;
  background-color: #E8F4F8;
  border-left: 4px solid #1B4B7F;
  border-radius: 2px;
}

.form-notice p {
  margin-bottom: 12px;
}

.form-notice a {
  color: #1B4B7F;
  font-weight: 600;
  text-decoration: underline;
}

/* OFFICE HOURS */
.office-hours {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.hours-table {
  max-width: 600px;
  margin: 40px auto 0;
}

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

.hours-row .day {
  font-weight: 600;
  color: #2C3E50;
}

.hours-row .time {
  color: #1B4B7F;
  font-weight: 500;
}

.hours-table .note {
  margin-top: 24px;
  font-size: 14px;
  color: #718096;
  font-style: italic;
  text-align: center;
}

/* LOCATION MAP */
.location-map {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

.arrival-info {
  max-width: 800px;
  margin: 40px auto 0;
}

.arrival-info h3 {
  color: #1B4B7F;
  margin-top: 32px;
  margin-bottom: 12px;
}

/* LEGAL SECTIONS */
.legal-hero {
  background-color: #F7FAFC;
  padding: 40px 20px 32px;
  text-align: center;
  margin-bottom: 40px;
}

.last-updated {
  font-size: 14px;
  color: #718096;
  margin-top: 8px;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
}

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

.legal-content ul {
  margin: 16px 0 16px 32px;
}

.legal-content ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #4A5568;
}

.legal-links {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #E2E8F0;
}

.legal-links h3 {
  margin-bottom: 16px;
  color: #1B4B7F;
}

.legal-links a {
  display: block;
  padding: 12px 0;
  color: #1B4B7F;
  font-weight: 500;
  border-bottom: 1px solid #F7FAFC;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  padding-left: 8px;
  color: #D4AF37;
}

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

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

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 20px;
  color: #1B4B7F;
  margin-bottom: 24px;
}

/* NEXT STEPS */
.next-steps {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  flex: 1 1 260px;
  background-color: #FAFAFA;
  padding: 32px 24px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.step-card .step-number {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  font-family: 'Playfair Display', serif;
}

.step-card h3 {
  color: #1B4B7F;
}

/* IMPORTANT INFO */
.important-info {
  padding: 60px 20px;
  background-color: #F7FAFC;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.info-card {
  flex: 1 1 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.info-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

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

/* CONTACT SUPPORT */
.contact-support {
  padding: 60px 20px;
  background-color: #FFFFFF;
  text-align: center;
}

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

.contact-method {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 24px;
  background-color: #FAFAFA;
  border-radius: 2px;
}

.contact-method img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

/* RETURN HOME */
.return-home {
  padding: 40px 20px;
  text-align: center;
  background-color: #F7FAFC;
}

/* CTA SECTION */
.cta-section, .contact-cta {
  padding: 80px 20px;
  background-color: #1B4B7F;
  text-align: center;
  color: #FFFFFF;
}

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

.cta-section p,
.contact-cta p {
  color: #FFFFFF;
  opacity: 0.9;
  margin-bottom: 32px;
  font-size: 18px;
}

.contact-cta .features {
  max-width: 500px;
  margin: 24px auto 32px;
  text-align: left;
}

.contact-cta .features li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #FFFFFF;
}

.contact-cta .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

/* FOOTER */
footer {
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 60px 20px 24px;
}

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

.footer-col {
  flex: 1 1 220px;
}

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

.footer-col h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col p {
  color: #CBD5E0;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-col a {
  display: block;
  color: #CBD5E0;
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #D4AF37;
  padding-left: 4px;
}

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

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

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

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

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  color: #4A5568;
  font-size: 14px;
}

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

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

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

.btn-cookie-reject {
  background-color: transparent;
  color: #718096;
  border: 1px solid #E2E8F0;
}

.btn-cookie-settings {
  background-color: transparent;
  color: #1B4B7F;
  border: 1px solid #1B4B7F;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

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

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

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E2E8F0;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

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

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

.cookie-toggle.active {
  background-color: #1B4B7F;
}

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

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

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

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

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

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

  .main-nav {
    display: none;
  }

  header .container {
    justify-content: center;
  }

  .hero {
    padding: 60px 20px;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .benefits-grid,
  .services-grid,
  .values-grid,
  .categories-grid,
  .steps-timeline,
  .fleet-grid,
  .stats-grid {
    flex-direction: column;
  }

  .two-column {
    flex-direction: column;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }

  .cookie-banner .container {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }

  .stat-number {
    font-size: 36px;
  }

  .service-card-large {
    padding: 24px;
  }

  .highlights {
    flex-direction: column;
  }
}

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

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

  .cookie-modal-content {
    padding: 24px;
  }

  .mobile-menu {
    width: 100%;
  }
}

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

.benefit-card,
.service-card,
.value-card,
.category-card {
  animation: fadeIn 0.6s ease forwards;
}

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

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

/* ACCESSIBILITY */
.btn:focus,
a:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

.mobile-menu-toggle:focus {
  outline: 2px solid #1B4B7F;
}

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