
/* Popup Overlay */
.enq-overlay {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 20;
}

/* Popup Box */
.enq-box {
  width: 340px;
  height: 0 auto;
  background: #4e4e4e9a;
  padding: 22px;
  border-radius: 10px;
  animation: fadeIn 0.3s ease;
  position: relative;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

/* Close Button */
h3 {
  font-size: 20px;
}

.enq-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: rgb(211, 0, 0);
}
.enq-close:hover {
  color: rgb(255, 0, 0);
}

/* Labels & Inputs */
.form-group { margin-bottom: 15px; margin-top: 25px; }
label { font-size: 13px; margin-bottom: 5px; display: block; }
input, textarea {
  width: 100%; padding: 8px;
   background: #ffffffe8; 
  border: 1px solid #9c9c9c; border-radius: 5px;
}

textarea { height: 75px; resize: none; }

/* Submit Button */
.enq-btn {
  width: 100%;
  padding: 10px;
  background: #ec5f00;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.enq-btn:hover { background: #ff6701; }

/* FIXED RIGHT ENQUIRY BOX — ALWAYS VISIBLE, NO ANIMATION */
h4 {
  font-size: 20px;
}
/* ENQUIRY FORM – ATTACHED TO HERO (BELOW IMAGE GALLERY BUTTON) */
.enq-fixed {
  position: absolute;
  right: 40px;
  bottom: 100px;            /* ✅ sits below buttons */
  width: 340px;
  padding: 22px;
  background: rgba(0, 0, 0, 0.65); /* ✅ NO WHITE, transparent */
  backdrop-filter: blur(6px);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: 50;
}

.enq-fixed.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .enq-fixed {
    width: 92%;
    margin: 20px auto 0;
    bottom: 3px;
    left: 3%;
  }
}
   

  


/* ================= THANK YOU POPUP ================= */
.thank-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.thank-box {
  width: 320px;
  background: #ffffffc5;
  color: #391058;
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  animation: fadeIn 0.3s ease;
}

.tick-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #2cce2c;;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tick {
  font-size: 40px;
  color: #2cce2c;
  font-weight: bold;
}
h3 {
  padding: 5px ;
}
.thank-box p {
  line-height: 1.8;
  color: #280a3f;
}
/* Smooth Animation */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}
