/* ══════════════════════════════════════════════════════════
   leads.css — shared "Thank You" popup for all enquiry forms
   ══════════════════════════════════════════════════════════ */

.lty-overlay {
  position: fixed;
  inset: 0;
  z-index: 10050;
  background: rgba(20, 16, 10, 0.72);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lty-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lty-modal {
  width: 100%;
  max-width: 420px;
  background: #fff;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 44px 36px 36px;
  text-align: center;
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.2,.9,.25,1), opacity 0.5s ease;
}

.lty-overlay.active .lty-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lty-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #111;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s ease;
}

.lty-close:hover {
  background: #ba570f;
  color: #fff;
  transform: rotate(90deg);
}

.lty-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8f0c, #ba570f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(186, 87, 15, 0.35);
}

.lty-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
}

.lty-message {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 26px;
}

.lty-ok-btn {
  cursor: pointer;
  background: none;
}

@media (max-width: 480px) {
  .lty-modal {
    padding: 36px 24px 28px;
  }
}
