/* ============================================
   SWISSLUXDRIVE - MODERN BOLD LUXURY CSS
   Design Style: Modern Bold - High contrast, strong typography, geometric shapes
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
  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, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  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, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY - MODERN BOLD STYLE
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a1a1a;
}

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

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

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

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

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

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ============================================
   BUTTONS - BOLD MODERN DESIGN
   ============================================ */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #c9a961;
  color: #1a1a1a;
  border-color: #c9a961;
}

.btn-primary:hover {
  background-color: #1a1a1a;
  color: #c9a961;
  border-color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  background-color: #1a1a1a;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-toggle:hover {
  background-color: #1a1a1a;
  color: #c9a961;
  transform: scale(1.1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #c9a961;
  color: #1a1a1a;
  border: none;
  width: 45px;
  height: 45px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
  font-weight: 700;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px 0;
  border-bottom: 2px solid rgba(201, 169, 97, 0.3);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #c9a961;
  padding-left: 10px;
  border-left: 4px solid #c9a961;
}

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

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

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

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

.hero-subtitle {
  font-size: 24px;
  color: #c9a961;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.hero-cta .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero-cta .btn-secondary:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(201, 169, 97, 0.3);
}

.trust-badges span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c9a961;
  padding: 8px 16px;
  background-color: rgba(201, 169, 97, 0.1);
  border: 2px solid #c9a961;
}

/* ============================================
   PAGE HERO - SUBPAGES
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 4px solid #c9a961;
}

.page-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  font-size: 20px;
  color: #c9a961;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   SERVICES GRID - FLEXBOX LAYOUT
   ============================================ */
.services-preview,
.services,
.fleet {
  margin-bottom: 60px;
}

.services-preview h2,
.services h2,
.fleet h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

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

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

.service-card,
.vehicle-card,
.route-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 4px solid #1a1a1a;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.vehicle-card::before,
.route-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #c9a961 0%, #1a1a1a 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card:hover,
.vehicle-card:hover,
.route-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  border-color: #c9a961;
}

.service-card h3,
.vehicle-card h3,
.route-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #1a1a1a;
  font-weight: 700;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #c9a961;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specs {
  font-size: 14px;
  color: #666666;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card p,
