/* ============================================
   LUXEESCORTS UG - Main Stylesheet
   Luxury Dark Aesthetic | Playfair + DM Sans
   ============================================ */

:root {
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dim: rgba(201,168,76,0.15);
    --dark: #0a0a0c;
    --dark2: #111116;
    --dark3: #18181f;
    --dark4: #22222c;
    --dark5: #2c2c38;
    --text: #e8e8f0;
    --text-muted: #8a8a9a;
    --text-dim: #5a5a6a;
    --accent: #b8466e;
    --accent2: #7c3aed;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 8px 40px rgba(0,0,0,0.6);
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.4);
    --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
    --header-h: 70px;
} 
:root.light-mode,
html.light-mode,
body.light-mode {
    --dark:       #f4f4ef;
    --dark2:      #ffffff;
    --dark3:      #eeede8;
    --dark4:      #e4e3de;
    --dark5:      #d9d8d3;
    --text:       #1a1a1a;
    --text-muted: #555560;
    --text-dim:   #888890;
    --shadow:     0 8px 40px rgba(0,0,0,0.12);
    --shadow-sm:  0 4px 20px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================
   LIGHT MODE
   ============================================ */
body.light-mode {
    --dark:       #f4f4ef;
    --dark2:      #ffffff;
    --dark3:      #eeede8;
    --dark4:      #e4e3de;
    --dark5:      #d9d8d3;
    --text:       #1a1a1a;
    --text-muted: #555560;
    --text-dim:   #888890;
    --shadow:     0 8px 40px rgba(0,0,0,0.12);
    --shadow-sm:  0 4px 20px rgba(0,0,0,0.08);
    background: #f4f4ef;
    color: #1a1a1a;
}

body.light-mode .site-header {
    background: rgba(244,244,239,0.96);
    border-bottom-color: rgba(201,168,76,0.25);
}

body.light-mode .icon-btn {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.1);
    color: #1a1a1a;
}
body.light-mode .icon-btn:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
}

