#section-9 {
  padding: 60px 20px;
  background: #ffffff;
}

/* ---------- Title Section ---------- */
#section-9 .modal-title-center {
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}

#section-9 .modal-title-center h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

#section-9 .modal-title-center p {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

/* ---------- MAIN CONTENT WRAPPER ---------- */
#section-9 .modal-content-con {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;   /* REMOVE space-between */
  gap: 40px;  
}

/* ---------- LEFT INFO BOX ---------- */
#section-9 .left__content {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 auto;
  width: 220px;
}

#section-9 .left__content div {
  display: flex;
  align-items: center;
  gap: 12px;
}

#section-9 .left__content img {
  width: 40px;
  height: auto;
}

#section-9 .left__content span {
  font-size: 15px;
  color: #333;
}

/* ---------- FORM BOX ---------- */
#section-9 .form-con {
  flex: 1;
  max-width: 420px;
  flex: 0 0 auto;
   width: 380px;
}

#section-9 .form-con input {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

#section-9 .rp-modal__cta button {
  width: 100%;
  padding: 12px;
  background-color: #000;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  border-radius: 4px;
}

/* ---------- RIGHT INFO COLUMN ---------- */
#section-9 .right__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 0 0 auto;
  width: 260px;
}

#section-9 .right__content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

#section-9 .right__content span {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

#section-9 .right__content span::before {
  content: "•";
  font-size: 20px;
  color: #000;
}

/* FORCE RIGHT CONTENT TO SHOW */
#section-9 .right__content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 10 !important;
}

/* Ensure parent doesn't hide it */
#section-9 .modal-content-con {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  overflow: visible !important;
}

/* Make sure text is visible */
#section-9 .right__content span,
#section-9 .right__content h4 {
  display: block !important;
  color: #000 !important;
}

#section-9 .left__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
  width: 100%;
  text-align: center;
}

#section-9 .left__content > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Icon size */
#section-9 .left__content img {
  width: 48px;
  height: auto;
}

/* Text below icon */
#section-9 .left__content span {
  font-size: 16px;
  font-weight: 500;
  color: #111;
  text-align: center;
  line-height: 1.4;
}





/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 768px) {
  #section-9 .modal-content-con {
    flex-direction: column;
    align-items: center;
  }

  #section-9 .left__content,
  #section-9 .right__content {
    align-items: center;
    text-align: center;
  }

  #section-9 .right__content span {
    justify-content: center;
  }
}

/* FORCE LEFT CONTENT TO SHOW & CENTER */
#section-9 .left__content {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  text-align: center !important;
  gap: 25px !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ICON + TEXT */
#section-9 .left__content > div {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

/* ICON SIZE */
#section-9 .left__content img {
  width: 45px !important;
  height: auto !important;
  display: block !important;
}

/* TEXT STYLE */
#section-9 .left__content span {
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #000 !important;
  text-align: center !important;
}


/* ===== Fake reCAPTCHA Container ===== */
.fake-recaptcha {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  background: #fafafa;
  font-family: inherit;
}
/* Hide default checkbox */
.fake-recaptcha input[type="checkbox"] {
  display: none;
}

/* Custom checkbox */
.recaptcha-box {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 8px;
}

/* Checkbox square */
.recaptcha-box .recaptcha-checkbox {
  width: 22px;
  height: 22px;
  border: 2px solid #bdbdbd;
  border-radius: 3px;
  position: relative;
  background-color: #fff;
}

/* Checkmark */
.recaptcha-box input:checked + .recaptcha-checkbox::after {
  content: "✔";
  position: absolute;
  left: 4px;
  top: -2px;
  font-size: 18px;
  color: #1a73e8;
  font-weight: bold;
}

/* Text next to checkbox */
.recaptcha-text {
  font-size: 14px;
  color: #333;               /* same as input text */
  font-family: inherit; 
}

/* Google-style logo */
.fake-recaptcha img {
  width: 32px;
  height: auto;
  margin-left: auto;
}

/* Error message */
.robot-error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

@media (max-width: 576px) {
  #section-9 {
    padding: 30px 15px;
  }

  #section-9 .modal-title-center h3 {
    font-size: 22px;
  }

  #section-9 .modal-title-center p {
    font-size: 14px;
  }

  #section-9 .left__content img {
    width: 32px;
  }

  #section-9 .left__content span {
    font-size: 14px;
  }

  #section-9 .form-con input {
    font-size: 14px;
    padding: 10px;
  }
}


