/* =========================
PROFILE SECTION
========================= */

.profile-top{
  padding:80px 20px;

  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.03), transparent 40%),
    #050505;
}

/* CONTAINER */
.profile-container{
  display:flex;
  gap:50px;
  align-items:flex-start;

  max-width:1150px;
  margin:auto;
}
/* =========================
ESCORT BANNER
========================= */

.escort-banner{
  position:relative;
  overflow:hidden;

  padding:120px 20px 100px;

  text-align:center;

  background:
    linear-gradient(
      rgba(0,0,0,0.78),
      rgba(0,0,0,0.88)
    ),
    radial-gradient(
      circle at top left,
      rgba(212,175,55,0.08),
      transparent 35%
    ),
    #050505;
}

/* GOLD GLOW */
.escort-banner-overlay{
  position:absolute;

  top:-120px;
  right:-100px;

  width:320px;
  height:320px;

  border-radius:50%;

  background:
  rgba(212,175,55,0.08);

  filter:blur(90px);

  z-index:1;
}

/* CONTAINER */
.escort-banner .container{
  position:relative;
  z-index:2;

  max-width:900px;
  margin:auto;
}

/* TAG */
.escort-tag{
  display:inline-block;

  padding:10px 22px;

  margin-bottom:24px;

  border-radius:40px;

  border:1px solid rgba(212,175,55,0.3);

  color:#d4af37;

  font-size:13px;
  letter-spacing:0.5px;
  font-weight:500;

  backdrop-filter:blur(10px);
}

/* TITLE */
.escort-banner h1{
  margin-bottom:24px;

  font-size:64px;
  line-height:1.1;

  font-family:'Playfair Display', serif;
  font-weight:600;

  background:
  linear-gradient(
    45deg,
    #d4af37,
    #fff,
    #d4af37
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* TEXT */
.escort-banner p{
  max-width:760px;

  margin:auto;

  color:#bdbdbd;

  font-size:18px;
  line-height:1.9;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .escort-banner{
    padding:90px 15px 70px;
  }

  .escort-tag{
    font-size:12px;
    padding:8px 18px;
  }

  .escort-banner h1{
    font-size:38px;
    line-height:1.2;

    margin-bottom:20px;
  }

  .escort-banner p{
    font-size:15px;
    line-height:1.8;
  }

}
/* =========================
LEFT IMAGE
========================= */

.profile-left{
  flex:0 0 420px;
}
.profile-left{
  position:relative;
}
/* BADGE */
.badge{
  position:absolute;
  top:15px;
  left:15px;

  background:#d4af37;
  color:#000;

  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  font-weight:500;

  z-index:2;
}
.profile-left img{
  width:100%;
  border-radius:20px;

  box-shadow:0 20px 50px rgba(0,0,0,0.7);
  transition:0.4s;
}

.profile-left img:hover{
  transform:scale(1.02);
}

/* THUMBNAILS */
.thumbs{
  display:flex;
  gap:10px;
  margin-top:12px;
}

.thumbs img{
  width:70px;
  height:90px;
  object-fit:cover;
  border-radius:10px;
  cursor:pointer;

  opacity:0.6;
  transition:0.3s;
}

.thumbs img:hover{
  opacity:1;
  transform:translateY(-3px);
}
/* MAIN IMAGE */
.profile-main-image{
  width:100%;
  height:640px;   /* PEHLE 760px THA */

  object-fit:cover;
  display:block;

  transition:0.5s ease;
}

/* VERIFIED BADGE */
.profile-badge{
  position:absolute;

  bottom:22px;   /* TOP KI JAGAH */
  right:22px;    /* LEFT KI JAGAH */

  z-index:5;

  display:inline-flex;
  align-items:center;

  padding:10px 18px;

  border-radius:40px;

  background:
  rgba(212,175,55,0.95);

  color:#111;

  font-size:13px;
  font-weight:600;

  backdrop-filter:blur(10px);

  box-shadow:
  0 10px 25px rgba(0,0,0,0.25);
}

/* MOBILE */
@media(max-width:768px){

  .profile-main-image{
    height:500px;
  }

  .profile-badge{
    bottom:16px;
    right:16px;

    padding:8px 14px;

    font-size:12px;
  }

}
/* =========================
RIGHT SIDE
========================= */

.profile-right{
  flex:1;
}

/* NAME */

.profile-right h1{
  font-size:32px;
  margin-bottom:6px;
  font-weight:600;

  background:linear-gradient(45deg,#d4af37,#fff,#d4af37);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
/* STATUS */
.status{
  color:#00ff9c;
  margin-bottom:18px;
  font-size:14px;
}

/* DETAILS GRID */
.details-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;

  margin-bottom:25px;
}

.details-grid div{
  background:rgba(255,255,255,0.03);
  padding:10px 12px;
  border-radius:10px;

  border:1px solid rgba(255,255,255,0.05);
  font-size:14px;
}

/* =========================
RATES
========================= */

.rates{
  margin-bottom:25px;
}

.rates h3{
  margin-bottom:10px;
  font-size:18px;
}

/* RATE ROW */
.rate-row{
  display:flex;
  justify-content:space-between;

  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,0.05);

  font-size:14px;
}

/* =========================
CTA BUTTONS
========================= */

.profile-cta{
  display:flex;
  gap:12px;
}

/* BUTTON BASE */
.btn{
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;

  transition:0.3s;
}

/* WHATSAPP */
.whatsapp-btn{
  background:#25D366;
  color:#000;
}

/* CALL */
.call-btn{
  background:rgba(255,255,255,0.05);
  color:#fff;
  border:1px solid rgba(255,255,255,0.1);
}

/* HOVER */
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,0.6);
}
/* =========================
PROFILE TOP MOBILE FIX
========================= */