body.light-mode .nav-panel {
    background: #ffffff;
    border-left-color: rgba(201,168,76,0.2);
}
body.light-mode .nav-links li a { color: #444; }
body.light-mode .nav-links li a:hover,
body.light-mode .nav-links li a.active {
    color: var(--gold);
    background: var(--gold-dim);
}
body.light-mode .nav-footer { color: #999; border-top-color: rgba(0,0,0,0.07); }

body.light-mode .auth-panel {
    background: #ffffff;
    border-right-color: rgba(201,168,76,0.2);
}
body.light-mode .auth-header h3 { color: var(--gold); }
body.light-mode .auth-header p  { color: #666; }
body.light-mode .auth-tabs { background: rgba(0,0,0,0.05); }
body.light-mode .auth-tab  { color: #666; }

body.light-mode .form-group label { color: #666; }
body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
    background: #f0efe9;
    border-color: rgba(0,0,0,0.12);
    color: #1a1a1a;
}
body.light-mode .form-group input:focus,
body.light-mode .form-group select:focus,
body.light-mode .form-group textarea:focus {
    background: #fff;
    border-color: var(--gold);
}
body.light-mode .form-group select option { background: #fff; color: #1a1a1a; }

body.light-mode .overlay { background: rgba(0,0,0,0.5); }

body.light-mode .hero-slider { background: #e8e7e2; }

body.light-mode .featured-section { background: #f4f4ef; }

body.light-mode .escort-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.08);
}
body.light-mode .escort-card:hover { border-color: rgba(201,168,76,0.4); }
body.light-mode .escort-card-name  { color: #1a1a1a; }
body.light-mode .escort-card-phone { color: rgba(0,0,0,0.4); }
body.light-mode .escort-card-body  { background: #ffffff; }

body.light-mode .near-you-header {
    background: #ffffff;
    border-color: rgba(201,168,76,0.2);
}
body.light-mode .near-you-header:hover { background: #f5f4ef; }

body.light-mode .vip-section { background: #f4f4ef; }
body.light-mode .section-title { color: #1a1a1a; }

body.light-mode .call-dropdown {
    background: #ffffff;
    border-color: rgba(201,168,76,0.2);
}
body.light-mode .call-dropdown a { color: #1a1a1a; border-bottom-color: rgba(0,0,0,0.06); }
body.light-mode .call-dropdown a:hover { background: var(--gold-dim); color: var(--gold); }

body.light-mode .profile-section {
    background: #ffffff;
    border-color: rgba(0,0,0,0.07);
}
body.light-mode .profile-header-card {
    background: #ffffff;
    border-color: rgba(201,168,76,0.2);
}
body.light-mode .profile-info-row { border-bottom-color: rgba(0,0,0,0.05); }
body.light-mode .profile-info-row span:first-child { color: #777; }
body.light-mode .profile-info-row span:last-child  { color: #1a1a1a; }

body.light-mode .admin-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.07);
}
body.light-mode .admin-sidebar {
    background: #ffffff;
    border-right-color: rgba(0,0,0,0.08);
}
body.light-mode .admin-main  { background: #f4f4ef; }
body.light-mode .admin-table th { color: #888; }
body.light-mode .admin-table td { color: #1a1a1a; }
body.light-mode .admin-table th,
body.light-mode .admin-table td { border-bottom-color: rgba(0,0,0,0.05); }
body.light-mode .admin-table tr:hover td { background: rgba(0,0,0,0.02); }
body.light-mode .stat-card {
    background: #ffffff;
    border-color: rgba(0,0,0,0.07);
}
body.light-mode .stat-label { color: #888; }

body.light-mode .site-footer {
    background: #e8e7e2;
    border-top-color: rgba(201,168,76,0.15);
}
body.light-mode .footer-brand p  { color: #666; }
body.light-mode .footer-links h4 { color: #999; }
body.light-mode .footer-links li a { color: #666; }
body.light-mode .footer-links li a:hover { color: var(--gold); }
body.light-mode .footer-contact p { color: #666; }
body.light-mode .footer-bottom { color: #aaa; border-top-color: rgba(0,0,0,0.07); }

body.light-mode .district-item {
    background: #f0efe9;
    color: #333;
    border: 1px solid rgba(0,0,0,0.08);
}
body.light-mode .district-item:hover {
    background: var(--gold);
    color: #000;
}

body.light-mode .modal-content { background: #ffffff; }
body.light-mode .modal-header  { border-bottom-color: #e0dfd9; }
body.light-mode .close-btn     { color: #666; }

body.light-mode .alert-success { background: rgba(52,211,153,0.08); }
body.light-mode .alert-error   { background: rgba(248,113,113,0.08); }

body.light-mode .auth-btn {
    background: rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.1);
    color: #333;
}
body.light-mode .auth-btn:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }

body.light-mode .section-divider { border-top-color: rgba(0,0,0,0.08); }

body.light-mode .admin-topbar {
    background: #ffffff;
    border-bottom-color: rgba(0,0,0,0.1);
}
body.light-mode .admin-hamburger {
    border-color: rgba(0,0,0,0.15);
    color: #1a1a1a;
}

/* Theme toggle button */
#themeToggle { font-size: 1.1rem; }

/* ============================================
   OVERLAY
   ============================================ */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 400;
    opacity: 0;
    transition: opacity var(--transition);
}
.overlay.active { display: block; opacity: 1; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-h);
    background: rgba(10,10,12,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    z-index: 300;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.site-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    line-height: 1;
}
.logo-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Icon buttons */
.icon-btn {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text);
    transition: all var(--transition);
    flex-shrink: 0;
}
.icon-btn:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    color: var(--gold);
}
.icon-btn svg { width: 20px; height: 20px; }

/* Hamburger lines */
.hamburger-btn {
    flex-direction: column;
    gap: 5px;
}
.hamburger-btn span {
    display: block;
    height: 1.5px;
    background: currentColor;
    transition: all var(--transition);
    width: 22px;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   NAV PANEL (slide from right)
   ============================================ */
.nav-panel {
    position: fixed;
    top: 0; right: 0;
    width: 300px;
    height: 100vh;
    background: var(--dark2);
    border-left: 1px solid rgba(201,168,76,0.15);
    z-index: 500;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    box-shadow: -20px 0 60px rgba(0,0,0,0.6);
}
.nav-panel.open { transform: translateX(0); }

.nav-close {
    position: absolute;
    top: 16px; left: 16px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.nav-close:hover { background: rgba(201,168,76,0.15); color: var(--gold); }

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    text-align: center;
    padding: 8px 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 8px;
}

.nav-links { flex: 1; overflow-y: auto; padding: 8px 0; }
.nav-links li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.nav-links li a:hover, .nav-links li a.active {
    color: var(--gold);
    background: var(--gold-dim);
    border-left-color: var(--gold);
}
.nav-icon { font-size: 1.1rem; }

.nav-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    color: var(--text-dim);
    text-align: center;
}

/* ============================================
   AUTH PANEL (slide from left)
   ============================================ */
.auth-panel {
    position: fixed;
    top: 0; left: 0;
    width: 320px;
    height: 100vh;
    background: var(--dark2);
    border-right: 1px solid rgba(201,168,76,0.15);
    z-index: 500;
    transform: translateX(-100%);
    transition: transform var(--transition);
    padding: 60px 28px 28px;
    overflow-y: auto;
    box-shadow: 20px 0 60px rgba(0,0,0,0.6);
}
.auth-panel.open { transform: translateX(0); }

.auth-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 4px;
}
.auth-header p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 20px; }

.auth-tabs {
    display: flex;
    background: rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 20px;
}
.auth-tab {
    flex: 1;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s;
}
.auth-tab.active { background: var(--gold); color: var(--dark); }

.auth-tab-content { display: none; }
.auth-tab-content.active { display: block; }

.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: var(--text);
    font-size: 0.9rem;
    transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(201,168,76,0.06);
}
.form-group select option { background: var(--dark3); }

.auth-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 8px;
    transition: opacity 0.2s, transform 0.2s;
}
.auth-submit:hover { opacity: 0.9; transform: translateY(-1px); }

.auth-user { text-align: center; margin-bottom: 24px; }
.auth-avatar {
    width: 72px; height: 72px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    margin: 0 auto 12px;
    overflow: hidden;
}
.auth-avatar img { width: 100%; height: 100%; object-fit: cover; }
.auth-initials {
    width: 100%; height: 100%;
    background: var(--gold-dim);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
}
.auth-name { font-weight: 600; font-size: 1rem; margin-bottom: 4px; }
.auth-class {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.auth-class.vip     { background: rgba(201,168,76,0.2); color: var(--gold); }
.auth-class.premium { background: rgba(124,58,237,0.2); color: #a78bfa; }
.auth-class.standard{ background: rgba(255,255,255,0.06); color: var(--text-muted); }

.auth-actions { display: flex; flex-direction: column; gap: 10px; }
.auth-btn {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.88rem;
    font-weight: 500;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.2s;
}
.auth-btn:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold); }
.auth-btn.secondary { color: var(--text-muted); }
.auth-btn.admin   { background: rgba(124,58,237,0.15); border-color: rgba(124,58,237,0.3); color: #a78bfa; }
.auth-btn.danger  { color: #f87171; border-color: rgba(248,113,113,0.2); }
.auth-btn.danger:hover { background: rgba(248,113,113,0.1); border-color: #f87171; }

/* ============================================
   MAIN CONTENT OFFSET
   ============================================ */
main { padding-top: var(--header-h); }

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--dark2);
    margin-top: 12px;
    border-radius: 14px;
    margin-left: 4px;
    margin-right: 4px;
    width: calc(100% - 8px);
}
.slides-track {
    display: flex;
    height: 200px;
    animation: slideLeft 18s linear infinite;
}
.slide-item {
    flex-shrink: 0;
    width: 100%;
    height: 250px;
    position: relative;
}
.slide-item img {
    width: 100%; height: 250px;
    object-fit: cover;
    opacity: 0.7;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(10,10,12,0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 20px;
    text-align: center;
}
.slide-caption {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.slide-sub {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes slideLeft {
    0%   { transform: translateX(0); }
    30%  { transform: translateX(0); }
    33%  { transform: translateX(-100%); }
    63%  { transform: translateX(-100%); }
    66%  { transform: translateX(-200%); }
    96%  { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

.slider-dots {
    position: absolute;
    bottom: 16px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px;
    z-index: 2;
}
.slider-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}
.slider-dot.active { background: var(--gold); border-color: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================
   FEATURED IMAGES SECTION
   ============================================ */
.featured-section { padding: 20px 0; background: var(--dark); }

.featured-item {
    position: relative;
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    border-radius: 10px;
}
.featured-item img {
    width: 100%; height: 100%;
    max-height: 600px;
    object-fit: cover;  
    transition: transform 0.6s ease;
}
.featured-item:hover img { transform: scale(1.03); }

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, transparent 30%, transparent 50%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    padding: 20px;
}
.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
    background: rgba(0,0,0,0.5);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    align-self: flex-start;
}
.featured-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.featured-profile-link {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.4);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
}
.featured-profile-link:hover { color: var(--gold); border-color: var(--gold); }

.call-owner-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 10px 18px;
    border-radius: 24px;
    display: flex; align-items: center; gap: 6px;
    transition: all 0.2s;
    flex-shrink: 0;
    position: relative;
}
.call-owner-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

.call-dropdown {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px); right: 0;
    background: var(--dark3);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-sm);
    overflow: hidden;
    min-width: 180px;
    box-shadow: var(--shadow);
    z-index: 10;
}
.call-dropdown.open { display: block; animation: fadeUp 0.2s ease; }
.call-dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    font-size: 0.88rem; color: var(--text);
    transition: background 0.15s;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.call-dropdown a:last-child { border-bottom: none; }
.call-dropdown a:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.call-dropdown .icon { font-size: 1.1rem; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTION DIVIDER & ESCORTS NEAR YOU
   ============================================ */
.section-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 40px 20px;
}

.near-you-section { padding: 0 0 40px; }
.near-you-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 20px;
    background: var(--dark2);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    cursor: pointer;
    transition: background 0.2s;
}
.near-you-header:hover { background: var(--dark3); }
.near-you-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; color: var(--gold);
    display: flex; align-items: center; gap: 8px;
}
.near-you-arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--gold-dim); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: transform var(--transition);
}
.near-you-arrow.open { transform: rotate(180deg); }

.near-you-dropdown {
    display: none !important;
    background: var(--dark2) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 12px !important;
    max-height: 350px;
    overflow-y: auto;
}

.district-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    min-height: 40px;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   VIP ESCORTS SECTION
   ============================================ */
.vip-section { padding: 20px 0 40px; }
.section-header {
    display: flex; align-items: baseline; justify-content: space-between;
    padding: 0 20px; margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: var(--text);
    display: flex; align-items: center; gap: 10px;
}
.section-title .badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    font-size: 0.65rem; font-weight: 700;
    padding: 3px 8px; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.08em;
    font-family: 'DM Sans', sans-serif;
}
.section-more { font-size: 0.8rem; color: var(--gold); display: flex; align-items: center; gap: 4px; }

/* ============================================
   PROFILE PAGE
   ============================================ */
.profile-page { max-width: 600px; margin: 0 auto; padding: 20px 16px 60px; }

.profile-header-card {
    background: var(--dark2);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    padding: 24px 20px; margin-bottom: 20px; text-align: center;
}
.profile-photo-wrap {
    width: 110px; height: 110px;
    border-radius: 50%; border: 3px solid var(--gold);
    overflow: hidden; margin: 0 auto 14px; position: relative;
}
.profile-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.profile-photo-wrap .no-photo {
    width: 100%; height: 100%;
    background: var(--gold-dim);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold);
}
.profile-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 4px; }
.profile-class-badge {
    display: inline-block; padding: 3px 12px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 14px;
}
.profile-meta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 16px; }
.profile-meta-item { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }
.profile-meta-item strong { color: var(--text); }

.profile-contact-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark); border-radius: 30px;
    font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; transition: all 0.2s;
}
.profile-contact-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }

.profile-wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 10px 20px;
    background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.3);
    color: #25d366; border-radius: 30px;
    font-weight: 600; font-size: 0.88rem; transition: all 0.2s;
}
.profile-wa-btn:hover { background: rgba(37,211,102,0.2); }

.profile-section {
    background: var(--dark2); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 20px; margin-bottom: 16px;
}
.profile-section h4 {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-dim); margin-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 8px;
}
.profile-info-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.88rem;
}
.profile-info-row:last-child { border-bottom: none; }
.profile-info-row span:first-child { color: var(--text-muted); }
.profile-info-row span:last-child  { color: var(--text); font-weight: 500; }

