/* ═══════════════════════════════════════════════
   SAPPHO XXX ESCORTS — PREMIUM THEME v2.0
   Dark luxury · Gold accents · Full animations
════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── VARIABLES ── */
:root {
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dim: rgba(212,175,55,.15);
  --gold-glow: rgba(212,175,55,.35);
  --bg: #080808;
  --bg2: #101010;
  --bg3: #181818;
  --bg4: #1f1f1f;
  --border: rgba(212,175,55,.12);
  --border-hover: rgba(212,175,55,.45);
  --text: #ece8e1;
  --text-muted: #777;
  --text-dim: #555;
  --radius: 12px;
  --header-h: 68px;
  --transition: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── CURSOR GLOW ── */
#exc-cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
  z-index: 0;
}

/* ── LOADER ── */
#exc-loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  transition: opacity .6s ease, visibility .6s ease;
}
#exc-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.exc-loader-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700;
  color: var(--gold); letter-spacing: 3px;
  animation: pulseGold 2s ease infinite;
}
.exc-loader-logo span { color: #fff; }
.exc-loader-tagline { font-size: 11px; color: var(--text-muted); letter-spacing: 4px; text-transform: uppercase; }
.exc-loader-bar { width: 180px; height: 1px; background: var(--bg3); overflow: hidden; margin-top: 8px; }
.exc-loader-fill { height: 100%; width: 0; background: linear-gradient(90deg, transparent, var(--gold), transparent); animation: loaderFill 1.4s var(--transition) forwards; }
@keyframes loaderFill { to { width: 100%; } }
@keyframes pulseGold { 0%,100% { opacity: 1; } 50% { opacity: .65; } }

/* ── HEADER ── */
.exc-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: box-shadow .3s ease;
}
.exc-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.6); }
.exc-header-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 24px;
}
.exc-logo-link { display: flex; flex-direction: column; line-height: 1; }
.exc-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
}
.exc-logo-sub { font-size: 9px; color: var(--text-muted); letter-spacing: 5px; text-transform: uppercase; }
.exc-nav { margin-left: auto; }
.exc-menu { list-style: none; display: flex; gap: 28px; }
.exc-menu a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); transition: color .25s ease;
  position: relative; padding-bottom: 2px;
}
.exc-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s var(--transition);
}
.exc-menu a:hover { color: var(--gold); }
.exc-menu a:hover::after { width: 100%; }
.exc-search-wrap { margin-left: 20px; }
.exc-search-form {
  display: flex; align-items: center;
  background: var(--bg3); border: 1px solid var(--border); border-radius: 24px;
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.exc-search-form:focus-within { border-color: var(--gold-glow); box-shadow: 0 0 0 3px rgba(212,175,55,.08); }
.exc-search-input { background: none; border: none; padding: 8px 16px; color: var(--text); font-size: 12px; outline: none; width: 190px; }
.exc-search-btn { background: var(--gold); border: none; padding: 9px 14px; cursor: pointer; color: #000; transition: background .2s; }
.exc-search-btn:hover { background: var(--gold-light); }
.exc-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.exc-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: .3s; }
.exc-mobile-menu { display: none; background: var(--bg2); border-top: 1px solid var(--border); padding: 20px 24px; }
.exc-mobile-nav { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.exc-mobile-nav a { font-size: 13px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── PAGE WRAP ── */
.exc-container { max-width: 1440px; margin: 0 auto; padding: 28px 24px; }
#exc-page-wrap { min-height: calc(100vh - var(--header-h)); position: relative; z-index: 1; }

/* ── HERO ── */
.exc-hero {
  position: relative;
  background: linear-gradient(135deg, var(--bg2) 0%, #150800 50%, #0d0500 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 56px 48px;
  margin-bottom: 36px;
  display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center;
  overflow: hidden;
}
.exc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 50%, rgba(212,175,55,.07) 0%, transparent 70%),
    radial-gradient(ellipse 30% 60% at 80% 30%, rgba(212,175,55,.04) 0%, transparent 70%);
  pointer-events: none;
}
.exc-hero::after {
  content: '';
  position: absolute; top: -1px; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}
.exc-hero-badge {
  display: inline-block;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-dim);
  background: rgba(212,175,55,.07);
  padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
  animation: fadeSlideDown .6s var(--transition) both;
}
.exc-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700; line-height: 1.1; margin-bottom: 14px;
  animation: fadeSlideUp .7s var(--transition) .1s both;
}
.exc-hero-title span { color: var(--gold); }
.exc-hero-sub {
  color: var(--text-muted); font-size: 15px; margin-bottom: 32px;
  animation: fadeSlideUp .7s var(--transition) .2s both;
}
.exc-hero-stats { display: flex; gap: 40px; animation: fadeSlideUp .7s var(--transition) .3s both; }
.exc-stat { display: flex; flex-direction: column; }
.exc-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1; }
.exc-stat-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; }

