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

/* ── CSS Variables ── */
:root {
    --bm-crimson:       #6B1E2E;
    --bm-crimson-deep:  #3A0D1A;
    --bm-crimson-light: #8B2E42;
    --bm-gold:          #C9963A;
    --bm-gold-rich:     #A67C1F;
    --bm-gold-light:    #E4B86A;
    --bm-gold-pale:     #F9EED8;
    --bm-kasavu:        #F5ECD8;
    --bm-parchment:     #FBF7EF;
    --bm-white:         #FFFFFF;
    --bm-green:         #1B4D3E;
    --bm-green-light:   #E8F5F0;
    --bm-text-dark:     #1C1414;
    --bm-text-body:     #3D2B2B;
    --bm-text-muted:    #7A6055;
    --bm-border:        #EAD9C8;
    --bm-shadow:        0 4px 24px rgba(107,30,46,0.10);
    --bm-shadow-lg:     0 12px 48px rgba(107,30,46,0.15);
    --font-display:     'Cormorant Garamond', Georgia, serif;
    --font-body:        'DM Sans', -apple-system, sans-serif;
    --radius-sm:        8px;
    --radius-md:        14px;
    --radius-lg:        20px;
    --radius-xl:        28px;
    --transition:       all 0.25s ease;
    --header-height:    70px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-body);
    background: var(--bm-parchment);
    color: var(--bm-text-body);
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--bm-crimson); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--bm-crimson-light); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bm-kasavu); }
::-webkit-scrollbar-thumb { background: var(--bm-gold); border-radius: 10px; }

/* ════════════════ KASAVU BORDER ════════════════ */
.kasavu-top {
    width: 100%; height: 8px;
    background: linear-gradient(90deg,
        var(--bm-crimson) 0%, var(--bm-gold) 30%,
        var(--bm-gold-light) 50%, var(--bm-gold) 70%,
        var(--bm-crimson) 100%);
}
.kasavu-divider {
    display: flex; align-items: center; gap: 16px; margin: 48px 0;
}
.kasavu-divider::before, .kasavu-divider::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, var(--bm-gold), transparent);
}
.kasavu-divider-icon { color: var(--bm-gold); font-size: 18px; }
.kasavu-line {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--bm-gold), transparent);
    margin-bottom: 12px;
}

/* ════════════════ TYPOGRAPHY ════════════════ */
.display-xl  { font-family: var(--font-display); font-size: clamp(40px, 6vw, 72px); font-weight: 600; line-height: 1.1; color: var(--bm-text-dark); }
.display-lg  { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 600; line-height: 1.15; color: var(--bm-text-dark); }
.display-md  { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 600; line-height: 1.2; color: var(--bm-text-dark); }
.display-sm  { font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 30px); font-weight: 600; line-height: 1.25; color: var(--bm-text-dark); }

.section-label {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--bm-gold); font-weight: 500; margin-bottom: 8px; display: block;
}
.text-gold    { color: var(--bm-gold) !important; }
.text-crimson { color: var(--bm-crimson) !important; }
.text-muted   { color: var(--bm-text-muted) !important; }
.text-white   { color: var(--bm-white) !important; }
.italic       { font-style: italic; }

/* ════════════════ LAYOUT ════════════════ */
.container    { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 80px 0; }
.section-sm   { padding: 48px 0; }
.section-lg   { padding: 120px 0; }
.section-dark    { background: var(--bm-crimson-deep); }
.section-gold    { background: var(--bm-gold-pale); }
.section-kasavu  { background: var(--bm-kasavu); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center  { text-align: center; }

/* ════════════════ HEADER ════════════════ */
.bm-header {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--header-height); z-index: 500; transition: var(--transition);
}
.bm-header.scrolled  { background: var(--bm-white); box-shadow: 0 2px 20px rgba(107,30,46,0.12); }
.bm-header.transparent { background: transparent; }
.bm-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.bm-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.bm-logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--bm-crimson), var(--bm-crimson-light));
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--bm-gold);
}
.bm-logo-text { line-height: 1.1; }
.bm-logo-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--bm-crimson-deep); display: block; }
.bm-logo-tagline { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--bm-gold); font-weight: 300; }

