/* Dale Ride - Custom Styles */
/* Costa Rica Themed Design */

:root {
  /* Dale Ride Brand Colors - Electric Cyan Palette */
  --primary-cyan: #00F0FF; /* Electric Cyan - vibrant, energetic Costa Rica feel */
  --primary-teal: #003D42; /* Deep Teal - backgrounds, depth */
  --dark-teal: #001A1D; /* Dark Teal - shadows, mystery */
  --accent-cyan: #00BFD4; /* Subtle Cyan - for accents, better contrast */

  /* Secondary Brand Colors */
  --palm-green: #0D4B3F; /* Nature elements */
  --ocean-blue: #0A7B8A; /* Water elements */
  --accent-green: #28A745; /* Success/Action green for buttons */

  /* Neutral Colors */
  --background-light: #F8F9FA;
  --background-white: #FFFFFF;
  --background-dark: #001A1D; /* Updated to match new dark teal */

  /* Text Colors */
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --text-white: #FFFFFF;

  /* UI Elements */
  --border-color: #DEE2E6;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-cyan-glow: 0 0 15px rgba(0, 240, 255, 0.3); /* Electric Cyan glow */
  --shadow-teal: rgba(0, 240, 255, 0.2); /* Electric Cyan shadow */

  /* Gradients */
  --gradient-tropical: linear-gradient(135deg, #001A1D 0%, #003D42 50%, #0A7B8A 100%);
  --gradient-cyan: linear-gradient(135deg, #00F0FF 0%, #0A7B8A 100%);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ============================================
   DARK MODE - Electric Cyan Palette
   High contrast theme for nighttime browsing
   ============================================ */
[data-theme="dark"] {
  --primary-cyan: #00F0FF;
  --background: #001A1D;
  --secondary-bg: #003D42;
  --shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: linear-gradient(135deg, #E8F5F3 0%, #F0F9F7 100%);
  background-image:
    linear-gradient(135deg, rgba(232, 245, 243, 0.95) 0%, rgba(240, 249, 247, 0.95) 100%),
    url('IMAGES/imagine_tropical_pattern_with_palm_leaves_subtle_texture_ligh_e47505bc-03d2-43ff-b661-dd9de5f5acae_1.png');
  background-size: cover;
  background-attachment: fixed;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Navigation - Dark Teal with Tropical Overlay */
.navbar {
  background: linear-gradient(135deg, var(--dark-teal) 0%, #00524D 100%) !important;
  background-image:
    linear-gradient(135deg, rgba(0, 61, 61, 0.95) 0%, rgba(0, 82, 77, 0.95) 100%),
    url('IMAGES/imagine_tropical_pattern_with_palm_leaves_subtle_texture_ligh_e47505bc-03d2-43ff-b661-dd9de5f5acae_0.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
  border-bottom: 2px solid var(--primary-cyan);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-white) !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar-brand:hover {
  color: var(--primary-red) !important;
}

.nav-link {
  font-weight: 600;
  color: #FFFFFF !important; /* Changed from rgba(255,255,255,0.9) to pure white for better contrast */
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
  color: var(--primary-cyan) !important;
  text-shadow: 0 0 8px var(--shadow-teal);
}

.nav-link.active {
  color: var(--primary-cyan) !important;
  font-weight: 700; /* Added bold for active state */
}

/* Language & Currency Toggles */
.language-toggle,
.currency-toggle {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.btn-outline-cyan {
  color: var(--primary-cyan);
  border-color: var(--primary-cyan);
  background-color: transparent;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  transition: all 0.3s ease;
  min-width: 44px; /* Touch-friendly */
  min-height: 38px;
}

.btn-outline-cyan:hover {
  background-color: var(--primary-cyan);
  border-color: var(--primary-cyan);
  color: var(--dark-teal);
  box-shadow: var(--shadow-cyan-glow);
}

.btn-outline-cyan.active {
  background-color: var(--primary-cyan);
  border-color: var(--primary-cyan);
  color: var(--dark-teal);
  font-weight: 700;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .language-toggle,
  .currency-toggle {
    margin: 0.5rem 0;
    justify-content: center;
  }
}

/* Price display styles */
.price-primary {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.price-secondary {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-left: 0.5rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-cyan);
  border-color: var(--primary-cyan);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #003d7a;
  border-color: #003d7a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px var(--shadow-color);
}

.btn-success {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

.btn-outline-primary {
  color: var(--primary-cyan);
  border-color: var(--primary-cyan);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
}

.btn-outline-primary:hover {
  background-color: var(--primary-cyan);
  border-color: var(--primary-cyan);
}

/* ============================================
   HERO SECTION - Video Background
   Interactive, dynamic Costa Rica vibes
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

/* Video Background - Full Screen */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  object-fit: cover;
}

/* Dark Overlay for Text Readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 26, 29, 0.5) 0%,    /* Dark teal with transparency */
    rgba(0, 61, 66, 0.4) 50%,   /* Deep teal */
    rgba(0, 240, 255, 0.1) 100% /* Electric cyan glow */
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}

/* Fade-in animation for hero content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   DESTINATION BANNER
   Dynamic destination photos on details pages
   ============================================ */
.destination-banner {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 56px; /* Offset for fixed navbar */
  overflow: hidden;
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 26, 29, 0.5) 0%,
    rgba(0, 61, 66, 0.4) 50%,
    rgba(0, 240, 255, 0.2) 100%
  );
  z-index: 1;
}

.destination-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.destination-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.destination-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive destination banner */
@media (max-width: 768px) {
  .destination-banner {
    height: 250px;
    margin-top: 56px;
  }

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

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

/* ============================================
   DESTINATION HIGHLIGHT CARD (Results Page)
   Compact destination preview on search results
   ============================================ */
.destination-highlight-card {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 240, 255, 0.2);
}

.destination-highlight-image {
  flex: 0 0 200px;
  height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.destination-highlight-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, rgba(255, 255, 255, 1) 50%);
}

.destination-highlight-content h4 {
  color: var(--primary-cyan);
  font-weight: 700;
}

/* Responsive destination highlight */
@media (max-width: 768px) {
  .destination-highlight-card {
    flex-direction: column;
  }

  .destination-highlight-image {
    flex: 0 0 auto;
    height: 120px;
    width: 100%;
  }

  .destination-highlight-content {
    padding: 1rem;
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Search Box */
.search-box {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px var(--shadow-color);
  margin-top: 2rem;
}

.search-box .form-control {
  border-radius: 10px;
  border: 2px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.search-box .form-control:focus {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 0.2rem rgba(0, 82, 163, 0.25);
}

/* Cards */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px var(--shadow-color);
}

.card-img-top {
  border-radius: 0;
  height: 200px;
  object-fit: cover;
}

.card-title {
  color: var(--primary-cyan);
  font-weight: 700;
  font-size: 1.25rem;
}

.card-text {
  color: var(--text-light);
}

/* Ride Cards */
.ride-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: all 0.3s ease;
}

.ride-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px var(--shadow-color);
}

.driver-info {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.driver-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 3px solid var(--primary-cyan);
}

.driver-name {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.driver-rating {
  color: #FFC107;
  font-size: 0.9rem;
}

.verified-badge {
  background: var(--accent-green);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  margin-left: 0.5rem;
}

.route-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0;
  padding: 1rem;
  background: var(--background-light);
  border-radius: 10px;
}

.route-location {
  font-weight: 700;
  font-size: 1.1rem;
}

.route-arrow {
  color: var(--primary-cyan);
  font-size: 1.5rem;
}

.ride-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.ride-detail-item {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}

.ride-detail-icon {
  margin-right: 0.5rem;
  color: var(--primary-cyan);
}

.price-tag {
  background: var(--primary-cyan);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.25rem;
}

/* How It Works Section */
.how-it-works {
  padding: 4rem 0;
  background: white url('IMAGES/imagine_tropical_pattern_with_palm_leaves_subtle_texture_ligh_e47505bc-03d2-43ff-b661-dd9de5f5acae_1.png');
  background-size: 300px;
  background-repeat: repeat;
  background-position: center;
  background-blend-mode: overlay;
  opacity: 0.98;
}

.step-card {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.step-card:hover {
  background: var(--background-light);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-cyan), #0066cc);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-cyan);
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: var(--background-light) url('IMAGES/imagine_tropical_pattern_with_palm_leaves_subtle_texture_ligh_e47505bc-03d2-43ff-b661-dd9de5f5acae_2.png');
  background-size: 350px;
  background-repeat: repeat;
  background-position: center;
  background-blend-mode: soft-light;
  opacity: 0.97;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  position: relative;
  padding-top: 3rem;
}

.testimonial-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid white;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-cyan);
  text-align: center;
}

/* Footer */
footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--accent-green);
}

