/* ============================================================
   EPIC RIDES — Main Stylesheet
   Color Palette:
     Primary blue: #003c6d
     Accent orange: #ff6900
     Cyan blue: #0693e3
     Red: #cf2e2e
     Gray: #abb8c3
     Dark text: #333333
     Light bg: #f5f5f5
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  line-height: 1.6;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #0693e3;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #003c6d;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  color: #003c6d;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: #003c6d;
  color: #ffffff;
  border-color: #003c6d;
}

.btn-primary:hover {
  background: #002a4d;
  border-color: #002a4d;
  color: #ffffff;
}

.btn-accent {
  background: #ff6900;
  color: #ffffff;
  border-color: #ff6900;
}

.btn-accent:hover {
  background: #e05e00;
  border-color: #e05e00;
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #003c6d;
  border-color: #003c6d;
}

.btn-outline:hover {
  background: #003c6d;
  color: #ffffff;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.2rem;
}

/* ---- FLASH MESSAGES ---- */
.flash {
  padding: 14px 0;
  font-weight: 500;
  text-align: center;
}

.flash--success {
  background: #d4edda;
  color: #155724;
  border-bottom: 2px solid #28a745;
}

.flash--error {
  background: #f8d7da;
  color: #721c24;
  border-bottom: 2px solid #cf2e2e;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

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

/* ---- NAV ---- */
.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  color: #333333;
  font-weight: 500;
  font-size: 0.92rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #003c6d;
  background: #f0f4f8;
}

.nav-link--cta {
  background: #ff6900;
  color: #ffffff !important;
  border-radius: 5px;
  font-weight: 700;
  padding: 10px 20px;
}

.nav-link--cta:hover {
  background: #e05e00;
  color: #ffffff !important;
}

/* ---- SERVICES DROPDOWN ---- */
.nav-dropdown-wrap {
  position: relative;
}

