/**
 * The Standard Arena Business — Frontend Stylesheet
 *
 * Self-contained design system. Loaded AFTER Bootstrap 5 and Font Awesome 6.
 * Designed to be theme-independent.
 */

:root {
        --primary-color: #087442;
        --primary-dark: #065231;
        --primary-light: #0a9357;
        --primary-soft: #e8f5ee;
        --secondary-color: #f59e0b;
        --secondary-dark: #d97706;
        --text-color: #1f2937;
        --text-muted: #6b7280;
        --bg-soft: #f9fafc;
        --bg-cream: #fffbf5;
        --border-color: #e5e7eb;
        --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        --card-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.10);
        --radius: 12px;
        --radius-sm: 8px;
        --container-max: 1240px;
        --header-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.bfk-body {
        font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
        color: var(--text-color);
        background: #ffffff;
        line-height: 1.6;
        margin: 0;
        padding: 0;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden; /* Prevent horizontal scrolling on mobile */
        width: 100%;
}

/* Ensure html doesn't scroll horizontally either */
html { overflow-x: hidden; width: 100%; }

body.bfk-body a {
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.2s ease;
}
body.bfk-body a:hover {
        color: var(--primary-dark);
        text-decoration: underline;
}

img { max-width: 100%; height: auto; }

.container,
.container-fluid { max-width: var(--container-max); }

/* ============ Buttons ============ */
.bfk-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        padding: 10px 22px;
        font-size: 14px;
        font-weight: 600;
        border-radius: var(--radius-sm);
        border: 2px solid transparent;
        cursor: pointer;
        transition: all 0.2s ease;
        text-decoration: none;
        white-space: nowrap;
        line-height: 1.4;
}
.bfk-btn:hover { text-decoration: none; transform: translateY(-1px); }
.bfk-btn-primary {
        background: var(--primary-color);
        color: #fff;
        border-color: var(--primary-color);
}
.bfk-btn-primary:hover { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); }
.bfk-btn-outline {
        background: transparent;
        color: var(--primary-color);
        border-color: var(--primary-color);
}
.bfk-btn-outline:hover { background: var(--primary-color); color: #fff; }
.bfk-btn-white {
        background: #fff;
        color: var(--primary-color);
        border-color: #fff;
}
.bfk-btn-white:hover { background: #f3f4f6; color: var(--primary-dark); }
.bfk-btn-red {
        background: #dc2626;
        color: #fff;
        border-color: #dc2626;
}
.bfk-btn-red:hover { background: #b91c1c; color: #fff; }
.bfk-btn-whatsapp {
        background: #25d366;
        color: #fff;
        border-color: #25d366;
}
.bfk-btn-whatsapp:hover { background: #1da851; color: #fff; }
.bfk-btn-soft {
        background: var(--primary-soft);
        color: var(--primary-color);
        border-color: transparent;
}
.bfk-btn-soft:hover { background: var(--primary-color); color: #fff; }
.bfk-btn-lg { padding: 14px 28px; font-size: 16px; }
.bfk-btn-sm { padding: 6px 12px; font-size: 12px; }

/* ============ Navbar (premium, stable, never slides) ============ */
.bfk-navbar {
        background: #fff;
        border-bottom: 1px solid var(--border-color);
        height: var(--header-h);
        position: sticky;
        top: 0;
        z-index: 1030;
        box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 24px rgba(8, 116, 66, 0.04);
        overflow: hidden; /* Prevent any horizontal sliding */
        width: 100%;
}
.bfk-navbar-inner {
        max-width: var(--container-max);
        margin: 0 auto;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between; /* Logo left, nav center, actions right */
        gap: 16px;
        padding: 0 24px;
        width: 100%;
        box-sizing: border-box;
}

.bfk-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 800;
        font-size: 18px;
        color: var(--primary-color) !important;
        text-decoration: none !important;
        flex-shrink: 0;
        transition: opacity 0.2s ease;
        height: 100%;
        max-height: var(--header-h);
}
.bfk-brand:hover { opacity: 0.85; }
.bfk-brand-mark {
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #fff;
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        box-shadow: 0 4px 12px rgba(8, 116, 66, 0.28);
        flex-shrink: 0;
}
.bfk-brand-text {
        letter-spacing: -0.4px;
        line-height: 1.1;
        max-width: 220px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}
.bfk-brand-logo {
        max-height: 42px;
        width: auto;
        max-width: 200px;
        display: block;
        object-fit: contain;
}

.bfk-nav {
        display: flex;
        align-items: center;
        gap: 2px;
        list-style: none;
        margin: 0;
        padding: 0;
        flex: 0 1 auto; /* Don't grow infinitely, don't shrink */
        justify-content: center;
}
.bfk-nav > li > a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 10px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--text-color);
        text-decoration: none !important;
        border-radius: 8px;
        transition: all 0.18s ease;
        white-space: nowrap;
}
.bfk-nav > li > a:hover {
        color: var(--primary-color);
        background: var(--primary-soft);
}
.bfk-nav > li > a.active {
        color: var(--primary-color);
        background: var(--primary-soft);
        font-weight: 600;
}
.bfk-nav > li > a i { font-size: 10px; opacity: 0.7; }

/* Dropdown for "More" */
.bfk-nav-has-dropdown { position: relative; }
.bfk-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        min-width: 220px;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
        padding: 8px;
        list-style: none;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: all 0.18s ease;
        z-index: 1100;
}
.bfk-nav-has-dropdown:hover .bfk-dropdown,
.bfk-nav-has-dropdown:focus-within .bfk-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
}
.bfk-dropdown li a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        font-size: 14px;
        color: var(--text-color);
        text-decoration: none !important;
        border-radius: 8px;
        transition: all 0.15s ease;
}
.bfk-dropdown li a:hover {
        background: var(--primary-soft);
        color: var(--primary-color);
}
.bfk-dropdown li a i {
        width: 18px;
        color: var(--primary-color);
        font-size: 13px;
}

.bfk-nav-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
}
.bfk-search-toggle,
.bfk-nav-login {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        border: 1px solid var(--border-color);
        background: #fff;
        color: var(--text-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.18s ease;
        text-decoration: none !important;
}
.bfk-search-toggle:hover,
.bfk-nav-login:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
        background: var(--primary-soft);
}
.bfk-nav-cta {
        padding: 9px 16px !important;
        font-size: 13.5px;
        font-weight: 600;
}
.bfk-nav-cta i { font-size: 12px; }

.bfk-menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 4px;
        width: 38px;
        height: 38px;
        border-radius: 9px;
        border: 1px solid var(--border-color);
        background: #fff;
        cursor: pointer;
        padding: 0 9px;
}
.bfk-menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-color);
        border-radius: 1px;
        transition: all 0.2s ease;
}

/* Search overlay (slide-down) */
.bfk-search-bar-overlay {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
        z-index: 1050;
        padding: 18px 0;
}
.bfk-search-bar-overlay.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
}
.bfk-search-bar-overlay form {
        display: flex;
        align-items: center;
        gap: 12px;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
}
.bfk-search-bar-overlay form > i {
        position: absolute;
        left: 16px;
        color: var(--primary-color);
        font-size: 18px;
}
.bfk-search-bar-overlay input {
        flex: 1;
        border: 2px solid var(--border-color);
        border-radius: 999px;
        padding: 14px 18px 14px 48px;
        font-size: 16px;
        outline: none;
        transition: border-color 0.18s ease;
}
.bfk-search-bar-overlay input:focus { border-color: var(--primary-color); }
.bfk-search-bar-overlay button {
        background: var(--primary-color);
        color: #fff;
        border: none;
        padding: 12px 24px;
        border-radius: 999px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.18s ease;
}
.bfk-search-bar-overlay button:hover { background: var(--primary-dark); }
.bfk-search-close {
        font-size: 28px;
        cursor: pointer;
        color: var(--text-muted);
        line-height: 1;
        margin-left: 4px;
        user-select: none;
}
.bfk-search-close:hover { color: var(--text-color); }

/* ============ Mobile menu (off-canvas) ============ */
.bfk-mobile-menu {
        position: fixed;
        top: 0;
        right: -340px;
        width: 320px;
        max-width: 86vw;
        height: 100vh;
        background: #fff;
        z-index: 2000;
        box-shadow: -2px 0 24px rgba(0, 0, 0, 0.16);
        transition: right 0.28s ease;
        overflow-y: auto;
        padding: 18px 20px 40px;
        display: flex;
        flex-direction: column;
}
.bfk-mobile-menu.open { right: 0; }
.bfk-mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 16px;
}
.bfk-mobile-close {
        font-size: 30px;
        cursor: pointer;
        color: var(--text-muted);
        line-height: 1;
        user-select: none;
}
.bfk-mobile-close:hover { color: var(--text-color); }
.bfk-mobile-search {
        margin-bottom: 18px;
}
.bfk-mobile-search form {
        display: flex;
        align-items: center;
        background: var(--bg-soft);
        border-radius: 10px;
        padding: 4px 4px 4px 14px;
}
.bfk-mobile-search form i { color: var(--text-muted); font-size: 14px; }
.bfk-mobile-search input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 10px 8px;
        font-size: 14px;
        outline: none;
}
.bfk-mobile-nav {
        list-style: none;
        padding: 0;
        margin: 0;
        flex: 1;
}
.bfk-mobile-nav li { margin-bottom: 2px; }
.bfk-mobile-nav li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 13px 14px;
        color: var(--text-color);
        font-weight: 500;
        font-size: 15px;
        text-decoration: none !important;
        border-radius: 10px;
        transition: all 0.15s ease;
}
.bfk-mobile-nav li a:hover { background: var(--primary-soft); color: var(--primary-color); }
.bfk-mobile-nav li a i {
        width: 22px;
        color: var(--primary-color);
        font-size: 15px;
        text-align: center;
}
.bfk-mobile-nav li a.bfk-btn-primary {
        background: var(--primary-color);
        color: #fff !important;
        justify-content: center;
        font-weight: 600;
        margin-top: 12px;
        padding: 14px;
}
.bfk-mobile-nav li a.bfk-btn-primary i { color: #fff; }
.bfk-mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5);
        backdrop-filter: blur(2px);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease;
}
.bfk-mobile-overlay.show { opacity: 1; visibility: visible; }

/* ============ Main ============ */
.bfk-main { min-height: 60vh; }

/* ============ Hero (premium redesign) ============ */
.bfk-hero {
        position: relative;
        padding: 80px 0 100px;
        overflow: hidden;
        color: #fff;
        background: linear-gradient(135deg, #065231 0%, #087442 50%, #0a6b3d 100%);
}
.bfk-hero-bg {
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.18) 0, transparent 45%),
                radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.06) 0, transparent 50%),
                radial-gradient(circle at 50% 100%, rgba(10, 147, 87, 0.4) 0, transparent 60%);
        pointer-events: none;
}
.bfk-hero-inner { position: relative; z-index: 2; }
.bfk-hero-content { max-width: 880px; margin: 0 auto; text-align: center; }

.bfk-hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 999px;
        margin-bottom: 22px;
        backdrop-filter: blur(8px);
}
.bfk-hero-eyebrow i { color: var(--secondary-color); }

.bfk-hero-title {
        font-size: clamp(2.2rem, 5.5vw, 3.8rem);
        font-weight: 900;
        line-height: 1.08;
        letter-spacing: -1.8px;
        margin: 0 0 22px;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}
.bfk-hero-highlight {
        display: inline-block;
        background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-style: italic;
}

.bfk-hero-subtitle {
        font-size: clamp(1rem, 1.6vw, 1.2rem);
        max-width: 720px;
        margin: 0 auto 38px;
        opacity: 0.95;
        line-height: 1.6;
}

.bfk-hero-search {
        background: #fff;
        border-radius: 16px;
        padding: 12px;
        max-width: 880px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}
.bfk-hero-input-group {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 240px;
        gap: 10px;
        padding: 4px 16px;
}
.bfk-hero-input-group i { color: var(--primary-color); font-size: 18px; }
.bfk-hero-input-group input {
        border: none;
        outline: none;
        font-size: 15px;
        flex: 1;
        padding: 12px 0;
        color: var(--text-color);
        background: transparent;
        font-weight: 500;
}
.bfk-hero-input-group input::placeholder { color: var(--text-muted); font-weight: 400; }
.bfk-hero-divider {
        width: 1px;
        height: 36px;
        background: var(--border-color);
}
.bfk-hero-search .bfk-btn { padding: 12px 22px; font-size: 14px; font-weight: 600; }

.bfk-hero-tags {
        margin-top: 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
        font-size: 13px;
}
.bfk-hero-tags > span { opacity: 0.8; font-weight: 500; }
.bfk-hero-tags a {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.18);
        padding: 5px 14px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.18s ease;
        backdrop-filter: blur(4px);
}
.bfk-hero-tags a:hover {
        background: rgba(255, 255, 255, 0.22);
        transform: translateY(-1px);
}

/* ============ How It Works ============ */
.bfk-how-it-works {
        background: var(--bg-soft);
        padding: 80px 0;
}
.bfk-step-card {
        background: #fff;
        border-radius: var(--radius);
        padding: 32px 24px;
        text-align: center;
        height: 100%;
        box-shadow: var(--card-shadow);
        transition: all 0.3s ease;
        border-top: 4px solid var(--primary-color);
        position: relative;
}
.bfk-step-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--card-shadow-hover);
}
.bfk-step-number {
        width: 56px;
        height: 56px;
        background: var(--primary-color);
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
}
.bfk-step-icon {
        font-size: 32px;
        color: var(--secondary-color);
        margin-bottom: 14px;
}
.bfk-step-card h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-color);
        margin-bottom: 10px;
}
.bfk-step-card p {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0;
}

/* ============ Listings area ============ */
.bfk-listings-area,
.bfk-categories-section,
.bfk-counties-section,
.bfk-blog-section,
.bfk-stats-section,
.bfk-page-section { padding: 70px 0; }

.bfk-card {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        padding: 22px;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        box-shadow: var(--card-shadow);
}
.bfk-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--card-shadow-hover);
        border-color: var(--primary-light);
}
.bfk-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 14px;
}
.bfk-card-logo {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        object-fit: cover;
        background: var(--primary-soft);
        flex-shrink: 0;
}
.bfk-card-name {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        color: var(--text-color);
        line-height: 1.3;
        text-align: right;
}
.bfk-card-tagline {
        font-size: 12px;
        color: var(--primary-color);
        font-weight: 500;
        margin-top: 2px;
}
.bfk-card-description {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0 0 14px;
        flex: 1;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-clamp: 3;
}
.bfk-card-meta-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-bottom: 14px;
}
.bfk-card-meta-box {
        background: var(--bg-soft);
        border-radius: 8px;
        padding: 8px 12px;
        font-size: 11px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-weight: 600;
        display: flex;
        flex-direction: column;
        gap: 2px;
        flex: 0 1 auto;
}
.bfk-card-meta-box:first-child {
        text-align: center;
        align-items: center;
}
.bfk-card-meta-box:first-child .bfk-card-meta-val {
        text-align: center;
}
.bfk-card-meta-box:last-child {
        text-align: center;
        align-items: center;
}
.bfk-card-meta-box i { color: var(--primary-color); font-size: 13px; }
.bfk-card-meta-val {
        font-size: 13px;
        color: var(--text-color);
        text-transform: none;
        letter-spacing: 0;
        font-weight: 500;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}
.bfk-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 14px;
        border-top: 1px solid var(--border-color);
}
.bfk-stars { color: var(--secondary-color); font-size: 13px; letter-spacing: 1px; }
.bfk-card-reviews { font-size: 12px; color: var(--text-muted); }

/* ============ Categories grid ============ */
.bfk-categories-section { background: var(--bg-soft); }
.bfk-category-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 24px 16px 20px;
        height: 100%;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        color: var(--text-color);
        position: relative;
        overflow: hidden;
}
.bfk-category-card:hover {
        transform: translateY(-4px);
        border-color: var(--primary-color);
        box-shadow: 0 8px 24px rgba(8, 116, 66, 0.12);
        text-decoration: none;
        color: var(--text-color);
}
.bfk-category-card-icon {
        width: 52px;
        height: 52px;
        background: var(--primary-soft);
        color: var(--primary-color);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
        margin-bottom: 14px;
        transition: all 0.25s ease;
}
.bfk-category-card:hover .bfk-category-card-icon {
        background: var(--primary-color);
        color: #fff;
        transform: scale(1.08);
}
.bfk-category-info { flex: 1; }
.bfk-category-info h4 {
        font-size: 15px;
        font-weight: 700;
        margin: 0 0 4px;
        color: inherit;
        line-height: 1.3;
}
.bfk-category-info span {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 500;
}

/* ============ Counties ============ */
.bfk-county-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 24px 16px 20px;
        height: 100%;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--text-color);
        text-decoration: none;
        position: relative;
        overflow: hidden;
}
.bfk-county-card:hover {
        background: var(--primary-color);
        color: #fff;
        transform: translateY(-4px);
        border-color: var(--primary-color);
        box-shadow: 0 8px 24px rgba(8, 116, 66, 0.12);
        text-decoration: none;
}
.bfk-county-card-icon {
        width: 52px;
        height: 52px;
        background: var(--primary-soft);
        color: var(--primary-color);
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
        margin-bottom: 14px;
        transition: all 0.25s ease;
}
.bfk-county-card:hover .bfk-county-card-icon {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
}
.bfk-county-card h4 {
        font-size: 15px;
        font-weight: 700;
        margin: 0 0 4px;
        color: inherit;
        line-height: 1.3;
}
.bfk-county-card span {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 500;
}
.bfk-county-card:hover span { color: rgba(255, 255, 255, 0.85); }

/* ============ Stats ============ */
.bfk-stats-section {
        background:
                linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        color: #fff;
        padding: 60px 0;
}
.bfk-stat-card {
        text-align: center;
        padding: 24px 16px;
        background: rgba(255, 255, 255, 0.07);
        border-radius: var(--radius);
        backdrop-filter: blur(6px);
}
.bfk-stat-icon {
        width: 64px;
        height: 64px;
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 14px;
}
.bfk-stat-number {
        font-size: 36px;
        font-weight: 800;
        line-height: 1;
        letter-spacing: -1px;
}
.bfk-stat-label {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.85;
        margin-top: 8px;
}