.bm-logo.white .bm-logo-name    { color: var(--bm-white); }
.bm-logo.white .bm-logo-tagline { color: var(--bm-gold-light); }
.bm-logo.white .bm-logo-icon    { background: rgba(255,255,255,0.15); border: 1px solid rgba(201,150,58,0.4); }

.bm-nav { display: flex; align-items: center; gap: 6px; }
.bm-nav-link {
    padding: 8px 14px; font-size: 14px; font-weight: 400;
    color: var(--bm-text-body); border-radius: var(--radius-sm);
    transition: var(--transition); text-decoration: none;
}
.bm-nav-link:hover  { color: var(--bm-crimson); background: var(--bm-gold-pale); }
.bm-nav-link.active { color: var(--bm-crimson); font-weight: 500; }

.bm-header.transparent .bm-nav-link       { color: rgba(255,255,255,0.85); }
.bm-header.transparent .bm-nav-link:hover { color: var(--bm-white); background: rgba(255,255,255,0.1); }

.bm-nav-actions { display: flex; align-items: center; gap: 10px; }

.bm-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.bm-hamburger span { display: block; width: 22px; height: 2px; background: var(--bm-crimson-deep); border-radius: 2px; transition: var(--transition); }
.bm-header.transparent .bm-hamburger span { background: var(--bm-white); }

.bm-mobile-nav {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bm-white); z-index: 600; transition: right 0.3s ease;
    box-shadow: -8px 0 32px rgba(107,30,46,0.15); display: flex; flex-direction: column;
}
.bm-mobile-nav.open { right: 0; }
.bm-mobile-overlay { position: fixed; inset: 0; background: rgba(44,16,24,0.5); z-index: 590; display: none; }
.bm-mobile-overlay.open { display: block; }
.bm-mobile-nav-header { padding: 20px; border-bottom: 1px solid var(--bm-border); display: flex; align-items: center; justify-content: space-between; }
.bm-mobile-nav-close { background: none; border: none; font-size: 20px; cursor: pointer; color: var(--bm-text-muted); }
.bm-mobile-nav-links { padding: 16px 0; flex: 1; overflow-y: auto; }
.bm-mobile-nav-link {
    display: flex; align-items: center; gap: 12px; padding: 13px 20px;
    font-size: 15px; color: var(--bm-text-body); text-decoration: none;
    border-bottom: 1px solid var(--bm-border); transition: background 0.15s;
}
.bm-mobile-nav-link:hover { background: var(--bm-gold-pale); color: var(--bm-crimson); }
.bm-mobile-nav-link i { width: 18px; color: var(--bm-gold); }
.bm-mobile-nav-footer { padding: 20px; border-top: 1px solid var(--bm-border); }

/* ════════════════ BUTTONS ════════════════ */
.btn-bm {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 13px 28px; border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 14px; font-weight: 500;
    cursor: pointer; transition: var(--transition); border: none;
    text-decoration: none; white-space: nowrap; line-height: 1;
}
.btn-bm i { font-size: 14px; }
.btn-bm-sm  { padding: 8px 18px; font-size: 13px; }
.btn-bm-lg  { padding: 16px 36px; font-size: 16px; }

.btn-bm-primary { background: var(--bm-crimson); color: var(--bm-white); box-shadow: 0 4px 16px rgba(107,30,46,0.3); }
.btn-bm-primary:hover { background: var(--bm-crimson-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,30,46,0.35); color: var(--bm-white); }

.btn-bm-gold { background: var(--bm-gold); color: var(--bm-crimson-deep); font-weight: 600; box-shadow: 0 4px 16px rgba(201,150,58,0.3); }
.btn-bm-gold:hover { background: var(--bm-gold-light); transform: translateY(-2px); color: var(--bm-crimson-deep); }

.btn-bm-outline { background: transparent; color: var(--bm-crimson); border: 2px solid var(--bm-crimson); }
.btn-bm-outline:hover { background: var(--bm-crimson); color: var(--bm-white); }

.btn-bm-outline-white { background: transparent; color: var(--bm-white); border: 2px solid rgba(255,255,255,0.5); }
.btn-bm-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--bm-white); color: var(--bm-white); }

