/* ================= MODAL CLOSE BUTTON ================= */
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #fcfafa;
  background: #b92328;
}


/* Logo Bar inside Modal */
.popup-logo-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
  /* justify-content: center; Center the logo */
}

.popup-logo-bar img {
  max-height: 40px;
  /* Adjust as needed */
}

.popup-logo-name {
  height: 30px;
}

/* ================= FORM ================= */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label {
  font-size: 14px;
  margin-bottom: 4px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem;
  background: #000;
  color: #fff;
  border: 1px solid #00DD87;
  border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid #00DD87;
}

textarea {
  min-height: 80px;
  /* slightly taller for usability */
  resize: none;
}

.button-group {
  display: flex;
  gap: 20px;
}

button {
  padding: 0.6rem 1.5rem;
  /* ✅ proper size */
  cursor: pointer;
  border: 2px solid #6BB745;
  background: transparent;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.2s;
  min-height: 44px;
  /* ✅ touch-friendly */
}

button:hover {
  background: #000000;
  color: #fcfcfc;
  border-color: #489b1e;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
  .modal {
    width: 90%;
    padding: 1.5rem;
  }

  .button-group {
    flex-direction: column;
    gap: 8px;
  }

  .popup-logo-icon {
    height: 60px;
    width: 60px;
  }

  .popup-logo-name {
    height: auto;
    width: 160px;
  }
}



.modal::-webkit-scrollbar {
  width: 4px;
}

.modal::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 20px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}