/* ============ Blog cards ============ */
.bfk-blog-card {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        box-shadow: var(--card-shadow);
}
.bfk-blog-card:hover { transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }
.bfk-blog-img-wrap {
        display: block;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: var(--bg-soft);
}
.bfk-blog-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
}
.bfk-blog-card:hover .bfk-blog-img { transform: scale(1.05); }
.bfk-blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.bfk-blog-title {
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 10px;
        line-height: 1.35;
}
.bfk-blog-title a { color: var(--text-color); text-decoration: none; }
.bfk-blog-title a:hover { color: var(--primary-color); }
.bfk-blog-excerpt {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0 0 14px;
        flex: 1;
}
.bfk-read-more {
        color: var(--primary-color);
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 14px;
}
.bfk-read-more:hover { text-decoration: underline; }
.bfk-blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        color: var(--text-muted);
        padding-top: 12px;
        border-top: 1px solid var(--border-color);
}

/* ============ CTA banner ============ */
.bfk-cta-banner {
        background: var(--bg-cream);
        padding: 60px 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
}
.bfk-cta-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
}
.bfk-cta-inner h2 { font-size: 28px; font-weight: 800; color: var(--text-color); margin: 0 0 8px; }
.bfk-cta-inner p { color: var(--text-muted); margin: 0; max-width: 580px; }

/* ============ Page header ============ */
.bfk-page-header {
        background:
                linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #fff;
        padding: 60px 0;
        text-align: center;
}
.bfk-page-header h1 {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        font-weight: 800;
        margin: 0 0 10px;
        letter-spacing: -0.5px;
}
.bfk-page-header p {
        font-size: 1.05rem;
        opacity: 0.95;
        max-width: 760px;
        margin: 0 auto;
}
.bfk-page-header a { color: #fff; text-decoration: underline; }

/* ============ Breadcrumb ============ */
.bfk-breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
        font-size: 13px;
        margin-bottom: 12px;
        opacity: 0.9;
}
.bfk-breadcrumb a { color: #fff; text-decoration: none; }
.bfk-breadcrumb a:hover { text-decoration: underline; }
.bfk-breadcrumb i { font-size: 10px; opacity: 0.7; }

/* ============ Empty state ============ */
.bfk-empty-state {
        text-align: center;
        padding: 60px 20px;
        color: var(--text-muted);
}
.bfk-empty-state > i {
        font-size: 48px;
        margin-bottom: 16px;
        color: var(--border-color);
}
.bfk-empty-state h3 {
        color: var(--text-color);
        font-size: 20px;
        margin-bottom: 8px;
}
.bfk-empty-state p { margin-bottom: 20px; }

/* ============ View more link ============ */
.bfk-view-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 10px 22px;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        font-weight: 600;
        border-radius: var(--radius-sm);
        text-decoration: none;
        transition: all 0.2s ease;
}
.bfk-view-more:hover {
        background: var(--primary-color);
        color: #fff;
        text-decoration: none;
}

/* ============ Listing detail ============ */
.bfk-listing-hero {
        background: #fff;
        padding: 40px 0;
        border-bottom: 1px solid var(--border-color);
}
.bfk-listing-brand {
        display: flex;
        align-items: center;
        gap: 22px;
        flex-wrap: wrap;
}
.bfk-listing-logo-frame {
        width: 110px;
        height: 110px;
        border-radius: var(--radius);
        background: var(--bg-soft);
        border: 1px solid var(--border-color);
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        padding: 8px;
}
.bfk-listing-logo-frame img { width: 100%; height: 100%; object-fit: contain; }
.bfk-listing-title {
        font-size: clamp(1.4rem, 3vw, 2rem);
        font-weight: 800;
        margin: 0 0 4px;
        color: var(--text-color);
        letter-spacing: -0.5px;
}
.bfk-listing-tagline {
        font-size: 15px;
        color: var(--primary-color);
        font-weight: 500;
        margin: 0 0 10px;
}
.bfk-listing-rating-summary {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        font-size: 14px;
}
.bfk-verified-badge {
        background: var(--primary-soft);
        color: var(--primary-color);
        padding: 3px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
}
.bfk-listing-social-tray {
        display: flex;
        gap: 8px;
        margin-top: 14px;
        flex-wrap: wrap;
}
.bfk-social-btn {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--bg-soft);
        color: var(--text-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        transition: all 0.2s ease;
        text-decoration: none;
}
.bfk-social-btn:hover { background: var(--primary-color); color: #fff; text-decoration: none; }
.bfk-social-btn.bfk-social-whatsapp { background: #25d366; color: #fff; }

.bfk-listing-card {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        padding: 28px;
        margin-bottom: 24px;
        box-shadow: var(--card-shadow);
}
.bfk-listing-section-title {
        font-size: 20px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 0 16px;
        padding-bottom: 12px;
        border-bottom: 2px solid var(--primary-soft);
}
.bfk-listing-content { font-size: 15px; line-height: 1.75; color: var(--text-color); }
.bfk-listing-content p { margin-bottom: 14px; }
.bfk-listing-content h2,
.bfk-listing-content h3 { color: var(--primary-dark); margin-top: 20px; }

.bfk-service-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        background: var(--bg-soft);
        border-radius: 8px;
        font-size: 14px;
}
.bfk-service-item i { color: var(--primary-color); font-size: 16px; }
.bfk-service-product i { color: var(--secondary-color); }

.bfk-reviews-summary {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px;
        background: var(--bg-soft);
        border-radius: 8px;
        margin-bottom: 20px;
}
.bfk-reviews-score { font-size: 32px; font-weight: 800; color: var(--primary-color); }

.bfk-review-form {
        background: var(--bg-soft);
        border-radius: var(--radius-sm);
        padding: 20px;
        margin-top: 16px;
}
.bfk-review-form h4 { font-size: 16px; margin-bottom: 12px; }
.bfk-rating-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; margin-bottom: 12px; }
.bfk-rating-input input { display: none; }
.bfk-rating-input label { cursor: pointer; font-size: 24px; color: #ccc; transition: color 0.15s; }
.bfk-rating-input input:checked ~ label,
.bfk-rating-input label:hover,
.bfk-rating-input label:hover ~ label { color: var(--secondary-color); }

.bfk-sidebar-card {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        padding: 28px;
        margin-bottom: 24px;
        box-shadow: var(--card-shadow);
}
.bfk-sidebar-card h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 16px;
        color: var(--primary-color);
        padding-bottom: 12px;
        border-bottom: 2px solid var(--primary-soft);
}
.bfk-contact-list { list-style: none; padding: 0; margin: 0; }
.bfk-contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 8px 0;
        font-size: 14px;
        color: var(--text-color);
        border-bottom: 1px dashed var(--border-color);
}
.bfk-contact-list li:last-child { border-bottom: none; }
.bfk-contact-list i { color: var(--primary-color); margin-top: 3px; width: 16px; }

.bfk-tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.bfk-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--primary-soft);
        color: var(--primary-color);
        padding: 5px 12px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
}
.bfk-tag:hover { background: var(--primary-color); color: #fff; text-decoration: none; }

.bfk-sidebar-cta {
        background:
                linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #fff;
        border: none;
        text-align: center;
}
.bfk-sidebar-cta h4 { color: #fff; border-color: rgba(255, 255, 255, 0.2); text-align: center; }
.bfk-sidebar-cta p { font-size: 14px; opacity: 0.95; margin-bottom: 16px; }

/* ============ Forms ============ */
.bfk-form .form-label,
#bfkContactForm .form-label { font-weight: 600; font-size: 14px; color: var(--text-color); margin-bottom: 6px; }
.bfk-form .form-control,
.bfk-form .form-select,
#bfkContactForm .form-control {
        border-radius: 8px;
        border: 1.5px solid var(--border-color);
        padding: 10px 14px;
        font-size: 14px;
        transition: border-color 0.2s ease;
}
.bfk-form .form-control:focus,
.bfk-form .form-select:focus,
#bfkContactForm .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(8, 116, 66, 0.1);
}
.bfk-form h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-color);
        margin-top: 24px;
        margin-bottom: 12px;
        padding-bottom: 6px;
        border-bottom: 1px solid var(--border-color);
}
.bfk-form-feedback { margin-top: 12px; font-size: 14px; }

.bfk-success-card,
.bfk-error-card {
        padding: 24px;
        border-radius: var(--radius);
        margin-bottom: 20px;
}
.bfk-success-card {
        background: var(--primary-soft);
        border: 1px solid var(--primary-light);
        color: var(--primary-dark);
        text-align: center;
}
.bfk-success-card > i { font-size: 48px; margin-bottom: 12px; color: var(--primary-color); }
.bfk-success-card h2 { color: var(--primary-dark); margin-bottom: 8px; }
.bfk-error-card {
        background: #fef2f2;
        border: 1px solid #fecaca;
        color: #991b1b;
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.6;
}
.bfk-error-card a {
        color: #991b1b;
        font-weight: 700;
        text-decoration: underline;
}
.bfk-error-card a:hover { color: #7f1d1d; }
.bfk-error-card strong { font-weight: 700; }
.bfk-error-card ul { margin: 8px 0 0; padding-left: 20px; }

.bfk-auth-card {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        padding: 32px;
        box-shadow: var(--card-shadow);
}

/* ============ About / Legal ============ */
.bfk-legal-content h2 { font-size: 22px; font-weight: 700; color: var(--primary-dark); margin-top: 30px; margin-bottom: 12px; }
.bfk-legal-content h3 { font-size: 17px; font-weight: 700; color: var(--text-color); margin-top: 20px; margin-bottom: 8px; }
.bfk-legal-content p { margin-bottom: 14px; line-height: 1.75; }
.bfk-legal-content ul { padding-left: 22px; margin-bottom: 14px; }
.bfk-legal-content li { margin-bottom: 6px; }

.bfk-bullet-list { list-style: none; padding: 0; }
.bfk-bullet-list li {
        padding: 12px 0;
        border-bottom: 1px dashed var(--border-color);
        font-size: 15px;
}
.bfk-bullet-list li:last-child { border-bottom: none; }

.bfk-stats-list { list-style: none; padding: 0; margin: 0; }
.bfk-stats-list li {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding: 10px 0;
        border-bottom: 1px dashed var(--border-color);
}
.bfk-stats-list strong { font-size: 18px; color: var(--primary-color); }

/* ============ Contact cards ============ */
.bfk-contact-cards { list-style: none; padding: 0; margin: 20px 0 0; }
.bfk-contact-cards li {
        display: flex;
        gap: 16px;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        padding: 18px 20px;
        margin-bottom: 12px;
}
.bfk-contact-icon {
        width: 48px;
        height: 48px;
        background: var(--primary-soft);
        color: var(--primary-color);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
}
.bfk-contact-cards h4 { font-size: 14px; margin: 0 0 4px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.bfk-contact-cards p { margin: 0; font-size: 15px; color: var(--text-color); }

/* ============ Social icons ============ */
.bfk-social-icons { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.bfk-social-icons a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--primary-soft);
        color: var(--primary-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        transition: all 0.2s ease;
        text-decoration: none;
}
.bfk-social-icons a:hover { background: var(--primary-color); color: #fff; text-decoration: none; transform: translateY(-2px); }

/* ============ FAQ accordion ============ */
.bfk-accordion-item {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm) !important;
        margin-bottom: 10px;
        overflow: hidden;
}
.bfk-accordion-button {
        width: 100%;
        text-align: left;
        padding: 18px 22px;
        background: #fff;
        border: none;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-color);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
}
.bfk-accordion-button::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 12px;
        color: var(--primary-color);
        transition: transform 0.2s ease;
}
.bfk-accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.bfk-accordion-button:hover { background: var(--bg-soft); }
.bfk-accordion-body { padding: 0 22px 18px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ============ Blog post ============ */
.bfk-blog-post-header { padding: 50px 0 40px; }
.bfk-blog-post-header h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 12px; }
.bfk-blog-post-meta {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        font-size: 14px;
        opacity: 0.9;
        justify-content: center;
}
.bfk-blog-post-featured {
        border-radius: var(--radius);
        overflow: hidden;
        margin-bottom: 28px;
}
.bfk-blog-post-featured img { width: 100%; height: auto; display: block; }
.bfk-blog-post-content { font-size: 16px; line-height: 1.85; color: var(--text-color); }
.bfk-blog-post-content p { margin-bottom: 18px; }
.bfk-blog-post-content h2 { font-size: 24px; color: var(--primary-dark); margin: 30px 0 14px; }
.bfk-blog-post-content h3 { font-size: 19px; color: var(--primary-dark); margin: 24px 0 10px; }
.bfk-blog-post-content ul,
.bfk-blog-post-content ol { padding-left: 22px; margin-bottom: 18px; }
.bfk-blog-post-content li { margin-bottom: 6px; }

