/*
Theme Name: Bangalore Escorts
Theme URI: https://yoursite.com
Author: Your Name
Description: Independent escorts website theme – fungirlbangalore style. VIP Bangalore Escorts, late night girls, elite escort service. SEO-optimized for Bangalore Escorts, escort service Bangalore, locations, categories. Full Elementor widgets for every section.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: bangalore-escorts
Tags: custom-menu, featured-images, threaded-comments, translation-ready, full-width-template, elementor

Bangalore Escorts – luxury escort agency theme with Elementor widgets for hero, elite escorts grid, content blocks, features, profile cards, CTA, categories, services, footer. Built for SEO (Bangalore Escorts keyword).
*/

/* ============================================
   CSS Variables – Navy & Gold (admin se change kar sakte ho)
   ============================================ */
:root {
    --primary: #1e3a5f;
    --primary-light: #2d5a87;
    --primary-dark: #0f2744;
    --accent: #c9a227;
    --accent-pink: #e8c547;
    --bg-dark: #0a0f1a;
    --bg-section: #0f1623;
    --bg-card: #151d2e;
    --text-light: #e8eef4;
    --text-muted: #94a3b8;
    --border-subtle: rgba(201, 162, 39, 0.2);
    --shadow: 0 4px 20px rgba(0,0,0,0.3);
    --radius: 8px;
    --transition: all 0.3s ease;
    --footer-bg: #0d1321;
    --footer-accent: #c9a227;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body, html { overflow-x: hidden; width: 100%; }
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-dark);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-pink); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }

/* ========== Header ========== */
.be-header {
    background: var(--bg-dark);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.be-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.be-logo a { font-size: 1.5rem; font-weight: 700; color: var(--text-light); }
.be-logo a:hover { color: var(--accent-pink); }
.be-nav ul { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; }
.be-nav a {
    padding: 8px 14px;
    color: var(--text-muted);
    border-radius: var(--radius);
}
.be-nav a:hover { color: var(--text-light); background: rgba(45, 90, 135, 0.25); }
.be-cta-header {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary-light);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
}
.be-cta-header:hover { background: var(--primary); color: #fff; }
.be-mobile-toggle { display: none; background: none; border: none; color: var(--text-light); font-size: 1.5rem; cursor: pointer; padding: 8px; }

@media (max-width: 768px) {
    .be-mobile-toggle { display: block; }
    .be-nav { display: none; width: 100%; }
    .be-nav.open { display: block; }
    .be-nav ul { flex-direction: column; }
}

/* ========== Hero Escorts Section ========== */
.be-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 50%, var(--primary-dark) 100%);
    padding: 60px 20px 50px;
    text-align: center;
}
.be-hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; color: #fff; }
.be-hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 24px; }
.be-hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.be-hero-badge {
    padding: 8px 16px;
    background: rgba(45, 90, 135, 0.35);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.be-hero-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-light);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
}
.be-hero-cta:hover { background: var(--primary); color: #fff; }

/* ========== Section Common ========== */
.be-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}
.be-section-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; text-align: center; color: #fff; }
.be-section-desc { text-align: center; color: var(--text-muted); max-width: 700px; margin: 0 auto 32px; }

