
 .cab-dashboard{
    background: rgb(126 153 153 / 49%);
  }
.booking-header {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(15, 43, 61, 0.8), rgba(26, 74, 111, 0.85)), url('../image/cab_wallpaper.webp');
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  color: white;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.booking-header h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.booking-header h1 span {
  color: #ffd966;
}

.booking-sub {
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Container */
.booking-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

/* City Selector */
.city-selector {
  background: white;
  border-radius: 0 0 30px 30px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.city-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1a4a6f;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.city-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.city-btn {
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 2px solid #dceef5;
  background: #312d2d38;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.city-btn.active {
  background: #1a4a6f;
  color: white;
  border-color: #1a4a6f;
}

.city-btn:hover:not(.active) {
  background: #e8f4f8;
  border-color: #1a4a6f;
}

/* Vehicle Tabs */
.vehicle-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a5c7a;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
}

.tab-btn.active {
  background: #0d5a7a;
  color: white;
  box-shadow: 0 8px 20px rgba(13, 90, 122, 0.3);
}

/* Vehicles Grid */
.vehicles-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.8rem;
  margin-bottom: 2rem;
}

.vehicle-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  border: 2px solid transparent;
  width: 320px;
}

.vehicle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(13, 90, 122, 0.15);
}

.vehicle-card.selected {
  border-color: #1a4a6f;
  background: linear-gradient(135deg, #ffffff, #f0f9ff);
}

.vehicle-icon {
  background: linear-gradient(135deg, #1a4a6f 0%, #2c7da0 100%);
  padding: 1.2rem;
  text-align: center;
  font-size: 2.5rem;
  color: white;
}

.vehicle-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1rem 1.2rem 0.3rem;
  color: #1a2c3e;
}

.vehicle-capacity {
  padding: 0 1.2rem;
  font-size: 0.8rem;
  color: #1a4a6f;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.vehicle-prices {
  padding: 0.8rem 1.2rem;
}

.price-item {
  font-size: 0.75rem;
  padding: 0.2rem 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #e0e8f0;
}

.price-item:last-child {
  border-bottom: none;
}

.price-label {
  color: #5a6e7c;
}

.price-value {
  font-weight: 600;
  color: #e67e22;
}

.select-btn {
  display: block;
  width: calc(100% - 2.4rem);
  margin: 0.5rem 1.2rem 1.2rem;
  padding: 0.7rem;
  background: #f0f9ff;
  border: 1.5px solid #1a4a6f;
  border-radius: 40px;
  font-weight: 600;
  color: #1a4a6f;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Inter', sans-serif;
}

.select-btn:hover {
  background: #1a4a6f;
  color: white;
}

/* Booking Form */
.booking-form-section {
  background: white;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-top: 1rem;
}

.form-header {
  background: linear-gradient(135deg, #1a4a6f, #0f2b3d);
  padding: 1.2rem 2rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.form-header i {
  font-size: 1.6rem;
}

.form-header h2 {
  font-size: 1.3rem;
  font-weight: 600;
}

.selected-vehicle-display {
  background: #eef7fc;
  padding: 0.8rem 2rem;
  border-left: 4px solid #1a4a6f;
  margin: 1.2rem 2rem 0;
  border-radius: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  padding: 1.8rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.input-group.full-width {
  grid-column: 1 / -1;
}

.input-group label {
  font-weight: 600;
  font-size: 0.8rem;
  color: #1a4a6f;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.required:after {
  content: " *";
  color: #e74c3c;
}

input,
select,
textarea {
  padding: 0.7rem 1rem;
  border: 1.5px solid #e0e8f0;
  border-radius: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #1a4a6f;
}

.summary-card {
  background: linear-gradient(135deg, #fef9e6, #fff6e0);
  padding: 0.8rem 2rem;
  margin: 0 2rem 1.2rem;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.submit-btn {
  display: block;
  width: calc(100% - 4rem);
  margin: 0 2rem 1.5rem;
  padding: 0.9rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  max-width: 400px;
  width: 90%;
  padding: 2rem;
  border-radius: 28px;
  text-align: center;
}

.modal-content i {
  font-size: 3.5rem;
  color: #25D366;
  margin-bottom: 1rem;
}

.modal-content button {
  background: #1a4a6f;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 1rem;
}

/* floating whatsapp button */
.whatsapp-float-cab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  border-radius: 50px;
  padding: 10px 18px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 99;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.whatsapp-float-cab:hover {
  background: #128C7E;
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}


@media (max-width: 768px) {
  .vehicle-card {
    width: 100%;
    max-width: 350px;
  }

  .form-grid {
    padding: 1.2rem;
  }

  .summary-card {
    margin: 0 1.2rem 1rem;
    flex-direction: column;
  }

  .submit-btn {
    width: calc(100% - 2.4rem);
    margin: 0 1.2rem 1.2rem;
  }

  .selected-vehicle-display {
    margin: 1rem 1.2rem 0;
  }
}