/* Basic luxurious popup styles - tweak to match your theme */
#saswat-site-visit-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
#saswat-site-visit-popup.sv-show {
  pointer-events: auto;
  display: flex;
}
#saswat-site-visit-popup .sv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

#saswat-site-visit-popup .sv-wrap {
  width: 920px;
  max-width: 95%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 30px 80px rgba(11, 11, 11, 0.6);
  transform: translateY(18px);
  transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.3, 1);
}
#saswat-site-visit-popup.sv-show .sv-wrap {
  transform: translateY(0);
}

.sv-image {
  width: 46%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.sv-content {
  padding: 34px;
  width: 54%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sv-close {
  position: absolute;
  right: 16px;
  top: 14px;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #fff;
  z-index: 100000;
  cursor: pointer;
}

.sv-title {
  font-size: 28px;
  margin: 0 0 6px;
  font-weight: 600;
  color: #111;
}
.sv-desc {
  color: #666;
  margin-bottom: 8px;
}

.sv-field {
  margin-top: 6px;
}
.sv-field input[type="text"],
.sv-field input[type="email"],
.sv-field input[type="date"],
.sv-field input[type="time"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  font-size: 14px;
}

.sv-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.sv-submit {
  padding: 12px 22px;
  background: #18425d;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}
.sv-msg {
  font-size: 14px;
  margin-left: 6px;
}
.sv-msg.success {
  color: green;
}
.sv-msg.error {
  color: #18425d;
}

/* responsive */
@media (max-width: 880px) {
  .sv-wrap {
    flex-direction: column;
  }
  .sv-image {
    width: 100%;
    min-height: 160px;
  }
  .sv-content {
    width: 100%;
    padding: 20px;
  }
}