.bfk-share-row {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 36px;
        padding: 20px 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
}
.bfk-share-row > span { font-weight: 600; color: var(--text-color); }
.bfk-share-row a {
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: var(--bg-soft);
        color: var(--text-color);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        transition: all 0.2s ease;
}
.bfk-share-row a:hover { background: var(--primary-color); color: #fff; text-decoration: none; }

/* ============ Search results page ============ */
.bfk-search-bar {
        display: flex;
        gap: 12px;
        margin-top: 24px;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        flex-wrap: wrap;
}
.bfk-search-bar-input {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 220px;
        background: #fff;
        border-radius: 999px;
        padding: 6px 16px;
}
.bfk-search-bar-input i { color: var(--primary-color); margin-right: 8px; }
.bfk-search-bar-input input {
        border: none;
        outline: none;
        flex: 1;
        padding: 8px 0;
        font-size: 14px;
        background: transparent;
}

/* ============ Businesses Filter Bar ============ */
.bfk-business-filters { margin-bottom: 36px; }
.bfk-business-filter-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
        background: var(--bg-soft, #f3f4f6);
        border: none;
        border-radius: 20px;
        padding: 10px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
}
.bfk-filter-group {
        display: flex;
        align-items: center;
        flex: 1;
        min-width: 180px;
        background: #fff;
        border: 2px solid transparent;
        border-radius: 12px;
        padding: 0 16px;
        transition: all 0.25s ease;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.bfk-filter-group:focus-within {
        border-color: var(--primary-color, #087442);
        box-shadow: 0 0 0 3px rgba(8,116,66,0.1), 0 1px 3px rgba(0,0,0,0.06);
}
.bfk-filter-group i { color: var(--primary-color, #087442); margin-right: 10px; font-size: 14px; flex-shrink: 0; }
.bfk-filter-group input {
        border: none;
        outline: none;
        background: transparent;
        flex: 1;
        padding: 13px 0;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-color, #1f2937);
}
.bfk-filter-group input::placeholder { color: var(--text-muted, #9ca3af); font-weight: 400; }
.bfk-filter-group select {
        border: none;
        outline: none;
        background: transparent;
        flex: 1;
        padding: 13px 0;
        font-size: 14px;
        font-weight: 500;
        color: var(--text-color, #1f2937);
        cursor: pointer;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 4px center;
        padding-right: 24px;
}
.bfk-filter-search { min-width: 220px; }
.bfk-business-filter-row .bfk-btn-primary {
        flex-shrink: 0;
        border-radius: 12px;
        padding: 13px 28px;
        font-size: 14px;
        font-weight: 700;
        box-shadow: 0 2px 8px rgba(8,116,66,0.2);
        letter-spacing: 0.2px;
        transition: all 0.25s ease;
}
.bfk-business-filter-row .bfk-btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(8,116,66,0.3);
}
.bfk-business-filter-row .bfk-btn-outline {
        flex-shrink: 0;
        border-radius: 12px;
        padding: 13px 22px;
        font-size: 14px;
        font-weight: 600;
}
.bfk-page-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 42px;
        height: 42px;
        padding: 0 14px;
        border: 1px solid var(--border-color, #e5e7eb);
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-color);
        text-decoration: none;
        transition: all 0.2s;
}
.bfk-page-btn:hover { background: var(--primary-soft, #e8f5e9); border-color: var(--primary-color); color: var(--primary-color); text-decoration: none; }
.bfk-page-btn.active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.bfk-pagination { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 767px) {
        .bfk-business-filter-row { flex-direction: column; padding: 8px; gap: 8px; }
        .bfk-filter-group { min-width: 100%; }
        .bfk-business-filter-row .bfk-btn-primary,
        .bfk-business-filter-row .bfk-btn-outline { width: 100%; text-align: center; }
}

/* ============ Pagination ============ */
.bfk-pagination ul { list-style: none; padding: 0; display: flex; gap: 6px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.bfk-pagination a,
.bfk-pagination span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 38px;
        height: 38px;
        padding: 0 12px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-color);
        text-decoration: none;
}
.bfk-pagination a:hover { background: var(--primary-soft); border-color: var(--primary-color); color: var(--primary-color); text-decoration: none; }
.bfk-pagination .current { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }

/* ============ CTA card ============ */
.bfk-cta-card {
        background:
                linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #fff;
        padding: 40px;
        border-radius: var(--radius);
        text-align: center;
}
.bfk-cta-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.bfk-cta-card p { margin-bottom: 20px; opacity: 0.95; }

/* ============ Dashboard ============ */
.bfk-dash-stat {
        display: flex;
        align-items: center;
        gap: 16px;
        background: #fff;
        border: 1px solid var(--border-color);
        border-left: 4px solid var(--primary-color);
        border-radius: var(--radius-sm);
        padding: 18px 22px;
}
.bfk-dash-stat > i {
        font-size: 28px;
        color: var(--primary-color);
        width: 50px;
        height: 50px;
        background: var(--primary-soft);
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
}
.bfk-dash-stat-num { font-size: 24px; font-weight: 800; color: var(--text-color); line-height: 1; }
.bfk-dash-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

.bfk-dash-table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius); }
.bfk-dash-table { width: 100%; border-collapse: collapse; }
.bfk-dash-table th { text-align: left; padding: 14px 18px; background: var(--bg-soft); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-weight: 600; }
.bfk-dash-table td { padding: 14px 18px; border-top: 1px solid var(--border-color); font-size: 14px; vertical-align: middle; }
.bfk-dash-listing-name { display: flex; align-items: center; gap: 12px; }
.bfk-dash-listing-name img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.bfk-dash-listing-name strong { display: block; color: var(--text-color); }
.bfk-dash-listing-name span { font-size: 12px; color: var(--text-muted); }
.bfk-badge { padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.bfk-badge-ok { background: var(--primary-soft); color: var(--primary-color); }
.bfk-badge-warn { background: #fef3c7; color: #92400e; }
.bfk-badge-muted { background: var(--border-color); color: var(--text-muted); }

/* ============ 404 ============ */
.bfk-404 { padding: 80px 0; text-align: center; }
.bfk-404-content { max-width: 600px; margin: 0 auto; }
.bfk-404-code { font-size: clamp(80px, 18vw, 180px); font-weight: 900; color: var(--primary-color); line-height: 1; letter-spacing: -4px; }
.bfk-404 h1 { font-size: 28px; margin-bottom: 12px; color: var(--text-color); }
.bfk-404 p { color: var(--text-muted); margin-bottom: 28px; }
.bfk-404-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.bfk-404-search {
        display: flex;
        gap: 8px;
        max-width: 480px;
        margin: 0 auto;
        background: #fff;
        border: 1.5px solid var(--border-color);
        border-radius: 999px;
        padding: 6px 6px 6px 16px;
        align-items: center;
}
.bfk-404-search input { flex: 1; border: none; outline: none; padding: 8px 0; font-size: 14px; }

/* ============ Footer ============ */
.bfk-footer {
        background: #0f172a;
        color: #cbd5e1;
        padding: 60px 0 0;
        margin-top: 0;
}
.bfk-footer a { color: #ffffff; text-decoration: none; }
.bfk-footer a:hover { color: #fbbf24; text-decoration: underline; }
.bfk-footer-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 24px;
        font-weight: 800;
        color: #fff;
        margin-bottom: 16px;
}
.bfk-footer-brand i {
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        border-radius: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
}
.bfk-footer p { font-size: 14px; line-height: 1.7; color: #ffffff; opacity: 0.9; margin-bottom: 16px; }
.bfk-footer h4 {
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 18px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
}
.bfk-footer ul { list-style: none; padding: 0; margin: 0; }
.bfk-footer ul li { margin-bottom: 10px; }
.bfk-footer ul li a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #ffffff !important;
}
.bfk-footer ul li a:hover { color: #fbbf24 !important; }
.bfk-footer ul li a i { font-size: 10px; color: #fbbf24; }

.bfk-footer .bfk-social-icons a {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
}
.bfk-footer .bfk-social-icons a:hover { background: var(--primary-color); }

.bfk-footer-contact p { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; margin-bottom: 10px; color: #ffffff; }
.bfk-footer-contact p a { color: #ffffff; }
.bfk-footer-contact p a:hover { color: #fbbf24; }
.bfk-footer-contact i { color: #fbbf24; margin-top: 4px; }

.bfk-copyright {
        text-align: center;
        padding: 20px 0;
        margin-top: 40px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 13px;
        color: #ffffff;
        opacity: 0.8;
}

/* ============ Scroll to top ============ */
.bfk-scroll-top {
        position: fixed;
        bottom: 24px;
        right: 24px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--primary-color);
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 16px;
        box-shadow: 0 4px 15px rgba(8, 116, 66, 0.35);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
}
.bfk-scroll-top.show { opacity: 1; visibility: visible; }
.bfk-scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ============ Admin bar fix ============ */
.admin-bar .bfk-navbar { top: 32px; }
@media (max-width: 782px) {
        .admin-bar .bfk-navbar { top: 46px; }
}

/* ============ Responsive ============ */
@media (max-width: 991px) {
        .bfk-menu-toggle { display: block; }
        .bfk-search-box { display: none; }
        .bfk-navbar .navbar-collapse { display: none !important; }
        .bfk-hero { padding: 60px 20px 80px; }
        .bfk-hero-search { flex-direction: column; padding: 16px; }
        .bfk-hero-input-group { width: 100%; }
        .bfk-hero-divider { display: none; }
        .bfk-hero-search .bfk-btn { width: 100%; }
        .bfk-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
        
        .bfk-cta-card { padding: 28px 20px; }
        .bfk-blog-post-content { font-size: 15px; }
        .bfk-share-row { flex-wrap: wrap; }
}

@media (max-width: 576px) {
        .bfk-how-it-works,
        .bfk-listings-area,
        .bfk-categories-section,
        .bfk-counties-section,
        .bfk-blog-section,
        .bfk-stats-section,
        .bfk-page-section { padding: 50px 0; }
        .bfk-hero { padding: 50px 16px 70px; }
        .bfk-page-header { padding: 40px 0; }
        .bfk-step-card { padding: 24px 18px; }
        .bfk-listing-card { padding: 20px; }
        .bfk-listing-brand { gap: 14px; }
        .bfk-listing-logo-frame { width: 80px; height: 80px; }
        .bfk-auth-card { padding: 22px; }
        .bfk-blog-body { padding: 16px; }
}

/* ============================================================ */
/* ============ PRICING CARDS (The Standard Arena Business) ==== */
/* ============================================================ */

.bfk-pricing-teaser,
.bfk-pricing-page { background: var(--bg-soft); }

/* Active package notice on pricing page */
.bfk-pricing-active-notice {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;
        margin-left: auto;
        margin-right: auto;
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 12px;
        padding: 14px 20px;
        font-size: 14px;
        color: rgba(255,255,255,0.95);
        max-width: 680px;
        text-align: center;
}
.bfk-pricing-active-notice i { color: rgba(255,255,255,0.7); font-size: 16px; flex-shrink: 0; }
.bfk-pricing-active-notice strong { color: #fff; }

/* Package switch confirmation modal */
.bfk-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px);
        z-index: 10000;
        justify-content: center;
        align-items: center;
        padding: 20px;
}
.bfk-modal-overlay.open { display: flex; }
.bfk-modal-card {
        background: #fff;
        border-radius: 20px;
        padding: 40px;
        max-width: 440px;
        width: 100%;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        animation: bfkModalIn 0.25s ease;
}
@keyframes bfkModalIn {
        from { opacity: 0; transform: scale(0.95) translateY(10px); }
        to { opacity: 1; transform: scale(1) translateY(0); }
}
.bfk-modal-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-soft, #e8f5e9);
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
}
.bfk-modal-icon i { font-size: 24px; color: var(--primary-color, #087442); }
.bfk-modal-card h3 { font-size: 20px; font-weight: 700; color: #1f2937; margin-bottom: 12px; }
.bfk-modal-card p { font-size: 15px; line-height: 1.7; color: #4b5563; margin-bottom: 24px; }
.bfk-modal-card p strong { color: #1f2937; }
.bfk-modal-actions { display: flex; gap: 12px; justify-content: center; align-items: center; }
.bfk-modal-actions .bfk-btn { border-radius: 12px; padding: 12px 24px; font-size: 14px; font-weight: 600; text-decoration: none; min-width: 160px; text-align: center; }
@media (max-width: 480px) {
        .bfk-modal-card { padding: 28px 20px; }
        .bfk-modal-actions { flex-direction: column; align-items: center; }
}

.bfk-pricing-row { margin-top: 30px; }

.bfk-pricing-card {
        background: #fff;
        border: 2px solid var(--border-color);
        border-radius: var(--radius);
        padding: 36px 28px 28px;
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
.bfk-pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 50px rgba(8, 116, 66, 0.15);
        border-color: var(--primary-light);
}
.bfk-pricing-card.bfk-pricing-popular {
        border-color: var(--primary-color);
        z-index: 2;
        background: linear-gradient(180deg, #fff 0%, #fbfdfc 100%);
        box-shadow: 0 12px 40px rgba(8, 116, 66, 0.18);
}
.bfk-pricing-card.bfk-pricing-popular:hover {
        transform: translateY(-6px);
}

.bfk-pricing-badge {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 6px 16px;
        border-radius: 999px;
        box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
        white-space: nowrap;
}

.bfk-pricing-head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px dashed var(--border-color); }
.bfk-pricing-head h3 {
        font-size: 22px;
        font-weight: 800;
        margin: 0 0 4px;
        color: var(--text-color);
        letter-spacing: -0.3px;
}
.bfk-pricing-listings {
        font-size: 13px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 14px;
}
.bfk-pricing-price {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 6px;
}
.bfk-pricing-price .bfk-currency {
        font-size: 16px;
        font-weight: 600;
        color: var(--text-muted);
}
.bfk-pricing-price .bfk-amount {
        font-size: 44px;
        font-weight: 900;
        color: var(--primary-color);
        line-height: 1;
        letter-spacing: -1.5px;
}
.bfk-pricing-savings {
        margin-top: 10px;
        display: inline-block;
        background: rgba(245, 158, 11, 0.15);
        color: var(--secondary-dark);
        font-size: 12px;
        font-weight: 700;
        padding: 3px 12px;
        border-radius: 999px;
}

.bfk-pricing-features {
        list-style: none;
        padding: 0;
        margin: 0 0 24px;
        text-align: left;
        flex: 1;
}
.bfk-pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 9px 0;
        font-size: 14px;
        color: var(--text-color);
        border-bottom: 1px dashed var(--border-color);
        line-height: 1.45;
}
.bfk-pricing-features li:last-child { border-bottom: none; }
.bfk-pricing-features i { color: var(--primary-color); margin-top: 3px; font-size: 14px; flex-shrink: 0; }

/* ============ Payment instructions (pricing page) ============ */

.bfk-payment-instructions {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius);
        padding: 36px;
        box-shadow: var(--card-shadow);
}
.bfk-payment-instructions h2 {
        font-size: 24px;
        font-weight: 800;
        color: var(--primary-color);
        margin: 0 0 12px;
}
.bfk-payment-instructions > p { color: var(--text-muted); margin-bottom: 24px; font-size: 15px; }

.bfk-mpesa-steps {
        list-style: none;
        padding: 0;
        margin: 0 0 28px;
        counter-reset: step;
}
.bfk-mpesa-steps li {
        display: flex;
        gap: 18px;
        padding: 16px 0;
        border-bottom: 1px dashed var(--border-color);
}
.bfk-mpesa-steps li:last-child { border-bottom: none; }
.bfk-mpesa-step-num {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        background: var(--primary-color);
        color: #fff;
        font-size: 18px;
        font-weight: 800;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
}
.bfk-mpesa-steps strong { font-size: 16px; color: var(--text-color); display: block; margin-bottom: 4px; }
.bfk-mpesa-steps p { margin: 0; font-size: 14px; color: var(--text-muted); }

.bfk-phone-display {
        background: var(--primary-soft);
        color: var(--primary-dark);
        padding: 3px 10px;
        border-radius: 6px;
        font-weight: 700;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        letter-spacing: 0.5px;
        font-size: 15px;
        display: inline-block;
}

.bfk-payment-highlight {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #fff;
        border-radius: var(--radius);
        padding: 24px 28px;
}
.bfk-payment-highlight-label {
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        opacity: 0.85;
        margin-bottom: 4px;
}
.bfk-payment-highlight-phone {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: 1px;
}

.bfk-pricing-faq { margin-top: 50px; }
.bfk-pricing-faq h2 { font-size: 24px; font-weight: 800; color: var(--primary-color); margin-bottom: 24px; text-align: center; }
.bfk-pricing-faq h4 { font-size: 16px; font-weight: 700; color: var(--text-color); margin: 0 0 8px; }
.bfk-pricing-faq p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.65; min-height: calc(14px * 1.65 * 3); }
.bfk-pricing-faq > .row > div {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: var(--radius-sm);
        padding: 22px;
        height: 100%;
        display: flex;
        flex-direction: column;
}

/* ============ Pricing teaser pay banner ============ */
.bfk-pricing-pay-banner {
        margin-top: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
        background: #fff;
        border: 1px dashed var(--primary-color);
        border-radius: var(--radius);
        padding: 18px 24px;
        font-size: 15px;
        color: var(--text-color);
}
.bfk-pricing-pay-banner > i { font-size: 24px; color: var(--primary-color); }

/* ============================================================ */
/* ============ SUBMIT BUSINESS PAGE =========================== */
/* ============================================================ */

.bfk-payment-banner {
        display: flex;
        align-items: center;
        gap: 18px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #fff;
        border-radius: var(--radius);
        padding: 22px 26px;
        margin-bottom: 28px;
}
.bfk-payment-banner-icon {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        background: rgba(255, 255, 255, 0.18);
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
}
.bfk-payment-banner-body { flex: 1; }
.bfk-payment-banner-body h3 { color: #fff; font-size: 18px; margin: 0 0 6px; font-weight: 700; }
.bfk-payment-banner-body p { margin: 0 0 4px; font-size: 14px; opacity: 0.95; }
.bfk-payment-banner-body .bfk-phone-display {
        background: rgba(255, 255, 255, 0.22);
        color: #fff;
        font-size: 17px;
        padding: 4px 12px;
}
.bfk-payment-banner .bfk-btn-outline {
        border-color: #fff;
        color: #fff;
}
.bfk-payment-banner .bfk-btn-outline:hover {
        background: #fff;
        color: var(--primary-color);
}

/* Package picker — radio cards */
.bfk-package-picker {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-bottom: 12px;
}
.bfk-package-option {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 18px 20px;
        border: 2px solid var(--border-color);
        border-radius: var(--radius-sm);
        cursor: pointer;
        transition: all 0.2s ease;
        background: #fff;
        position: relative;
}
.bfk-package-option:hover { border-color: var(--primary-light); background: var(--bg-soft); }
.bfk-package-option input { position: absolute; opacity: 0; pointer-events: none; }
.bfk-package-option.selected {
        border-color: var(--primary-color);
        background: var(--primary-soft);
        box-shadow: 0 4px 14px rgba(8, 116, 66, 0.12);
}
/* Circular checkmark removed per user request — selection is indicated
   by the border color + background change alone. */
.bfk-package-option-name { font-weight: 700; font-size: 16px; color: var(--text-color); }
.bfk-package-option-listings { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.bfk-package-option-price { text-align: right; }
.bfk-package-option-price .bfk-currency { font-size: 11px; color: var(--text-muted); display: block; line-height: 1; }
.bfk-package-option-price .bfk-amount { font-size: 22px; font-weight: 800; color: var(--primary-color); }

.bfk-payment-confirm-box {
        background: var(--bg-cream);
        border: 1px solid rgba(245, 158, 11, 0.3);
        border-radius: var(--radius-sm);
        padding: 20px 22px;
}
.bfk-payment-confirm-box > p { font-size: 14px; color: var(--text-color); margin-bottom: 16px; }

/* ============ Hero polish ============ */
.bfk-hero {
        background:
                radial-gradient(circle at 20% 20%, rgba(245, 158, 11, 0.15) 0, transparent 50%),
                linear-gradient(135deg, rgba(8, 116, 66, 0.95) 0%, rgba(6, 82, 49, 0.95) 100%),
                url('https://images.unsplash.com/photo-1524995997946-a1c2defc4c35?auto=format&fit=crop&w=1600&q=80') center/cover;
        position: relative;
        overflow: hidden;
}
.bfk-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.06) 0, transparent 50%);
        pointer-events: none;
}
.bfk-hero .container { position: relative; z-index: 2; }

.bfk-hero-title {
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}
.bfk-hero-search {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============ Section polish ============ */
.bfk-section-title {
        position: relative;
        display: inline-block;
        padding-bottom: 14px;
}
.bfk-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--secondary-color);
        border-radius: 2px;
}
.text-center .bfk-section-title { padding-bottom: 18px; }

.bfk-section-subtitle { max-width: 680px; margin-left: auto; margin-right: auto; }

/* ============ Card polish ============ */
.bfk-card {
        border-radius: 14px;
        overflow: hidden;
        position: relative;
}
.bfk-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
}
.bfk-card:hover::before { opacity: 1; }

.bfk-card-logo { border-radius: 14px; box-shadow: 0 4px 12px rgba(8, 116, 66, 0.12); }

/* ============ Buttons polish ============ */
.bfk-btn {
        border-radius: 10px;
        letter-spacing: 0.2px;
}
.bfk-btn-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        box-shadow: 0 4px 14px rgba(8, 116, 66, 0.25);
}
.bfk-btn-primary:hover {
        box-shadow: 0 6px 20px rgba(8, 116, 66, 0.35);
        transform: translateY(-2px);
}

/* ============ Brand mark polish ============ */
.bfk-brand-mark {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        box-shadow: 0 4px 12px rgba(8, 116, 66, 0.25);
}

/* ============ Form polish ============ */
.bfk-form .form-control:focus,
.bfk-form .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(8, 116, 66, 0.12);
}
.bfk-form h3 {
        display: flex;
        align-items: center;
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-color);
        margin-top: 28px;
        margin-bottom: 16px;
        padding: 12px 16px;
        background: var(--primary-soft);
        border-radius: var(--radius-sm);
        border-left: 4px solid var(--primary-color);
}

/* ============ Pagination polish ============ */
.bfk-pagination .current { box-shadow: 0 4px 12px rgba(8, 116, 66, 0.25); }

/* ============ Responsive pricing ============ */
@media (max-width: 991px) {
        .bfk-pricing-card.bfk-pricing-popular { transform: none; }
        .bfk-pricing-card.bfk-pricing-popular:hover { transform: translateY(-6px); }
        .bfk-package-picker { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
        .bfk-payment-banner { flex-direction: column; text-align: center; }
        .bfk-payment-highlight { flex-direction: column; text-align: center; }
        .bfk-payment-instructions { padding: 24px 18px; }
        .bfk-pricing-card { padding: 28px 20px 22px; }
        .bfk-pricing-price .bfk-amount { font-size: 36px; }
}


/* ============================================================ */
/* ============ PREMIUM POLISH (v1.0.3) ======================= */
/* ============================================================ */

/* Eyebrow label above section titles */
.bfk-eyebrow {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: var(--primary-color);
        background: var(--primary-soft);
        padding: 5px 14px;
        border-radius: 999px;
        margin-bottom: 14px;
}

/* Premium step card (how-it-works) */
.bfk-how-it-works { background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%); padding: 90px 0; }
.bfk-steps-row { margin-top: 36px; }
.bfk-step-card {
        background: #fff;
        border-radius: 16px;
        padding: 40px 28px 32px;
        text-align: center;
        height: 100%;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
        border: 1px solid var(--border-color);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
}
.bfk-step-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
}
.bfk-step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 50px rgba(8, 116, 66, 0.14);
        border-color: transparent;
}
.bfk-step-card:hover::before { transform: scaleX(1); }

.bfk-step-icon {
        width: 72px;
        height: 72px;
        background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(8, 116, 66, 0.08) 100%);
        color: var(--primary-color);
        border-radius: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin-bottom: 18px;
        position: relative;
}
.bfk-step-icon::after {
        content: '';
        position: absolute;
        inset: -4px;
        border: 2px dashed var(--primary-light);
        border-radius: 22px;
        opacity: 0;
        transition: all 0.3s ease;
}
.bfk-step-card:hover .bfk-step-icon::after { opacity: 0.5; transform: rotate(8deg); }

.bfk-step-number {
        position: absolute;
        top: 18px;
        right: 22px;
        font-size: 56px;
        font-weight: 900;
        color: var(--bg-soft);
        line-height: 1;
        z-index: 0;
        pointer-events: none;
        font-family: 'Inter', sans-serif;
}
.bfk-step-card h3 {
        font-size: 19px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--text-color);
        position: relative;
        z-index: 1;
}
.bfk-step-card p {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0;
        line-height: 1.6;
        position: relative;
        z-index: 1;
}

/* Premium sidebar stats card */
.bfk-sidebar-stats { background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.bfk-sidebar-stats .bfk-stats-list li strong {
        font-size: 22px;
        color: var(--primary-color);
        font-weight: 800;
}

/* Premium listings section */
.bfk-listings-area { padding: 90px 0; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }

/* Premium categories section */
.bfk-categories-section { background: #fff; padding: 90px 0; }

/* Premium counties section */
.bfk-counties-section { background: var(--bg-soft); padding: 90px 0; }

/* Premium blog section */
.bfk-blog-section { padding: 90px 0; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.bfk-blog-card { border-radius: 16px; overflow: hidden; }
.bfk-blog-img-wrap { aspect-ratio: 16/10; overflow: hidden; position: relative; }
.bfk-blog-img-wrap::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
}
.bfk-blog-card:hover .bfk-blog-img-wrap::after { opacity: 1; }

/* Premium stats section */
.bfk-stats-section {
        background:
                linear-gradient(135deg, #065231 0%, #087442 50%, #0a6b3d 100%);
        padding: 70px 0;
        position: relative;
        overflow: hidden;
}
.bfk-stats-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle at 20% 30%, rgba(245, 158, 11, 0.15) 0, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0, transparent 50%);
}
.bfk-stats-section .container { position: relative; z-index: 2; }
.bfk-stat-card {
        background: rgba(255, 255, 255, 0.07);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        padding: 32px 20px;
        text-align: center;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
}
.bfk-stat-card:hover {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-4px);
        border-color: rgba(255, 255, 255, 0.22);
}

/* Premium CTA banner */
.bfk-cta-banner {
        background:
                linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        padding: 70px 0;
        position: relative;
        overflow: hidden;
}
.bfk-cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle at 90% 20%, rgba(245, 158, 11, 0.2) 0, transparent 40%),
                radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.06) 0, transparent 50%);
}
.bfk-cta-banner .container { position: relative; z-index: 2; }
.bfk-cta-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
}
.bfk-cta-inner h2 {
        font-size: 32px;
        font-weight: 800;
        margin: 0 0 8px;
        color: #fff;
        letter-spacing: -0.5px;
}
.bfk-cta-inner p { color: rgba(255, 255, 255, 0.9); margin: 0; max-width: 620px; font-size: 16px; }