@media(max-width:768px){

  .profile-top{
    padding:40px 15px;
  }

  .profile-container{
    display:flex;
    flex-direction:column;

    align-items:center;   /* CENTER */
    justify-content:center;

    gap:35px;
  }

  /* LEFT IMAGE */
  .profile-left{
    width:100%;

    display:flex;
    justify-content:center;   /* CENTER IMAGE */
  }

  .profile-image-wrap{
    width:100%;
    max-width:460px;

    margin:auto;
  }

  .profile-main-image{
    width:100%;
    height:520px;

    object-fit:cover;
  }

  /* RIGHT CONTENT */
  .profile-right{
    width:100%;

    text-align:left;
  }

}
/* =========================
MOBILE
========================= */

@media(max-width:768px){

  .profile-container{
    flex-direction:column;
    gap:30px;
  }

  .profile-left{
    flex:100%;
  }

  .profile-left img{
    max-height:450px;
    object-fit:cover;
  }

  .details-grid{
    grid-template-columns:1fr;
  }

  .profile-cta{
    flex-direction:row;
  }

  .btn{
    flex:1;
    text-align:center;
    padding:10px;
    font-size:13px;
  }

}





/* =========================
PROFILE EXTRA SECTION
========================= */

.profile-extra{
  padding:80px 20px;

  background:
    radial-gradient(circle at center, rgba(212,175,55,0.05), transparent 60%),
    linear-gradient(180deg,#050505,#0a0a0a);
}

/* BOX */
.extra-box{
  max-width:800px;
  margin:0 auto 40px;

  padding:25px;
  border-radius:16px;

  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);

  backdrop-filter:blur(10px);
}

/* HEADINGS */
.extra-box h2{
  margin-bottom:10px;
  font-size:22px;

  background:linear-gradient(45deg,#d4af37,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

/* TEXT */
.extra-box p{
  color:#aaa;
  line-height:1.7;
  font-size:14px;
}

/* SERVICES GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:15px;
}

/* SERVICE ITEM */
.services-grid span{
  background:rgba(255,255,255,0.04);
  padding:10px;
  border-radius:10px;
  font-size:13px;

  text-align:center;
  transition:0.3s;
}

.services-grid span:hover{
  background:rgba(212,175,55,0.1);
}

/* NOTE */
.note{
  font-size:12px;
  margin-top:10px;
  color:#888;
}

/* CTA */
.extra-cta{
  text-align:center;
  margin-top:30px;
}

.extra-cta h2{
  margin-bottom:15px;
  font-size:24px;
}

/* BUTTON */
.cta-btn{
  display:inline-block;

  padding:12px 26px;
  border-radius:30px;

  text-decoration:none;
  font-size:14px;
}

/* WHATSAPP */
.whatsapp-btn{
  background:#25D366;
  color:#000;
}

/* HOVER */
.cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,0.6);
}

.profile-right h1{
  font-size:32px;
  margin-bottom:6px;
  font-weight:600;
}

/* =========================
FORCE HOME FLOATING CTA
========================= */

.mobile-cta,
.bottom-cta{
  display:none !important;
}

/* FLOATING STYLE */
.floating-cta{
  position:fixed !important;
  bottom:20px !important;
  right:15px !important;

  display:flex !important;
  flex-direction:column !important;
  gap:12px;

  z-index:9999;
}

/* BUTTON */
.floating-cta .float-btn{
  width:48px;
  height:48px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;
  text-decoration:none;
}

/* WHATSAPP */
.floating-cta .whatsapp-btn{
  background:#25D366;
  color:#000;
}

/* CALL */
.floating-cta .call-btn{
  background:#111;
  color:#fff;
}

/* =========================
SLIDER
========================= */

.slider{
  position:relative;
  width:100%;
  height:420px;
  overflow:hidden;
  border-radius:20px;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;

  opacity:0;
  transition:0.4s ease;
}

.slide.active{
  opacity:1;
}

/* THUMBS ACTIVE */
.thumb.active{
  border:2px solid #d4af37;
  opacity:1;
}

@media(max-width:768px){
  .slider{
    height:350px;
  }
}