/* =========================================
   ENQUIRY MODAL COMPONENT
   ========================================= */

.enquiry-modal {
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.modal-left {
  width: 45%;
  background: linear-gradient(135deg, #f0f7ff 0%, #e1effe 100%);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.modal-left h5 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-size: 1.25rem;
}

.modal-left p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 25px;
  line-height: 1.5;
}

.modal-left ul {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.modal-left li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

.modal-left li i {
  color: #007bff;
  font-size: 1rem;
}

.trust-logos {
  margin-top: auto;
}

.trust-logos p {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 15px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  opacity: 0.6;
}

.logo-grid img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.modal-right {
  width: 55%;
  padding: 40px 30px;
  position: relative;
}

.modal-right .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  box-shadow: none;
}

.modal-right h5 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.modal-right .subtext {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 30px;
}

.enquiry-form .form-group {
  margin-bottom: 15px;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  height: 48px;
  padding: 10px 15px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.enquiry-form input:focus,
.enquiry-form select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
  outline: none;
}

.phone-input-group {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 80px !important;
  background-color: #f9fafb;
}

.form-row {
  display: flex;
  gap: 10px;
}

.submit-btn {
  width: 100%;
  height: 52px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.submit-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
}

.expert-contact {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}

.expert-contact img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.expert-info p {
  margin: 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.expert-info a {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
}

@media (max-width: 991px) {
}

@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
  }
  .modal-left {
    width: 100%;
    padding: 30px 20px;
  }
  .modal-right {
    width: 100%;
    padding: 30px 20px;
  }
  .modal-left ul {
    margin-bottom: 20px;
  }
  .trust-logos {
    display: none;
  }
}
