/* =======================================================
   🔥 GLOBAL ESCORT — MODAL SYSTEM (Profile + Support)
   NEON THEME — CLEAN VERSION
======================================================= */

/* ============================
   1) PROFILE MODAL
============================ */

.profile-modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 9000;
}

/* Container */
.profile-modal .modal-content {
  background: #0d0f17;
  border: 1px solid rgba(0,195,255,0.35);
  border-radius: 14px;
  width: 92%;
  max-width: 850px;
  max-height: 90vh;
  padding: 20px;
  position: relative;
  overflow-y: auto;
  color: var(--text-color);
  box-shadow: 0 0 25px rgba(0,195,255,0.25);
  animation: fadeIn .4s ease;
}

/* Fade animation */
/*@keyframes fadeIn {
  from { opacity:0; transform: scale(0.97); }
  to   { opacity:1; transform: scale(1); }
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 12px;
  right: 14px;
  padding: 6px 10px;
  font-size: 24px;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--accent2);
  border-radius: 10px;
  color: var(--accent2);
  cursor: pointer;
  transition: .25s ease;
  z-index: 9999;
}

.close-modal:hover {
  background: var(--accent1);
  border-color: var(--accent1);
  color: #fff;
}

/* GALLERY */
.modal-gallery {
  position: relative;
}

.modal-gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255,45,189,0.25);
  margin-bottom: 14px;
}

/* NAV BUTTONS */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: 1px solid var(--accent2);
  color: var(--accent2);
  padding: 10px 14px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: .25s ease;
  z-index: 5;
}

.nav-btn:hover {
  background: var(--accent1);
  color: #fff;
}

#prevImg { left: 10px; }
#nextImg { right: 10px; }

/* INFO SECTION */
.modal-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--accent1);
  text-align: center;
  margin-bottom: 6px;
}

.subtext {
  text-align: center;
  color: #aaa;
  margin-bottom: 10px;
}

.info-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}

.info-columns p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* BIO */
/*.bio-section {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.bio-section h3 {
  color: var(--accent1);
  font-family:'Playfair Display', serif;
  text-align:center;
  margin-bottom: 6px;
}

.bio-section p {
  text-align: center;
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}*/

/* Responsive */
@media(max-width: 800px){
  .modal-gallery img { height: 260px; }
}

/* ============================
   2) SUPPORT MODAL
============================ */

.support-overlay {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:20000;

  box-shadow: inset 0 0 40px rgba(255,45,189,0.18),
              inset 0 0 80px rgba(0,195,255,0.12);
}

.support-modal {
  background: rgba(15,15,28,0.92);
  border: 1px solid rgba(0,195,255,0.35);
  border-radius: 14px;
  padding: 32px 28px;
  width: 90%;
  max-width: 480px;

  box-shadow:
    0 0 20px rgba(255,45,189,0.25),
    0 0 40px rgba(0,195,255,0.20);

  animation: supportFade .35s ease-out;
}

@keyframes supportFade {
  from { opacity:0; transform:translateY(20px) scale(0.95); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* CLOSE FOR SUPPORT */
.support-close {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,45,189,0.15);
  border: 1px solid rgba(0,195,255,0.4);
  color: var(--text-color);
  font-size: 18px;
  border-radius: 10px;
  cursor:pointer;
  padding:6px 10px;
  transition:.25s ease;
}

.support-close:hover {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color:#fff;
}

/* INPUTS SUPPORT */
.support-modal input,
.support-modal textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,195,255,0.35);
  border-radius: 10px;
  padding: 12px;
  color: var(--text-color);
  margin: 8px 0 16px;
  font-size: 0.95rem;
  transition:.25s ease;
}

.support-modal input:focus,
.support-modal textarea:focus {
  border-color: var(--accent1);
  box-shadow: 0 0 12px rgba(255,45,189,0.35);
  outline:none;
}

.support-modal textarea {
  min-height: 130px;
  resize: vertical;
}

/* FULLSCREEN MODAL */
.pm-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    background: rgba(10,10,20,0.96);
    z-index: 99999;
    color: #fff;
    overflow: hidden;
}

/* CLOSE BUTTON */
.pm-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
    z-index: 999;
}

/* LEFT SIDE – IMAGE */
.pm-left {
    width: 55%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.pm-left img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pm-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    padding: 12px 18px;
    cursor: pointer;
}
.pm-prev { left: 10px; }
.pm-next { right: 10px; }

/* RIGHT SIDE – CONTENT */
.pm-right {
    width: 45%;
    padding: 40px 35px;
    overflow-y: auto;
}

.pm-name {
    font-size: 2.2rem;
    margin-bottom: 6px;
}

.pm-sub {
    opacity: 0.8;
    margin-bottom: 25px;
}

.pm-section {
    margin-top: 30px;
}

.pm-section h3 {
    margin-bottom: 8px;
    color: #cba135;
}