.btn-bm-ghost { background: var(--bm-gold-pale); color: var(--bm-crimson); border: 1px solid var(--bm-border); }
.btn-bm-ghost:hover { background: var(--bm-kasavu); color: var(--bm-crimson); }

/* ════════════════ PROFILE CARD (Browse) ════════════════ */
.profile-card-fe {
    background: var(--bm-white); border: 1px solid var(--bm-border);
    border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); position: relative;
}
.profile-card-fe:hover { transform: translateY(-4px); box-shadow: var(--bm-shadow-lg); border-color: rgba(201,150,58,0.4); }
.profile-card-fe::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--bm-crimson), var(--bm-gold)); }

.profile-card-photo { width: 100%; aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--bm-kasavu); }
.profile-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.profile-card-fe:hover .profile-card-photo img { transform: scale(1.04); }
.profile-card-photo-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--bm-gold-pale), var(--bm-kasavu)); }
.profile-card-photo-initials { font-family: var(--font-display); font-size: 48px; font-weight: 600; color: var(--bm-crimson); line-height: 1; }
.profile-card-photo-sub { font-size: 12px; color: var(--bm-text-muted); margin-top: 6px; }

.profile-card-blur-overlay {
    position: absolute; inset: 0; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    background: rgba(58,13,26,0.4); display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
}
.profile-card-blur-overlay i   { font-size: 24px; color: var(--bm-gold); }
.profile-card-blur-overlay span { font-size: 12px; color: var(--bm-white); text-align: center; font-weight: 500; }

.profile-card-badge { position: absolute; top: 10px; right: 10px; background: var(--bm-gold); color: var(--bm-crimson-deep); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 20px; letter-spacing: 0.5px; }
.profile-card-code  { position: absolute; bottom: 10px; left: 10px; background: rgba(58,13,26,0.75); color: rgba(255,255,255,0.9); font-size: 10px; padding: 2px 8px; border-radius: 10px; font-family: monospace; letter-spacing: 0.5px; }

.profile-card-body { padding: 16px; }
.profile-card-name { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--bm-text-dark); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.profile-card-meta { font-size: 13px; color: var(--bm-text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.profile-card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--bm-border); }