/* ========== Elite Escorts Grid ========== */
.be-escorts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.be-escort-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}
.be-escort-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.be-escort-img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.be-escort-body { padding: 16px; }
.be-escort-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.be-escort-meta { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 6px; }
.be-escort-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 14px;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius);
    font-size: 0.9rem;
}
.be-escort-cta:hover { opacity: 0.9; color: #fff; }

/* ========== Content Block ========== */
.be-content-block { max-width: 800px; margin: 0 auto; }
.be-content-block p { margin-bottom: 1rem; color: var(--text-muted); }

/* ========== Features 3 / Why Trusted ========== */
.be-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.be-feature-box {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    text-align: center;
}
.be-feature-box h4 { margin-bottom: 10px; color: #fff; font-size: 1.15rem; }
.be-feature-box p { color: var(--text-muted); font-size: 0.95rem; }

/* ========== Profile Cards (Flip) ========== */
.be-profiles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.be-profile-card {
    aspect-ratio: 3/4;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.be-profile-card img { width: 100%; height: 100%; object-fit: cover; }
.be-profile-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    font-weight: 600;
}

/* ========== Profile Cards – FunGirlBangalore Style ========== */
.be-profile-cards-fungirl { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.be-profile-card-fungirl {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}
.be-profile-card-fungirl:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.be-profile-card-img-wrap { aspect-ratio: 1; overflow: hidden; }
.be-profile-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.be-profile-card-body { padding: 16px; }
.be-profile-card-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: #fff; text-transform: uppercase; letter-spacing: 0.02em; }
.be-profile-card-meta { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 6px; }
.be-profile-card-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px 18px;
    background: #25d366;
    color: #fff;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
}
.be-profile-card-wa:hover { opacity: 0.9; color: #fff; }

/* ========== Trusted Bar ========== */
.be-trusted { background: var(--bg-section); padding: 24px 20px; text-align: center; border-top: 1px solid var(--border-subtle); }
.be-trusted p { color: var(--text-muted); font-size: 1rem; }

/* ========== Book CTA ========== */
.be-book-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--radius);
    margin: 0 20px 40px;
    max-width: 1160px;
    margin-left: auto;
    margin-right: auto;
}
.be-book-cta h3 { margin-bottom: 12px; color: #fff; }
.be-book-cta p { color: var(--text-muted); margin-bottom: 20px; }
.be-book-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.be-book-btns a {
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
}
.be-book-call { background: #fff; color: var(--primary); }
.be-book-wa { background: #25d366; color: #fff; }
.be-book-call:hover { opacity: 0.9; color: var(--primary); }
.be-book-wa:hover { color: #fff; opacity: 0.9; }

/* ========== Category Cards ========== */
.be-categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.be-cat-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}
.be-cat-card:hover { border-color: var(--primary-light); }
.be-cat-card h4 { color: #fff; margin-bottom: 6px; }

/* ========== Services List ========== */
.be-services-list { max-width: 700px; margin: 0 auto; list-style: none; }
.be-services-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.be-services-list li:last-child { border-bottom: none; }

/* ========== Footer – Professional & Engaging ========== */
.be-footer {
    background: var(--footer-bg, #0a0f1a);
    margin-top: 0;
    padding: 0;
    border-top: 1px solid var(--border-subtle);
}

/* Top CTA strip – high visibility, conversion-focused */
.be-footer-cta-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    border-top: 3px solid var(--footer-accent, var(--accent));
    padding: 24px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.be-footer-cta-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.be-footer-cta-strip-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.be-footer-cta-strip-label {
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.be-footer-cta-phone {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: var(--transition);
}
.be-footer-cta-phone:hover { color: var(--accent-pink); }
.be-footer-cta-strip-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.be-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.be-footer-btn-icon { font-size: 1.1em; }
.be-footer-btn-call {
    background: #fff;
    color: var(--primary);
}
.be-footer-btn-call:hover {
    background: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.be-footer-btn-wa {
    background: #25d366;
    color: #fff;
}
.be-footer-btn-wa:hover {
    background: #20bd5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* Trust badges */
.be-footer-trust {
    background: rgba(0,0,0,0.25);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-subtle);
}
.be-footer-trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
}
.be-footer-trust-item {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}
.be-footer-trust-item:first-letter { color: var(--accent-pink); }

/* Main footer – 4 columns */
.be-footer-main {
    padding: 48px 20px 40px;
}
.be-footer-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr 1fr;
    gap: 40px 32px;
    align-items: start;
}
@media (max-width: 900px) {
    .be-footer-main-inner {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .be-footer-main-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .be-footer-cta-strip-inner {
        flex-direction: column;
        text-align: center;
    }
    .be-footer-cta-strip-content { justify-content: center; }
    .be-footer-cta-strip-btns { justify-content: center; }
}

/* Brand column */
.be-footer-brand {
    padding-right: 16px;
}
.be-footer-brand .custom-logo-link {
    display: inline-block;
    margin-bottom: 14px;
}
.be-footer-brand .custom-logo-link img {
    max-height: 44px;
    width: auto;
}
.be-footer-logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}
.be-footer-logo-text:hover { color: var(--accent-pink); }
.be-footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer widget columns */
.be-footer-heading {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--footer-accent, var(--accent));
    display: inline-block;
}
.be-footer-widget p,
.be-footer-widget ul { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin: 0; }
.be-footer-widget ul { list-style: none; padding: 0; }
.be-footer-widget ul li { margin-bottom: 12px; }
.be-footer-widget ul li:last-child { margin-bottom: 0; }
.be-footer-widget a { color: var(--text-muted); transition: var(--transition); }
.be-footer-widget a:hover { color: var(--accent-pink); padding-left: 2px; }

/* Contact list with icons */
.be-footer-contact-list { list-style: none; padding: 0; margin: 0; }
.be-footer-contact-list li { margin-bottom: 14px; }
.be-footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}
.be-footer-contact-link:hover { color: var(--accent-pink); }
.be-footer-contact-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 135, 0.35);
    border-radius: var(--radius);
    font-size: 1rem;
    flex-shrink: 0;
}
.be-footer-contact-wa .be-footer-contact-icon { background: rgba(37, 211, 102, 0.2); }

/* Bottom bar */
.be-footer-bottom {
    padding: 20px 20px;
    border-top: 1px solid var(--border-subtle);
    background: rgba(0,0,0,0.35);
}
.be-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.be-footer-copy { margin: 0; }
.be-footer-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.be-footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}
.be-footer-legal a:hover { color: var(--accent-pink); }
@media (max-width: 640px) {
    .be-footer-bottom-inner { flex-direction: column; text-align: center; }
    .be-footer-legal { justify-content: center; }
}

/* ========== Stats/Badges Strip ========== */
.be-badges-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; padding: 16px; }
.be-badges-strip span { padding: 6px 14px; background: rgba(45, 90, 135, 0.3); border-radius: 999px; font-size: 0.85rem; color: var(--text-muted); }