.exc-hero-filter {
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  backdrop-filter: blur(10px);
  animation: fadeSlideLeft .7s var(--transition) .2s both;
}
.exc-filter-title { font-size: 13px; font-weight: 600; color: var(--gold); letter-spacing: 1px; margin-bottom: 16px; }
.exc-filter-form { display: flex; flex-direction: column; gap: 12px; }
.exc-filter-select {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 10px;
  padding: 11px 16px; color: var(--text); font-size: 13px; outline: none; cursor: pointer;
  transition: border-color .2s;
}
.exc-filter-select:focus { border-color: var(--gold-glow); }
.exc-filter-btn {
  background: var(--gold); color: #000; border: none; border-radius: 10px;
  padding: 13px; font-size: 13px; font-weight: 700; cursor: pointer; letter-spacing: 1.5px; text-transform: uppercase;
  transition: all .25s ease; position: relative; overflow: hidden;
}
.exc-filter-btn::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}
.exc-filter-btn:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,175,55,.3); }
.exc-filter-btn:hover::after { transform: translateX(100%); }

/* ── LOCATION BAR ── */
.exc-location-bar {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px;
  animation: fadeIn .5s ease .4s both;
}
.exc-loc-pill {
  padding: 7px 18px; border-radius: 24px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
  background: var(--bg3); border: 1px solid var(--border); color: var(--text-muted);
  transition: all .25s var(--transition); cursor: pointer;
}
.exc-loc-pill:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.exc-loc-pill.active { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 600; }

/* ── DIVIDER ── */
.exc-divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 20px 0 28px; }

/* ── SECTION TITLE ── */
.exc-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 700; color: var(--gold);
  margin-bottom: 24px; letter-spacing: 1px;
  display: flex; align-items: center; gap: 12px;
}
.exc-section-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}

/* ── GRID ── */
.exc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 36px;
}

/* ── CARD ── */
.exc-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--transition), border-color .3s ease, box-shadow .35s ease;
  animation: cardReveal .5s var(--transition) calc(var(--delay, 0ms)) both;
}
.exc-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 20px rgba(212,175,55,.08);
}
.exc-card.exc-verified { border-color: rgba(212,175,55,.25); }
.exc-card-link { display: block; }
.exc-card-photo {
  position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--bg3);
}
.exc-photo-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform .5s var(--transition);
}
.exc-card:hover .exc-photo-img { transform: scale(1.07); }
.exc-photo-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-dim); }

/* Card overlay on hover */
.exc-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
  opacity: 0; transition: opacity .3s ease;
}
.exc-card:hover .exc-card-overlay { opacity: 1; }
.exc-overlay-btn {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-glow); border-radius: 20px;
  padding: 6px 16px; background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
}

.exc-badge-verified {
  position: absolute; top: 10px; left: 10px;
  background: rgba(212,175,55,.92); color: #000; font-size: 9px; font-weight: 700;
  padding: 4px 9px; border-radius: 5px; letter-spacing: .5px;
}
.exc-badge-price {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.88); color: var(--gold); font-size: 12px; font-weight: 700;
  padding: 5px 11px; border-radius: 8px; border: 1px solid var(--border);
}
.exc-card-body { padding: 14px; }
.exc-card-name { font-size: 14px; font-weight: 600; margin-bottom: 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.exc-card-location { font-size: 11px; color: var(--text-muted); margin-bottom: 10px; }
.exc-card-services { display: flex; gap: 5px; flex-wrap: wrap; }
.exc-service-tag {
  font-size: 9px; padding: 3px 8px; border-radius: 12px;
  background: rgba(212,175,55,.08); border: 1px solid var(--gold-dim); color: var(--gold);
}

/* ── AD CARD ── */
.exc-ad-card { display: flex; align-items: center; justify-content: center; min-height: 300px; position: relative; }
.exc-ad-label { position: absolute; top: 8px; left: 10px; font-size: 8px; color: rgba(212,175,55,.25); text-transform: uppercase; letter-spacing: 1px; }

/* ── SINGLE LAYOUT ── */
.exc-single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.exc-single-main { min-width: 0; }

/* ── PROFILE ── */
.exc-profile { display: grid; grid-template-columns: 340px 1fr; gap: 36px; margin-bottom: 36px; }
.exc-profile-photo { position: relative; }
.exc-profile-img {
  width: 100%; border-radius: var(--radius); aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  animation: fadeIn .6s ease both;
}
.exc-photo-ph-large { width: 100%; aspect-ratio: 3/4; background: var(--bg3); border-radius: var(--radius); }
.exc-badge-verified-lg {
  display: block; margin-top: 12px; text-align: center;
  background: var(--gold); color: #000; font-size: 12px; font-weight: 700;
  padding: 8px; border-radius: 8px; letter-spacing: 1px;
}
.exc-profile-info { animation: fadeSlideLeft .6s var(--transition) .2s both; }
.exc-profile-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 700; margin-bottom: 10px; line-height: 1.1;
}
.exc-profile-name span { color: var(--gold); }
.exc-profile-location { color: var(--text-muted); margin-bottom: 18px; font-size: 14px; }
.exc-profile-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 700; color: var(--gold); margin-bottom: 28px;
}
.exc-profile-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 28px; }
.exc-stat-item {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 10px;
  padding: 14px; display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s;
}
.exc-stat-item:hover { border-color: var(--gold-dim); }
.exc-stat-item span { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.exc-stat-item strong { font-size: 16px; color: var(--text); }
.exc-profile-services h3 { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 2px; }
.exc-services-list { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 28px; }
.exc-profile-contact { display: flex; gap: 12px; }
.exc-btn {
  padding: 14px 26px; border-radius: 10px; font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .25s ease; display: inline-block; letter-spacing: .5px;
  position: relative; overflow: hidden;
}
.exc-btn-call { background: var(--gold); color: #000; }
.exc-btn-call:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,.3); }
.exc-btn-whatsapp { background: #25d366; color: #fff; }
.exc-btn-whatsapp:hover { background: #20b858; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.25); }
.exc-profile-desc {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; margin-bottom: 28px;
}
.exc-profile-desc h2 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--gold); margin-bottom: 14px; }
.exc-profile-desc p { color: var(--text-muted); line-height: 1.9; }

