
.inquiry-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;
  padding: 60px 15px;
}

.inquiry-modal-content {
  background-color: #fff;
  border-radius: 12px;
  max-width: 700px;
  height: 500px;
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

/* Left Section */
.left-section {
  background-color: #fff6ee;
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.left-section h4 {
  font-size: 22px;
  line-height: 1.4;
  color: #222;
  font-weight: 700;
  margin-bottom: 15px;
}

.left-section p {
  font-size: 16px;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.image-div {
  text-align: center;
}

.image-div img {
 
  max-width: 350px;
  height: 250px;
}

/* Right Section */
.right-section {
  flex: 1;
  background: #fff;
  padding: 40px 30px;
}

.right-section form {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: border 0.3s;
  margin-bottom: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: orange;
  outline: none;
}

button {
  background-color: orange;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

button:hover {
  background-color: darkorange !important;
}

/* Thank You Message */
.thank-you {
  display: none;
  text-align: center;
  font-size: 18px;
  color: green;
  margin-top: 20px;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: -2px;
  right: -1px;
  background: orange;
  border: none;
  color: white;
  font-size: 32px;
  padding: 2px 7px !important;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  transform: scale(1.01);
}

/* Responsive Design */

@media (max-width: 900px) {
  .inquiry-modal-content {
    flex-direction: column;
    max-width: 95%;
  }

  .left-section,
  .right-section {
    padding: 30px 20px;
  }

  .left-section h4 {
    font-size: 20px;
  }

  .image-div img {
    max-width: 200px;
  }
}
@media (max-width: 800px) {
  .inquiry-modal-content {
    max-width: 700px;
    display: flex;
    flex-direction: row;
    height: auto; /* ✅ ensures no clipping */
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: visible; /* ✅ allow full form visibility */
  }
  .close-btn {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 36px;
  height: 36px;
  padding-bottom: 5px !important;
  background: orange;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
}
@media (max-width: 550px) {
  .inquiry-modal-content {
    flex-direction: column;
    width: 95%;
    max-width: 700px;
    height: auto; /* ✅ ensures no clipping */
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: visible; /* ✅ allow full form visibility */
  }

  .left-section,
  .right-section {
    padding: 25px 15px;
  }

  .left-section h4 {
    font-size: 18px;
    text-align: center;
  }

  .left-section p {
    font-size: 14px;
    text-align: center;
  }

  .image-div img {
    max-width: 180px;
  }

  button {
    font-size: 15px;
  }
  .close-btn {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 36px;
  height: 36px;
  padding-bottom: 5px !important;
  background: orange;
  border: none;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
}