body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Popup Box */
.popup {
  width: 380px;
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background: linear-gradient(135deg, #f3c6d3, #c6e6f3, #f3e2c6);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  border: none;
  background: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  cursor: pointer;
}

/* Text */
.popup h2 {
  font-size: 20px;
  margin-bottom: 5px;
}

.popup p {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
}

/* Inputs */
.popup input,
.popup select,
.popup textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Phone field */
.phone-field {
  display: flex;
  gap: 10px;
}

.phone-field select {
  width: 30%;
}

.phone-field input {
  width: 70%;
}

/* Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  background: black;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #333;
}
/* ===== SECTION FIX ===== */
.enquiry-section .row {
  display: flex;
  align-items: center;
}

/* ===== LEFT IMAGE ===== */
.form-image-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-image {
  max-width: 100%;
  border-radius: 10px;
}

/* ===== PHONE FIELD FIX ===== */
.phone-field {
  display: flex;
  gap: 10px;
}

.phone-field select {
  width: 30%;
}

.phone-field input {
  width: 70%;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {
  .enquiry-section .row {
    flex-direction: column;
  }

  .form-image-col {
    margin-bottom: 25px;
  }
}