/* ── ADS ── */
.exc-ad-banner, .exc-ad-mid { width: 100%; display: block; margin: 16px 0; overflow: hidden; text-align: center; }
.exc-ad-banner ins, .exc-ad-mid ins { display: block !important; width: 100% !important; }

/* ── SIDEBAR ── */
.exc-sidebar { width: 300px; }
.exc-sidebar-inner { position: sticky; top: 80px; }
.exc-sidebar-ad { width: 300px; border-radius: 10px; overflow: hidden; min-height: 250px; display: flex; align-items: center; justify-content: center; }
.exc-sidebar-ad ins { display: block !important; width: 300px !important; }

/* ── PAGINATION ── */
.exc-pagination { display: flex; justify-content: center; gap: 8px; margin: 40px 0; }
.exc-pagination .page-numbers {
  padding: 9px 15px; border-radius: 8px; font-size: 13px;
  background: var(--bg3); border: 1px solid var(--border); color: var(--text-muted);
  transition: all .2s ease;
}
.exc-pagination .page-numbers:hover { border-color: var(--gold-dim); color: var(--gold); }
.exc-pagination .page-numbers.current { background: var(--gold); color: #000; border-color: var(--gold); font-weight: 700; }

/* ── FOOTER ── */
.exc-footer {
  border-top: 1px solid var(--border); padding: 40px 24px; text-align: center; margin-top: 60px;
  position: relative;
}
.exc-footer::before {
  content: '';
  position: absolute; top: -1px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}
.exc-footer-inner { max-width: 1440px; margin: 0 auto; }
.exc-footer-brand { margin-bottom: 16px; }
.exc-footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 16px; }
.exc-footer-links a { font-size: 11px; color: var(--text-dim); letter-spacing: 1px; text-transform: uppercase; transition: color .2s; }
.exc-footer-links a:hover { color: var(--gold); }
.exc-footer-disclaimer { font-size: 11px; color: var(--text-dim); margin-bottom: 8px; }
.exc-footer-copy { font-size: 11px; color: #333; }
.exc-seo-tags { font-size: 1px; color: #090909; padding: 2px; }

/* ── NO RESULTS ── */
.exc-no-results { grid-column: 1/-1; text-align: center; padding: 80px; color: var(--text-muted); }

/* ── ANIMATIONS ── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideLeft { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
@keyframes cardReveal { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ── SCROLL REVEAL ── */
.exc-reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--transition), transform .6s var(--transition); }
.exc-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TABLET ── */
@media (max-width: 1100px) {
  .exc-grid { grid-template-columns: repeat(3, 1fr); }
  .exc-hero { grid-template-columns: 1fr; }
  .exc-hero-filter { max-width: 420px; }
  .exc-single-layout { grid-template-columns: 1fr; }
  .exc-sidebar { display: none; }
  .exc-nav { display: none; }
  .exc-hamburger { display: flex; }
  .exc-search-wrap { display: none; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .exc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .exc-hero { padding: 28px 20px; }
  .exc-hero-title { font-size: 32px; }
  .exc-hero-stats { gap: 20px; }
  .exc-profile { grid-template-columns: 1fr; }
  .exc-container { padding: 16px; }
}

@media (max-width: 480px) {
  .exc-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .exc-hero-title { font-size: 26px; }
}