.profile-card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 14px; padding: 10px; background: var(--bm-parchment); border-radius: var(--radius-sm); }
.profile-card-detail-label { font-size: 10px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--bm-text-muted); margin-bottom: 1px; }
.profile-card-detail-value { font-size: 12px; font-weight: 500; color: var(--bm-text-dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.profile-card-actions { display: flex; gap: 8px; }
.profile-card-actions .btn-bm { flex: 1; padding: 9px 12px; font-size: 12px; }

/* ════════════════ INTERACTION BUTTONS ════════════════ */
.btn-like {
    display: inline-flex; align-items: center; gap: 5px; padding: 8px 14px;
    border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; cursor: pointer;
    transition: var(--transition); border: 1.5px solid var(--bm-border);
    background: var(--bm-white); color: var(--bm-text-muted); font-family: var(--font-body);
}
.btn-like:hover, .btn-like.liked { border-color: #E74C3C; color: #E74C3C; background: #FEF0F0; }

.btn-follow {
    display: inline-flex; align-items: center; gap: 5px; padding: 8px 14px;
    border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; cursor: pointer;
    transition: var(--transition); border: 1.5px solid var(--bm-border);
    background: var(--bm-white); color: var(--bm-text-muted); font-family: var(--font-body);
}
.btn-follow:hover, .btn-follow.following { border-color: var(--bm-green); color: var(--bm-green); background: var(--bm-green-light); }

.btn-interest {
    display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px;
    background: var(--bm-crimson); color: var(--bm-white); border: none;
    border-radius: var(--radius-sm); font-family: var(--font-body);
    font-size: 13px; font-weight: 500; cursor: pointer; transition: var(--transition);
}
.btn-interest:hover { background: var(--bm-crimson-light); transform: translateY(-1px); }
.btn-interest.sent  { background: var(--bm-green); }

/* ════════════════ FORMS ════════════════ */
.bm-form-group { margin-bottom: 20px; }
.bm-label { display: block; font-size: 13px; font-weight: 500; color: var(--bm-text-dark); margin-bottom: 7px; }
.bm-label .required { color: var(--bm-crimson); margin-left: 3px; }

.bm-input {
    width: 100%; padding: 13px 16px; border: 1.5px solid var(--bm-border);
    border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px;
    color: var(--bm-text-dark); background: var(--bm-white); transition: var(--transition); outline: none;
}
.bm-input:focus    { border-color: var(--bm-crimson); box-shadow: 0 0 0 3px rgba(107,30,46,0.08); }
.bm-input::placeholder { color: var(--bm-text-muted); }

.bm-select {
    width: 100%; padding: 13px 36px 13px 16px; border: 1.5px solid var(--bm-border);
    border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px;
    color: var(--bm-text-dark);
    background: var(--bm-white) 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='%237A6055' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 14px center;
    -webkit-appearance: none; appearance: none; transition: var(--transition); outline: none; cursor: pointer;
}
.bm-select:focus { border-color: var(--bm-crimson); box-shadow: 0 0 0 3px rgba(107,30,46,0.08); }

.bm-textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--bm-border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 14px; color: var(--bm-text-dark); background: var(--bm-white); transition: var(--transition); outline: none; resize: vertical; min-height: 120px; }
.bm-textarea:focus { border-color: var(--bm-crimson); box-shadow: 0 0 0 3px rgba(107,30,46,0.08); }

.bm-input-group { position: relative; }
.bm-input-icon  { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--bm-text-muted); font-size: 15px; pointer-events: none; }
.bm-input-group .bm-input { padding-left: 42px; }
.bm-form-hint  { font-size: 12px; color: var(--bm-text-muted); margin-top: 5px; }
.bm-form-error { font-size: 12px; color: var(--bm-crimson); margin-top: 5px; }

/* ════════════════ CARDS ════════════════ */
.bm-card { background: var(--bm-white); border: 1px solid var(--bm-border); border-radius: var(--radius-md); overflow: hidden; }
.bm-card-body   { padding: 24px; }
.bm-card-header { padding: 18px 24px; border-bottom: 1px solid var(--bm-border); display: flex; align-items: center; justify-content: space-between; }
.bm-card-title  { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--bm-text-dark); }

/* ════════════════ BADGES ════════════════ */
.bm-badge         { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 500; }
.bm-badge-premium { background: var(--bm-gold-pale); color: var(--bm-gold-rich); border: 1px solid rgba(201,150,58,0.3); }
.bm-badge-verified { background: var(--bm-green-light); color: var(--bm-green); border: 1px solid rgba(27,77,62,0.2); }
.bm-badge-new     { background: #EBF5FB; color: #1A5276; }

/* ════════════════ TRUST STATS ════════════════ */
.trust-stat { text-align: center; padding: 24px 16px; }
.trust-stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--bm-text-dark); margin-bottom: 8px; line-height: 1; }
.trust-stat-label  { font-size: 14px; color: var(--bm-text-muted); }

/* ════════════════ STEP CARDS ════════════════ */
.step-card { text-align: center; padding: 32px 24px; background: var(--bm-white); border: 1px solid var(--bm-border); border-radius: var(--radius-md); position: relative; transition: var(--transition); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--bm-shadow); }
.step-number { width: 48px; height: 48px; background: linear-gradient(135deg, var(--bm-crimson), var(--bm-crimson-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--bm-gold-light); margin: 0 auto 16px; }
.step-icon  { font-size: 32px; color: var(--bm-gold); margin-bottom: 16px; }
.step-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--bm-text-dark); margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--bm-text-muted); line-height: 1.7; }
.step-connector { position: absolute; top: 50px; right: -30px; color: var(--bm-gold); font-size: 20px; z-index: 2; }