/* Premium page header */
.bfk-page-header {
        background:
                linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
}
.bfk-page-header::before {
        content: '';
        position: absolute;
        inset: 0;
        background:
                radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.12) 0, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.04) 0, transparent 50%);
}
.bfk-page-header .container { position: relative; z-index: 2; }
.bfk-page-header h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        margin: 0 0 14px;
        color: #fff;
        letter-spacing: -0.8px;
}
.bfk-page-header p {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.92);
        max-width: 760px;
        margin: 0 auto;
        line-height: 1.6;
}

/* Premium listing card */
.bfk-card {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 24px;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        position: relative;
        overflow: hidden;
}
.bfk-card::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
}
.bfk-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 50px rgba(8, 116, 66, 0.12);
        border-color: transparent;
}
.bfk-card:hover::after { transform: scaleX(1); }
.bfk-card-logo {
        border-radius: 14px;
        box-shadow: 0 4px 14px rgba(8, 116, 66, 0.12);
        border: 2px solid #fff;
}

/* Premium buttons */
.bfk-btn {
        border-radius: 10px;
        letter-spacing: 0.2px;
        font-weight: 600;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.bfk-btn-primary {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        box-shadow: 0 4px 14px rgba(8, 116, 66, 0.28);
        border: none;
}
.bfk-btn-primary:hover {
        box-shadow: 0 8px 22px rgba(8, 116, 66, 0.4);
        transform: translateY(-2px);
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}
.bfk-btn-white {
        background: #fff;
        color: var(--primary-color);
        border: none;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.bfk-btn-white:hover {
        background: #f9fafb;
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

/* Premium brand mark */
.bfk-brand-mark {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        box-shadow: 0 4px 12px rgba(8, 116, 66, 0.28);
}

/* Premium form section headings */
.bfk-form h3 {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 17px;
        font-weight: 700;
        color: var(--primary-color);
        margin-top: 32px;
        margin-bottom: 16px;
        padding: 14px 18px;
        background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(8, 116, 66, 0.04) 100%);
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
}
.bfk-form h3 i { color: var(--primary-color); font-size: 16px; }

/* Premium footer */
.bfk-footer {
        background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
        color: #cbd5e1;
        padding: 70px 0 0;
        position: relative;
        overflow: hidden;
}
.bfk-footer::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
}

/* Premium listing detail hero */
.bfk-listing-hero {
        background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
        padding: 50px 0 40px;
        border-bottom: 1px solid var(--border-color);
}
.bfk-listing-logo-frame {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        border: 4px solid #fff;
}

/* Premium pagination */
.bfk-pagination .current {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        box-shadow: 0 4px 14px rgba(8, 116, 66, 0.28);
        border-color: transparent;
}

/* Premium auth card */
.bfk-auth-card {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 20px;
        padding: 40px;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

/* Premium 404 page */
.bfk-404-code {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 900;
}

/* Premium section title underline */
.bfk-section-title {
        position: relative;
        display: inline-block;
        padding-bottom: 16px;
        font-weight: 800;
}
.bfk-section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        border-radius: 2px;
}
.text-center .bfk-section-title { padding-bottom: 20px; }
.bfk-section-subtitle {
        max-width: 680px;
        margin: 12px auto 0;
        color: var(--text-muted);
        font-size: 1.05rem;
        line-height: 1.6;
}

/* ============ Premium responsive — keep menu on one line ============ */
@media (max-width: 1199px) {
        .bfk-nav > li > a { padding: 8px 10px; font-size: 13px; }
        .bfk-brand-text { max-width: 150px; font-size: 15px; }
        .bfk-navbar-inner { gap: 12px; padding: 0 18px; }
        .bfk-brand-logo { max-height: 38px; max-width: 180px; }
}
@media (max-width: 991px) {
        /* Mobile navbar: logo left, actions right — rock solid, no sliding */
        .bfk-nav { display: none; }
        .bfk-nav-actions .bfk-nav-login { display: none; }
        .bfk-nav-actions .bfk-nav-cta span { display: none; }
        .bfk-menu-toggle { display: flex; }
        .bfk-navbar {
                height: 60px; /* Slightly shorter on mobile */
                overflow: hidden;
        }
        .bfk-navbar-inner {
                gap: 8px;
                padding: 0 14px;
                justify-content: space-between;
                width: 100%;
        }
        .bfk-brand {
                margin-right: auto;
                flex-shrink: 1;
                min-width: 0;
                height: 100%;
                display: flex;
                align-items: center;
        }
        .bfk-brand-logo {
                max-height: 36px;
                max-width: 160px;
        }
        .bfk-brand-mark {
                width: 34px;
                height: 34px;
                font-size: 15px;
        }
        .bfk-brand-text {
                max-width: 130px;
                font-size: 14px;
        }
        .bfk-nav-actions {
                margin-left: auto;
                display: flex;
                align-items: center;
                gap: 6px;
                flex-shrink: 0;
        }
        .bfk-nav-actions .bfk-nav-cta {
                padding: 8px 12px !important;
                min-width: 38px;
                height: 38px;
                justify-content: center;
        }
        .bfk-nav-actions .bfk-nav-cta i { font-size: 14px; }
        .bfk-search-toggle,
        .bfk-menu-toggle {
                width: 38px;
                height: 38px;
        }
        .bfk-brand-text { max-width: 160px; font-size: 15px; }
        .bfk-hero { padding: 60px 0 80px; }
        .bfk-hero-search { flex-direction: column; padding: 14px; border-radius: 14px; }
        .bfk-hero-input-group { width: 100%; }
        .bfk-hero-divider { display: none; }
        .bfk-hero-search .bfk-btn { width: 100%; }
        .bfk-cta-inner { flex-direction: column; text-align: center; }
        .bfk-step-card { padding: 32px 22px 26px; }
        .bfk-step-number { font-size: 42px; top: 14px; right: 18px; }
        .bfk-auth-card { padding: 28px 22px; }
}
@media (max-width: 768px) {
        
        .bfk-cta-card { padding: 28px 20px; }
        .bfk-blog-post-content { font-size: 15px; }
        .bfk-share-row { flex-wrap: wrap; }
        .bfk-payment-banner { flex-direction: column; text-align: center; }
        .bfk-payment-highlight { flex-direction: column; text-align: center; }
        .bfk-payment-instructions { padding: 24px 18px; }
        .bfk-pricing-card { padding: 28px 20px 22px; }
        .bfk-pricing-price .bfk-amount { font-size: 36px; }
        .bfk-page-header { padding: 50px 0; }
        .bfk-stats-section { padding: 50px 0; }
        .bfk-cta-banner { padding: 50px 0; }
        .bfk-listings-area,
        .bfk-categories-section,
        .bfk-counties-section,
        .bfk-blog-section,
        .bfk-how-it-works,
        .bfk-page-section { padding: 60px 0; }
        .bfk-hero { padding: 50px 0 70px; }
        .bfk-hero-title { letter-spacing: -1px; }
        .bfk-step-card { padding: 28px 18px 24px; }
        .bfk-listing-card { padding: 20px; }
        .bfk-listing-brand { gap: 14px; }
        .bfk-listing-logo-frame { width: 80px; height: 80px; }
        .bfk-blog-body { padding: 16px; }
}
@media (max-width: 576px) {
        .bfk-brand-text { font-size: 13px; max-width: 110px; }
        .bfk-navbar-inner { padding: 0 12px; gap: 6px; }
        .bfk-brand-logo { max-height: 30px; max-width: 140px; }
        .bfk-brand-mark { width: 32px; height: 32px; font-size: 14px; }
        .bfk-search-bar-overlay input { font-size: 14px; padding: 12px 14px 12px 42px; }
        .bfk-search-bar-overlay button { padding: 10px 16px; font-size: 13px; }
        .bfk-hero-eyebrow { font-size: 11px; padding: 5px 12px; }
        .bfk-hero-tags { gap: 8px; }
        .bfk-hero-tags a { font-size: 12px; padding: 4px 10px; }
}

/* ============================================================ */
/* ============ BUTTON VISIBILITY ENHANCEMENT (v1.0.5) ======== */
/* ============================================================ */

/* Nav CTA button — "List Business" — make it impossible to miss */
.bfk-nav-cta {
        padding: 10px 18px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
        color: #fff !important;
        border: none !important;
        box-shadow: 0 4px 14px rgba(8, 116, 66, 0.35);
        border-radius: 10px;
        letter-spacing: 0.3px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        animation: bfk-pulse-cta 2.5s ease-in-out infinite;
}
.bfk-nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(8, 116, 66, 0.5);
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%) !important;
        color: #fff !important;
}
.bfk-nav-cta i { font-size: 13px; }

@keyframes bfk-pulse-cta {
        0%, 100% { box-shadow: 0 4px 14px rgba(8, 116, 66, 0.35); }
        50% { box-shadow: 0 4px 22px rgba(8, 116, 66, 0.55), 0 0 0 4px rgba(8, 116, 66, 0.12); }
}

/* "Trending searches" label + tags — make them pop */
.bfk-hero-tags {
        margin-top: 28px;
        gap: 10px;
}
.bfk-hero-tags > span {
        font-weight: 700 !important;
        opacity: 1 !important;
        color: #fde047 !important;
        font-size: 13px !important;
        letter-spacing: 0.8px;
        text-transform: uppercase;
}
.bfk-hero-tags a {
        background: rgba(255, 255, 255, 0.15) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        padding: 7px 16px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        color: #fff !important;
        transition: all 0.2s ease;
}
.bfk-hero-tags a:hover {
        background: var(--secondary-color) !important;
        border-color: var(--secondary-color) !important;
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

/* "Start Listing Now" button — bigger, bolder */
.bfk-how-it-works .bfk-btn-primary {
        padding: 14px 32px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 6px 20px rgba(8, 116, 66, 0.35);
}
.bfk-how-it-works .bfk-btn-primary:hover {
        box-shadow: 0 10px 28px rgba(8, 116, 66, 0.5);
        transform: translateY(-3px);
}

/* "Choose [Package]" buttons in pricing teaser — make them stand out */
.bfk-pricing-card .bfk-btn {
        padding: 12px 20px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-radius: 10px;
}
.bfk-pricing-card .bfk-btn-primary {
        box-shadow: 0 4px 14px rgba(8, 116, 66, 0.3);
}
.bfk-pricing-card .bfk-btn-primary:hover {
        box-shadow: 0 8px 22px rgba(8, 116, 66, 0.45);
}
.bfk-pricing-card .bfk-btn-outline {
        border-width: 2px;
}
.bfk-pricing-card .bfk-btn-outline:hover {
        background: var(--primary-color);
        color: #fff;
}

/* Hero search button — more prominent */
.bfk-hero-search .bfk-btn-primary {
        padding: 13px 26px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
}

/* "View Pricing" CTA on homepage banner */
.bfk-cta-banner .bfk-btn-white {
        padding: 14px 28px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
}

/* "View All" / "View More" links — make them look like buttons */
.bfk-view-more {
        padding: 11px 24px !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-radius: 10px;
}

/* ============================================================ */
/* ============ v1.0.6 — BUTTON & LAYOUT FIXES ================ */
/* ============================================================ */

/* Card meta — centered in each box */
.bfk-card-meta-label {
        font-size: 11px;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: center;
}
.bfk-card-meta-box .bfk-card-meta-val {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 100%;
        display: inline-block;
        text-align: center;
}

/* "Start Listing Now" button — fix white text visibility */
.bfk-how-it-works .bfk-btn-primary,
.bfk-how-it-works .bfk-btn-primary:hover {
        color: #fff !important;
}
.bfk-how-it-works .bfk-btn-primary:hover {
        color: #fff !important;
}

/* Listing detail action buttons — stack vertically, full width */
.bfk-listing-action-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
}
.bfk-listing-action-buttons .bfk-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.3px;
}
.bfk-listing-action-buttons .bfk-btn-primary {
        color: #fff !important;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        box-shadow: 0 4px 14px rgba(8, 116, 66, 0.3);
}
.bfk-listing-action-buttons .bfk-btn-primary:hover {
        color: #fff !important;
        box-shadow: 0 8px 22px rgba(8, 116, 66, 0.45);
        transform: translateY(-2px);
}
.bfk-listing-action-buttons .bfk-btn-outline {
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        background: #fff;
}
.bfk-listing-action-buttons .bfk-btn-outline:hover {
        background: var(--primary-color);
        color: #fff !important;
}
.bfk-listing-action-buttons .bfk-btn-red {
        color: #fff !important;
        background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
        box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}
.bfk-listing-action-buttons .bfk-btn-red:hover {
        color: #fff !important;
        box-shadow: 0 8px 22px rgba(220, 38, 38, 0.45);
        transform: translateY(-2px);
}

/* Sidebar "Get Started — Free" button — fix visibility */
.bfk-sidebar-cta .bfk-btn-primary {
        color: #fff !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 12px 20px;
        font-size: 14px;
}
.bfk-sidebar-cta .bfk-btn-primary:hover {
        color: #fff !important;
}

/* Pricing page "Call to Confirm" button — fix visibility */
.bfk-payment-highlight .bfk-btn-primary {
        color: #fff !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 12px 22px;
        font-size: 14px;
}
.bfk-payment-highlight .bfk-btn-primary:hover {
        color: #fff !important;
}

/* Pricing page "Choose [Package]" buttons — fix visibility */
.bfk-pricing-card .bfk-btn-primary {
        color: #fff !important;
}
.bfk-pricing-card .bfk-btn-primary:hover {
        color: #fff !important;
}
.bfk-pricing-card .bfk-btn-outline {
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        background: #fff;
        font-weight: 700;
}
.bfk-pricing-card .bfk-btn-outline:hover {
        background: var(--primary-color);
        color: #fff !important;
}

