/* Drop & Pickup Booking Styles - Inherited from Theme Engine */
:root {
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --gradient-primary: var(--theme-gradient, linear-gradient(135deg, #0F4C81 0%, #00A896 100%));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color, #00A896) 0%, var(--accent-color, #F4A261) 100%);
  --shadow-sm: var(--theme-shadow-sm, 0 2px 4px rgba(0, 0, 0, 0.05));
  --shadow-md: var(--theme-shadow-md, 0 4px 6px rgba(0, 0, 0, 0.1));
  --shadow-lg: var(--theme-shadow-lg, 0 10px 15px rgba(0, 0, 0, 0.1));
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  --border-radius: var(--theme-radius, 12px);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', "Inter", sans-serif;
  line-height: 1.6;
  color: var(--dark-color, #0A192F);
  background-color: var(--light-color, #F8FAFC);
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(var(--dark-rgb, 10, 25, 47), 0.88), rgba(var(--primary-rgb, 15, 76, 129), 0.7)), var(--theme-hero-bg, url('../images/sri-lanka-hero.jpg'));
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
  cursor: pointer;
}

/* Booking Section */
.booking-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.booking-card {
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
}

.booking-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.booking-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.booking-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.booking-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.booking-form {
  padding: 2rem;
}

/* Form Steps */
.form-step {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e9ecef;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: 1rem;
  flex-shrink: 0;
}

.step-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--primary-color);
  font-weight: 600;
}

.step-info p {
  margin: 0;
  color: #6c757d;
  font-size: 0.95rem;
}

/* Form Controls */
.form-label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 90, 160, 0.25);
  outline: none;
}

.form-control::placeholder {
  color: #adb5bd;
  font-style: italic;
}

/* Location Input */
.location-search-container {
  margin-bottom: 1.5rem;
}

.location-input-group {
  display: flex;
  gap: 0.5rem;
}

.location-input-group .form-control {
  flex: 1;
}

.location-input-group .btn {
  flex-shrink: 0;
}

/* Map Container */
.map-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.booking-map {
  width: 100%;
  height: 400px;
  border: none;
}

.map-legend {
  position: absolute;
  top: 10px;
  right: 10px;
  background: white;
  padding: 1rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.legend-item:last-child {
  margin-bottom: 0;
}

.legend-marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-marker.pickup {
  background: #28a745;
}

.legend-marker.dropoff {
  background: #dc3545;
}

.legend-marker.attraction {
  background: #ffc107;
}

/* Guides Grid */
.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.guide-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.guide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.guide-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.guide-card:hover::before {
  transform: scaleX(1);
}

.guide-card.selected {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
  box-shadow: var(--shadow-lg);
}

.guide-card.selected::before {
  transform: scaleX(1);
}

.guide-image {
  position: relative;
  margin-bottom: 1rem;
}

.guide-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e9ecef;
}

