/* =========================================================
   PROFILE PAGE — Tech / Mass-market (white, blue, pink, neon)
   Works with your current HTML classes:
   .p-hero, .p-hero-media, .p-hero-overlay, .p-hero-content,
   .p-wrap, .p-card, .p-facts, .fact, .p-h2/.p-h3,
   .p-gallery-grid, .p-thumb, .p-form, .sticky-cta
   ========================================================= */

:root{
  /* fallback if loaded alone (index style.css already defines these) */
  --bg:#ffffff;
  --text:#0b1220;
  --muted:rgba(11,18,32,0.64);
  --line:rgba(11,18,32,0.10);

  --blue:#3aa9ff;
  --pink:#ff4fd8;
  --mint:#38f2d3;

  --grad:linear-gradient(90deg, var(--blue), var(--pink));
  --grad-soft:linear-gradient(135deg, rgba(58,169,255,0.14), rgba(255,79,216,0.12));
  --shadow:0 18px 60px rgba(11,18,32,0.12);

  --radius:18px;
  --radius-lg:26px;
}

/* Make sure profile page stays white and clean */
body{
  background: var(--bg);
  color: var(--text);
}

/* =========================================================
   HERO
   ========================================================= */
.p-hero{
  position: relative;
  height: 84vh;
  min-height: 620px;
  overflow: hidden;
  background: #0b1220;
}

/* Image/video cover */
.p-hero-media{
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.p-hero-media img,
.p-hero-media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.05);
}

/* Gradient veil */
.p-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 35%,
      rgba(58,169,255,0.26) 0%,
      rgba(11,18,32,0.62) 55%,
      rgba(11,18,32,0.92) 100%
    ),
    linear-gradient(to bottom, rgba(11,18,32,0.25), rgba(11,18,32,0.92));
}

/* Hero content positioning */
.p-hero-content{
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Tag becomes "verified style pill" */
.p-tag{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(11,18,32,0.88);
  font-weight: 950;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

/* Optional neon dot inside tag */
.p-tag::before{
  content:"";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(56,242,211,0.7);
}

/* Name */
.p-name{
  margin-top: 12px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.05;
  letter-spacing: 0.2px;
  text-shadow: 0 16px 60px rgba(0,0,0,0.55);
}

/* Subtitle */
.p-sub{
  margin-top: 10px;
  color: rgba(255,255,255,0.82);
  max-width: 62ch;
  font-size: 1.05rem;
}

/* CTA row */
.p-cta-row{
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Make hero buttons perfectly consistent */
.p-cta-row .btn-gold,
.p-cta-row .btn-ghost{
  border-radius: 999px;
  height: 46px;
  padding: 0 18px;
}

/* bottom fade to white content */
.p-hero::after{
  content:"";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, rgba(11,18,32,0), rgba(255,255,255,0.96));
  pointer-events: none;
}

/* =========================================================
   MAIN WRAP
   ========================================================= */
.p-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 16px 90px;
}

/* Card look */
.p-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(11,18,32,0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-top: 16px;
}

/* =========================================================
   TYPO
   ========================================================= */
.p-h2{
  font-size: 1.28rem;
  font-weight: 1000;
  letter-spacing: 0.15px;
  margin-bottom: 10px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-h3{
  font-size: 1.05rem;
  font-weight: 950;
  color: rgba(11,18,32,0.92);
  margin-bottom: 8px;
}

.p-text{ color: rgba(11,18,32,0.74); }
.p-text.subtle{ color: rgba(11,18,32,0.58); }

.p-divider{
  height: 1px;
  background: rgba(11,18,32,0.10);
  margin: 16px 0;
}

/* =========================================================
   FACTS (top stats)
   ========================================================= */
.p-facts{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 768px){
  .p-facts{
    grid-template-columns: repeat(4, 1fr);
  }
}


.fact{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,0.10);
  background: rgba(255,255,255,0.90);
  box-shadow: 0 14px 45px rgba(11,18,32,0.06);
}

.fact-label{
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: rgba(11,18,32,0.56);
}

.fact-value{
  display: block;
  margin-top: 6px;
  font-weight: 1000;
  letter-spacing: 0.15px;
  color: rgba(11,18,32,0.92);
}

/* =========================================================
   AVAILABILITY CHIPS
   ========================================================= */
.p-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,0.10);
  background: var(--grad-soft);
  color: rgba(11,18,32,0.86);
  font-weight: 950;
  font-size: 0.9rem;
  letter-spacing: 0.1px;
}