.stars-row { display: flex; align-items: center; gap: 3px; margin-bottom: 6px; }
.star { color: var(--gold); font-size: 1.1rem; }
.star.empty { color: var(--dark5); }

.services-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
    padding: 5px 12px;
    background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.18);
    border-radius: 20px; font-size: 0.78rem; color: var(--gold);
}

.profile-photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.profile-photo-thumb { aspect-ratio: 1; overflow: hidden; border-radius: 6px; cursor: pointer; }
.profile-photo-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.profile-photo-thumb:hover img { transform: scale(1.08); }

.view-count-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px; padding: 4px 12px; font-size: 0.78rem; color: var(--text-muted);
}

.availability-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 20px;
    font-size: 0.78rem; font-weight: 600; text-transform: capitalize;
}
.availability-badge.incall  { background: rgba(52,211,153,0.1);  color: #34d399; border: 1px solid rgba(52,211,153,0.2); }
.availability-badge.outcall { background: rgba(96,165,250,0.1);  color: #60a5fa; border: 1px solid rgba(96,165,250,0.2); }
.availability-badge.both    { background: rgba(167,139,250,0.1); color: #a78bfa; border: 1px solid rgba(167,139,250,0.2); }

/* ============================================
   NEARBY PROFILES GRID
   ============================================ */
.profiles-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 12px; padding: 0 16px;
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-wrapper { display: flex; min-height: 100vh; background: var(--dark); }
.admin-sidebar {
    width: 240px; background: var(--dark2);
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex; flex-direction: column; padding: 80px 0 20px; flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s;
}
.admin-sidebar .nav-links li a { font-size: 0.88rem; padding: 12px 20px; }
.admin-main { flex: 1; padding: 90px 24px 40px; overflow-x: auto; }
.admin-card {
    background: var(--dark2); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 20px; margin-bottom: 20px;
    transition: background 0.3s, border-color 0.3s;
}
.admin-card h2 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 16px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.admin-table th, .admin-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.04); }
.admin-table th { color: var(--text-muted); font-weight: 500; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
.admin-table td { color: var(--text); }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: all 0.2s; border: none; font-family: inherit; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-danger { background: rgba(248,113,113,0.15); color: #f87171; border: 1px solid rgba(248,113,113,0.25); }
.btn-danger:hover { background: rgba(248,113,113,0.25); }
.btn-sm { padding: 5px 10px; font-size: 0.75rem; }

.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin-bottom: 24px; }
.stat-card {
    background: var(--dark2); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius); padding: 16px 20px; text-align: center;
    transition: background 0.3s, border-color 0.3s;
}
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); }
.stat-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.alert { padding: 12px 16px; border-radius: var(--radius-sm); font-size: 0.88rem; margin-bottom: 16px; }
.alert-success { background: rgba(52,211,153,0.1); color: #34d399; border: 1px solid rgba(52,211,153,0.2); }
.alert-error   { background: rgba(248,113,113,0.1); color: #f87171; border: 1px solid rgba(248,113,113,0.2); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.95); z-index: 9000;
    align-items: center; justify-content: center; flex-direction: column;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
    position: absolute; top: 20px; right: 20px;
    font-size: 2rem; color: white;
    background: rgba(255,255,255,0.1);
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark2);
    border-top: 1px solid rgba(201,168,76,0.1);
    padding: 48px 20px 0;
    transition: background 0.3s, border-color 0.3s;
}
.footer-inner {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px; padding-bottom: 32px;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 8px; }
.footer-brand p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.footer-links h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 12px; }
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links li a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer-links li a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 16px 0; text-align: center; font-size: 0.75rem; color: var(--text-dim); }