/* ════════════════ TESTIMONIALS ════════════════ */
.testimonial-card { background: var(--bm-white); border: 1px solid var(--bm-border); border-radius: var(--radius-md); padding: 28px; position: relative; }
.testimonial-card::before { content: '"'; font-family: var(--font-display); font-size: 80px; color: var(--bm-gold-pale); position: absolute; top: 10px; left: 20px; line-height: 1; font-weight: 700; }
.testimonial-text { font-size: 15px; color: var(--bm-text-body); line-height: 1.8; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author   { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar   { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--bm-gold-pale), var(--bm-kasavu)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--bm-crimson); border: 2px solid var(--bm-gold); flex-shrink: 0; }
.testimonial-name     { font-weight: 500; color: var(--bm-text-dark); font-size: 14px; }
.testimonial-location { font-size: 12px; color: var(--bm-text-muted); }
.testimonial-stars    { color: var(--bm-gold); font-size: 12px; margin-top: 2px; }

/* ════════════════ FILTER SIDEBAR ════════════════ */
.filter-sidebar { width: 260px; flex-shrink: 0; }
.filter-sidebar-card { background: var(--bm-white); border: 1px solid var(--bm-border); border-radius: var(--radius-md); overflow: hidden; position: sticky; top: calc(var(--header-height) + 16px); }
.filter-sidebar-header { padding: 16px 18px; background: var(--bm-crimson-deep); display: flex; align-items: center; justify-content: space-between; }
.filter-sidebar-title  { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--bm-white); }
.filter-sidebar-body   { padding: 16px; max-height: calc(100vh - 200px); overflow-y: auto; }
.filter-section        { margin-bottom: 20px; }
.filter-section-title  { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--bm-text-muted); font-weight: 500; margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--bm-border); }
.filter-option         { display: flex; align-items: center; gap: 8px; padding: 6px 0; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--bm-crimson); width: 15px; height: 15px; }
.filter-option label   { font-size: 13px; color: var(--bm-text-body); cursor: pointer; flex: 1; }
.filter-count          { font-size: 11px; color: var(--bm-text-muted); background: var(--bm-parchment); padding: 1px 6px; border-radius: 10px; }
.filter-range          { display: flex; align-items: center; gap: 8px; }
.filter-range input    { flex: 1; padding: 7px 10px; border: 1.5px solid var(--bm-border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 13px; outline: none; color: var(--bm-text-dark); }
.filter-range input:focus { border-color: var(--bm-crimson); }
.filter-range-sep      { font-size: 12px; color: var(--bm-text-muted); }

/* ════════════════ WHATSAPP FLOAT ════════════════ */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 990; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.wa-float-btn {
    width: 56px; height: 56px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--bm-white); box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    cursor: pointer; transition: var(--transition); text-decoration: none; border: none; position: relative;
}
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); color: var(--bm-white); }
.wa-float-pulse { position: absolute; inset: -4px; border-radius: 50%; background: rgba(37,211,102,0.3); animation: wa-pulse 2s infinite; }
@keyframes wa-pulse { 0% { transform: scale(1); opacity: 0.7; } 70% { transform: scale(1.3); opacity: 0; } 100% { transform: scale(1.3); opacity: 0; } }
.wa-float-tooltip { background: var(--bm-crimson-deep); color: var(--bm-white); font-size: 13px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); white-space: nowrap; box-shadow: var(--bm-shadow); opacity: 0; transform: translateX(10px); transition: var(--transition); pointer-events: none; }
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }

/* ════════════════ FOOTER ════════════════ */
.bm-footer { background: var(--bm-crimson-deep); padding: 60px 0 0; }
.bm-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.bm-footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-top: 14px; }
.bm-footer-heading { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--bm-gold-light); margin-bottom: 16px; }
.bm-footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; padding: 4px 0; transition: var(--transition); }
.bm-footer-link:hover { color: var(--bm-gold-light); padding-left: 4px; }
.bm-footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.bm-footer-contact-item i    { color: var(--bm-gold); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
.bm-footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.bm-footer-bottom { border-top: 1px solid rgba(201,150,58,0.15); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
.bm-footer-copy   { font-size: 12px; color: rgba(255,255,255,0.35); }
.bm-footer-legal  { display: flex; gap: 20px; }
.bm-footer-legal a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; transition: var(--transition); }
.bm-footer-legal a:hover { color: var(--bm-gold-light); }

/* ════════════════ PAGINATION ════════════════ */
.bm-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 32px 0; }
.bm-page-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--bm-border); border-radius: var(--radius-sm); font-size: 14px; color: var(--bm-text-body); text-decoration: none; transition: var(--transition); background: var(--bm-white); }
.bm-page-btn:hover  { border-color: var(--bm-crimson); color: var(--bm-crimson); }
.bm-page-btn.active { background: var(--bm-crimson); border-color: var(--bm-crimson); color: var(--bm-white); }