/* If you keep "(selected)" text, make it look cleaner */
.chip:has(*){}

/* =========================================================
   GALLERY
   ========================================================= */
.p-gallery-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.p-note{
  color: rgba(11,18,32,0.55);
  font-size: 0.92rem;
}

.p-gallery-grid{
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.p-thumb{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(11,18,32,0.10);
  box-shadow: 0 18px 60px rgba(11,18,32,0.10);
  transform: translateZ(0);
}

.p-thumb img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.p-thumb:hover img{
  transform: scale(1.06);
}

/* =========================================================
   BOOKING FORM (UI only)
   ========================================================= */
.p-form{ margin-top: 12px; }

.p-label{
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 950;
  color: rgba(11,18,32,0.74);
  letter-spacing: 0.15px;
}

.p-input, .p-textarea{
  margin-top: 8px;
  width: 100%;
  height: 46px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,0.12);
  background: rgba(255,255,255,0.92);
  color: rgba(11,18,32,0.92);
}

.p-textarea{
  height: 120px;
  padding: 12px;
  resize: vertical;
}

.p-input:focus, .p-textarea:focus{
  border-color: rgba(58,169,255,0.35);
  box-shadow: 0 0 0 4px rgba(58,169,255,0.12);
}

.p-grid-2{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.p-legal{
  margin-top: 12px;
  font-size: 0.92rem;
  color: rgba(11,18,32,0.55);
}

/* Make submit full width if you use .full */
.btn-gold.full{
  width: 100%;
}

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.sticky-cta{
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 52px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: 0.15px;
  box-shadow: 0 20px 70px rgba(58,169,255,0.25);
  z-index: 999;
}

/* =========================================================
   DESKTOP OVERRIDES
   ========================================================= */
@media (min-width: 768px){
  .p-hero{
    height: 88vh;
    min-height: 680px;
  }

  .p-hero-content{
    left: 24px;
    right: 24px;
    bottom: 36px;
  }

  .p-name{
    font-size: 3.3rem;
  }

  .p-wrap{
    padding: 34px 24px 70px;
  }

  .p-facts{
    grid-template-columns: repeat(4, 1fr);
  }

  .p-gallery-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .p-thumb img{
    height: 220px;
  }

  .p-grid-2{
    grid-template-columns: 1fr 1fr;
  }

  .sticky-cta{
    display: none;
  }
}
/* =========================================================
   HERO BADGE ROW (Verified / City / Status)
   ========================================================= */
.p-badgerow{
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.p-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(11,18,32,0.86);
  font-weight: 950;
  font-size: 0.84rem;
  letter-spacing: 0.15px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

.p-badge-verified::before{
  content:"";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(56,242,211,0.7);
}

.p-badge-city{
  border-color: rgba(58,169,255,0.22);
}

.p-badge-city::before{
  content:"";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(58,169,255,0.45);
}

.p-badge-status{
  border-color: rgba(255,79,216,0.22);
}

.p-badge-status::before{
  content:"";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255,79,216,0.45);
}

/* =========================================================
   FULLSCREEN GALLERY OVERLAY
   ========================================================= */
.gallery-overlay{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.96);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
}
.gallery-overlay.is-open{
  display: flex;
}

.gallery-container{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-slider{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  will-change: transform;
}

.gallery-slide{
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10px 60px;
}

.gallery-slide img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: none;
  will-change: transform;
  cursor: zoom-in;
}

/* Close button */
.gallery-close{
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 10000;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s;
}
.gallery-close:hover{ background: rgba(255,255,255,0.28); }

/* Prev / Next arrows */
.gallery-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.20);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s, opacity 0.2s;
}
.gallery-nav:hover{ background: rgba(255,255,255,0.28); }
.gallery-prev{ left: 10px; }
.gallery-next{ right: 10px; }