/* ============================================
   UTILITIES & RESPONSIVE
   ============================================ */
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.font-serif { font-family: 'Playfair Display', serif; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.px-4 { padding: 0 16px; }

@media (min-width: 768px) {
    .profiles-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-slider { height: 600px; }
    .featured-item { max-height: 80vh; }
}
@media (min-width: 1024px) {
    .profiles-grid { grid-template-columns: repeat(4, 1fr); }
}

.no-results { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.no-results .icon { font-size: 3rem; margin-bottom: 12px; }

/* ============================================
   ESCORT CARD
   ============================================ */
.escort-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 12px;
}
@media (min-width: 640px)  { .escort-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; padding: 0 16px; } }
@media (min-width: 1024px) { .escort-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
@media (min-width: 1200px) { .escort-grid { grid-template-columns: repeat(5, 1fr); } }

.escort-card {
    position: relative;
    background: var(--dark2);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.escort-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0,0,0,.55);
    border-color: rgba(201,168,76,.35);
}

.escort-card-img-wrap {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--dark3);
    overflow: hidden;
    text-decoration: none;
    flex-shrink: 0;
    filter: brightness(1.25) contrast(1.3) saturate(1.0);
}
.escort-card-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s;
}
.escort-card:hover .escort-card-img-wrap img { transform: scale(1.06); }
.escort-no-photo {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; color: rgba(255,255,255,.15);
}

