/* =====================
   PROFILE LAYOUT
   ===================== */
.profile-layout {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 24px 60px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.profile-main { flex: 1; min-width: 0; }
.profile-sidebar { width: 300px; flex-shrink: 0; display: flex; flex-direction: column; gap: 16px; }

/* =====================
   MAIN PHOTO
   ===================== */
.profile-photo-main {
  position: relative;
  margin-bottom: 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.profile-img-placeholder {
  background: linear-gradient(160deg, #2a2a2a, #3a3a3a);
  width: 100%;
}
.main-img { height: 520px; }
.thumb-img { width: 100%; height: 100%; }

.profile-photo-badges {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
}
.badge-verified {
  background: rgba(0,0,0,0.75);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 4px 10px;
  border-radius: 10px;
  border: 1px solid var(--border-gold);
}

/* =====================
   GALLERY THUMBNAILS
   ===================== */
.profile-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}
.gallery-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.gallery-thumb:hover { border-color: var(--border-gold); }
.gallery-thumb.locked { cursor: default; }
.thumb-lock {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
}
.gallery-thumb.locked .thumb-img { filter: blur(6px); transform: scale(1.05); }

/* =====================
   PROFILE SECTIONS
   ===================== */
.profile-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 18px;
  transition: border-color 0.2s;
}
.profile-section:hover { border-color: var(--border-gold); }
.profile-section h3 {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.profile-section p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.profile-section p:last-child { margin-bottom: 0; }

/* =====================
   SERVICES
   ===================== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  background: rgba(240,165,0,0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 5px 12px;
  border-radius: 20px;
  transition: background 0.2s;
  cursor: default;
}
.service-tag:hover { background: rgba(240,165,0,0.2); }
.service-tag-locked {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
  color: #555;
}

/* =====================
   REVIEWS
   ===================== */
.reviews-list { display: flex; flex-direction: column; gap: 14px; }
.review-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.review-author { font-size: 13px; font-weight: 700; color: #fff; }
.review-stars { color: var(--gold); font-size: 13px; }
.review-date { font-size: 11px; color: #555; margin-left: auto; }
.review-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0; }
.review-locked {
  background: rgba(255,255,255,0.02);
  border-style: dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.review-lock-msg { font-size: 13px; color: #555; }
.review-lock-msg a { color: var(--gold); }

/* =====================
   CONTACT BOX
   ===================== */
.contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 22px;
  box-shadow: var(--shadow-gold);
}
.contact-box h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 4px;
}
.profile-location { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.profile-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.profile-rating .stars { color: var(--gold); font-size: 16px; }
.rating-count { font-size: 12px; color: var(--text-muted); }
.contact-buttons { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }
.contact-btn-whatsapp {
  background: #25D366;
  color: #000;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 1.5px;
  transition: opacity 0.2s, transform 0.2s;
}
.contact-btn-whatsapp:hover { opacity: 0.9; color: #000; transform: translateY(-1px); }
.contact-btn-call {
  background: var(--gold);
  color: #000;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 1.5px;
  transition: opacity 0.2s, transform 0.2s;
}
.contact-btn-call:hover { opacity: 0.9; color: #000; transform: translateY(-1px); }
.contact-btn-msg {
  background: transparent;
  color: var(--text-muted);
  text-align: center;
  padding: 11px;
  border-radius: 6px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 1.5px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.contact-btn-msg:hover { color: var(--gold); border-color: var(--border-gold); }
.contact-note { font-size: 11px; color: #555; text-align: center; }

/* =====================
   STATS BOX
   ===================== */
.stats-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.2s;
}
.stats-box:hover { border-color: var(--border-gold); }
.stats-box h3 {
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.stats-list { display: flex; flex-direction: column; gap: 8px; }
.stats-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.stat-label { color: var(--text-muted); }
.stat-value { color: #fff; font-weight: 600; }
.stat-value.gold { color: var(--gold); font-weight: 700; }
.availability-green { color: var(--online) !important; }

/* =====================
   SIMILAR PROFILES
   ===================== */
.similar-profiles { display: flex; flex-direction: column; gap: 10px; }
.similar-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.similar-card:hover { background: rgba(255,255,255,0.03); border-color: var(--border-gold); }
.similar-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2e2e2e, #3a3a3a);
  flex-shrink: 0;
}
.similar-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.similar-loc { font-size: 11px; color: var(--text-muted); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1000px) {
  .profile-layout { flex-direction: column; }
  .profile-sidebar { width: 100%; }
  .profile-gallery { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 600px) {
  .main-img { height: 320px; }
  .profile-gallery { grid-template-columns: repeat(3, 1fr); }
  .contact-box h2 { font-size: 26px; }
}
