/* Taxi Services Page Styles */

.taxi-section .form-label {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.taxi-section .form-control {
  border: 2px solid #e0e6ed;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  width: 300px !important;
  max-width: 300px !important;
  min-width: 300px !important;
}

.taxi-section .form-control:focus {
  border-color: #dfa974;
  box-shadow: 0 0 0 0.2rem rgba(223, 169, 116, 0.25);
  outline: none;
}

/* Override nice-select styling for dropdowns */
.taxi-section .nice-select {
  width: 300px !important;
  max-width: 300px !important;
  min-width: 300px !important;
  border: 2px solid #e0e6ed;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  height: 44px !important;
  line-height: 22px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  display: flex !important;
  align-items: center !important;
}

.taxi-section .nice-select .current {
  line-height: 22px !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Terms and Conditions Styling */
.terms-list {
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
  list-style-position: outside !important;
  padding: 0 !important;
  margin: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.terms-list li {
  position: relative;
  padding: 8px 0 8px 25px !important;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  border-bottom: 1px solid #f0f0f0;
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
  background-image: none !important;
}

.terms-list li:before {
  content: "•";
  color: #dfa974;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 16px;
}

.terms-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.taxi-section .nice-select:focus {
  border-color: #dfa974;
  box-shadow: 0 0 0 0.2rem rgba(223, 169, 116, 0.25);
}

.taxi-section .btn-primary {
  background-color: #dfa974;
  border-color: #dfa974;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 300px !important;
}

.taxi-section .btn-primary:hover {
  background-color: #c8956a;
  border-color: #c8956a;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(223, 169, 116, 0.3);
}

.taxi-section #ride-form {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e9ecef;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.taxi-section .bg-light {
  background: linear-gradient(
    135deg,
    #f8f9fa 0%,
    #ffffff 100%
  ) !important;
  border: 1px solid #e9ecef;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

/* Required field indicator */
.required-field::after {
  content: " *";
  color: #dc3545;
  font-weight: bold;
}

/* Label alignment for form fields with helper text */
.form-group .col-form-label {
  display: flex;
  align-items: center;
  height: 44px; /* Match the height of form controls */
  margin-bottom: 0;
  line-height: 1.5;
}

/* International Phone Input Styles - Use Package Defaults */
.taxi-section .iti {
  width: 300px !important;
}

.taxi-section .iti input[type="tel"] {
  height: 44px !important;
  border: 2px solid #e0e6ed !important;
  border-radius: 8px !important;
  background-color: #fff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.3s ease !important;
}

.taxi-section .iti input[type="tel"]:focus {
  border-color: #dfa974 !important;
  box-shadow: 0 0 0 0.2rem rgba(223, 169, 116, 0.25) !important;
  outline: none !important;
}

.taxi-section .iti__country-list {
  z-index: 1060 !important;
}

/* Slightly increase smallest text for readability on taxi page */
.taxi-section small,
.taxi-section .form-text,
.taxi-section .text-muted {
  font-size: 0.95rem;
}