.escort-card-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,.80) 100%);
    pointer-events: none;
    z-index: 1;
}

.escort-ribbon {
    position: absolute;
    top: 8px; left: 8px;
    right: auto; bottom: auto;
    z-index: 3;
    font-size: .58rem; font-weight: 800; letter-spacing: .06em;
    padding: 3px 8px; border-radius: 4px;
    text-transform: uppercase;
    transform: none; width: auto; box-shadow: none;
}
.ribbon-vip     { background: linear-gradient(135deg,#c9a84c,#e8c97a); color: #0a0a0c; }
.ribbon-premium { background: linear-gradient(135deg,#7c3aed,#a78bfa); color: #fff; }

.escort-verified {
    position: absolute;
    top: 8px; right: 8px;
    bottom: auto; left: auto;
    z-index: 3;
    font-size: .56rem; font-weight: 700; letter-spacing: .05em;
    padding: 3px 7px; border-radius: 4px;
    background: rgba(52,211,153,.20);
    border: 1px solid rgba(52,211,153,.55);
    color: #34d399;
    width: auto; text-align: left;
}

.escort-card-loc-overlay {
    position: absolute;
    bottom: 8px; left: 8px;
    z-index: 3;
    font-size: .63rem; color: rgba(255,255,255,.9);
    display: flex; align-items: center; gap: 3px;
    text-shadow: 0 1px 4px rgba(0,0,0,.9);
    max-width: calc(100% - 70px);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.escort-media-counts {
    position: absolute;
    bottom: 8px; right: 8px;
    z-index: 3;
    display: flex; gap: 5px; flex-direction: row;
}
.emc-item {
    font-size: .6rem; color: rgba(255,255,255,.80);
    display: flex; align-items: center; gap: 2px;
    text-shadow: 0 1px 3px rgba(0,0,0,.8);
    background: none; backdrop-filter: none; padding: 0; border-radius: 0;
}

.escort-online-dot {
    position: absolute;
    top: 34px; right: 8px;
    z-index: 4;
    display: flex; align-items: center; gap: 3px;
    background: rgba(0,0,0,.65);
    padding: 3px 7px; border-radius: 10px;
    font-size: .58rem; color: #34d399; font-weight: 700;
}
.escort-online-dot span {
    width: 5px; height: 5px;
    background: #34d399; border-radius: 50%;
    animation: ecpulse 1.5s infinite; display: inline-block;
}

.escort-card-body {
    padding: 8px 10px 10px;
    display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.escort-card-name {
    font-size: .88rem; font-weight: 700; color: var(--white);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    font-family: 'Playfair Display', serif;
}
.escort-card-phone { font-size: .72rem; color: rgba(255,255,255,.45); }
.escort-card-loc   { font-size: .72rem; color: var(--text-muted); }

.escort-stars { display: flex; gap: 2px; align-items: center; }
.escort-stars span { font-size: .65rem; }
.escort-stars .rating-val { color: rgba(255,255,255,.4); margin-left: 2px; font-size: .62rem; }

.escort-card-actions { display: flex; gap: 6px; margin-top: 6px; }

.escort-call-btn {
    flex: 1; text-align: center; padding: 8px 4px; border-radius: 6px;
    font-size: .7rem; font-weight: 700;
    background: linear-gradient(135deg,#c9a84c,#e8c97a);
    color: #0a0a0c; text-decoration: none;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: opacity .15s; line-height: 1.2; border: none;
}
.escort-call-btn:hover { opacity: .85; }

.escort-wa-btn {
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 6px;
    background: rgba(37,211,102,.12);
    border: 1px solid rgba(37,211,102,.35);
    color: #25d366; text-decoration: none; transition: background .15s;
}
.escort-wa-btn:hover { background: rgba(37,211,102,.25); }
.escort-wa-btn svg { width: 17px; height: 17px; fill: #25d366; display: block; }

.profile-verified-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.35);
    color: #4ade80; padding: 4px 14px; border-radius: 20px;
    font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
}

@keyframes ecpulse {
    0%,100% { opacity:1; transform:scale(1); }
    50%      { opacity:.5; transform:scale(1.3); }
}

/* ============================================
   FEATURED SECTION DESKTOP GRID
   ============================================ */
@media (min-width: 900px) {
    .featured-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        align-items: start;
    }
    .featured-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.04); }
    .featured-item:only-child { grid-column: 1 / -1; }
}

/* ============================================
   VIDEO BADGE
   ============================================ */
.escort-video-badge {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    z-index: 2; pointer-events: none;
}
.escort-video-badge svg {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
    transition: transform .2s;
}
.escort-card:hover .escort-video-badge svg { transform: scale(1.12); }

/* ============================================
   DISTRICT MODAL
   ============================================ */
.district-modal {
    display: none;
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    align-items: center; justify-content: center;
}
.modal-content {
    background: var(--dark2);
    width: 90%; max-width: 540px;
    border-radius: 12px; max-height: 85vh; overflow: hidden;
    transition: background 0.3s;
}
.modal-header {
    padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center;
}
.modal-body { padding: 20px; max-height: 65vh; overflow-y: auto; }

.district-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}
.district-item {
    background: var(--dark4);
    padding: 16px 12px; border-radius: 8px;
    text-align: center; cursor: pointer; transition: all 0.2s;
    text-decoration: none; color: var(--text); font-weight: 500;
}
.district-item:hover {
    background: var(--gold); color: #000; transform: translateY(-3px);
}
.close-btn {
    background: none; border: none; font-size: 1.8rem;
    color: var(--text-muted); cursor: pointer; transition: color 0.2s;
}
.close-btn:hover { color: var(--gold); }

/* ============================================
   ADMIN MOBILE
   ============================================ */
.admin-topbar {
    display: none;
    position: fixed; top: 0; left: 0; right: 0;
    height: 52px; background: var(--dark2);
    border-bottom: 1px solid rgba(255,255,255,.08);
    z-index: 900; align-items: center;
    justify-content: space-between; padding: 0 16px;
    transition: background 0.3s;
}
.admin-hamburger {
    background: none; border: 1px solid rgba(255,255,255,.12);
    color: var(--text); font-size: 1.2rem;
    width: 38px; height: 38px; border-radius: 6px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.3s, border-color 0.3s;
}
.admin-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.6); z-index: 950;
}
.admin-overlay.active { display: block; }

@media (max-width: 768px) {
    .admin-topbar { display: flex; }
    body { display: block !important; }
    .admin-wrapper { display: block; padding-top: 52px; }
    .admin-sidebar {
        position: fixed; top: 0; left: 0;
        width: 260px; height: 100%;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform .3s ease;
        overflow-y: auto;
        padding-top: 20px;
    }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { width: 100%; padding: 16px 14px 60px; }
    .stats-row { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .admin-table { font-size: .75rem; }
    .admin-card .btn { font-size: .78rem; padding: 8px 12px; }
}