/* Pricing teaser "Choose [Package]" buttons */
.bfk-pricing-teaser .bfk-btn-primary {
        color: #fff !important;
}
.bfk-pricing-teaser .bfk-btn-primary:hover {
        color: #fff !important;
}
.bfk-pricing-teaser .bfk-btn-outline {
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
        background: #fff;
        font-weight: 700;
}
.bfk-pricing-teaser .bfk-btn-outline:hover {
        background: var(--primary-color);
        color: #fff !important;
}

/* Homepage CTA "View Pricing" button */
.bfk-cta-banner .bfk-btn-white {
        color: var(--primary-color) !important;
        font-weight: 700;
}
.bfk-cta-banner .bfk-btn-white:hover {
        color: var(--primary-dark) !important;
}

/* ============================================================ */
/* ============ BEAUTIFIED REVIEW FORM ========================= */
/* ============================================================ */

.bfk-review-form {
        background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 28px;
        margin-top: 20px;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}
.bfk-review-form-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 2px solid var(--primary-soft);
}
.bfk-review-form-head i {
        width: 44px;
        height: 44px;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #fff;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 4px 12px rgba(8, 116, 66, 0.25);
}
.bfk-review-form-head h4 {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        color: var(--text-color);
}

.bfk-review-label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-color);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
}

.bfk-review-form .bfk-rating-input {
        margin-bottom: 18px;
        padding: 12px 16px;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        display: inline-flex;
}
.bfk-review-form .bfk-rating-input label {
        font-size: 28px;
}

.bfk-review-form textarea {
        width: 100%;
        border: 2px solid var(--border-color);
        border-radius: 12px;
        padding: 14px 16px;
        font-size: 14px;
        font-family: inherit;
        resize: vertical;
        min-height: 110px;
        margin-bottom: 16px;
        transition: all 0.2s ease;
        outline: none;
}
.bfk-review-form textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(8, 116, 66, 0.1);
}
.bfk-review-form textarea::placeholder {
        color: var(--text-muted);
        font-style: italic;
}

.bfk-review-submit {
        width: 100%;
        padding: 14px 24px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #fff !important;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
        box-shadow: 0 4px 14px rgba(8, 116, 66, 0.3);
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.2s ease;
}
.bfk-review-submit:hover {
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 22px rgba(8, 116, 66, 0.45);
}

/* Review login hint box */
.bfk-review-login-hint {
        text-align: center;
        padding: 24px;
        background: var(--bg-soft);
        border-radius: 12px;
}
.bfk-review-login-hint > i {
        font-size: 32px;
        color: var(--text-muted);
        margin-bottom: 12px;
}
.bfk-review-login-hint p {
        color: var(--text-color);
        margin-bottom: 16px;
        font-size: 14px;
}
.bfk-review-login-actions {
        display: flex;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
}
.bfk-review-login-actions .bfk-btn {
        padding: 10px 22px;
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
}

/* ============================================================ */
/* ============ LOGO SUPPORT =================================== */
/* ============================================================ */

.bfk-footer-logo {
        max-height: 50px;
        width: auto;
        max-width: 220px;
        object-fit: contain;
        margin-bottom: 8px;
        display: block;
}

/* Admin logo uploader styles */
.bfk-logo-uploader {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
}
.bfk-logo-uploader .bfk-logo-preview {
        background: #f9fafc;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 6px;
        display: inline-block;
}
.bfk-logo-uploader .bfk-logo-preview-dark {
        background: #0f172a;
}
.bfk-logo-uploader .button {
        margin-right: 6px;
}

/* ============================================================ */
/* ============ SUBMIT BUSINESS CENTERING ====================== */
/* ============================================================ */

.bfk-page-section .bfk-form h3 {
        text-align: left;
}

/* Center the page header on submit-business */
.bfk-submit-business-header .container {
        text-align: center;
}

/* Ensure form is centered and well-spaced */
.bfk-page-section > .container > .row > .col-lg-8 {
        max-width: 760px;
}

/* Package picker buttons — make them more visible */
.bfk-package-option {
        cursor: pointer;
}
.bfk-package-option-name {
        font-weight: 700;
        font-size: 16px;
        color: var(--text-color);
}
.bfk-package-option.selected .bfk-package-option-name {
        color: var(--primary-color);
}

/* ============================================================ */
/* ============ GENERAL BUTTON VISIBILITY FIXES =============== */
/* ============================================================ */

/* Ensure all primary buttons have white text */
.bfk-btn-primary,
.bfk-btn-primary:hover,
.bfk-btn-primary:active,
.bfk-btn-primary:focus {
        color: #fff !important;
}

/* Ensure red buttons have white text */
.bfk-btn-red,
.bfk-btn-red:hover,
.bfk-btn-red:active,
.bfk-btn-red:focus {
        color: #fff !important;
}

/* Ensure WhatsApp button has white text */
.bfk-btn-whatsapp,
.bfk-btn-whatsapp:hover,
.bfk-btn-whatsapp:active,
.bfk-btn-whatsapp:focus {
        color: #fff !important;
}

/* Ensure white button has dark text */
.bfk-btn-white,
.bfk-btn-white:hover {
        color: var(--primary-dark) !important;
}

/* Soft button — primary color text on light bg */
.bfk-btn-soft {
        color: var(--primary-color) !important;
}
.bfk-btn-soft:hover {
        color: #fff !important;
}

/* Outline button — primary color text */
.bfk-btn-outline {
        color: var(--primary-color);
}
.bfk-btn-outline:hover {
        color: #fff !important;
}

/* Responsive — stack listing action buttons on mobile */
@media (max-width: 991px) {
        .bfk-listing-action-buttons {
                flex-direction: row;
                flex-wrap: wrap;
        }
        .bfk-listing-action-buttons .bfk-btn {
                flex: 1;
                min-width: 140px;
        }
}
@media (max-width: 576px) {
        .bfk-listing-action-buttons {
                flex-direction: column;
        }
        .bfk-listing-action-buttons .bfk-btn {
                width: 100%;
        }
        .bfk-brand-logo { max-height: 34px; max-width: 160px; }
        .bfk-review-form { padding: 20px 16px; }
}

/* ============================================================ */
/* ============ v1.1.0 — USER PACKAGES & DASHBOARD ============ */
/* ============================================================ */

/* Package status banner on submit-business page */
.bfk-package-status-banner {
        display: flex;
        align-items: center;
        gap: 18px;
        background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(8, 116, 66, 0.04) 100%);
        border: 1px solid var(--primary-light);
        border-radius: 14px;
        padding: 18px 24px;
        margin-bottom: 28px;
}
.bfk-package-status-icon {
        width: 52px;
        height: 52px;
        background: var(--primary-color);
        color: #fff;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
}
.bfk-package-status-body { flex: 1; }
.bfk-package-status-body h3 {
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 4px;
        color: var(--primary-dark);
}
.bfk-package-status-body p {
        margin: 0;
        font-size: 14px;
        color: var(--text-color);
}

/* Dashboard package card */
.bfk-dash-package-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        flex-wrap: wrap;
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 22px 26px;
        margin-bottom: 28px;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
.bfk-dash-package-card.active {
        border-left: 4px solid var(--primary-color);
        background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 60%);
}
.bfk-dash-package-card.inactive {
        border-left: 4px solid #f59e0b;
        background: linear-gradient(135deg, #fffbeb 0%, #fff 60%);
}
.bfk-dash-package-info {
        display: flex;
        align-items: center;
        gap: 16px;
}
.bfk-dash-package-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
}
.bfk-dash-package-card.active .bfk-dash-package-icon {
        background: var(--primary-color);
        color: #fff;
}
.bfk-dash-package-card.inactive .bfk-dash-package-icon {
        background: var(--secondary-color);
        color: #fff;
}
.bfk-dash-package-info h3 {
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 4px;
        color: var(--text-color);
}
.bfk-dash-package-info p {
        margin: 0;
        font-size: 14px;
        color: var(--text-muted);
}
.bfk-dash-package-actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
}

/* Admin: user package assignment in user profile */
.bfk-user-package-meta {
        background: #fff;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 16px;
        margin: 15px 0;
}
.bfk-user-package-meta h3 {
        margin: 0 0 12px;
        font-size: 14px;
        font-weight: 700;
        color: var(--text-color);
}
.bfk-user-package-meta table {
        width: 100%;
        font-size: 13px;
}
.bfk-user-package-meta table th {
        text-align: left;
        padding: 6px 8px;
        background: var(--bg-soft);
        font-weight: 600;
}
.bfk-user-package-meta table td {
        padding: 6px 8px;
        border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
        .bfk-package-status-banner,
        .bfk-dash-package-card { flex-direction: column; text-align: center; }
        .bfk-dash-package-info { flex-direction: column; text-align: center; }
        .bfk-dash-package-actions { justify-content: center; }
}

/* ============================================================ */
/* ============ v1.1.3 — MOBILE FIXES ========================= */
/* ============================================================ */

/* Prevent any element from causing horizontal scroll */
.bfk-main,
.bfk-navbar,
.bfk-footer,
.bfk-hero,
.bfk-page-header,
.bfk-listings-area,
.bfk-categories-section,
.bfk-counties-section,
.bfk-blog-section,
.bfk-stats-section,
.bfk-how-it-works,
.bfk-pricing-teaser,
.bfk-pricing-page,
.bfk-cta-banner {
        max-width: 100%;
        overflow-x: hidden;
}

/* Ensure rows don't overflow */
.bfk-main .row,
.bfk-footer .row {
        margin-left: 0;
        margin-right: 0;
}

/* Make sure container doesn't overflow on mobile */
@media (max-width: 991px) {
        .container,
        .container-fluid {
                padding-left: 16px;
                padding-right: 16px;
                max-width: 100%;
        }
        .bfk-page-section {
                max-width: 100%;
                overflow-x: hidden;
        }
        .bfk-navbar-inner {
                padding: 0 14px;
        }
        /* Force all sections to respect viewport width */
        section {
                max-width: 100%;
                overflow-x: hidden;
        }
}

@media (max-width: 576px) {
        .container,
        .container-fluid {
                padding-left: 14px;
                padding-right: 14px;
        }
        .bfk-navbar-inner {
                padding: 0 12px;
                gap: 6px;
        }
        /* On very small screens, hide the search toggle to save space */
        .bfk-search-toggle { display: none; }
        .bfk-brand-text { max-width: 130px; font-size: 14px; }
        .bfk-brand-mark { width: 34px; height: 34px; font-size: 15px; }
}

/* ============================================================ */
/* ============ v1.1.4 — MOBILE CARD FIXES ==================== */
/* ============================================================ */

/* === Listing cards (featured businesses) — overrides removed === */
/* Card header layout is defined at line 700 — logo left, name right, vertically centered */
.bfk-card-header > div {
        flex: 1;
        min-width: 0;
}
.bfk-card-name {
        font-size: 16px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
}
.bfk-card-tagline {
        font-size: 12px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
}

/* Meta grid — centered layout */
.bfk-card-meta-box i { font-size: 14px; flex-shrink: 0; }
.bfk-card-meta-val {
        font-size: 13px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}

/* Card footer: stack on mobile */
.bfk-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
}
.bfk-card-footer > div:first-child {
        display: flex;
        align-items: center;
        gap: 8px;
        justify-content: center;
}
.bfk-card-footer .bfk-btn {
        width: 100%;
        justify-content: center;
}

/* === Mobile responsive card fixes === */
@media (max-width: 768px) {
        /* Listing cards */
        .bfk-card {
                padding: 16px;
                border-radius: 14px;
        }
        .bfk-card-logo {
                width: 48px;
                height: 48px;
        }
        .bfk-card-name {
                font-size: 15px;
        }
        .bfk-card-tagline {
                font-size: 12px;
        }
        .bfk-card-description {
                font-size: 13px;
                -webkit-line-clamp: 3;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
        }
        /* Meta grid: single column, centered location */
        .bfk-card-meta-grid {
                
                gap: 8px;
        }
        .bfk-card-meta-box {
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 4px;
                padding: 8px 10px;
                overflow: hidden;
                min-width: 0;
                text-align: center;
        }
        .bfk-card-meta-label {
                font-size: 10px;
                text-align: center;
        }
        .bfk-card-meta-box .bfk-card-meta-val {
                font-size: 12px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
                max-width: 100%;
                text-align: center;
        }
        .bfk-card-footer {
                flex-direction: column;
                gap: 10px;
        }
        .bfk-card-footer > div:first-child {
                justify-content: center;
        }
        .bfk-card-footer .bfk-btn {
                width: 100%;
                font-size: 13px;
                padding: 10px 16px;
        }

        /* Category & county cards */
        .bfk-category-card-icon,
        .bfk-county-card-icon {
                width: 44px;
                height: 44px;
                font-size: 18px;
                border-radius: 12px;
        }
        .bfk-category-card,
        .bfk-county-card {
                padding: 18px 12px 16px;
        }
        .bfk-category-info h4,
        .bfk-county-card h4 {
                font-size: 14px;
        }
        .bfk-category-info span,
        .bfk-county-card span {
                font-size: 12px;
        }

        /* Pricing cards on mobile */
        .bfk-pricing-card {
                padding: 24px 18px 20px;
        }
        .bfk-pricing-price .bfk-amount {
                font-size: 36px;
        }
        .bfk-pricing-features li {
                font-size: 13px;
                padding: 8px 0;
        }

        /* Blog cards */
        .bfk-blog-card {
                border-radius: 12px;
        }
        .bfk-blog-body {
                padding: 14px;
        }
        .bfk-blog-title {
                font-size: 15px;
        }
        .bfk-blog-excerpt {
                font-size: 13px;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
        }

        /* Step cards */
        .bfk-step-card {
                padding: 24px 18px 20px;
        }
        .bfk-step-icon {
                width: 56px;
                height: 56px;
                font-size: 22px;
        }
        .bfk-step-card h3 {
                font-size: 17px;
        }
        .bfk-step-card p {
                font-size: 13px;
        }
        .bfk-step-number {
                font-size: 40px;
                top: 12px;
                right: 14px;
        }
}

@media (max-width: 576px) {
        /* Even smaller screens */
        .bfk-card {
                padding: 14px;
        }
        .bfk-card-logo {
                width: 44px;
                height: 44px;
                border-radius: 10px;
        }
        .bfk-card-name {
                font-size: 14px;
        }
        .bfk-card-description {
                font-size: 12px;
        }
        .bfk-card-meta-box {
                padding: 6px 10px;
                font-size: 11px;
        }
        .bfk-card-meta-val {
                font-size: 12px;
        }

        /* Force single column for card grids on very small screens */
        .bfk-listings-area .row,
        .bfk-categories-section .row,
        .bfk-counties-section .row,
        .bfk-blog-section .row {
                margin-left: -8px;
                margin-right: -8px;
        }
        .bfk-listings-area .row > [class*="col-"],
        .bfk-categories-section .row > [class*="col-"],
        .bfk-counties-section .row > [class*="col-"],
        .bfk-blog-section .row > [class*="col-"] {
                padding-left: 8px;
                padding-right: 8px;
        }
}

/* === Image gallery on listing detail === */
.bfk-listing-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
        margin-top: 16px;
}
.bfk-listing-gallery img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        border: 2px solid #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.bfk-listing-gallery img:hover {
        transform: scale(1.03);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* === Image upload field in submit form === */
.bfk-image-upload-field {
        margin-top: 12px;
}
.bfk-image-upload-field .bfk-upload-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 8px;
        padding: 10px 18px;
        background: var(--bg-soft);
        border: 2px dashed var(--border-color);
        border-radius: 10px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-color);
        transition: all 0.2s ease;
        box-sizing: border-box;
}
.bfk-image-upload-field .bfk-upload-button:hover {
        border-color: var(--primary-color);
        background: var(--primary-soft);
}
.bfk-image-upload-field .bfk-upload-preview {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 12px;
}
.bfk-image-upload-field .bfk-upload-preview-item {
        position: relative;
        width: 100px;
        height: 100px;
}
.bfk-image-upload-field .bfk-upload-preview-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
        border: 2px solid var(--border-color);
}
.bfk-image-upload-field .bfk-upload-preview-item .bfk-remove-image {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 22px;
        height: 22px;
        background: #dc2626;
        color: #fff;
        border-radius: 50%;
        border: 2px solid #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        cursor: pointer;
        line-height: 1;
}
.bfk-image-upload-field .bfk-upload-preview-item .bfk-remove-image:hover {
        background: #b91c1c;
}

@media (max-width: 768px) {
        .bfk-listing-gallery {
                grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
                gap: 8px;
        }
        .bfk-listing-gallery img {
                height: 90px;
        }
}

/* ============================================================ */
/* ============ v1.1.5 — FOOTER + CARD FIXES ================== */
/* ============================================================ */

/* Footer: add spacing between brand column and adjacent columns */
.bfk-footer .row > div {
        padding-bottom: 20px;
}
.bfk-footer .bfk-social-icons {
        margin-top: 20px;
        margin-bottom: 10px;
}
.bfk-footer h4 {
        margin-top: 0;
}

/* Mobile: ensure footer columns have proper spacing */
@media (max-width: 991px) {
        .bfk-footer .row > div {
                margin-bottom: 24px;
                padding-bottom: 16px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .bfk-footer .row > div:last-child {
                border-bottom: none;
                margin-bottom: 0;
                padding-bottom: 0;
        }
        .bfk-footer .bfk-social-icons {
                margin-top: 16px;
        }
        .bfk-footer h4 {
                margin-top: 0;
                margin-bottom: 14px;
        }
}

@media (max-width: 767px) {
        .bfk-footer .row > div {
                margin-bottom: 20px;
        }
        /* On very small screens, add extra spacing between brand+social and the link columns */
        .bfk-footer .row > div:first-child {
                margin-bottom: 28px;
                padding-bottom: 24px;
        }
}

/* Native file input styling */
.bfk-file-input {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        overflow: hidden;
        z-index: -1;
}
.bfk-upload-button {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        background: var(--bg-soft);
        border: 2px dashed var(--border-color);
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-color);
        transition: all 0.2s ease;
}
.bfk-upload-button:hover {
        border-color: var(--primary-color);
        background: var(--primary-soft);
}