/* Counter */
.gallery-counter{
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* Mobile: bigger arrows, full height nav zones */
@media (max-width: 600px){
  .gallery-nav{
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .gallery-prev{ left: 6px; }
  .gallery-next{ right: 6px; }
  .gallery-slide{
    padding: 52px 4px 52px;
  }
}

/* =========================================================
   INFO TABLE — eurogirlsescort stil
   ========================================================= */
.p-infolist { padding: 18px 16px; }

.ege-table {
  width: 100%;
  border-collapse: collapse;
}

.ege-row {
  border-bottom: 1px solid rgba(11,18,32,0.07);
}
.ege-row:last-child { border-bottom: none; }

.ege-label {
  padding: 9px 12px 9px 0;
  font-size: 13px;
  font-weight: 700;
  color: #E22222;
  white-space: nowrap;
  width: 42%;
  vertical-align: top;
}

.ege-value {
  padding: 9px 0;
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 500;
}

/* =========================================================
   CONTACT CARD
   ========================================================= */
.p-contact { padding: 18px 16px; }

.ege-contact-title {
  font-size: 20px;
  font-weight: 900;
  color: #E22222;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding-left: 4px;
  border-left: 4px solid #E22222;
  padding-left: 10px;
}

.ege-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(11,18,32,0.07);
  flex-wrap: wrap;
}
.ege-contact-row:last-of-type { border-bottom: none; }

.ege-contact-icon { font-size: 18px; flex-shrink: 0; }

.ege-contact-text {
  font-size: 14px;
  color: #333;
  flex: 1;
}

.ege-show-phone {
  background: #E22222;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.5px;
  transition: background 0.15s;
}
.ege-show-phone:hover { background: #c91a1a; }
.ege-show-phone.revealed {
  background: #22c55e;
  cursor: default;
}

.ege-verified-row {
  padding: 8px 0;
  border-bottom: 1px solid rgba(11,18,32,0.07);
}

.ege-contact-main-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  margin: 16px 0 10px;
  background: #E22222;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.ege-contact-main-btn:hover { background: #c91a1a; transform: translateY(-1px); }
.ege-contact-main-btn:active { transform: scale(0.98); }

.ege-contact-apps {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.ege-app-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}
.ege-app-btn:active { transform: scale(0.97); }

.ege-wa {
  background: #25D366;
  color: #fff;
}
.ege-viber {
  background: #7360F2;
  color: #fff;
}

.ege-safety-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff8f0;
  border: 1px solid #ffe0b2;
  border-radius: 10px;
  padding: 12px;
  font-size: 12px;
  color: #b45309;
  line-height: 1.5;
  margin-top: 4px;
}

/* =========================================================
   REVIEWS / COMMENTS
   ========================================================= */
.p-reviews { padding: 18px 16px; }

.p-reviews-title {
  font-size: 22px;
  font-weight: 900;
  color: #111;
  margin-bottom: 6px;
  padding-bottom: 8px;
  border-bottom: 3px solid #E22222;
  display: inline-block;
}

.rv-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(11,18,32,0.08);
}
.rv-item:last-of-type { border-bottom: none; }

/* Header row */
.rv-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.rv-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
  letter-spacing: 1px;
}

.rv-meta { flex: 1; }

.rv-username {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.rv-date {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 5px;
}

.rv-stars {
  font-size: 13px;
  color: #ff8c00;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 2px;
}

.rv-star-label {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  min-width: 80px;
}

.rv-comment {
  font-size: 14px;
  color: #333;
  line-height: 1.65;
  margin-left: 60px;
}

/* Girl reply */
.rv-reply {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0 0 60px;
  background: #eef0fb;
  border-radius: 12px;
  padding: 12px 14px;
}

.rv-reply-arrow {
  flex-shrink: 0;
  font-size: 16px;
  color: #6B7FDB;
  margin-top: 1px;
  line-height: 1;
}

.rv-reply-body { flex: 1; }

.rv-reply-name {
  font-size: 13px;
  font-weight: 900;
  color: #6B7FDB;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.rv-reply-text {
  font-size: 13px;
  color: #4a5299;
  line-height: 1.6;
}

/* Add comment form */
.rv-add {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(11,18,32,0.08);
}

.rv-add-title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.rv-input, .rv-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 14px;
  color: #111;
  background: #fafafa;
  margin-bottom: 10px;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.rv-input:focus, .rv-textarea:focus {
  border-color: #6B7FDB;
  outline: none;
  background: #fff;
}
.rv-textarea { resize: vertical; line-height: 1.6; }

.rv-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.rv-star-select {
  display: flex;
  gap: 3px;
}
.rv-star-select span {
  font-size: 22px;
  color: #ff8c00;
  cursor: pointer;
  transition: transform 0.1s;
}
.rv-star-select span:hover { transform: scale(1.2); }
.rv-star-select span.dim { color: #ddd; }

.rv-submit {
  width: 100%;
  padding: 13px;
  background: #E22222;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.15s;
  margin-top: 4px;
}
.rv-submit:hover { background: #c91a1a; }
.rv-submit:active { transform: scale(0.98); }