.vehicle-card p,
.route-card p {
  color: #444444;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

/* ============================================
   SERVICE DETAIL SECTIONS
   ============================================ */
.service-detail {
  background-color: #f8f8f8;
  border-left: 8px solid #c9a961;
  padding: 40px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  background-color: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(8px);
}

.service-detail h2 {
  font-size: 32px;
  margin-bottom: 12px;
  text-align: left;
}

.tagline {
  font-size: 18px;
  color: #666666;
  font-style: italic;
  margin-bottom: 16px;
}

.service-detail .price {
  font-size: 24px;
  margin-bottom: 20px;
  display: block;
}

/* ============================================
   VALUES & FEATURES - FLEXBOX GRID
   ============================================ */
.values,
.features {
  background-color: #f8f8f8;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.values h2,
.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #ffffff;
  padding: 32px;
  border: 3px solid #1a1a1a;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-item:hover {
  border-color: #c9a961;
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.value-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #c9a961;
  font-weight: 700;
}

.value-item p {
  color: #444444;
  line-height: 1.7;
}

.features-list {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border: 4px solid #1a1a1a;
}

.features-list li {
  font-size: 18px;
  color: #333333;
  margin-bottom: 16px;
  padding-left: 32px;
  position: relative;
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c9a961;
  font-weight: 700;
  font-size: 24px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST DESIGN
   ============================================ */
.testimonials {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 500px;
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 32px;
  border: 4px solid #c9a961;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: #c9a961;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.author {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rating {
  color: #c9a961;
  font-size: 18px;
  font-weight: 700;
}

.trust-metrics {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(201, 169, 97, 0.3);
}

.trust-metrics span {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #c9a961;
  padding: 12px 24px;
  background-color: rgba(201, 169, 97, 0.1);
  border: 2px solid #c9a961;
}

/* ============================================
   ROUTES SECTION
   ============================================ */
.featured-route {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 48px;
  margin-bottom: 48px;
  border: 4px solid #c9a961;
  position: relative;
}

.badge {
  display: inline-block;
  background-color: #c9a961;
  color: #1a1a1a;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.featured-route h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 12px;
}

.route-subtitle {
  font-size: 20px;
  color: #c9a961;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.route-specs {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-route p {
  color: #e0e0e0;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================
   CONSULTATION & CTA SECTIONS
   ============================================ */
.consultation,
.route-service,
.cta-section,
.cta-banner {
  background-color: #c9a961;
  color: #1a1a1a;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-top: 8px solid #1a1a1a;
  border-bottom: 8px solid #1a1a1a;
}

.consultation h2,
.route-service h2,
.cta-section h2,
.cta-banner h2 {
  color: #1a1a1a;
  font-size: 36px;
  margin-bottom: 16px;
}

.consultation p,
.route-service p,
.cta-section p,
.cta-banner p {
  color: #1a1a1a;
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 600;
}

.cta-banner a {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 700;
}

.cta-banner a:hover {
  color: #ffffff;
}

.note {
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
  justify-content: space-between;
}

.contact-method {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #f8f8f8;
  padding: 32px;
  border-left: 6px solid #c9a961;
  margin-bottom: 20px;
}

.contact-method h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1a1a1a;
}

.contact-method p {
  color: #444444;
  line-height: 1.7;
}

.contact-method a {
  color: #c9a961;
  font-weight: 700;
  text-decoration: underline;
}

.contact-method a:hover {
  color: #1a1a1a;
}

.office-info,
.service-locations {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 40px;
  border: 3px solid #1a1a1a;
}

.office-info h2,
.service-locations h2 {
  font-size: 28px;
  margin-bottom: 24px;
  text-align: left;
}

.service-locations ul {
  list-style: none;
}

.service-locations li {
  padding: 12px 0;
  border-bottom: 2px solid #f0f0f0;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}

.service-locations li:last-child {
  border-bottom: none;
}

.faq {
  margin-top: 48px;
}

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

.faq-item {
  background-color: #f8f8f8;
  padding: 24px;
  margin-bottom: 16px;
  border-left: 6px solid #c9a961;
}

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

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

/* ============================================
   ABOUT PAGE
   ============================================ */
.story,
.awards,
.location {
  margin-bottom: 60px;
}

.story h2,
.awards h2,
.location h2 {
  font-size: 36px;
  margin-bottom: 24px;
  text-align: center;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
}

.awards {
  background-color: #f8f8f8;
  padding: 60px 20px;
}

.awards ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
}

.awards li {
  background-color: #ffffff;
  padding: 20px 24px;
  margin-bottom: 16px;
  border-left: 6px solid #c9a961;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.location {
  text-align: center;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px;
}

.location h2 {
  color: #ffffff;
}

.location p {
  color: #e0e0e0;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */
.thank-you {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-you h1 {
  font-size: 48px;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.thank-you .subtitle {
  font-size: 20px;
  color: #c9a961;
  font-weight: 700;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.thank-you h2 {
  font-size: 32px;
  margin: 48px 0 24px;
  text-align: center;
}

.thank-you ol {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 48px;
  list-style-position: outside;
  padding-left: 24px;
}

.thank-you li {
  font-size: 18px;
  color: #333333;
  margin-bottom: 16px;
  line-height: 1.7;
  padding-left: 8px;
}

.suggestions {
  margin: 48px 0;
}

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

.suggestion-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  max-width: 400px;
  background-color: #f8f8f8;
  padding: 32px;
  border: 3px solid #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
}

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

.suggestion-card p {
  margin-bottom: 24px;
}

.contact-reminder {
  background-color: #c9a961;
  padding: 40px;
  margin: 48px 0;
  border: 4px solid #1a1a1a;
}

.contact-reminder h2 {
  color: #1a1a1a;
  margin-bottom: 16px;
}

.contact-reminder p {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
}

.contact-reminder a {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 700;
}

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

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding: 40px 20px;
  margin-bottom: 60px;
}

.legal-page h1 {
  font-size: 42px;
  margin-bottom: 32px;
  text-align: center;
  color: #1a1a1a;
}

.legal-page h2 {
  font-size: 28px;
  margin: 40px 0 16px;
  color: #1a1a1a;
  border-bottom: 3px solid #c9a961;
  padding-bottom: 8px;
}

.legal-page h3 {
  font-size: 22px;
  margin: 24px 0 12px;
  color: #333333;
}

.legal-page p {
  color: #444444;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 900px;
}

.legal-page a {
  color: #c9a961;
  text-decoration: underline;
  font-weight: 600;
}

.legal-page a:hover {
  color: #1a1a1a;
}

.legal-page ul,
.legal-page ol {
  margin-bottom: 24px;
  padding-left: 32px;
}

.legal-page li {
  margin-bottom: 12px;
  color: #444444;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 6px solid #c9a961;
}

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

.footer-col {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #c9a961;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col a {
  display: block;
  color: #cccccc;
  font-size: 14px;
  padding: 8px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-col a:hover {
  color: #c9a961;
  padding-left: 8px;
  border-bottom-color: #c9a961;
}

.footer-bottom {
  border-top: 2px solid rgba(201, 169, 97, 0.3);
  padding-top: 24px;
  text-align: center;
}

.legal-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.legal-links a {
  color: #cccccc;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #c9a961;
}

.footer-bottom p {
  color: #999999;
  font-size: 13px;
  margin-top: 16px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #c9a961;
}

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

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

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

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #c9a961;
  background-color: transparent;
  color: #c9a961;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background-color: #c9a961;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.cookie-btn.accept {
  background-color: #c9a961;
  color: #1a1a1a;
}

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

/* Cookie Settings Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1002;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #c9a961;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #1a1a1a;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}

.cookie-modal-close:hover {
  color: #c9a961;
}

.cookie-modal-content h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background-color: #f8f8f8;
  border-left: 4px solid #c9a961;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.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: #cccccc;
  transition: 0.3s;
  border: 2px solid #1a1a1a;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #1a1a1a;
  transition: 0.3s;
}

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

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

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

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Typography Adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
  
  /* Show Mobile Menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide Desktop Navigation */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Header Adjustments */
  header {
    padding: 12px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Grid Layouts */
  .services-grid,
  .vehicle-grid,
  .route-grid {
    flex-direction: column;
  }
  
  .service-card,
  .vehicle-card,
  .route-card {
    flex: 1 1 100%;
  }
  
  .values-grid {
    flex-direction: column;
  }
  
  .value-item {
    flex: 1 1 100%;
  }
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .trust-metrics {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Contact Methods */
  .contact-methods {
    flex-direction: column;
  }
  
  .contact-method {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Thank You Page */
  .suggestion-grid {
    flex-direction: column;
  }
  
  .suggestion-card {
    flex: 1 1 100%;
  }
  
  /* Sections */
  section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }
  
  .service-detail,
  .featured-route {
    padding: 24px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card,
  .vehicle-card,
  .route-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .value-item {
    flex: 1 1 calc(50% - 16px);
  }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */
@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);
  }
}

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

.mt-small {
  margin-top: 16px;
}

.mt-medium {
  margin-top: 32px;
}

.mt-large {
  margin-top: 48px;
}

.mb-small {
  margin-bottom: 16px;
}

.mb-medium {
  margin-bottom: 32px;
}

.mb-large {
  margin-bottom: 48px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    font-size: 12pt;
    color: #000000;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */
:focus {
  outline: 3px solid #c9a961;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  body {
    background-color: #ffffff;
    color: #000000;
  }
  
  .btn-primary,
  .btn-secondary {
    border-width: 3px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* END OF STYLESHEET */