/* ============================================================ */
/* ============ v1.1.9 — DASHBOARD PREMIUM REDESIGN =========== */
/* ============================================================ */

.bfk-dash-page { background: var(--bg-soft); padding: 60px 0; }

/* Welcome banner */
.bfk-dash-welcome {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        color: #fff;
        border-radius: 16px;
        padding: 28px 32px;
        margin-bottom: 24px;
        position: relative;
        overflow: hidden;
}
.bfk-dash-welcome::before {
        content: '';
        position: absolute;
        top: 0; right: 0;
        width: 300px;
        height: 100%;
        background: radial-gradient(circle at 80% 50%, rgba(245, 158, 11, 0.15) 0, transparent 70%);
        pointer-events: none;
}
.bfk-dash-welcome-text { position: relative; z-index: 1; }
.bfk-dash-welcome-text h2 {
        font-size: 24px;
        font-weight: 800;
        margin: 0 0 6px;
        color: #fff;
}
.bfk-dash-welcome-text p {
        margin: 0;
        opacity: 0.9;
        font-size: 14px;
}
.bfk-dash-welcome-cta {
        position: relative;
        z-index: 1;
        background: #fff !important;
        color: var(--primary-color) !important;
        font-weight: 700;
        padding: 12px 24px;
        font-size: 14px;
}
.bfk-dash-welcome-cta:hover {
        background: #f3f4f6 !important;
        transform: translateY(-2px);
}
.bfk-dash-welcome-logout {
        position: relative;
        z-index: 1;
        background: rgba(255,255,255,0.15) !important;
        border-color: rgba(255,255,255,0.3) !important;
        color: #fff !important;
        padding: 12px 16px;
        font-size: 14px;
        margin-left: 8px;
        transition: all 0.2s;
}
.bfk-dash-welcome-logout:hover {
        background: rgba(255,255,255,0.25) !important;
        transform: translateY(-2px);
}

/* Stats grid */
.bfk-dash-stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-bottom: 24px;
}
.bfk-dash-stat-card {
        background: #fff;
        border-radius: 14px;
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        border: 1px solid var(--border-color);
        transition: all 0.2s ease;
        text-align: center;
}
.bfk-dash-stat-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.bfk-dash-stat-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
}
.bfk-dash-stat-icon-green { background: rgba(8, 116, 66, 0.1); color: #087442; }
.bfk-dash-stat-icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.bfk-dash-stat-icon-orange { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.bfk-dash-stat-icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.bfk-dash-stat-body {
        min-width: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
}
.bfk-dash-stat-num {
        font-size: 32px;
        font-weight: 800;
        line-height: 1;
        color: var(--text-color);
        text-align: center;
}
.bfk-dash-stat-label {
        font-size: 12px;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 6px;
        text-align: center;
}

/* Package banner */
.bfk-dash-package-banner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        flex-wrap: wrap;
        background: #fff;
        border-radius: 16px;
        padding: 22px 28px;
        margin-bottom: 32px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        border-left: 4px solid var(--primary-color);
}
.bfk-dash-package-banner.inactive { border-left-color: var(--secondary-color); }
.bfk-dash-package-banner-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
}
.bfk-dash-package-banner.active .bfk-dash-package-banner-icon {
        background: var(--primary-soft);
        color: var(--primary-color);
}
.bfk-dash-package-banner.inactive .bfk-dash-package-banner-icon {
        background: #fffbeb;
        color: var(--secondary-color);
}
.bfk-dash-package-banner-body { flex: 1; min-width: 200px; }
.bfk-dash-package-banner-body h3 {
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 4px;
        color: var(--text-color);
}
.bfk-dash-package-banner-body p {
        margin: 0;
        font-size: 14px;
        color: var(--text-muted);
}

/* Listings section */
.bfk-dash-listings-section {
        background: #fff;
        border-radius: 16px;
        padding: 28px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.bfk-dash-section-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 20px;
}
.bfk-dash-section-head h2 {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
        color: var(--text-color);
}

/* Listing cards grid (replaces table) */
.bfk-dash-listings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 16px;
}
.bfk-dash-listing-card {
        background: var(--bg-soft);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 18px;
        transition: all 0.2s ease;
}
.bfk-dash-listing-card:hover {
        background: #fff;
        border-color: var(--primary-light);
        box-shadow: 0 4px 16px rgba(8, 116, 66, 0.08);
}
.bfk-dash-listing-card-head {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
}
.bfk-dash-listing-logo {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        object-fit: cover;
        flex-shrink: 0;
        background: #fff;
}
.bfk-dash-listing-info { flex: 1; min-width: 0; }
.bfk-dash-listing-info h4 {
        font-size: 15px;
        font-weight: 700;
        margin: 0 0 4px;
        color: var(--text-color);
        word-wrap: break-word;
}
.bfk-dash-listing-info span {
        font-size: 12px;
        color: var(--text-muted);
}
.bfk-dash-listing-card-meta {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px dashed var(--border-color);
}
.bfk-dash-listing-card-meta i { color: var(--primary-color); }
.bfk-dash-listing-card-actions {
        display: flex;
        gap: 8px;
}
.bfk-dash-listing-card-actions .bfk-btn {
        flex: 1;
        justify-content: center;
        font-size: 12px;
        padding: 8px 12px;
}

/* Empty state */
.bfk-dash-empty {
        text-align: center;
        padding: 50px 20px;
}
.bfk-dash-empty-icon {
        width: 80px;
        height: 80px;
        background: var(--primary-soft);
        color: var(--primary-color);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 20px;
}
.bfk-dash-empty h3 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 8px;
        color: var(--text-color);
}
.bfk-dash-empty p {
        color: var(--text-muted);
        margin: 0 0 24px;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
}

/* Dashboard badges */
.bfk-badge {
        display: inline-flex;
        align-items: center;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
}
.bfk-badge-ok { background: rgba(8, 116, 66, 0.1); color: #087442; }
.bfk-badge-warn { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.bfk-badge-muted { background: rgba(107, 114, 128, 0.1); color: #6b7280; }

/* Responsive */
@media (max-width: 991px) {
        .bfk-dash-stats-grid { grid-template-columns: repeat(2, 1fr); }
        .bfk-dash-welcome { padding: 22px 24px; }
        .bfk-dash-welcome-text h2 { font-size: 20px; }
        .bfk-dash-listings-section { padding: 20px; }
}
@media (max-width: 576px) {
        .bfk-dash-stats-grid { grid-template-columns: 1fr; }
        .bfk-dash-welcome {
                flex-direction: column;
                text-align: center;
                padding: 20px;
        }
        .bfk-dash-welcome-cta { width: 100%; }
        .bfk-dash-package-banner {
                flex-direction: column;
                text-align: center;
        }
        .bfk-dash-package-banner-actions { width: 100%; }
        .bfk-dash-package-banner-actions .bfk-btn { width: 100%; }
        .bfk-dash-listings-grid { grid-template-columns: 1fr; }
        .bfk-dash-listing-card-actions { flex-direction: column; }
        .bfk-dash-listing-card-actions .bfk-btn { width: 100%; }
}

/* ============================================================ */
/* ============ PENDING LISTING PREVIEW MODAL ================ */
/* ============================================================ */

.bfk-pending-modal {
        position: fixed;
        inset: 0;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
}
.bfk-pending-modal.open {
        opacity: 1;
}
.bfk-pending-modal-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
}
.bfk-pending-modal-dialog {
        position: relative;
        background: #fff;
        border-radius: 20px;
        width: 100%;
        max-width: 380px;
        overflow: hidden;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
        transform: translateY(30px) scale(0.95);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bfk-pending-modal.open .bfk-pending-modal-dialog {
        transform: translateY(0) scale(1);
}
.bfk-pending-modal-close {
        position: absolute;
        top: 14px;
        right: 14px;
        width: 32px;
        height: 32px;
        border: none;
        background: rgba(0, 0, 0, 0.06);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: #6b7280;
        font-size: 14px;
        z-index: 2;
        transition: all 0.2s;
}
.bfk-pending-modal-close:hover {
        background: rgba(0, 0, 0, 0.12);
        color: #1f2937;
}
.bfk-pending-modal-body {
        padding: 40px 32px 28px;
        text-align: center;
}
.bfk-pending-modal-icon {
        width: 64px;
        height: 64px;
        background: rgba(245, 158, 11, 0.1);
        color: #d97706;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin-bottom: 20px;
}
.bfk-pending-modal-body .bfk-badge {
        font-size: 13px;
        padding: 6px 16px;
}
.bfk-pending-modal-date {
        font-size: 14px;
        color: #9ca3af;
        margin: 12px 0 0;
}
.bfk-pending-modal-footer {
        padding: 16px 28px;
        background: #fffbeb;
        border-top: 1px solid #fde68a;
}
.bfk-pending-modal-footer p {
        margin: 0;
        font-size: 13px;
        color: #92400e;
        display: flex;
        align-items: center;
}
.bfk-pending-modal-footer i {
        color: #d97706;
}

@media (max-width: 576px) {
        .bfk-pending-modal-dialog {
                border-radius: 16px;
        }
        .bfk-pending-modal-body { padding: 32px 24px 24px; }
        .bfk-pending-modal-footer { padding: 14px 20px; }
}

/* ============================================================ */
/* ============ v1.2.1 — TOP BAR (phone + email) ============== */
/* ============================================================ */

.bfk-topbar {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        color: #fff;
        font-size: 13px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bfk-topbar-inner {
        max-width: var(--container-max);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between; /* phone left, email right */
        gap: 16px;
        padding: 0 24px;
}
.bfk-topbar-item {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #fff !important;
        text-decoration: none !important;
        font-weight: 500;
        transition: opacity 0.2s ease;
}
.bfk-topbar-item:hover { opacity: 0.8; }
.bfk-topbar-item i {
        font-size: 12px;
        color: var(--secondary-color);
}

/* Sticky navbar offset — navbar sticks right below topbar */
.bfk-navbar { top: 0; }

/* Admin bar fix */
.admin-bar .bfk-topbar { margin-top: 32px; }
@media (max-width: 782px) {
        .admin-bar .bfk-topbar { margin-top: 46px; }
}

/* Responsive */
@media (max-width: 768px) {
        .bfk-topbar-inner { padding: 0 16px; }
        .bfk-topbar-item { font-size: 12px; }
}
@media (max-width: 480px) {
        .bfk-topbar { padding: 6px 0; }
        .bfk-topbar-item { font-size: 11px; gap: 5px; }
        .bfk-topbar-item i { font-size: 10px; }
}

/* ============================================================ */
/* ============ v1.2.5 — PREMIUM SUBMIT FORM ================== */
/* ============================================================ */

.bfk-form {
        background: #fff;
        border-radius: 16px;
        padding: 0;
}
.bfk-form > h3 {
        background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(8, 116, 66, 0.03) 100%) !important;
        border-radius: 12px !important;
        border-left: 4px solid var(--primary-color) !important;
        padding: 14px 20px !important;
        margin-top: 28px !important;
        margin-bottom: 16px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        color: var(--primary-dark) !important;
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
}
.bfk-form > h3 i {
        font-size: 18px !important;
        color: var(--primary-color) !important;
}
.bfk-form > h3:first-child {
        margin-top: 0 !important;
}
.bfk-form .form-label {
        font-weight: 600;
        font-size: 13px;
        color: var(--text-color);
        margin-bottom: 6px;
        display: block;
}
.bfk-form .form-control,
.bfk-form .form-select {
        border-radius: 10px;
        border: 1.5px solid var(--border-color);
        padding: 12px 16px;
        font-size: 14px;
        transition: all 0.2s ease;
        background: #fff;
        width: 100%;
}
.bfk-form .form-control:focus,
.bfk-form .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(8, 116, 66, 0.1);
        outline: none;
}
.bfk-form .form-control::placeholder {
        color: var(--text-muted);
        opacity: 0.7;
}
.bfk-form textarea.form-control {
        resize: vertical;
        min-height: 100px;
        font-family: inherit;
}
.bfk-form small.text-muted {
        display: block;
        margin-top: 4px;
        font-size: 12px;
        color: var(--text-muted);
}

/* Payment banner - premium look */
.bfk-payment-banner {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-radius: 16px;
        padding: 24px 28px;
        margin-bottom: 28px;
        display: flex;
        align-items: center;
        gap: 18px;
        flex-wrap: wrap;
        box-shadow: 0 8px 24px rgba(8, 116, 66, 0.2);
}
.bfk-payment-banner-icon {
        width: 56px;
        height: 56px;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: #fff;
        flex-shrink: 0;
}
.bfk-payment-banner-body { flex: 1; min-width: 200px; }
.bfk-payment-banner-body h3 {
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 6px;
}
.bfk-payment-banner-body p {
        margin: 0;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.95);
}
.bfk-payment-banner .bfk-phone-display {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        padding: 3px 12px;
        border-radius: 6px;
        font-weight: 700;
        font-size: 16px;
}
.bfk-payment-banner .bfk-btn-outline {
        border: 2px solid #fff;
        color: #fff;
        background: transparent;
}
.bfk-payment-banner .bfk-btn-outline:hover {
        background: #fff;
        color: var(--primary-color);
}

/* Package picker - premium */
.bfk-package-picker {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
}
.bfk-package-option {
        background: #fff;
        border: 2px solid var(--border-color);
        border-radius: 14px;
        padding: 20px;
        cursor: pointer;
        transition: all 0.25s ease;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
}
.bfk-package-option:hover {
        border-color: var(--primary-light);
        background: var(--bg-soft);
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.bfk-package-option.selected {
        border-color: var(--primary-color);
        background: linear-gradient(135deg, var(--primary-soft) 0%, #fff 100%);
        box-shadow: 0 6px 20px rgba(8, 116, 66, 0.12);
}
.bfk-package-option input { display: none; }
.bfk-package-option-name {
        font-weight: 700;
        font-size: 17px;
        color: var(--text-color);
}
.bfk-package-option-listings {
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 3px;
}
.bfk-package-option-price {
        text-align: right;
}
.bfk-package-option-price .bfk-currency {
        font-size: 11px;
        color: var(--text-muted);
        display: block;
        line-height: 1;
}
.bfk-package-option-price .bfk-amount {
        font-size: 24px;
        font-weight: 800;
        color: var(--primary-color);
}

/* Payment confirmation box - premium */
.bfk-payment-confirm-box {
        background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
        border: 1.5px solid rgba(245, 158, 11, 0.25);
        border-radius: 14px;
        padding: 22px 24px;
}
.bfk-payment-confirm-box > p {
        font-size: 14px;
        color: var(--text-color);
        margin-bottom: 16px;
}

/* Form actions */
.bfk-form-actions {
        text-align: center;
        padding: 20px 0 10px;
}
.bfk-form-actions .bfk-btn-primary {
        padding: 14px 36px;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
}

/* Image upload - premium */
.bfk-image-upload-field {
        margin-top: 8px;
}
.bfk-upload-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        background: var(--bg-soft);
        border: 2px dashed var(--border-color);
        border-radius: 12px;
        cursor: pointer;
        font-size: 14px;
        font-weight: 600;
        color: var(--primary-color);
        transition: all 0.2s ease;
}
.bfk-upload-button:hover {
        border-color: var(--primary-color);
        background: var(--primary-soft);
        transform: translateY(-1px);
}
.bfk-upload-preview {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 14px;
}
.bfk-upload-preview-item {
        position: relative;
        width: 100px;
        height: 100px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.bfk-upload-preview-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
}
.bfk-upload-preview-item .bfk-remove-image {
        position: absolute;
        top: 4px;
        right: 4px;
        width: 22px;
        height: 22px;
        background: rgba(220, 38, 38, 0.9);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        cursor: pointer;
        line-height: 1;
}
.bfk-upload-preview-item .bfk-remove-image:hover {
        background: #dc2626;
}

@media (max-width: 768px) {
        .bfk-package-picker { grid-template-columns: 1fr; }
        .bfk-payment-banner { flex-direction: column; text-align: center; }
        .bfk-form > h3 { font-size: 15px !important; padding: 12px 16px !important; }
        .bfk-form .form-control, .bfk-form .form-select { padding: 11px 14px; font-size: 13px; }
}

/* ============================================================ */
/* ============ v1.2.6 — REGISTRATION PACKAGE PICKER ========== */
/* ============================================================ */

.bfk-reg-package-picker {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        margin-top: 8px;
}
.bfk-reg-pkg-option {
        background: var(--bg-soft);
        border: 2px solid var(--border-color);
        border-radius: 12px;
        padding: 14px 10px;
        text-align: center;
        cursor: pointer;
        transition: all 0.2s ease;
        display: block;
}
.bfk-reg-pkg-option:hover {
        border-color: var(--primary-light);
        background: #fff;
}
.bfk-reg-pkg-option input { display: none; }
.bfk-reg-pkg-option:has(input:checked) {
        border-color: var(--primary-color);
        background: var(--primary-soft);
        box-shadow: 0 4px 14px rgba(8, 116, 66, 0.12);
}
.bfk-reg-pkg-name {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-color);
}
.bfk-reg-pkg-listings {
        font-size: 11px;
        color: var(--text-muted);
        margin: 2px 0 6px;
}
.bfk-reg-pkg-price {
        font-size: 18px;
        font-weight: 800;
        color: var(--primary-color);
}

@media (max-width: 576px) {
        .bfk-reg-package-picker { grid-template-columns: 1fr; }
}

/* ============================================================ */
/* ============ v1.2.7 — ADMIN PAGES PREMIUM ================== */
/* ============================================================ */

/* Admin dashboard premium styling */
.bfk-admin-dashboard .bfk-stat-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        transition: all 0.2s ease;
}
.bfk-admin-dashboard .bfk-stat-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        transform: translateY(-2px);
}
.bfk-admin-dashboard .bfk-stat-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
}