/* Profile Page */
.profile-header {
  background: linear-gradient(135deg, var(--primary-cyan), #0066cc);
  color: white;
  padding: 3rem 0;
  margin-bottom: 2rem;
}

.profile-photo-large {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.profile-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Booking Page */
.booking-summary {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 15px;
  position: sticky;
  top: 20px;
}

.seat-selector {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.seat-btn {
  width: 60px;
  height: 60px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.seat-btn:hover {
  border-color: var(--primary-cyan);
  background: rgba(0, 82, 163, 0.1);
}

.seat-btn.selected {
  background: var(--primary-cyan);
  color: white;
  border-color: var(--primary-cyan);
}

.seat-btn.unavailable {
  background: var(--border-color);
  cursor: not-allowed;
  opacity: 0.5;
}

/* Payment Methods */
.payment-method {
  border: 2px solid var(--border-color);
  border-radius: 15px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-method:hover {
  border-color: var(--primary-cyan);
  background: rgba(0, 82, 163, 0.05);
}

.payment-method.selected {
  border-color: var(--primary-cyan);
  background: rgba(0, 82, 163, 0.1);
}

.payment-icon {
  width: 50px;
  height: 50px;
  margin-right: 1rem;
}

/* Reviews */
.review-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px var(--shadow-color);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.review-author {
  font-weight: 700;
}

.review-date {
  color: var(--text-light);
  font-size: 0.875rem;
}

.review-rating {
  color: #FFC107;
  margin-bottom: 0.5rem;
}

.review-text {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Dashboard */
.dashboard-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.dashboard-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--background-light);
  border-radius: 10px;
}

.dashboard-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
}

.dashboard-stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Amenities */
.amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.amenity-badge {
  background: var(--background-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Loading Animation */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.spinner {
  border: 4px solid var(--border-color);
  border-top: 4px solid var(--primary-cyan);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ============================================
   MOBILE RESPONSIVENESS (P0 Priority)
   Costa Rica is mobile-first - 75% users on phones
   Target: 90%+ mobile readiness score
   ============================================ */

/* Mobile - Standard Phones (375px-768px) */
@media (max-width: 768px) {
  /* P1 FIX: Form stacking - all form-row children stack to full width */
  .form-row > [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 1rem;
  }

  /* P1 FIX: Touch targets - minimum 44px for accessibility */
  input.form-control,
  select.form-control,
  textarea.form-control {
    min-height: 44px !important;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }

  button,
  .btn {
    min-height: 44px !important;
    padding: 11px 20px;
  }

  /* Custom checkboxes and switches */
  .custom-control-label::before,
  .custom-control-label::after {
    width: 20px !important;
    height: 20px !important;
  }

  .custom-switch .custom-control-label::before {
    width: 36px !important;
    height: 20px !important;
  }

  /* P1 FIX: Ride cards - stack properly on mobile */
  .ride-card .row > [class*="col-md-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center;
    margin-bottom: 0.75rem;
  }

  /* P1 FIX: Payment method cards - stack vertically */
  .payment-method-card .d-flex {
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem;
  }

  /* Hero section */
  .hero-title {
    font-size: 2rem;
  }

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

  .search-box {
    padding: 1.5rem;
  }

  /* Layout stacking */
  .route-info {
    flex-direction: column;
    text-align: center;
  }

  .ride-details {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-stats {
    flex-direction: column;
    gap: 1rem;
  }

  /* Badges and indicators */
  .verification-badges {
    flex-direction: column;
  }

  .verification-badges .badge {
    width: 100%;
    justify-content: center;
  }

  .trust-indicators {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-security {
    font-size: 0.85rem;
  }

  .payment-security .d-flex {
    flex-direction: column !important;
    gap: 0.5rem;
  }

  /* Dashboard quick actions - full width */
  .quick-actions .col-md-3 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 1rem;
  }

  /* Navbar brand responsive sizing */
  .navbar-brand {
    font-size: 1.5rem !important;
  }

  /* Icon sizing */
  .fa-3x {
    font-size: 2rem !important;
  }

  /* Images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Mobile - Small Phones (max 414px) */
@media (max-width: 414px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .navbar-brand {
    font-size: 1.25rem !important;
  }

  .btn {
    font-size: 0.9rem;
  }

  /* Success icon on register page */
  .fa-5x {
    font-size: 3rem !important;
  }

  /* QR code placeholder */
  .qr-placeholder {
    max-width: 150px !important;
    height: auto !important;
  }
}

/* Utility Classes */
.text-primary-blue {
  color: var(--primary-cyan);
}

.text-accent-green {
  color: var(--accent-green);
}

.bg-primary-blue {
  background-color: var(--primary-cyan);
}

.bg-accent-green {
  background-color: var(--accent-green);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-cyan);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Verification Badges */
.verification-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.verification-badges .badge {
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.verification-badges .badge i {
  font-size: 1rem;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.trust-indicators i {
  margin-right: 0.25rem;
}

/* Payment Security */
.payment-security {
  border: 2px solid var(--accent-green);
  background: rgba(40, 167, 69, 0.05) !important;
}

.payment-security i {
  font-size: 1.1rem;
}

/* Enhanced Badge Styles */
.badge-info {
  background-color: #17a2b8;
  color: white;
}

.badge-secondary {
  background-color: #6c757d;
  color: white;
}

/* Language & Currency Toggle */
.toggle-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toggle-btn {
  background: var(--border-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--primary-cyan);
  color: white;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.empty-state-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

/* Dale Ride Brand Colors */
.brand-dale {
  color: var(--primary-cyan); /* Electric Cyan #00F0FF - energetic "let's go!" */
  text-shadow: var(--shadow-cyan-glow); /* Glowing cyan effect */
}

.brand-ride {
  color: var(--text-white); /* White - clean & modern */
}

/* Google Maps Integration */
.border-primary-cyan {
  border-color: var(--primary-cyan) !important;
}

.bg-primary-cyan {
  background-color: var(--primary-cyan) !important;
}

.text-primary-cyan {
  color: var(--primary-cyan) !important;
}

#routeMap {
  border-radius: 0;
}

.route-stat {
  padding: 1rem;
  text-align: center;
}

.route-stat i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Google Places Autocomplete Styling */
.pac-container {
  background-color: white;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  margin-top: 4px;
  font-family: inherit;
  z-index: 10000;
}

.pac-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
}

.pac-item:hover {
  background-color: var(--bg-light);
}

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

.pac-icon {
  background-image: none !important;
  margin-right: 12px;
}

.pac-icon::before {
  content: '📍';
  font-size: 16px;
}

.pac-item-query {
  color: var(--text-dark);
  font-weight: 600;
}

.pac-matched {
  color: var(--primary-cyan);
  font-weight: 700;
}