.arrow-down {
  font-size: 0.7em;
  margin-left: 2px;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  padding: 8px 0;
  z-index: 100;
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  color: #333333;
  font-size: 0.9rem;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown li a:hover {
  background: #f0f4f8;
  color: #003c6d;
}

.nav-dropdown-wrap:hover .nav-dropdown,
.nav-dropdown-wrap.open .nav-dropdown {
  display: block;
}

/* ---- MOBILE HAMBURGER ---- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  z-index: 210;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #003c6d;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: url('/assets/whistler-winter.jpg') center/cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 30, 60, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 60px 20px;
}

.hero-route {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

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

.price-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 14px 24px;
  text-align: center;
  min-width: 160px;
}

.price-badge .price-amount {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}

.price-badge .price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.hero-cta {
  display: inline-block;
  background: #ff6900;
  color: #ffffff;
  padding: 16px 48px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 0.25s, transform 0.2s;
}

.hero-cta:hover {
  background: #e05e00;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================================
   FEATURES GRID
   ============================================================ */
.features-section {
  padding: 70px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #003c6d;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 48px;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 30px 18px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e8edf2;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 60, 109, 0.1);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #003c6d;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ============================================================
   QUICK FACTS
   ============================================================ */
.quick-facts-section {
  padding: 60px 0;
  background: #f5f5f5;
}

.quick-facts-list {
  max-width: 800px;
  margin: 36px auto 0;
}

.quick-facts-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  font-size: 1.05rem;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

.quick-facts-list li:last-child {
  border-bottom: none;
}

.quick-facts-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #ff6900;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================================
   TESTIMONIALS SLIDER
   ============================================================ */
.testimonials-section {
  padding: 70px 0;
  background: #ffffff;
}

.testimonial-slider {
  position: relative;
  max-width: 750px;
  margin: 40px auto 0;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 20px;
  text-align: center;
}

.testimonial-card {
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 40px 36px;
}

.testimonial-stars {
  color: #ff6900;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 700;
  color: #003c6d;
  font-size: 1rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.slider-arrow {
  background: #003c6d;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.slider-arrow:hover {
  background: #0693e3;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #abb8c3;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}

.slider-dot.active {
  background: #003c6d;
}

/* ============================================================
   DID YOU KNOW SLIDER
   ============================================================ */
.did-you-know-section {
  padding: 60px 0;
  background: #003c6d;
  color: #ffffff;
  text-align: center;
}

.did-you-know-section .section-title {
  color: #ffffff;
}

.dyk-slider {
  position: relative;
  max-width: 700px;
  margin: 30px auto 0;
  min-height: 80px;
}

.dyk-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding: 0 20px;
}

.dyk-slide.active {
  opacity: 1;
}

.dyk-slide p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

.dyk-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.dyk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.dyk-dot.active {
  background: #ff6900;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 70px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #003c6d;
  color: #ffffff;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}

.footer-logo {
  height: 45px;
  margin-bottom: 12px;
}

.footer-tagline {
  opacity: 0.85;
  font-size: 0.95rem;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #ff6900;
}

.footer-col ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transition: background 0.2s;
}

.social-icons a:hover {
  background: #ff6900;
}

.social-icons img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 16px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #ff6900;
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-header {
  background: #003c6d;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.page-header h1 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.page-header p {
  opacity: 0.85;
  font-size: 1.1rem;
  margin: 0;
}

/* ============================================================
   SCHEDULE PAGE
   ============================================================ */
.schedule-section {
  padding: 60px 0;
}

.schedule-direction {
  margin-bottom: 50px;
}

.schedule-direction h2 {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.schedule-table thead {
  background: #003c6d;
  color: #ffffff;
}

.schedule-table th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.92rem;
}

.schedule-table td {
  padding: 14px 18px;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.schedule-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.schedule-table tbody tr:hover {
  background: #edf2f7;
}

.schedule-table .price {
  font-weight: 700;
  color: #003c6d;
}

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */
.locations-section {
  padding: 60px 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.location-card {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 60, 109, 0.1);
}

.location-card .location-city {
  display: inline-block;
  background: #003c6d;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.location-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.location-card .location-address {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.location-card .location-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section {
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e8edf2;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  background: #ffffff;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #003c6d;
  font-family: inherit;
  transition: background 0.15s;
  gap: 12px;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-toggle {
  font-size: 1.3rem;
  color: #ff6900;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: #555;
  line-height: 1.7;
  font-size: 0.98rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}

.contact-info-card {
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 36px;
}

.contact-info-card h3 {
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item strong {
  display: block;
  color: #003c6d;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-info-item span {
  color: #555;
  font-size: 0.95rem;
}

.contact-form {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-form h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #003c6d;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0693e3;
  box-shadow: 0 0 0 3px rgba(6, 147, 227, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================================
   BOOKING PAGE
   ============================================================ */
.booking-section {
  padding: 60px 0;
}

.booking-container {
  max-width: 750px;
  margin: 0 auto;
}

/* Old stepper styles removed — replaced by .booking-stepper / .stepper-step */

.booking-form-card {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.booking-form-card h2 {
  margin-bottom: 8px;
}

.booking-form-card .form-section-desc {
  color: #666;
  margin-bottom: 28px;
}

/* Payment Card Mockup */
.payment-card-mock {
  background: linear-gradient(135deg, #003c6d, #0693e3);
  border-radius: 12px;
  padding: 28px;
  color: #ffffff;
  position: relative;
  margin-bottom: 28px;
  max-width: 380px;
  overflow: hidden;
}

.payment-card-mock::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.demo-badge {
  display: inline-block;
  background: #ff6900;
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.card-number-mock {
  font-size: 1.3rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-family: monospace;
}

.card-details-mock {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  opacity: 0.85;
}

.booking-price-summary {
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.booking-price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
}

.booking-price-row.total {
  border-top: 2px solid #003c6d;
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  color: #003c6d;
}

/* ============================================================
   BOOKING CONFIRMATION
   ============================================================ */
.confirmation-section {
  padding: 60px 0;
  text-align: center;
}

.confirmation-card {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.confirmation-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.confirmation-card h1 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.confirmation-ref {
  font-size: 1.4rem;
  font-weight: 800;
  color: #003c6d;
  background: #edf2f7;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 6px;
  letter-spacing: 1px;
  margin: 16px 0;
}

.confirmation-details {
  text-align: left;
  margin: 28px 0;
}

.confirmation-details dt {
  font-weight: 600;
  color: #003c6d;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.confirmation-details dd {
  margin-bottom: 16px;
  color: #555;
  font-size: 1rem;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  padding: 100px 0;
  text-align: center;
}

.error-page h1 {
  font-size: 4rem;
  margin-bottom: 16px;
}

.error-page p {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 28px;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 30px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }

  /* Header */
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s ease;
    z-index: 200;
    padding: 80px 20px 30px;
    overflow-y: auto;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    padding: 12px 16px;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link--cta {
    margin-top: 12px;
    text-align: center;
  }

  /* Dropdown in mobile */
  .nav-dropdown-wrap:hover .nav-dropdown {
    display: none;
  }

  .nav-dropdown-wrap.open .nav-dropdown {
    display: block;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    background: #f8fafc;
    border-radius: 0;
    padding: 0;
  }

  .nav-dropdown li a {
    padding: 10px 30px;
    font-size: 0.9rem;
  }

  /* Mobile overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 190;
  }

  .mobile-overlay.active {
    display: block;
  }

  /* Hero */
  .hero-section {
    min-height: 420px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .price-badge {
    min-width: 130px;
    padding: 10px 16px;
  }

  .price-badge .price-amount {
    font-size: 1.5rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .feature-card {
    padding: 20px 14px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Schedule table */
  .schedule-table {
    font-size: 0.85rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 10px 12px;
  }

  /* Booking */
  .booking-steps {
    flex-wrap: wrap;
    gap: 8px;
  }

  .booking-step {
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .booking-step:not(:last-child)::after {
    width: 20px;
  }

  .booking-form-card {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Locations */
  .locations-grid {
    grid-template-columns: 1fr;
  }

  /* Page header */
  .page-header {
    padding: 28px 0;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  /* FAQ */
  .faq-section {
    padding: 40px 20px;
  }

  .faq-question {
    padding: 14px 18px;
    font-size: 0.95rem;
  }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-orange { color: #ff6900; }
.text-blue { color: #003c6d; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

/* ---- Loading / spinner ---- */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   BOOKING PAGE (existing template classes)
   ============================================================ */
.booking-hero {
  background: #003c6d;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
}

.booking-hero h1 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.booking-hero p {
  opacity: 0.85;
  font-size: 1.1rem;
  margin: 0;
}

/* Stepper */
.booking-stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 40px 0 36px;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #abb8c3;
  font-weight: 600;
  font-size: 0.92rem;
}

.stepper-step.active {
  color: #003c6d;
}

.stepper-step.completed {
  color: #28a745;
}

.stepper-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #abb8c3;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
}

.stepper-step.active .stepper-number {
  background: #003c6d;
}

.stepper-step.completed .stepper-number {
  background: #28a745;
}

.stepper-label {
  display: inline;
}

.stepper-line {
  width: 50px;
  height: 2px;
  background: #d0d7de;
  margin: 0 12px;
}

.stepper-step.completed + .stepper-line,
.stepper-line + .stepper-step.active ~ .stepper-line {
  background: #28a745;
}

/* Booking step card */
.booking-step-title {
  font-size: 1.5rem;
  margin-bottom: 24px;
  color: #003c6d;
}

/* Route cards */
.route-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.route-card {
  position: relative;
  border: 2px solid #e8edf2;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: center;
}

.route-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.route-card.active {
  border-color: #003c6d;
  box-shadow: 0 0 0 3px rgba(0, 60, 109, 0.12);
}

.route-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.route-city {
  font-weight: 700;
  font-size: 1.05rem;
  color: #003c6d;
}

.route-arrow {
  color: #ff6900;
  font-size: 1.4rem;
}

/* Booking form grid */
.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
  max-width: 700px;
}

#step-1,
#step-2,
#step-3 {
  max-width: 800px;
  margin: 0 auto;
}

.booking-form-fields {
  margin-bottom: 24px;
}

/* Trip type toggle */
.trip-type-toggle {
  display: flex;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  overflow: hidden;
}

.trip-toggle-btn {
  flex: 1;
  padding: 12px 14px;
  background: #ffffff;
  border: none;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.trip-toggle-btn.active {
  background: #003c6d;
  color: #ffffff;
}

.trip-toggle-btn:hover:not(.active) {
  background: #f0f4f8;
}

/* Form control (alias for form-group inputs in booking) */
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #ffffff;
}

.form-control:focus {
  outline: none;
  border-color: #0693e3;
  box-shadow: 0 0 0 3px rgba(6, 147, 227, 0.12);
}

.required { color: #cf2e2e; }
.optional { color: #abb8c3; font-weight: 400; font-size: 0.85rem; }

/* Return date group */
.return-date-group {
  transition: opacity 0.2s;
}

/* Price summary (booking step 1) */
.price-summary {
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

.price-summary-inner .price-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.95rem;
}

.price-summary-inner .price-line--total {
  border-top: 2px solid #003c6d;
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #003c6d;
}

/* Booking navigation */
.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

/* Payment card (step 3) */
.payment-card {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
}

.payment-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.payment-card-title {
  font-weight: 700;
  color: #003c6d;
  font-size: 1.05rem;
}

.payment-card-icons {
  display: flex;
  gap: 8px;
}

.cc-icon {
  display: inline-block;
  background: #f0f4f8;
  color: #003c6d;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.payment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Order summary */
.order-summary {
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 24px;
}

.order-summary h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px solid #eee;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row--total {
  border-top: 2px solid #003c6d;
  border-bottom: none;
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #003c6d;
}

/* Booking error */
.booking-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  padding: 14px 20px;
  margin-top: 20px;
  font-weight: 500;
  text-align: center;
}

/* Secondary button */
.btn-secondary {
  background: #f0f4f8;
  color: #003c6d;
  border: 1px solid #d0d7de;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-family: inherit;
}

.btn-secondary:hover {
  background: #e0e6ec;
  color: #003c6d;
}

/* ============================================================
   BOOKING CONFIRMATION (existing template classes)
   ============================================================ */
.confirm-hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.confirm-card {
  max-width: 640px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.confirm-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #d4edda;
  color: #28a745;
  font-size: 2rem;
  margin-bottom: 20px;
}

.confirm-title {
  font-size: 1.8rem;
  color: #003c6d;
  margin-bottom: 8px;
}

.confirm-subtitle {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.confirm-ref {
  background: #edf2f7;
  border-radius: 10px;
  padding: 18px 28px;
  margin-bottom: 28px;
  display: inline-block;
}

.confirm-ref-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  font-weight: 600;
  margin-bottom: 6px;
}

.confirm-ref-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #003c6d;
  letter-spacing: 2px;
}

.confirm-details {
  text-align: left;
  margin-bottom: 24px;
}

.confirm-detail-card {
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.confirm-detail-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #003c6d;
}

.detail-rows {
  display: flex;
  flex-direction: column;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: #666;
}

.detail-value {
  font-weight: 600;
  color: #333;
}

.detail-row--total .detail-value {
  font-size: 1.15rem;
  color: #003c6d;
}

.confirm-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.confirm-status--confirmed {
  background: #d4edda;
  color: #155724;
}

.confirm-status--cancelled {
  background: #f8d7da;
  color: #721c24;
}

.confirm-email-notice {
  background: #e8f4fd;
  border: 1px solid #b8daff;
  border-radius: 8px;
  padding: 14px 20px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #004085;
}

.confirm-email-icon {
  margin-right: 6px;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BOOKING MOBILE OVERRIDES
   ============================================================ */
@media (max-width: 768px) {
  .booking-stepper {
    flex-wrap: wrap;
    gap: 6px;
  }

  .stepper-line {
    width: 24px;
    margin: 0 6px;
  }

  .stepper-label {
    display: none;
  }

  .route-cards {
    grid-template-columns: 1fr;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .payment-row {
    grid-template-columns: 1fr;
  }

  .booking-nav {
    flex-direction: column-reverse;
  }

  .confirm-card {
    padding: 30px 20px;
  }

  .confirm-actions {
    flex-direction: column;
  }
}