/* Premium admin table */
.bfk-admin-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
}
.bfk-admin-table th {
        background: linear-gradient(135deg, #087442 0%, #065231 100%);
        color: #fff;
        font-weight: 600;
        font-size: 13px;
        padding: 14px 16px;
        text-align: left;
        border: none;
}
.bfk-admin-table th:first-child { border-radius: 10px 0 0 0; }
.bfk-admin-table th:last-child { border-radius: 0 10px 0 0; }
.bfk-admin-table td {
        padding: 14px 16px;
        border-bottom: 1px solid #e5e7eb;
        font-size: 14px;
        background: #fff;
}
.bfk-admin-table tr:hover td {
        background: #f9fafc;
}
.bfk-admin-table tr:last-child td { border-bottom: none; }
.bfk-admin-table tr:last-child td:first-child { border-radius: 0 0 0 10px; }
.bfk-admin-table tr:last-child td:last-child { border-radius: 0 0 10px 0; }
.bfk-admin-table-wrap {
        overflow-x: auto;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Admin page wrapper */
.bfk-admin-wrap {
        max-width: 1200px;
}
.bfk-admin-wrap h1 {
        font-size: 26px;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 8px;
}
.bfk-admin-wrap > p {
        color: #6b7280;
        font-size: 14px;
        margin-bottom: 24px;
}

/* Admin stat cards grid */
.bfk-admin-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        margin: 20px 0 30px;
}

/* Registration package picker - already added, add selected state fix */
.bfk-reg-pkg-option input:checked + .bfk-reg-pkg-name {
        color: var(--primary-color);
}

/* ============================================================ */
/* ============ v1.3.1 — PREMIUM ADMIN PAGES ================== */
/* ============================================================ */

/* Admin hero banner */
.bfk-admin-hero {
        background: linear-gradient(135deg, #087442 0%, #065231 100%);
        border-radius: 16px;
        padding: 32px 36px;
        margin-bottom: 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
        box-shadow: 0 8px 24px rgba(8, 116, 66, 0.2);
}
.bfk-admin-hero h1 {
        margin: 0 0 6px;
        color: #fff;
        font-size: 28px;
        font-weight: 800;
}
.bfk-admin-hero p {
        margin: 0;
        color: rgba(255, 255, 255, 0.9);
        font-size: 15px;
}
.bfk-admin-hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        color: #087442 !important;
        text-decoration: none !important;
        padding: 12px 24px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.2s ease;
}
.bfk-admin-hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Admin stats grid */
.bfk-admin-stats {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
        margin-bottom: 32px;
}
.bfk-admin-stat-card {
        background: #fff;
        border-radius: 14px;
        padding: 22px;
        display: flex;
        align-items: center;
        gap: 16px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
        border: 1px solid #e5e7eb;
        transition: all 0.2s ease;
}
.bfk-admin-stat-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.bfk-admin-stat-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
}
.bfk-stat-green .bfk-admin-stat-icon { background: rgba(8, 116, 66, 0.1); color: #087442; }
.bfk-stat-orange .bfk-admin-stat-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.bfk-stat-blue .bfk-admin-stat-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.bfk-stat-purple .bfk-admin-stat-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.bfk-stat-pink .bfk-admin-stat-icon { background: rgba(236, 72, 153, 0.1); color: #ec4899; }
.bfk-stat-red .bfk-admin-stat-icon { background: rgba(220, 38, 38, 0.1); color: #dc2626; }

.bfk-admin-stat-num {
        font-size: 28px;
        font-weight: 800;
        line-height: 1;
        color: #1f2937;
}
.bfk-admin-stat-label {
        font-size: 12px;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 4px;
}

/* Quick Actions */
.bfk-admin-actions { margin-bottom: 20px; }
.bfk-admin-actions h2 {
        font-size: 20px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
}
.bfk-admin-actions h2 i { color: #f59e0b; }

.bfk-admin-actions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 14px;
}
.bfk-admin-action-card {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        padding: 22px 16px;
        text-align: center;
        text-decoration: none !important;
        color: #1f2937 !important;
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        font-weight: 600;
}
.bfk-admin-action-card:hover {
        border-color: #087442;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(8, 116, 66, 0.1);
}
.bfk-admin-action-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
}
.bfk-icon-green { background: rgba(8, 116, 66, 0.1); color: #087442; }
.bfk-icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.bfk-icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.bfk-icon-orange { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.bfk-icon-red { background: rgba(220, 38, 38, 0.1); color: #dc2626; }
.bfk-icon-gray { background: rgba(107, 114, 128, 0.1); color: #6b7280; }

/* Premium admin table (enhanced) */
.bfk-admin-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
}
.bfk-admin-table th {
        background: linear-gradient(135deg, #087442 0%, #065231 100%);
        color: #fff;
        font-weight: 600;
        font-size: 13px;
        padding: 14px 16px;
        text-align: left;
        border: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
}
.bfk-admin-table th:first-child { border-radius: 10px 0 0 0; }
.bfk-admin-table th:last-child { border-radius: 0 10px 0 0; }
.bfk-admin-table td {
        padding: 16px;
        border-bottom: 1px solid #f3f4f6;
        font-size: 14px;
        background: #fff;
        vertical-align: middle;
}
.bfk-admin-table tr:hover td {
        background: #f9fafc;
}
.bfk-admin-table tr:last-child td { border-bottom: none; }
.bfk-admin-table tr:last-child td:first-child { border-radius: 0 0 0 10px; }
.bfk-admin-table tr:last-child td:last-child { border-radius: 0 0 10px 0; }
.bfk-admin-table-wrap {
        overflow-x: auto;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        margin-top: 16px;
}

/* Admin page title */
.bfk-admin-wrap h1 {
        font-size: 26px;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 8px;
}
.bfk-admin-wrap > p {
        color: #6b7280;
        font-size: 14px;
        margin-bottom: 20px;
}
.bfk-admin-wrap h2 {
        font-size: 20px;
        font-weight: 700;
        color: #1f2937;
}

/* Settings page sections */
.bfk-admin-wrap h2 {
        padding-bottom: 10px;
        border-bottom: 2px solid #f3f4f6;
        margin-top: 32px;
        margin-bottom: 16px;
}
.bfk-admin-wrap .form-table th {
        padding: 18px 10px 18px 0;
        font-weight: 600;
        color: #1f2937;
}
.bfk-admin-wrap .form-table td {
        padding: 18px 10px;
}
.bfk-admin-wrap .form-control,
.bfk-admin-wrap .regular-text {
        border-radius: 8px !important;
        border: 1.5px solid #e5e7eb !important;
        padding: 8px 12px !important;
        transition: border-color 0.2s ease;
}
.bfk-admin-wrap .form-control:focus,
.bfk-admin-wrap .regular-text:focus {
        border-color: #087442 !important;
        box-shadow: 0 0 0 3px rgba(8, 116, 66, 0.1) !important;
}
.bfk-admin-wrap .button-primary {
        background: #087442 !important;
        border-color: #087442 !important;
        border-radius: 8px !important;
        padding: 4px 20px !important;
        height: auto !important;
        font-weight: 600 !important;
}
.bfk-admin-wrap .button-primary:hover {
        background: #065231 !important;
}

/* Pending verification banner on dashboard */
.bfk-dash-pending-banner {
        display: flex;
        align-items: center;
        gap: 18px;
        background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
        border: 1px solid rgba(245, 158, 11, 0.3);
        border-left: 4px solid #f59e0b;
        border-radius: 16px;
        padding: 22px 28px;
        margin-bottom: 24px;
}
.bfk-dash-pending-icon {
        width: 48px;
        height: 48px;
        background: rgba(245, 158, 11, 0.15);
        color: #f59e0b;
        border-radius: 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
}
.bfk-dash-pending-body h3 {
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 4px;
        color: #92400e;
}
.bfk-dash-pending-body p {
        margin: 0;
        font-size: 14px;
        color: #78350f;
}

/* Pending package banner variant */
.bfk-dash-package-banner.pending {
        border-left-color: #f59e0b;
}
.bfk-dash-package-banner.pending .bfk-dash-package-banner-icon {
        background: #fffbeb;
        color: #f59e0b;
}
.bfk-dash-package-banner.pending .bfk-dash-package-banner-body h3 {
        color: #92400e;
}

/* ============================================================ */
/* ============ REGISTRATION STEP INDICATOR ==================== */
/* ============================================================ */
/* (Single definition — see below) */

/* Registration section titles - centered */
.bfk-reg-section-title {
        text-align: center;
        margin-bottom: 16px;
}
.bfk-reg-section-title h3 {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary-color);
        margin: 0 0 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
}
.bfk-reg-section-title h3 i {
        font-size: 20px;
}
.bfk-reg-section-title p {
        font-size: 14px;
        color: var(--text-muted);
        margin: 0;
}
.bfk-reg-section-title .bfk-phone-display {
        font-size: 16px;
}

/* 2-step registration indicator */
.bfk-reg-steps {
        display: flex;
        justify-content: center;
        margin-bottom: 28px;
}
.bfk-reg-step {
        font-size: 14px;
        font-weight: 600;
        color: #d1d5db;
        padding-bottom: 8px;
        position: relative;
        display: inline-block;
}
.bfk-reg-step::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: #e5e7eb;
        border-radius: 2px;
}
.bfk-reg-step.active {
        color: var(--primary-color);
}
.bfk-reg-step.active::after {
        background: var(--primary-color);
}
.bfk-reg-step.done {
        color: var(--primary-color);
}
.bfk-reg-step.done::after {
        background: var(--primary-color);
}

/* =============================================
   Sliding Latest Listings Footer
   ============================================= */
.bfk-slide-footer {
        background: var(--primary-color);
        padding: 18px 0;
        overflow: hidden;
        position: relative;
}
.bfk-slide-footer-label {
        text-align: center;
        font-size: 13px;
        font-weight: 700;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
}
.bfk-slide-footer-label i {
        color: var(--secondary-color);
        margin-right: 6px;
}
.bfk-slide-track-wrapper {
        overflow: hidden;
        width: 100%;
        mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.bfk-slide-track {
        display: flex;
        flex-wrap: nowrap;
        gap: 20px;
        width: max-content;
        animation: bfk-slide-scroll 40s linear infinite;
}
.bfk-slide-track:hover {
        animation-play-state: paused;
}
.bfk-slide-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 12px;
        padding: 8px 16px 8px 8px;
        white-space: nowrap;
        text-decoration: none;
        color: #ffffff;
        transition: background 0.25s, transform 0.25s;
        flex-shrink: 0;
}
.bfk-slide-item:hover {
        background: rgba(255, 255, 255, 0.22);
        transform: translateY(-2px);
        color: #ffffff;
        text-decoration: none;
}
.bfk-slide-item img {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        object-fit: cover;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.2);
}
.bfk-slide-item span {
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
}

@keyframes bfk-slide-scroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
}
@keyframes bfkFadeIn {
        0%   { opacity: 0; transform: translateY(-10px); }
        100% { opacity: 1; transform: translateY(0); }
}

/* Mobile: smaller items, faster scroll */
@media (max-width: 767px) {
        .bfk-slide-footer {
                padding: 12px 0;
        }
        .bfk-slide-footer-label {
                font-size: 11px;
                margin-bottom: 8px;
        }
        .bfk-slide-track {
                gap: 12px;
                animation-duration: 30s;
        }
        .bfk-slide-item {
                padding: 6px 12px 6px 6px;
                border-radius: 10px;
        }
        .bfk-slide-item img {
                width: 30px;
                height: 30px;
                border-radius: 6px;
        }
        .bfk-slide-item span {
                font-size: 11px;
                max-width: 120px;
        }
}

/* ============================================
   CHECKOUT PAGE — Package Switch M-Pesa Payment
   ============================================ */

.bfk-checkout-page {
        padding: 40px 0 60px;
}

/* Success / Error / Pending states */
.bfk-checkout-success {
        text-align: center;
        max-width: 560px;
        margin: 40px auto;
        padding: 60px 40px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.bfk-checkout-success-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(8,116,66,0.1);
        color: #087442;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 36px;
        margin-bottom: 20px;
}
.bfk-checkout-success-icon.bfk-checkout-pending-icon {
        background: rgba(245,158,11,0.1);
        color: #f59e0b;
}
.bfk-checkout-success-icon.bfk-checkout-error-icon {
        background: rgba(220,38,38,0.1);
        color: #dc2626;
}
.bfk-checkout-success h2 {
        font-size: 24px;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 12px;
}
.bfk-checkout-success p {
        font-size: 15px;
        line-height: 1.7;
        color: #6b7280;
        margin-bottom: 24px;
}
.bfk-checkout-success-actions {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
}

/* Error alert */
.bfk-checkout-error {
        display: flex;
        align-items: center;
        gap: 12px;
        background: #fef2f2;
        border: 1px solid #fecaca;
        border-radius: 12px;
        padding: 16px 20px;
        margin-bottom: 24px;
        color: #dc2626;
        font-weight: 600;
        font-size: 14px;
}
.bfk-checkout-error i {
        font-size: 20px;
        flex-shrink: 0;
}

/* Package comparison cards */
.bfk-checkout-compare {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 32px;
        flex-wrap: wrap;
}
.bfk-checkout-compare-card {
        background: #fff;
        border-radius: 16px;
        padding: 28px 32px;
        text-align: center;
        box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        border: 2px solid #e5e7eb;
        min-width: 200px;
        flex: 1;
        max-width: 280px;
}
.bfk-checkout-compare-current {
        border-color: #e5e7eb;
}
.bfk-checkout-compare-new {
        border-color: #087442;
        background: linear-gradient(135deg, rgba(8,116,66,0.02) 0%, rgba(8,116,66,0.06) 100%);
}
.bfk-checkout-compare-label {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #9ca3af;
        margin-bottom: 8px;
        font-weight: 700;
}
.bfk-checkout-compare-card h3 {
        font-size: 22px;
        font-weight: 800;
        color: #1f2937;
        margin-bottom: 6px;
}
.bfk-checkout-compare-meta {
        font-size: 13px;
        color: #9ca3af;
        margin: 0;
}
.bfk-checkout-compare-price {
        font-size: 24px;
        font-weight: 800;
        color: #087442;
        margin-top: 12px;
}
.bfk-checkout-compare-arrow {
        font-size: 24px;
        color: #087442;
        flex-shrink: 0;
}

/* Payment form card */
.bfk-checkout-form-card {
        background: #fff;
        border-radius: 20px;
        padding: 36px;
        box-shadow: 0 4px 24px rgba(0,0,0,0.06);
        margin-bottom: 24px;
}
.bfk-checkout-form-head {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 28px;
}
.bfk-checkout-form-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: linear-gradient(135deg, #087442 0%, #065231 100%);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
}
.bfk-checkout-form-head h3 {
        font-size: 20px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 2px;
}
.bfk-checkout-form-head p {
        font-size: 14px;
        color: #9ca3af;
        margin: 0;
}

/* M-Pesa steps */
.bfk-checkout-steps {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
        padding: 24px;
        background: #f9fafb;
        border-radius: 14px;
        border: 1px solid #e5e7eb;
}
.bfk-checkout-step {
        display: flex;
        align-items: center;
        gap: 16px;
}
.bfk-checkout-step-num {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #087442;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 15px;
        flex-shrink: 0;
}
.bfk-checkout-step-text {
        display: flex;
        flex-direction: column;
}
.bfk-checkout-step-text strong {
        font-size: 15px;
        color: #1f2937;
        font-weight: 700;
}
.bfk-checkout-step-text span {
        font-size: 13px;
        color: #9ca3af;
        margin-top: 2px;
}
.bfk-checkout-phone {
        font-weight: 700 !important;
        color: #087442 !important;
        font-size: 15px !important;
}
.bfk-checkout-amount {
        font-weight: 700 !important;
        color: #087442 !important;
        font-size: 16px !important;
}

/* Form fields */
.bfk-checkout-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 28px;
}
.bfk-checkout-fields .bfk-form-group {
        display: flex;
        flex-direction: column;
}
.bfk-checkout-fields .bfk-form-group label {
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 6px;
}
.bfk-checkout-fields .bfk-form-group input {
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        padding: 12px 16px;
        font-size: 15px;
        transition: all 0.2s ease;
        outline: none;
}
.bfk-checkout-fields .bfk-form-group input:focus {
        border-color: #087442;
        box-shadow: 0 0 0 3px rgba(8,116,66,0.1);
}
.bfk-checkout-fields .bfk-form-group small {
        font-size: 12px;
        color: #9ca3af;
        margin-top: 4px;
}

/* Submit */
.bfk-checkout-submit {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
}
.bfk-checkout-btn {
        padding: 14px 32px !important;
        font-size: 16px !important;
        border-radius: 12px !important;
}

/* Help */
.bfk-checkout-help {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #f0f9ff;
        border: 1px solid #bae6fd;
        border-radius: 12px;
        padding: 16px 20px;
        color: #0369a1;
        font-size: 14px;
}
.bfk-checkout-help i {
        font-size: 18px;
        flex-shrink: 0;
}
.bfk-checkout-help p {
        margin: 0;
}
.bfk-checkout-help a {
        color: #087442;
        font-weight: 700;
        text-decoration: none;
}
.bfk-checkout-help a:hover {
        text-decoration: underline;
}

/* ============================================
   DASHBOARD — Switch Pending Banner
   ============================================ */
.bfk-dash-switch-banner {
        display: flex;
        align-items: center;
        gap: 20px;
        background: #fffbeb;
        border: 2px solid #fde68a;
        border-radius: 16px;
        padding: 24px 28px;
        margin-bottom: 28px;
}
.bfk-dash-switch-banner-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: rgba(245,158,11,0.15);
        color: #f59e0b;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0;
}
.bfk-dash-switch-banner-body h3 {
        font-size: 18px;
        font-weight: 700;
        color: #92400e;
        margin-bottom: 4px;
}
.bfk-dash-switch-banner-body p {
        font-size: 14px;
        color: #a16207;
        margin: 0;
        line-height: 1.6;
}