/* ════════════════ DASHBOARD SIDEBAR ════════════════ */
.dashboard-sidebar { width: 240px; flex-shrink: 0; }
.dashboard-sidebar-card { background: var(--bm-white); border: 1px solid var(--bm-border); border-radius: var(--radius-md); overflow: hidden; position: sticky; top: calc(var(--header-height) + 16px); }
.dashboard-user-section { background: linear-gradient(135deg, var(--bm-crimson-deep), var(--bm-crimson)); padding: 24px; text-align: center; }
.dashboard-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--bm-gold-pale); border: 3px solid var(--bm-gold); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--bm-crimson); overflow: hidden; }
.dashboard-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dashboard-user-name  { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--bm-white); margin-bottom: 2px; }
.dashboard-profile-code { font-size: 11px; color: var(--bm-gold-light); font-family: monospace; }
.dashboard-membership-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--bm-gold); color: var(--bm-crimson-deep); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-top: 10px; }
.dashboard-nav-links { padding: 8px 0; }
.dashboard-nav-link { display: flex; align-items: center; gap: 10px; padding: 11px 18px; font-size: 14px; color: var(--bm-text-body); text-decoration: none; transition: background 0.15s; border-left: 2px solid transparent; }
.dashboard-nav-link:hover  { background: var(--bm-gold-pale); color: var(--bm-crimson); }
.dashboard-nav-link.active { background: rgba(107,30,46,0.06); color: var(--bm-crimson); border-left-color: var(--bm-crimson); font-weight: 500; }
.dashboard-nav-link i      { width: 16px; text-align: center; font-size: 14px; color: var(--bm-gold); }
.dashboard-nav-link .nav-badge-fe { margin-left: auto; background: var(--bm-crimson); color: var(--bm-white); font-size: 10px; font-weight: 600; padding: 1px 7px; border-radius: 10px; }

/* ════════════════ ALERTS ════════════════ */
.bm-alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 14px; display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; border: 1px solid; }
.bm-alert i { flex-shrink: 0; margin-top: 1px; }
.bm-alert-success { background: var(--bm-green-light); color: var(--bm-green); border-color: rgba(27,77,62,0.2); }
.bm-alert-gold    { background: var(--bm-gold-pale); color: var(--bm-gold-rich); border-color: rgba(201,150,58,0.3); }
.bm-alert-info    { background: #EBF5FB; color: #1A5276; border-color: rgba(26,82,118,0.2); }
.bm-alert-error   { background: #FEF0F0; color: var(--bm-crimson); border-color: rgba(107,30,46,0.2); }

/* ════════════════ ANIMATIONS ════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.animate-fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ════════════════ RESPONSIVE ════════════════ */
@media (max-width: 1024px) {
    .bm-footer-grid { grid-template-columns: 1fr 1fr; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .bm-nav { display: none; }
    .bm-nav-actions { display: none; }
    .bm-hamburger { display: flex; }
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .grid-2 { grid-template-columns: 1fr; text-align: center; }
    .trust-stat-number { font-size: 36px; }
    .wa-float { bottom: 20px; right: 20px; }
    .wa-float-btn { width: 48px; height: 48px; font-size: 22px; }
    .dashboard-sidebar { display: none; }
}
/* ════════════════ SIDEBAR SIGN-OUT BUTTON ════════════════ */
.sidebar-signout-btn {
    width: 100%; padding: 10px; background: none; cursor: pointer;
    border: 1.5px solid var(--bm-border); border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 13px; color: var(--bm-text-muted);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s;
}
.sidebar-signout-btn:hover { border-color: var(--bm-crimson); color: var(--bm-crimson); }

@media (max-width: 480px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
    .bm-footer-legal { flex-direction: column; gap: 8px; }
    .bm-footer-grid { grid-template-columns: 1fr; }
}
