/* ============================================================
   ProDirectory - Main Stylesheet
   Light & Dark Mode | Fully Responsive
   ============================================================ */

/* ---- Variables ---- */
:root {
  --primary: #c0392b;
  --secondary: #8e44ad;
  --accent: #f39c12;
  --primary-light: rgba(192,57,43,.12);
  --primary-dark: #a93226;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --bg: #ffffff;
  --bg-alt: #f8f9fa;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-muted: #6c757d;
  --border: #e8e8e8;
  --navbar-bg: #ffffff;
  --footer-bg: #1a1a2e;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: .25s ease;
}

html.dark-mode {
  --bg: #0f0f1a;
  --bg-alt: #1a1a2e;
  --bg-card: #16213e;
  --text: #e8e8f0;
  --text-muted: #9999bb;
  --border: #2a2a4a;
  --navbar-bg: #1a1a2e;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,.4);
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); transition: background var(--transition), color var(--transition); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--text); }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }
.section { padding: 70px 0; }

/* ---- Navbar ---- */
.site-navbar {
  background: var(--navbar-bg);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition);
}
.navbar-brand .brand-text { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--primary); }
.site-navbar .nav-link { color: var(--text) !important; font-weight: 500; font-size: 14px; padding: 8px 14px !important; border-radius: 6px; transition: all var(--transition); }
.site-navbar .nav-link:hover, .site-navbar .nav-link.active { background: var(--primary-light); color: var(--primary) !important; }
.site-navbar .dropdown-menu { border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); background: var(--bg-card); min-width: 200px; }
.site-navbar .dropdown-item { color: var(--text); font-size: 13.5px; padding: 8px 16px; }
.site-navbar .dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
/* Mega Menu */
.mega-menu { width: 600px; padding: 15px; }
.mega-section { padding: 5px 10px; }
.mega-header { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; color: var(--primary); display: block; margin-bottom: 5px; }
.mega-menu .dropdown-item.sub { font-size: 13px; padding: 4px 12px; }
.nav-search-form .form-control { background: var(--bg-alt); border-color: var(--border); color: var(--text); font-size: 13px; }
.theme-toggle { background: var(--bg-alt); border: 1px solid var(--border); color: var(--text); width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.theme-toggle:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---- Hero ---- */
.hero-section { position: relative; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); background-size: cover; background-position: center; padding: 90px 0 70px; overflow: hidden; min-height: 500px; }
.hero-overlay { position: absolute; inset: 0; background: rgba(10,10,30,.65); }
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; background: rgba(192,57,43,.2); border: 1px solid rgba(192,57,43,.5); color: #ff8a80; padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 18px; }
.hero-title { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.hero-subtitle { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 25px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-rating-strip { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 25px; flex-wrap: wrap; }
.hero-stars { color: var(--accent); font-size: 18px; }
.hero-stars .rating-num { color: #fff; font-weight: 700; font-size: 16px; margin-left: 8px; }
.hero-review-count { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600; }
.hero-verified { color: #69f0ae; font-size: 14px; font-weight: 600; }
.hero-search-box { background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); padding: 20px; max-width: 780px; margin: 0 auto 25px; }
.hero-search-box .form-select, .hero-search-box .form-control { background: rgba(255,255,255,.9); border: none; font-size: 14px; }
.search-label { color: rgba(255,255,255,.8); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 4px; }
.btn-search { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; }
.btn-hero-cta { background: linear-gradient(135deg, var(--primary), var(--secondary)); border: none; color: #fff; font-size: 16px; font-weight: 700; padding: 14px 36px; border-radius: 50px; box-shadow: 0 4px 20px rgba(192,57,43,.4); }
.btn-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(192,57,43,.5); color: #fff; }
.hero-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.hero-stats { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.hero-stats span { color: rgba(255,255,255,.75); font-size: 13px; }
.hero-stats span i { color: var(--accent); }

/* ---- Stats Strip ---- */
.stats-strip { background: var(--primary); }
.stat-item { padding: 18px 15px; text-align: center; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-num { display: block; font-size: 28px; font-weight: 800; color: #fff; font-family: var(--font-heading); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 500; text-transform: uppercase; letter-spacing: .5px; }

/* ---- Section Headers ---- */
.section-header { text-align: center; margin-bottom: 40px; position: relative; }
.section-badge { display: inline-block; background: var(--primary-light); color: var(--primary); padding: 5px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.featured-badge-label { background: rgba(241,196,15,.15); color: #d4ac0d; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.section-subtitle { color: var(--text-muted); font-size: 15px; max-width: 500px; margin: 0 auto; }
.section-viewall { position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 13px; font-weight: 600; color: var(--primary); }
@media (max-width: 768px) { .section-viewall { position: static; transform: none; display: block; margin-top: 8px; } }

/* ---- Profile Cards ---- */
.profile-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.profile-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.profile-card-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.profile-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.profile-card:hover .profile-card-img img { transform: scale(1.05); }
.card-badges { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 4px; }
.featured-badge, .verified-badge { font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.featured-badge { background: rgba(241,196,15,.9); color: #1a1a2e; }
.verified-badge { background: rgba(39,174,96,.9); color: #fff; }
.card-actions { position: absolute; bottom: -50px; left: 0; right: 0; padding: 8px; background: linear-gradient(to top, rgba(0,0,0,.8), transparent); display: flex; gap: 5px; justify-content: center; transition: bottom var(--transition); }
.profile-card:hover .card-actions { bottom: 0; }
.profile-card-body { padding: 12px; }
.profile-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.profile-name a { color: var(--text); }
.profile-name a:hover { color: var(--primary); }
.profile-age, .profile-loc { font-size: 12px; color: var(--text-muted); margin-right: 10px; }
.profile-rating { margin: 4px 0; }
.profile-rating .stars { color: var(--accent); font-size: 13px; }
.profile-rating small { color: var(--text-muted); font-size: 11px; }
.profile-desc { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.4; }
/* Contact Buttons */
.btn-whatsapp { background: #25D366; border: none; color: #fff; }
.btn-whatsapp:hover { background: #1da851; color: #fff; }
.btn-call { background: #2196F3; border: none; color: #fff; }
.btn-call:hover { background: #1976d2; color: #fff; }
.btn-telegram { background: #0088cc; border: none; color: #fff; }
.btn-telegram:hover { background: #006699; color: #fff; }
.btn-whatsapp-full { background: linear-gradient(135deg,#25D366,#1da851); border: none; color: #fff; font-weight: 700; padding: 14px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.btn-call-full { background: linear-gradient(135deg,#2196F3,#1976d2); border: none; color: #fff; font-weight: 700; padding: 14px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.btn-telegram-full { background: linear-gradient(135deg,#0088cc,#006699); border: none; color: #fff; font-weight: 700; padding: 14px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.btn-whatsapp-full:hover,.btn-call-full:hover,.btn-telegram-full:hover { transform: translateY(-2px); color: #fff; }
.btn-block { width: 100%; }

/* ---- Stars ---- */
.stars { color: var(--accent); }
.stars i, .fas.fa-star, .fas.fa-star-half-alt { color: var(--accent); }
.far.fa-star { color: #ddd; }

/* ---- Category Cards ---- */
.category-card { display: block; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 16px; text-align: center; transition: all var(--transition); }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.cat-icon { width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; margin: 0 auto 12px; }
.cat-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cat-count { font-size: 12px; color: var(--text-muted); margin: 0; }
.cat-arrow { margin-top: 10px; color: var(--primary); font-size: 14px; opacity: 0; transition: opacity var(--transition); }
.category-card:hover .cat-arrow { opacity: 1; }

/* ---- Service Cards ---- */
.service-card { display: block; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 12px; text-align: center; transition: all var(--transition); }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.svc-icon { width: 50px; height: 50px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--primary); margin: 0 auto 10px; }
.service-card:hover .svc-icon { background: var(--primary); color: #fff; }
.svc-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.svc-count { font-size: 12px; color: var(--text-muted); margin: 0; }

/* ---- Location Cards ---- */
.location-card { display: block; background: linear-gradient(135deg, #1a1a2e, #16213e); border-radius: var(--radius); overflow: hidden; position: relative; min-height: 160px; background-size: cover; background-position: center; transition: transform var(--transition); }
.location-card:hover { transform: translateY(-4px); }
.loc-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.3)); }
.loc-content { position: relative; z-index: 1; padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 160px; }
.loc-icon { color: var(--primary); font-size: 16px; margin-bottom: 6px; }
.loc-name { color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 2px; }
.loc-count { color: rgba(255,255,255,.75); font-size: 12px; margin-bottom: 8px; }
.loc-cities { display: flex; flex-wrap: wrap; gap: 4px; }
.loc-cities span { background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); padding: 2px 8px; border-radius: 4px; font-size: 11px; }

/* ---- Testimonials ---- */
.testimonials-section { background: var(--bg-alt); }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; height: 100%; }
.testimonial-stars { color: var(--accent); font-size: 16px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg,var(--primary),var(--secondary)); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: #fff; overflow: hidden; flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); }
.testimonial-author small { font-size: 12px; color: var(--text-muted); }

/* ---- FAQ ---- */
.faq-section { background: var(--bg); }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.faq-item .accordion-button { font-size: 15px; font-weight: 600; color: var(--text); background: var(--bg-card); }
.faq-item .accordion-button:not(.collapsed) { background: var(--primary-light); color: var(--primary); }
.faq-item .accordion-body { background: var(--bg-card); color: var(--text); font-size: 14px; }
.faq-intro .section-title { text-align: left; }

/* ---- CTA Banner ---- */
.cta-banner-section { background: linear-gradient(135deg, var(--primary), var(--secondary)); padding: 60px 0; }
.cta-banner h2 { color: #fff; font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; }

/* ---- Page Hero ---- */
.page-hero { background: linear-gradient(135deg, #1a1a2e, #16213e); padding: 50px 0; }
.page-hero-sm { padding: 35px 0; }
.page-hero-title { color: #fff; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; margin: 10px 0 8px; }
.page-hero-subtitle { color: rgba(255,255,255,.75); font-size: 15px; margin: 0; }
.page-hero-icon { width: 60px; height: 60px; background: rgba(255,255,255,.1); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin-bottom: 12px; }
.city-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.city-pill { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); padding: 5px 14px; border-radius: 50px; font-size: 13px; transition: all var(--transition); }
.city-pill:hover, .city-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.city-pill span { opacity: .7; font-size: 11px; }
/* Breadcrumb */
.breadcrumb { background: transparent; padding: 0; margin: 0 0 12px; }
.breadcrumb-item a { color: rgba(255,255,255,.65); font-size: 13px; }
.breadcrumb-item.active { color: rgba(255,255,255,.85); font-size: 13px; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---- Listing Section ---- */
.listing-section { padding: 40px 0; background: var(--bg); }
.filter-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 20px; }
.filter-bar .filter-select { font-size: 13px; background: var(--bg); color: var(--text); border-color: var(--border); }
.results-count { font-size: 14px; color: var(--text-muted); }
.results-count strong { color: var(--text); }
.advanced-filter-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.advanced-filter-box .form-label { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.no-results { text-align: center; padding: 60px 20px; color: var(--text-muted); }

/* ---- Profile Detail ---- */
.profile-detail-section { padding: 30px 0 60px; background: var(--bg); }
.gallery-main { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 3/4; }
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.verified-overlay { position: absolute; top: 12px; left: 12px; background: rgba(39,174,96,.9); color: #fff; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.featured-overlay { position: absolute; top: 12px; right: 12px; background: rgba(241,196,15,.9); color: #1a1a2e; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.gallery-thumbs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.gallery-thumb { width: 70px; height: 70px; border-radius: 8px; overflow: hidden; cursor: pointer; border: 3px solid transparent; opacity: .7; transition: all var(--transition); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--primary); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.profile-quick-stats { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.stat-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.stat-row:last-child { border-bottom: none; }
.stat-row span { color: var(--text-muted); }
.stat-row strong { color: var(--text); }
.stat-row strong a { color: var(--primary); }
.profile-detail-name { font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 800; margin-bottom: 6px; }
.verified-badge-lg { font-size: 14px; background: #d4edda; color: #155724; padding: 3px 12px; border-radius: 20px; display: inline-flex; align-items: center; gap: 4px; vertical-align: middle; }
.profile-detail-rating { margin-bottom: 8px; }
.rating-value { font-size: 18px; font-weight: 800; color: var(--accent); margin-left: 6px; }
.rating-count { font-size: 13px; color: var(--text-muted); }
.profile-detail-meta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; font-size: 13px; color: var(--text-muted); }
.profile-detail-meta a { color: var(--primary); }
.profile-short-desc { background: var(--bg-alt); border-left: 3px solid var(--primary); padding: 14px; border-radius: 0 8px 8px 0; margin-bottom: 16px; font-size: 15px; }
.cat-tag { background: var(--primary-light); color: var(--primary); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; margin: 3px; display: inline-flex; align-items: center; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.service-tag { background: var(--bg-alt); border: 1px solid var(--border); color: var(--text); padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 500; transition: all var(--transition); }
.service-tag:hover { background: var(--primary-light); border-color: var(--primary); color: var(--primary); }
.label-tag { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.profile-tabs { border-color: var(--border); margin-top: 20px; }
.profile-tabs .nav-link { color: var(--text-muted); font-size: 14px; }
.profile-tabs .nav-link.active { color: var(--primary); border-color: var(--primary); }
.profile-tab-content { padding: 20px; border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); background: var(--bg-card); }
.profile-description { font-size: 15px; line-height: 1.8; color: var(--text); }
.services-list-detail { display: flex; flex-direction: column; gap: 12px; }
.service-detail-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; background: var(--bg-alt); border-radius: 8px; }
.svc-icon-sm { width: 36px; height: 36px; background: var(--primary); color: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
/* Reviews */
.review-item { padding: 18px 0; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px; }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.review-rating-badge { margin-left: auto; background: var(--accent); color: #1a1a2e; padding: 4px 10px; border-radius: 20px; font-weight: 800; font-size: 13px; }
.review-stars { color: var(--accent); font-size: 13px; }
.review-body { font-size: 14px; line-height: 1.7; color: var(--text); }
.admin-reply { background: var(--bg-alt); border-left: 3px solid var(--primary); padding: 10px 14px; border-radius: 0 6px 6px 0; font-size: 13px; margin-top: 8px; }
.add-review-section { background: var(--bg-alt); border-radius: var(--radius); padding: 24px; }
.star-rating-input { font-size: 28px; cursor: pointer; }
.star-input { transition: color var(--transition); }

/* ---- Sidebar ---- */
.sidebar { position: sticky; top: 80px; }
.sidebar-widget { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; margin-bottom: 20px; }
.widget-title { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; color: var(--text); border-bottom: 2px solid var(--primary); padding-bottom: 8px; display: flex; align-items: center; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list > li { border-bottom: 1px solid var(--border); }
.sidebar-list > li:last-child { border-bottom: none; }
.sidebar-list > li > a { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; font-size: 13.5px; color: var(--text); }
.sidebar-list > li > a:hover { color: var(--primary); }
.sidebar-list .badge { background: var(--primary-light); color: var(--primary); font-weight: 600; }
.sidebar-sublist { list-style: none; padding: 0 0 0 16px; margin: 0 0 6px; }
.sidebar-sublist li a { display: block; font-size: 12px; color: var(--text-muted); padding: 3px 0; }
.sidebar-sublist li a:hover { color: var(--primary); }
.sidebar-profiles { display: flex; flex-direction: column; gap: 10px; }
.sidebar-profile-card a { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-profile-card:last-child a { border-bottom: none; }
.sidebar-profile-card img { width: 50px; height: 50px; border-radius: 8px; object-fit: cover; }
.sidebar-profile-info strong { font-size: 13px; display: block; color: var(--text); }
.sidebar-profile-info small { font-size: 11px; color: var(--text-muted); }
.badge-verified-sm { color: #27ae60; font-size: 12px; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-tag { background: var(--bg-alt); border: 1px solid var(--border); color: var(--text-muted); padding: 4px 10px; border-radius: 4px; font-size: 11px; transition: all var(--transition); }
.sidebar-tag:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }

/* ---- Combo Links ---- */
.combo-links-section { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.combo-links-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.combo-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.combo-tag { background: var(--bg-card); border: 1px solid var(--border); color: var(--text-muted); padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 500; transition: all var(--transition); }
.combo-tag:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }

/* ---- Footer ---- */
.site-footer { background: var(--footer-bg); }
.footer-top { padding: 60px 0 40px; }
.footer-widget { }
.footer-brand { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--primary); }
.footer-about-text { color: #aaa; font-size: 13.5px; line-height: 1.7; margin-bottom: 14px; }
.footer-contact { color: #aaa; font-size: 13px; margin-bottom: 6px; }
.footer-contact a { color: #ccc; }
.footer-contact a:hover { color: var(--primary); }
.footer-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 14px; border-left: 3px solid var(--primary); padding-left: 10px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { color: #aaa; font-size: 13px; transition: color var(--transition); display: flex; align-items: center; gap: 4px; }
.footer-links li a:hover { color: var(--primary); }
.footer-links.two-col { columns: 2; column-gap: 10px; }
.footer-combo-section { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-combo-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #777; margin-bottom: 10px; }
.footer-combo-links { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-combo-links a { color: #888; font-size: 11px; padding: 3px 8px; border: 1px solid #333; border-radius: 4px; transition: all var(--transition); }
.footer-combo-links a:hover { color: var(--primary); border-color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; }
.footer-copy { color: #888; font-size: 13px; margin: 0; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 15px; justify-content: flex-end; }
.footer-bottom-links a { color: #888; font-size: 13px; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ---- Intro & Footer Content Sections ---- */
.intro-content-section { background: var(--bg-alt); padding: 30px 0; }
.intro-content-box, .footer-content-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; font-size: 15px; line-height: 1.8; color: var(--text); }
.intro-content-box h2, .intro-content-box h3, .footer-content-box h2, .footer-content-box h3 { color: var(--primary); }
.page-footer-content { background: var(--bg-alt); padding: 40px 0; }

/* ---- Pagination ---- */
.pagination-nav { margin-top: 30px; }
.pagination .page-link { background: var(--bg-card); border-color: var(--border); color: var(--text); font-size: 14px; }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }
.pagination .page-link:hover { background: var(--primary-light); color: var(--primary); }

/* ---- Back to Top ---- */
.back-to-top { position: fixed; bottom: 25px; right: 25px; width: 44px; height: 44px; background: var(--primary); color: #fff; border: none; border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 999; box-shadow: var(--shadow-md); transition: all var(--transition); }
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---- Error Page ---- */
.error-section { padding: 100px 0; background: var(--bg); }
.error-code { font-size: 100px; font-weight: 900; color: var(--primary); line-height: 1; font-family: var(--font-heading); }
.error-desc { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; }

/* ---- Age Gate ---- */
.age-gate-overlay { position: fixed; inset: 0; background: rgba(10,10,20,.95); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.age-gate-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 48px 36px; max-width: 440px; width: 90%; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.age-gate-icon { font-size: 48px; color: var(--primary); margin-bottom: 16px; }
.age-gate-box h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.age-gate-box p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.age-gate-buttons { display: flex; flex-direction: column; gap: 10px; }

/* ---- Slick Slider overrides ---- */
.slick-slide { padding: 8px; }
.profiles-slider .slick-prev, .profiles-slider .slick-next, .testimonials-slider .slick-prev, .testimonials-slider .slick-next { width: 38px; height: 38px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%; z-index: 1; }
.slick-prev:before, .slick-next:before { color: var(--text); }

/* ---- Profile page related section ---- */
.related-profiles-section { border-top: 1px solid var(--border); padding-top: 40px; }

/* ---- Dark Mode: form overrides ---- */
html.dark-mode .form-control, html.dark-mode .form-select { background: var(--bg-alt); border-color: var(--border); color: var(--text); }
html.dark-mode .accordion-button { color: var(--text); background: var(--bg-card); }
html.dark-mode .accordion-body { background: var(--bg-card); color: var(--text); }
html.dark-mode .mega-menu { background: var(--bg-card); border-color: var(--border); }
html.dark-mode .dropdown-menu { background: var(--bg-card); border-color: var(--border); }
html.dark-mode .dropdown-item { color: var(--text); }
html.dark-mode .dropdown-item:hover { background: var(--primary-light); }
html.dark-mode .table { --bs-table-color: var(--text); --bs-table-bg: var(--bg-card); border-color: var(--border); }
html.dark-mode .breadcrumb-item a { color: rgba(255,255,255,.6); }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .hero-search-box { padding: 14px; }
  .hero-stats { gap: 12px; }
  .gallery-main { aspect-ratio: 3/4; }
  .profile-contact-buttons .btn-whatsapp-full, .profile-contact-buttons .btn-call-full, .profile-contact-buttons .btn-telegram-full { font-size: 14px; padding: 12px; }
  .footer-links.two-col { columns: 1; }
  .section-viewall { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .stat-item { padding: 12px; }
  .stat-num { font-size: 22px; }
}