/* ========== Price Page ========== */
.be-price-page .be-price-table { max-width: 600px; margin: 0 auto; overflow-x: auto; }
.be-price-table-inner { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border-subtle); }
.be-price-table-inner th, .be-price-table-inner td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--border-subtle); color: var(--text-light); }
.be-price-table-inner th { background: rgba(45, 90, 135, 0.25); font-weight: 600; }
.be-price-table-inner tr:last-child td { border-bottom: none; }

/* ========== Contact Page ========== */
.be-contact-page .be-contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; max-width: 900px; margin: 0 auto; }
.be-contact-card { background: var(--bg-card); padding: 28px; border-radius: var(--radius); border: 1px solid var(--border-subtle); text-align: center; transition: var(--transition); }
.be-contact-card:hover { border-color: var(--primary-light); }
.be-contact-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.be-contact-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #fff; }
.be-contact-card a, .be-contact-card p { color: var(--text-muted); }
.be-contact-card a:hover { color: var(--accent-pink); }
.be-contact-wa { color: #25d366 !important; }

/* ========== BSG Content Section ========== */
.be-bsg-content-section .be-content-block { max-width: 900px; }
.be-bsg-content-section .be-wysiwyg h3 { font-size: 1.2rem; margin: 1.5rem 0 0.75rem; color: #fff; }

/* ========== FAQ Section ========== */
.be-faq-section .be-faq-list { max-width: 800px; margin: 0 auto; }
.be-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 16px;
    transition: var(--transition);
}
.be-faq-item:hover { border-color: var(--primary-light); }
.be-faq-q { font-size: 1.1rem; margin-bottom: 12px; color: #fff; font-weight: 600; }
.be-faq-a { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.be-faq-a p { margin-bottom: 0.5rem; }
.be-faq-a p:last-child { margin-bottom: 0; }

/* ========== Location Page ========== */
.be-location-page .be-location-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.be-location-card { background: var(--bg-card); padding: 24px; border-radius: var(--radius); border: 1px solid var(--border-subtle); transition: var(--transition); }
.be-location-card:hover { border-color: var(--primary-light); transform: translateY(-2px); }
.be-location-name { font-size: 1.15rem; margin-bottom: 8px; color: #fff; }
.be-location-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }
.be-location-cta { display: inline-block; padding: 8px 16px; background: var(--primary-light); color: #fff; border-radius: var(--radius); font-size: 0.9rem; }
.be-location-cta:hover { background: var(--primary); color: #fff; }

/* ========== Blog Page (home.php) ========== */
.be-blog-page { padding-bottom: 60px; }
.be-blog-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-section) 50%, var(--primary) 100%);
    padding: 48px 20px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}
.be-blog-hero-inner { max-width: 700px; margin: 0 auto; }
.be-blog-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
}
.be-blog-hero-desc { font-size: 1.05rem; color: var(--text-muted); }
.be-blog-list-section { padding-top: 40px; }
.be-blog-list-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.be-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    list-style: none;
}
.be-blog-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}
.be-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.be-blog-card-link { display: block; color: inherit; text-decoration: none; }
.be-blog-card-link:hover { color: inherit; }
.be-blog-card-img-wrap {
    position: relative;
    aspect-ratio: 600/380;
    overflow: hidden;
    background: var(--bg-section);
}
.be-blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.be-blog-card:hover .be-blog-card-img-wrap img { transform: scale(1.05); }
.be-blog-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-section) 100%);
}
.be-blog-card-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--primary-light);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.be-blog-card-body { padding: 20px; }
.be-blog-card-title {
    font-size: 1.2rem;
    line-height: 1.35;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.be-blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.be-blog-card-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.be-blog-card-meta-sep { margin: 0 6px; opacity: 0.7; }
.be-blog-pagination {
    margin-top: 48px;
    text-align: center;
}
.be-blog-pagination .page-numbers {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}
.be-blog-pagination a,
.be-blog-pagination span {
    display: inline-block;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}
.be-blog-pagination a:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
}
.be-blog-pagination .current {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: #fff;
}
.be-blog-none {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}
.be-blog-none h2 { color: #fff; margin-bottom: 12px; }

/* ========== Single Blog Post (single.php) ========== */
/* Force dark theme on single post – override any block/white styles */
body.single .be-main,
body.single-post .be-main,
.be-main.be-single-post {
    background: var(--bg-dark) !important;
    color: var(--text-light) !important;
    min-height: 50vh;
}
.be-single-post { padding-bottom: 50px; }
.be-single-article {
    background: transparent !important;
    color: inherit !important;
}
/* Override Gutenberg/block white backgrounds and text inside post content */
.be-single-body,
.be-single-body.entry-content,
.be-single-body .entry-content,
.be-single-body p,
.be-single-body li,
.be-single-body span,
.be-single-body div,
.be-single-body .wp-block-paragraph,
.be-single-body .wp-block-heading,
.be-single-body .wp-block-list,
.be-single-body .wp-block-quote,
.be-single-body .wp-block-image figcaption,
.be-single-body .has-background,
.be-single-body [class*="wp-block-"] {
    background: transparent !important;
    color: var(--text-light) !important;
}
.be-single-body h1,
.be-single-body h2,
.be-single-body h3,
.be-single-body h4,
.be-single-body .wp-block-heading h2,
.be-single-body .wp-block-heading h3 {
    color: #fff !important;
}
.be-single-body blockquote,
.be-single-body .wp-block-quote {
    color: var(--text-muted) !important;
    border-left-color: var(--accent) !important;
}
.be-breadcrumb {
    background: var(--bg-section);
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 20px;
    font-size: 0.9rem;
}
.be-breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    color: var(--text-muted);
}
.be-breadcrumb a { color: var(--text-muted); }
.be-breadcrumb a:hover { color: var(--accent-pink); }
.be-breadcrumb-sep { margin: 0 8px; opacity: 0.6; }
.be-breadcrumb-current {
    color: var(--text-light);
    font-weight: 500;
}
.be-single-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
    display: grid;
    background: transparent;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}