.guide-rating {
  position: absolute;
  top: -5px;
  right: 0;
  background: var(--secondary-color);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.guide-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.guide-title {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.guide-details {
  margin-bottom: 1rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.detail-item i {
  color: var(--primary-color);
  width: 16px;
}

.guide-reviews {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.guide-actions {
  display: flex;
  gap: 0.5rem;
}

.guide-actions .btn {
  flex: 1;
  font-size: 0.875rem;
}

/* Vehicles Grid */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.vehicle-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.vehicle-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.vehicle-card.selected {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
  box-shadow: var(--shadow-lg);
}

.vehicle-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.vehicle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.vehicle-card:hover .vehicle-image img {
  transform: scale(1.05);
}

.vehicle-info {
  padding: 1.5rem;
}

.vehicle-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.vehicle-details {
  margin-bottom: 1rem;
}

.vehicle-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-badge {
  background: var(--light-color);
  color: var(--primary-color);
  padding: 0.25rem 0.5rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Step Actions */
.step-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
}

.btn {
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Booking Summary */
.booking-summary {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.summary-section {
  margin-bottom: 2rem;
}

.summary-section:last-child {
  margin-bottom: 0;
}

.summary-section h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #dee2e6;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.summary-item span:first-child {
  font-weight: 500;
  color: #6c757d;
}

.summary-item span:last-child {
  font-weight: 600;
  color: var(--dark-color);
}

.guide-summary,
.vehicle-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.guide-summary img,
.vehicle-summary img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.additional-requests {
  margin-bottom: 2rem;
}

.additional-requests textarea {
  resize: vertical;
  min-height: 100px;
}

/* Sidebar */
.sidebar-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.sidebar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.sidebar-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

/* Destinations List */
.destinations-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.destination-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.destination-item:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  transform: translateX(5px);
}

.destination-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.destination-name {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}

.destination-type {
  font-size: 0.8rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item i {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.feature-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.25rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.4;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #6c757d;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(5px);
}

.loading-spinner {
  text-align: center;
  color: var(--primary-color);
}

.loading-spinner p {
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .stat-item {
    text-align: center;
  }

  .booking-form {
    padding: 1rem;
  }

  .step-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .step-number {
    margin-right: 0;
  }

  .guides-grid {
    grid-template-columns: 1fr;
  }

  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .step-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .step-actions .btn {
    width: 100%;
  }

  .booking-map {
    height: 300px;
  }

  .map-legend {
    position: static;
    margin-top: 1rem;
  }

  .floating-card {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .booking-header {
    padding: 1.5rem 1rem 1rem;
  }

  .booking-title {
    font-size: 1.5rem;
  }

  .sidebar-card {
    padding: 1.5rem;
  }

  .destination-item {
    padding: 0.75rem;
  }

  .guide-card {
    padding: 1rem;
  }

  .vehicle-info {
    padding: 1rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: var(--transition);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: var(--transition);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1e3a5f;
}

/* Print Styles */
@media print {
  .hero-section,
  .sidebar-card,
  .step-actions {
    display: none !important;
  }

  .booking-section {
    background: white !important;
  }

  .booking-card {
    box-shadow: none !important;
    border: 1px solid #dee2e6 !important;
  }
}

/* ==========================================================================
   Step Progress Bar & Live Summary Card Upgrades
   ========================================================================== */
.booking-progress-wrapper {
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #edf2f7;
  margin-bottom: 24px;
}

.booking-progress-track {
  position: relative;
  margin: 12px 10px 8px 10px;
}

.step-pill {
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  background: #e2e8f0;
  color: #64748b;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  z-index: 2;
}

.step-pill.active {
  background: var(--primary-color, #1B4D3E) !important;
  color: #ffffff !important;
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(27, 77, 62, 0.35);
}

.step-pill.completed {
  background: #10b981 !important;
  color: #ffffff !important;
}

.step-labels span {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-labels span.active-label {
  color: var(--primary-color, #1B4D3E) !important;
  font-weight: 700;
}

.step-pill {
  cursor: pointer;
}

.step-pill:hover:not(.active) {
  background: #cbd5e1;
  color: #334155;
}

/* Live Booking Summary Card */
.live-summary-card {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 90px;
  z-index: 10;
  margin-bottom: 2rem;
}

.live-summary-card .card-header {
  background: linear-gradient(135deg, var(--primary-color, #1B4D3E) 0%, var(--secondary-color, #2D6A4F) 100%) !important;
  padding: 1.25rem 1.5rem;
  border-bottom: none;
}

.live-summary-card .card-body {
  padding: 1.5rem;
}

.summary-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(27, 77, 62, 0.08);
  color: var(--primary-color, #1B4D3E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.summary-row-content {
  flex-grow: 1;
}

.summary-row-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
  margin-bottom: 2px;
}

.summary-row-value {
  font-size: 13.5px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.4;
}

.fare-estimate-box {
  background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
}

.fare-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 6px;
}

.fare-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 2px solid #cbd5e1;
}

.fare-total-line .total-label {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.fare-total-line .total-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-color, #1B4D3E);
}

.booking-inclusions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.inclusion-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