/* Checkout responsive */
@media (max-width: 768px) {
        .bfk-checkout-compare {
                flex-direction: column;
        }
        .bfk-checkout-compare-arrow {
                transform: rotate(90deg);
        }
        .bfk-checkout-compare-card {
                max-width: 100%;
                width: 100%;
        }
        .bfk-checkout-fields {
                grid-template-columns: 1fr;
        }
        .bfk-checkout-form-card {
                padding: 24px;
        }
        .bfk-checkout-submit {
                flex-direction: column;
        }
        .bfk-checkout-btn {
                width: 100%;
                text-align: center;
        }
        .bfk-dash-switch-banner {
                flex-direction: column;
                text-align: center;
        }
}

/* ============================================================ */
/* ============ LISTING DETAIL — PREMIUM REDESIGN ============== */
/* ============================================================ */

/* --- Hero --- */
.bfk-ld-hero {
        position: relative;
        padding: 0;
        overflow: hidden;
}
.bfk-ld-hero-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 25%, #f0f9ff 50%, #fefce8 100%);
        z-index: 0;
}
.bfk-ld-hero-bg::before {
        content: '';
        position: absolute;
        top: -60px; right: -60px;
        width: 300px; height: 300px;
        background: radial-gradient(circle, rgba(8,116,66,0.06) 0%, transparent 70%);
        border-radius: 50%;
}
.bfk-ld-hero-bg::after {
        content: '';
        position: absolute;
        bottom: -80px; left: 10%;
        width: 250px; height: 250px;
        background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 70%);
        border-radius: 50%;
}
.bfk-ld-hero > .container {
        position: relative;
        z-index: 1;
        padding-top: 28px;
        padding-bottom: 36px;
}

/* Hero grid: 2-col on desktop */
.bfk-ld-hero-grid {
        display: grid;
        grid-template-columns: 1fr 320px;
        gap: 32px;
        align-items: start;
}

/* Hero brand (logo + info) */
.bfk-ld-hero-brand {
        display: flex;
        gap: 24px;
        align-items: flex-start;
}
.bfk-ld-logo {
        width: 100px;
        height: 100px;
        border-radius: 16px;
        background: #fff;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        flex-shrink: 0;
        border: 3px solid #fff;
        outline: 2px solid var(--primary-soft);
}
.bfk-ld-logo img { width: 100%; height: 100%; object-fit: contain; }

/* Badges */
.bfk-ld-hero-badges {
        display: flex;
        gap: 8px;
        margin-bottom: 8px;
        flex-wrap: wrap;
}
.bfk-ld-badge-verified {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: var(--primary-soft);
        color: var(--primary-color);
        font-size: 12px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 999px;
}
.bfk-ld-badge-county {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #eff6ff;
        color: #2563eb;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 12px;
        border-radius: 999px;
        text-decoration: none;
        transition: background 0.2s;
}
.bfk-ld-badge-county:hover { background: #dbeafe; text-decoration: none; }

/* Title & tagline */
.bfk-ld-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
        font-weight: 800;
        color: var(--text-color);
        letter-spacing: -0.5px;
        margin: 0 0 6px;
        line-height: 1.2;
}
.bfk-ld-tagline {
        font-size: 15px;
        color: var(--primary-color);
        font-weight: 500;
        margin: 0 0 12px;
}

/* Rating row */
.bfk-ld-rating-row {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
}
.bfk-ld-stars { color: var(--secondary-color); font-size: 15px; letter-spacing: 2px; }
.bfk-ld-rating-num { font-size: 16px; font-weight: 800; color: var(--text-color); }
.bfk-ld-rating-count { font-size: 13px; color: var(--text-muted); }

/* Socials */
.bfk-ld-socials {
        display: flex;
        gap: 8px;
        margin-top: 14px;
}
.bfk-ld-socials a {
        width: 36px; height: 36px;
        border-radius: 10px;
        background: #fff;
        color: var(--text-muted);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        transition: all 0.2s;
}
.bfk-ld-socials a:hover {
        background: var(--primary-color);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(8,116,66,0.25);
        text-decoration: none;
}

/* Hero actions card (right column) */
.bfk-ld-hero-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
}
.bfk-ld-action-btn {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 18px;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.05);
        text-decoration: none;
        transition: all 0.25s;
        border: 1px solid transparent;
}
.bfk-ld-action-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); text-decoration: none; }
.bfk-ld-action-btn > i:first-child {
        width: 42px; height: 42px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
}
.bfk-ld-action-value {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-color);
        line-height: 1.3;
}

/* Action variants */
.bfk-ld-action-call > i:first-child { background: linear-gradient(135deg, #087442, #065231); color: #fff; }
.bfk-ld-action-call:hover { border-color: var(--primary-color); }
.bfk-ld-action-web > i:first-child { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff; }
.bfk-ld-action-web:hover { border-color: #2563eb; }


/* --- Body (content + sidebar) --- */
.bfk-ld-body {
        padding: 40px 0 60px;
        background: #f8fafc;
}
.bfk-ld-grid {
        display: grid;
        grid-template-columns: 1fr 340px;
        gap: 28px;
        align-items: start;
}

/* --- Cards (main column) --- */
.bfk-ld-card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
        margin-bottom: 24px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.04);
}
.bfk-ld-card-head {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 22px 28px;
        border-bottom: 1px solid #f1f5f9;
        background: #fff;
}
.bfk-ld-card-icon {
        width: 40px; height: 40px;
        border-radius: 12px;
        background: var(--primary-soft);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        flex-shrink: 0;
}
.bfk-ld-card-icon-amber { background: #fef3c7; color: #d97706; }
.bfk-ld-card-icon-gold { background: #fef9c3; color: #ca8a04; }
.bfk-ld-card-head h2 {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-color);
        margin: 0;
}
.bfk-ld-card-body {
        padding: 24px 28px 28px;
}

/* Prose content */
.bfk-ld-prose { font-size: 15px; line-height: 1.8; color: #374151; }
.bfk-ld-prose p { margin-bottom: 14px; }
.bfk-ld-prose p:last-child { margin-bottom: 0; }
.bfk-ld-prose h2, .bfk-ld-prose h3 { color: var(--primary-dark); margin-top: 20px; font-weight: 700; }

/* Gallery */
.bfk-ld-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #f1f5f9;
}
.bfk-ld-gallery-item {
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 4/3;
        cursor: pointer;
        position: relative;
}
.bfk-ld-gallery-item img {
        width: 100%; height: 100%;
        object-fit: cover;
        transition: transform 0.35s ease;
}
.bfk-ld-gallery-item:hover img { transform: scale(1.08); }
.bfk-ld-gallery-item::after {
        content: '\f065';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(8,116,66,0.4);
        color: #fff;
        font-size: 20px;
        opacity: 0;
        transition: opacity 0.25s;
}
.bfk-ld-gallery-item:hover::after { opacity: 1; }

/* Service / Product chips */
.bfk-ld-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
}
.bfk-ld-chip {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 16px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 500;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        color: var(--text-color);
        transition: all 0.2s;
}
.bfk-ld-chip:hover { border-color: var(--primary-color); background: var(--primary-soft); }
.bfk-ld-chip-service i { color: var(--primary-color); font-size: 14px; }
.bfk-ld-chip-product i { color: var(--secondary-color); font-size: 14px; }

/* Review summary */
.bfk-ld-review-summary {
        display: flex;
        align-items: center;
        gap: 24px;
        padding: 24px;
        background: linear-gradient(135deg, #f0fdf4 0%, #fefce8 100%);
        border-radius: 14px;
        margin-bottom: 24px;
}
.bfk-ld-review-big-score {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 80px;
}
.bfk-ld-review-score-num {
        font-size: 42px;
        font-weight: 800;
        color: var(--primary-color);
        line-height: 1;
}
.bfk-ld-review-score-label {
        font-size: 12px;
        color: var(--text-muted);
        font-weight: 500;
        margin-top: 4px;
}
.bfk-ld-review-right p {
        margin: 6px 0 0;
        font-size: 13px;
        color: var(--text-muted);
}
.bfk-ld-no-reviews {
        text-align: center;
        padding: 20px;
        color: var(--text-muted);
        font-size: 14px;
}

/* Latest reviews list */
.bfk-ld-reviews-list {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        gap: 16px;
}
.bfk-ld-review-item {
        display: flex;
        gap: 14px;
        padding: 16px;
        background: #f8fafc;
        border-radius: 12px;
        border: 1px solid #eef2f7;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.bfk-ld-review-item:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.06);
        transform: translateY(-1px);
}
.bfk-ld-review-avatar {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.5px;
}
.bfk-ld-review-content {
        flex: 1;
        min-width: 0;
}
.bfk-ld-review-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 6px;
}
.bfk-ld-review-name {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-color);
}
.bfk-ld-review-date {
        font-size: 12px;
        color: var(--text-muted);
}
.bfk-ld-review-stars {
        margin-bottom: 8px;
}
.bfk-ld-review-stars .fa-solid.fa-star,
.bfk-ld-review-stars .fa-solid.fa-star-half-stroke,
.bfk-ld-review-stars .fa-regular.fa-star {
        font-size: 13px;
        color: var(--secondary-color);
        margin-right: 1px;
}
.bfk-ld-review-text {
        font-size: 14px;
        line-height: 1.6;
        color: #475569;
        margin: 0;
}

/* Review form */
.bfk-ld-review-form {
        margin-top: 24px;
        padding-top: 24px;
        border-top: 1px solid #f1f5f9;
}
.bfk-ld-review-form-head {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
}
.bfk-ld-review-form-head i {
        width: 38px; height: 38px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: #fff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
}
.bfk-ld-review-form-head h3 {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        color: var(--text-color);
}
.bfk-ld-form-label {
        display: block;
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-muted);
        margin-bottom: 8px;
}
.bfk-ld-rating-input {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 6px;
        margin-bottom: 18px;
}
.bfk-ld-rating-input input { display: none; }
.bfk-ld-rating-input label {
        cursor: pointer;
        font-size: 26px;
        color: #d1d5db;
        transition: color 0.15s, transform 0.15s;
}
.bfk-ld-rating-input label:hover,
.bfk-ld-rating-input label:hover ~ label,
.bfk-ld-rating-input input:checked ~ label {
        color: var(--secondary-color);
}
.bfk-ld-rating-input label:hover { transform: scale(1.15); }
.bfk-ld-review-form textarea {
        width: 100%;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 14px 16px;
        font-size: 14px;
        font-family: inherit;
        resize: vertical;
        min-height: 110px;
        margin-bottom: 16px;
        transition: all 0.2s;
        outline: none;
        background: #f8fafc;
}
.bfk-ld-review-form textarea:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(8,116,66,0.08);
        background: #fff;
}
.bfk-ld-review-form textarea::placeholder { color: #9ca3af; font-style: italic; }
.bfk-ld-submit-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #fff;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border: none;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.25s;
        box-shadow: 0 4px 14px rgba(8,116,66,0.3);
}
.bfk-ld-submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(8,116,66,0.4);
        color: #fff;
}

/* Review lock */
.bfk-ld-review-lock {
        text-align: center;
        padding: 28px 20px;
        background: #f8fafc;
        border-radius: 14px;
}
.bfk-ld-review-lock > i { font-size: 28px; color: #d1d5db; margin-bottom: 12px; }
.bfk-ld-review-lock p { color: var(--text-color); margin-bottom: 16px; font-size: 14px; }
.bfk-ld-review-lock-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Guest review fields */
.bfk-ld-hp { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; pointer-events: none; }
.bfk-ld-guest-fields { margin-bottom: 18px; }
.bfk-ld-guest-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bfk-ld-guest-field input {
        width: 100%;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        padding: 12px 16px;
        font-size: 14px;
        font-family: inherit;
        outline: none;
        background: #f8fafc;
        transition: all 0.2s;
        color: var(--text-color);
}
.bfk-ld-guest-field input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 4px rgba(8,116,66,0.08);
        background: #fff;
}
.bfk-ld-guest-field input::placeholder { color: #9ca3af; }
.bfk-ld-guest-note {
        font-size: 12px;
        color: var(--text-muted);
        margin: 8px 0 0;
        line-height: 1.5;
}

/* --- Sidebar --- */
.bfk-ld-sidebar {
        display: flex;
        flex-direction: column;
        gap: 20px;
}
.bfk-ld-sb-card {
        background: #fff;
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
        border: 1px solid rgba(0,0,0,0.04);
}
.bfk-ld-sb-card h3 {
        font-size: 16px;
        font-weight: 700;
        color: var(--text-color);
        margin: 0 0 18px;
        display: flex;
        align-items: center;
        gap: 10px;
}
.bfk-ld-sb-card h3 i {
        color: var(--primary-color);
        font-size: 16px;
}

/* Contact list */
.bfk-ld-contact-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 4px;
}
.bfk-ld-contact-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 12px;
        border-radius: 10px;
        font-size: 14px;
        transition: background 0.15s;
}
.bfk-ld-contact-list li:hover { background: #f8fafc; }
.bfk-ld-contact-icon {
        width: 34px; height: 34px;
        border-radius: 9px;
        background: var(--primary-soft);
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        flex-shrink: 0;
}
.bfk-ld-contact-text {
        display: flex;
        flex-direction: column;
        min-width: 0;
}
.bfk-ld-contact-label {
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.4px;
        color: var(--text-muted);
        line-height: 1.2;
}
.bfk-ld-contact-text a,
.bfk-ld-contact-text > span:last-child {
        font-size: 14px;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
}
.bfk-ld-contact-text a:hover { color: var(--primary-color); text-decoration: underline; }

/* WhatsApp button */
.bfk-ld-wa-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 12px;
        margin-top: 16px;
        background: #25d366;
        color: #fff;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
        box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}
.bfk-ld-wa-btn:hover { background: #1fb855; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,211,102,0.4); text-decoration: none; color: #fff; }

/* Tag cloud */
.bfk-ld-tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
}
.bfk-ld-tag {
        display: inline-block;
        padding: 6px 14px;
        background: var(--primary-soft);
        color: var(--primary-color);
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s;
}
.bfk-ld-tag:hover { background: var(--primary-color); color: #fff; text-decoration: none; transform: translateY(-1px); }

/* Sidebar CTA */
.bfk-ld-sb-cta {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 60%, #042f1a 100%);
        border-radius: 16px;
        padding: 32px 24px;
        text-align: center;
        color: #fff;
        position: relative;
        overflow: hidden;
}
.bfk-ld-sb-cta::before {
        content: '';
        position: absolute;
        top: -30px; right: -30px;
        width: 120px; height: 120px;
        background: rgba(255,255,255,0.06);
        border-radius: 50%;
}
.bfk-ld-sb-cta::after {
        content: '';
        position: absolute;
        bottom: -20px; left: -20px;
        width: 80px; height: 80px;
        background: rgba(255,255,255,0.04);
        border-radius: 50%;
}
.bfk-ld-sb-cta-icon {
        width: 52px; height: 52px;
        background: rgba(255,255,255,0.15);
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 16px;
        position: relative;
        z-index: 1;
}
.bfk-ld-sb-cta h3 {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        display: block;
}
.bfk-ld-sb-cta p {
        font-size: 14px;
        opacity: 0.9;
        margin: 0 0 20px;
        line-height: 1.6;
        position: relative;
        z-index: 1;
}
.bfk-ld-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        background: #fff;
        color: var(--primary-color);
        border-radius: 12px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.2s;
        box-shadow: 0 4px 14px rgba(0,0,0,0.15);
        position: relative;
        z-index: 1;
}
.bfk-ld-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.2); text-decoration: none; color: var(--primary-dark); }

/* --- Responsive --- */
@media (max-width: 991px) {
        .bfk-ld-hero-grid {
                grid-template-columns: 1fr;
        }
        .bfk-ld-hero-actions {
                flex-direction: row;
                flex-wrap: wrap;
        }
        .bfk-ld-action-btn { flex: 1; min-width: 200px; }
        .bfk-ld-grid {
                grid-template-columns: 1fr;
        }
        .bfk-ld-body { padding: 28px 0 40px; }
}
@media (max-width: 576px) {
        .bfk-ld-hero-brand { flex-direction: column; align-items: center; text-align: center; }
        .bfk-ld-hero-badges { justify-content: center; }
        .bfk-ld-rating-row { justify-content: center; }
        .bfk-ld-socials { justify-content: center; }
        .bfk-ld-hero-actions { flex-direction: column; }
        .bfk-ld-action-btn { min-width: 0; }
        .bfk-ld-card-head { padding: 18px 16px; }
        .bfk-ld-card-body { padding: 18px 16px 22px; }
        .bfk-ld-card { border-radius: 14px; margin-bottom: 20px; }
        .bfk-ld-card-icon { width: 34px; height: 34px; font-size: 14px; }
        .bfk-ld-card-head h2 { font-size: 16px; }
        .bfk-ld-gallery { grid-template-columns: repeat(2, 1fr); }
        .bfk-ld-review-summary { flex-direction: column; text-align: center; }
        .bfk-ld-review-item { padding: 12px; gap: 10px; }
        .bfk-ld-review-avatar { width: 36px; height: 36px; font-size: 13px; }
        .bfk-ld-review-text { font-size: 13px; }
        .bfk-ld-sb-card { padding: 18px 16px; }
        .bfk-ld-review-form textarea { min-height: 90px; }
        /* Ensure cards don't lean right on small screens */
        .bfk-ld-body .container { padding-left: 12px; padding-right: 12px; }
        .bfk-ld-grid { width: 100%; }
        .bfk-ld-main, .bfk-ld-sidebar { width: 100%; min-width: 0; overflow: hidden; }
        .bfk-ld-guest-row { grid-template-columns: 1fr; }
}

/* ============ AdSense Ad Slots ============ */
.bfk-ad-slot {
        max-width: 100%;
        overflow: hidden;
        margin: 32px auto;
        text-align: center;
}
.bfk-ad-slot ins {
        min-height: 90px;
        display: block !important;
}
