/* ==========================================
   BOOKING FORM STYLES
   ========================================== */

.hero-section-booking {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 150, 226, 0.95) 0%, rgba(0, 119, 179, 0.95) 100%),
              url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1600') center/cover;
  padding: 80px 0;
}

.hero-content-booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: white;
}

.hero-text .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero-text .hero-title {
  color: white;
  margin-bottom: 20px;
}

.hero-text .hero-description {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
}

.text-gradient-white {
  background: white;
  color: #0096e2;
  padding: 5px 15px;
  border-radius: 8px;
  display: inline-block;
}

/* Quick Stats */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 20px 25px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  opacity: 0.9;
  color: white;
}

/* Booking Form Wrapper */
.booking-form-wrapper {
  background: white;
  border-radius: 20px;
  padding: 35px 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.booking-form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.booking-form-header i {
  font-size: 28px;
  color: #0096e2;
}

.booking-form-header h3 {
  font-size: 22px;
  margin: 0;
  color: #1a1a1a;
  font-weight: 700;
}

/* Form Styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.form-group-booking {
  display: flex;
  flex-direction: column;
}

.form-group-booking label {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group-booking label i {
  color: #0096e2;
  font-size: 14px;
}

.form-group-booking input,
.form-group-booking select {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s;
  background: white;
}

.form-group-booking input:focus,
.form-group-booking select:focus {
  outline: none;
  border-color: #0096e2;
  box-shadow: 0 0 0 3px rgba(0, 150, 226, 0.1);
}

.form-group-small {
  grid-column: span 1;
}

/* Rental Summary */
.rental-summary {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #e0e0e0;
}

.rental-summary i {
  font-size: 22px;
  color: #0096e2;
}

.rental-summary span {
  color: #777777;
  font-size: 15px;
}

.rental-summary strong {
  color: #0096e2;
  font-size: 20px;
  font-weight: 700;
}

/* Booking Button */
.btn-booking {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #0096e2 0%, #0077b3 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0, 150, 226, 0.3);
}

.btn-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 150, 226, 0.4);
}

.btn-booking i {
  font-size: 18px;
}

/* ==========================================
   VEHICLES PAGE WITH BOOKING INFO
   ========================================== */

.booking-info-bar {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 16px;
  display: inline-block;
  margin-top: 20px;
}

.booking-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  text-align: left;
}

.booking-info-item {
  color: white;
}

.booking-info-label {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.booking-info-value {
  font-weight: 600;
  font-size: 16px;
}

.booking-info-sub {
  font-size: 13px;
  opacity: 0.9;
}

/* Price Breakdown Card */
.price-breakdown {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 15px 0;
}

.price-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #777777;
  margin-bottom: 8px;
}

.price-row:last-child {
  margin-bottom: 0;
  padding-top: 12px;
  border-top: 2px solid #e0e0e0;
  margin-top: 12px;
}

.price-row.total {
  font-weight: 700;
  color: #1a1a1a;
}

.price-row.total .price-amount {
  color: #0096e2;
  font-size: 18px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 992px) {
  .hero-content-booking {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .booking-form-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero-section-booking {
    min-height: auto;
    padding: 60px 0;
  }
  
  .form-row-booking {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    gap: 15px;
  }
  
  .stat-item {
    flex: 1;
    min-width: 100px;
  }
  
  .booking-form-wrapper {
    padding: 25px 20px;
  }
  
  .booking-info-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .hero-stats {
    flex-direction: column;
    width: 100%;
  }
  
  .stat-item {
    width: 100%;
  }
}