@media (max-width: 960px) {
    .be-single-wrap { grid-template-columns: 1fr; }
    .be-single-sidebar { order: -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
}
.be-single-content-col { min-width: 0; }
.be-single-header { margin-bottom: 24px; }
.be-single-cats { margin-bottom: 12px; }
.be-single-cat {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(45, 90, 135, 0.4);
    color: var(--accent-pink);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 999px;
    margin-right: 8px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    transition: var(--transition);
}
.be-single-cat:hover { background: var(--primary-light); color: #fff; }
.be-single-title {
    font-size: clamp(1.6rem, 4vw, 2.25rem);
    line-height: 1.3;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}
.be-single-meta {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.be-single-meta-sep { margin: 0 8px; opacity: 0.7; }
.be-single-reading-time { color: var(--accent-pink); }
.be-single-featured {
    margin: 0 0 28px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}
.be-single-featured img { width: 100%; height: auto; display: block; vertical-align: middle; }
.be-single-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-light);
}
.be-single-body p { margin-bottom: 1.25rem; }
.be-single-body h2 { font-size: 1.4rem; margin: 2rem 0 1rem; color: #fff; }
.be-single-body h3 { font-size: 1.2rem; margin: 1.5rem 0 0.75rem; color: #fff; }
.be-single-body ul, .be-single-body ol { margin: 1rem 0 1.25rem 1.5rem; }
.be-single-body li { margin-bottom: 0.5rem; }
.be-single-body a { color: var(--accent-pink); text-decoration: underline; }
.be-single-body a:hover { color: var(--accent); }
.be-single-body blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    margin: 1.5rem 0;
    color: var(--text-muted);
    font-style: italic;
}
.be-single-body img { max-width: 100%; height: auto; border-radius: var(--radius); }
.be-single-pages { margin: 1.5rem 0; }
.be-single-pages-label { font-weight: 600; margin-bottom: 8px; color: #fff; }
.be-single-pages ul { list-style: none; padding: 0; margin: 0; }
.be-single-pages .page-numbers { display: inline-block; margin-right: 8px; }
.be-single-tags {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}
.be-single-tags-label { font-weight: 600; color: var(--text-muted); margin-right: 10px; }
.be-single-tags a {
    display: inline-block;
    padding: 6px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 999px;
    margin: 4px 8px 4px 0;
    color: var(--text-muted);
    transition: var(--transition);
}
.be-single-tags a:hover { border-color: var(--primary-light); color: var(--accent-pink); }
.be-single-nav {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.be-single-nav-prev,
.be-single-nav-next {
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.be-single-nav a:hover { color: var(--accent-pink); border-color: var(--primary-light); }
.be-single-nav-next { text-align: right; }
.be-single-comments { margin-top: 40px; }

/* Blog Sidebar – Admin se manage (Appearance → Widgets → Blog Sidebar) */
.be-single-sidebar { position: sticky; top: 90px; }
.be-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 24px;
}
.be-widget:last-child { margin-bottom: 0; }
.be-widget-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.be-widget ul { list-style: none; padding: 0; margin: 0; }
.be-widget ul li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.be-widget ul li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.be-widget a { color: var(--text-muted); }
.be-widget a:hover { color: var(--accent-pink); }
.be-widget .search-form,
.be-widget .search-field {
    width: 100%;
    max-width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    background: var(--bg-section);
    color: var(--text-light);
    font-size: 0.95rem;
}
.be-widget .search-submit {
    margin-top: 10px;
    padding: 10px 20px;
    background: var(--primary-light);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
}
.be-widget .search-submit:hover { background: var(--primary); }
