/*#popupForm {*/
/*  display: none;*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0,0,0,0.6);*/
/*  z-index: 9999;*/
/*}*/

/* MAIN BOX */
/*.popup-container {*/
/*  display: flex;*/
/*  max-width: 900px;*/
/*  width: 95%;*/
/*  margin: 5% auto;*/
/*  background: #f5f5f5;*/
/*  border-radius: 20px;*/
/*  overflow: hidden;*/
/*  position: relative;*/
/*}*/

/* CLOSE */
/*.close-btn {*/
/*  position: absolute;*/
/*  right: 15px;*/
/*  top: 10px;*/
/*  font-size: 24px;*/
/*  cursor: pointer;*/
/*}*/

/* LEFT */
/*.popup-left {*/
/*  width: 40%;*/
/*  padding: 20px;*/
/*  text-align: center;*/
/*}*/

/*.popup-left img {*/
/*  width: 100%;*/
/*  max-height: 250px;*/
/*  object-fit: contain;*/
/*}*/

/*.popup-left .note {*/
/*  margin-top: 10px;*/
/*  font-size: 12px;*/
/*  color: #777;*/
/*}*/

/* RIGHT */
/*.popup-right {*/
/*  width: 60%;*/
/*  padding: 30px;*/
/*}*/

/*.popup-right h3 {*/
/*  font-size: 16px;*/
/*  margin-bottom: 20px;*/
/*  color: #999;*/
/*}*/

/* FORM */
/*.popup-right label {*/
/*  display: block;*/
/*  font-size: 12px;*/
/*  margin-bottom: 5px;*/
/*  color: #555;*/
/*}*/

/*.popup-right input {*/
/*  width: 100%;*/
/*  padding: 12px;*/
/*  border-radius: 25px;*/
/*  border: none;*/
/*  margin-bottom: 15px;*/
/*  background: #eaeaea;*/
/*}*/

/* CHECKBOX */
/*.checkbox {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  gap: 8px;*/
/*  margin: 10px 0;*/
/*}*/

/* BUTTON */
/*.popup-right button {*/
/*  width: 200px;*/
/*  padding: 12px;*/
/*  border-radius: 30px;*/
/*  border: none;*/
/*  background: linear-gradient(45deg, #6a11cb, #2575fc);*/
/*  color: #fff;*/
/*  font-weight: bold;*/
/*  cursor: pointer;*/
/*}*/

/* SUCCESS */
/*.success-msg {*/
/*  display: none;*/
/*  color: green;*/
/*  margin-top: 15px;*/
/*  font-weight: bold;*/
/*}*/

/* MOBILE */
/*@media(max-width: 768px){*/
/*  .popup-container {*/
/*    flex-direction: column;*/
/*  }*/

/*  .popup-left,*/
/*  .popup-right {*/
/*    width: 100%;*/
/*  }*/
/*}*/

/*.name-row {*/
/*  display: flex;*/
/*  gap: 10px;*/
/*}*/

/*.name-row input {*/
/*  width: 50%;*/
/*}*/

/* ================= POPUP OVERLAY ================= */
#popupForm {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

/* ================= MAIN POPUP ================= */
.popup-container {
  display: flex;
  max-width: 900px;
  width: 95%;

  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: #f5f5f5;
  border-radius: 20px;
  overflow: hidden;

  animation: popupFade 0.3s ease;
}

/* ANIMATION */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translate(-50%, -40%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* ================= CLOSE BUTTON ================= */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 26px;
  cursor: pointer;
  color: #555;
}

.close-btn:hover {
  color: #000;
}

/* ================= LEFT SIDE ================= */
.popup-left {
  width: 40%;
  padding: 20px;
  text-align: center;
}

.popup-left img {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
}

.popup-left .note {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

/* ================= RIGHT SIDE ================= */
.popup-right {
  width: 60%;
  padding: 30px;
}


.popup-right h3 {
  font-size: 16px;
  font-family: 'Raleway';
  margin-bottom: 20px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
    
    font-weight: 500;
}

/* ================= FORM ================= */
.popup-right input {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  margin-bottom: 15px;
  background: #eaeaea;
  font-size: 14px;
  outline: none;
}

/* INPUT FOCUS */
.popup-right input:focus {
  background: #ddd;
}

/* NAME INLINE */
.name-row {
  display: flex;
  gap: 10px;
}

.name-row input {
  width: 50%;
}

/* ================= CHECKBOX ================= */
.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  font-size: 13px;
}

/* ================= BUTTON ================= */
.popup-right button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 16px 24px;
  border-radius: 60px;
  border: none;

  background-image: var(--Gradient-PurplePink);
  color: var(--White);

  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  cursor: pointer;
  transition: 0.3s ease-in-out;

  filter: drop-shadow(2px 4px 24.6px rgba(0, 0, 0, 0.15));
  backdrop-filter: blur(8px);
}

/* BUTTON HOVER */
.popup-right button:hover {
  background: var(--Gradient-Pink);
  transform: translateY(-2px);
}

/* ================= SUCCESS ================= */
.success-msg {
  display: none;
  color: green;
  margin-top: 15px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

/* ================= CTA BUTTON (GLOBAL FIX) ================= */
a.normal-cta-filter {
  transition: 0.3s ease-in-out;
  color: var(--White);
  padding: 18px 23px;
  filter: drop-shadow(2px 4px 24.6px rgba(0, 0, 0, 0.15));
  backdrop-filter: blur(8px);
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  width: fit-content;
}

/* ICON HOVER */
a.normal-cta-filter svg {
  transition: 0.3s ease-in-out;
}

a.normal-cta-filter:hover svg {
  transform: translateX(4px);
}

/* BACKGROUND */
.bg-gradient-purplepink {
  background-image: var(--Gradient-PurplePink);
}

/* HOVER BG */
a.bg-gradient-purplepink.normal-cta-filter:hover {
  background: var(--Gradient-Pink);
}

/* ================= MOBILE ================= */
@media(max-width: 768px){

  /* 🔥 overlay center */
  #popupForm {
    position: fixed;
    top: 60%; /* 🔥 60% se 50% better center */
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    padding: 10px;

    display: none; /* 🔥 IMPORTANT FIX */
    justify-content: center;
  }

  /* 🔥 main popup */
  .popup-container {
    flex-direction: column;
    width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    overflow: hidden;
  }

  /* 🔥 inner scroll */
  .popup-right {
    width: 100%;
    padding: 15px;
    overflow-y: auto;
    max-height: 60vh;
  }

  /* 🔥 image control */
  .popup-left {
    width: 100%;
    padding: 8px;
    text-align: center;
  }

  .popup-left img {
    max-height: 120px;
  }

  /* 🔥 form spacing */
  .popup-right form {
    gap: 10px;
  }

  /* 🔥 inputs */
  .popup-right input,
  .popup-right textarea {
    padding: 9px;
    font-size: 13px;
  }

  /* 🔥 CAPTCHA fit */
  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: left;
    margin: 8px 0;
  }

  /* 🔥 CLOSE BUTTON FIX */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 10;
    font-size: 22px;
    background: #fff;
    border-radius: 50%;
    padding: 2px 8px;
  }

}
.g-recaptcha {
  margin: 15px 0;
}