/* ═══════════════════════════════════════════════
   BeeKeeper ID Portal — Public CSS
   Veerena Honey Bee Theme Design System
   ═══════════════════════════════════════════════ */

/* Google Fonts — Veerena kit fonts */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Source+Sans+Pro:wght@400;500;600;700&family=Great+Vibes&display=swap');

:root {
    /* ── Veerena palette ── */
    --honey:        #FC9100;
    --honey-dark:   #FFA722;
    --honey-deep:   #E07800;
    --honey-light:  #FCC500;
    --honey-pale:   #FFF8E7;
    --amber:        #F8B34B;

    --flower-rose:  #E91E8C;
    --flower-violet:#7C3AED;
    --flower-pink:  #F472B6;
    --flower-peach: #FDBA74;

    --leaf:         #16A34A;
    --leaf-light:   #DCFCE7;

    /* Veerena darks */
    --dark:         #2F2F2F;
    --dark2:        #1a1a1a;
    --dark3:        #3D2B1F;

    /* Veerena backgrounds */
    --bg:           #FFFBF0;
    --bg-warm:      #FFF8E7;
    --white:        #FFFFFF;

    /* Veerena text */
    --text:         #2F2F2F;
    --text-mid:     #54595F;
    --text-muted:   #7A7A7A;

    /* Veerena typography */
    --font-heading: 'Lora', Georgia, serif;
    --font-body:    'Source Sans Pro', sans-serif;
    --font-script:  'Great Vibes', cursive;

    --radius:       14px;
    --shadow:       0 4px 24px rgba(252,145,0,.18);
    --shadow-lg:    0 12px 48px rgba(252,145,0,.28);
}

/* ── Base ── */
.bkp-landing, .bkp-verify-wrap, .bkp-login-wrap, .bkp-dashboard-wrap {
    font-family: var(--font-body);
}
.bkp-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.bkp-text-center { text-align: center; }
.bkp-p0 { padding: 0 !important; }

/* ── Buttons ── */
.bkp-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 30px; border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500; font-size: 1em; cursor: pointer;
    text-decoration: none; border: none; transition: all .25s;
    letter-spacing: .3px;
}
.bkp-btn-honey {
    background: var(--amber);
    color: #fff;
    box-shadow: 0 4px 16px rgba(252,145,0,.35);
}
.bkp-btn-honey:hover {
    background: var(--honey);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(252,145,0,.5);
}
.bkp-btn-outline {
    background: transparent;
    border: 2px solid var(--amber);
    color: var(--amber);
}
.bkp-btn-outline:hover {
    background: var(--amber);
    color: #fff;
    transform: translateY(-2px);
}
.bkp-btn-lg { padding: 16px 36px; font-size: 17px; }
.bkp-btn-full { width: 100%; justify-content: center; }

/* ── Badges ── */
.bkp-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.bkp-badge-success { background: var(--leaf-light); color: #166534; }
.bkp-badge-danger  { background: #fee2e2; color: #991b1b; }
.bkp-badge-warning { background: var(--honey-pale); color: var(--honey-deep); }
.bkp-badge-info    { background: #ede9fe; color: #5b21b6; }

/* ── Alerts ── */
.bkp-alert { padding: 13px 18px; border-radius: 10px; margin-bottom: 16px; font-size: 14px; font-weight: 500; }
.bkp-alert-success { background: var(--leaf-light); color: #166534; border: 1px solid #86efac; }
.bkp-alert-danger  { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.bkp-alert-warning { background: var(--honey-pale); color: var(--honey-deep); border: 1px solid var(--honey-light); }
.bkp-alert-info    { background: #ede9fe; color: #5b21b6; border: 1px solid #c4b5fd; }

/* ════════════════════════════════
   HERO SECTION
   ════════════════════════════════ */
.bkp-hero {
    background: linear-gradient(160deg, #2F2F2F 0%, #1a1a1a 40%, #3D2B00 100%);
    color: #fff;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}
/* Honeycomb pattern overlay */
.bkp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(245,166,35,.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233,30,140,.06) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(124,58,237,.05) 0%, transparent 40%);
    pointer-events: none;
}
.bkp-hero-bg {
    position: absolute; inset: 0; opacity: .06;
    background-image: repeating-linear-gradient(
        60deg, transparent, transparent 28px,
        rgba(245,166,35,.8) 28px, rgba(245,166,35,.8) 29px
    );
}
.bkp-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.bkp-hero-badge {
    display: inline-block;
    background: rgba(245,166,35,.15);
    border: 1px solid rgba(245,166,35,.4);
    color: var(--honey-light);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: .3px;
}
.bkp-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 20px;
    color: #fff !important;
}
.bkp-gradient-text {
    background: linear-gradient(135deg, var(--honey), var(--flower-peach), var(--flower-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.bkp-hero-subtitle {
    font-size: 17px;
    color: #D4B896 !important;
    margin-bottom: 36px;
    line-height: 1.7;
}
.bkp-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.bkp-hero-stats { display: flex; gap: 28px; align-items: center; }
.bkp-hero-stat { text-align: center; }
.bkp-stat-num { display: block; font-size: 32px; font-weight: 900; color: var(--honey) !important; line-height: 1; }
.bkp-stat-lbl { font-size: 12px; color: #D4B896 !important; margin-top: 4px; display: block; }
.bkp-stat-divider { width: 1px; height: 44px; background: rgba(245,166,35,.25); }

/* ID Card Mock */
.bkp-id-card-mock {
    background: linear-gradient(145deg, #2F2F2F, #1a1a1a);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(252,145,0,.2);
    max-width: 320px;
    margin-left: auto;
}
.bkp-card-header-strip {
    background: linear-gradient(135deg, var(--honey), var(--honey-dark));
    color: var(--dark);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: .5px;
}
.bkp-card-body-mock { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.bkp-card-photo-mock {
    width: 72px; height: 72px;
    background: rgba(245,166,35,.1);
    border: 2px solid rgba(245,166,35,.3);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; flex-shrink: 0;
}
.bkp-mock-name { font-size: 16px; font-weight: 800; color: #fff !important; margin-bottom: 5px; }
.bkp-mock-detail { font-size: 12px; color: #D4B896 !important; margin-bottom: 3px; }
.bkp-card-footer-strip {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(245,166,35,.2);
    font-size: 12px; color: #D4B896 !important;
}

/* ════════════════════════════════
   FEATURES SECTION
   ════════════════════════════════ */
.bkp-features {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.bkp-section-header { text-align: center; margin-bottom: 56px; }
.bkp-section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--honey-pale), #fff);
    color: var(--honey-deep);
    border: 1px solid var(--honey-light);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}
.bkp-section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 500;
    color: var(--text);
    margin: 0;
}
.bkp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.bkp-feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(245,166,35,.1);
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.bkp-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--honey), var(--flower-rose), var(--flower-violet));
}
.bkp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(245,166,35,.3);
}
.bkp-feature-icon { font-size: 40px; margin-bottom: 18px; display: block; }
.bkp-feature-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 500; margin: 0 0 10px; color: var(--text); }
.bkp-feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin: 0; }

/* ════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════ */
.bkp-how-it-works {
    padding: 90px 0;
    background: linear-gradient(135deg, #2F2F2F 0%, #1a1a1a 100%);
    color: #fff;
}
.bkp-how-it-works .bkp-section-header h2 { color: #fff !important; }
.bkp-how-it-works .bkp-section-badge {
    background: rgba(245,166,35,.15);
    color: var(--honey-light);
    border-color: rgba(245,166,35,.3);
}
.bkp-steps { display: flex; align-items: flex-start; gap: 12px; flex-wrap: wrap; justify-content: center; }
.bkp-step { text-align: center; max-width: 210px; }
.bkp-step-num {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--honey), var(--honey-dark));
    color: var(--dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 900;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(245,166,35,.4);
}
.bkp-step h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 500; margin: 0 0 8px; color: #fff !important; }
.bkp-step p { font-size: 13px; color: #D4B896 !important; margin: 0; line-height: 1.6; }
.bkp-step-arrow { font-size: 28px; color: var(--honey); margin-top: 16px; opacity: .6; }

/* ════════════════════════════════
   CTA SECTION
   ════════════════════════════════ */
.bkp-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--honey-pale), #fff5d6, var(--bg-warm));
    text-align: center;
    border-top: 3px solid var(--honey-light);
}
.bkp-cta h2 { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 500; color: var(--text); margin: 0 0 14px; }
.bkp-cta p { color: var(--text-muted); font-size: 17px; margin-bottom: 36px; }

/* ════════════════════════════════
   VERIFY PAGE
   ════════════════════════════════ */
.bkp-verify-wrap { max-width: 860px; margin: 48px auto; padding: 0 20px; }
.bkp-verify-search { text-align: center; padding: 60px 20px; }
.bkp-verify-icon { font-size: 72px; margin-bottom: 20px; display: block; }
.bkp-verify-search h1 { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 500; margin: 0 0 12px; color: var(--text); }
.bkp-verify-search p { color: var(--text-muted); margin-bottom: 36px; font-size: 16px; }
.bkp-search-form { max-width: 540px; margin: 0 auto; }
.bkp-search-input-wrap { display: flex; gap: 12px; }
.bkp-search-input {
    flex: 1; padding: 15px 20px;
    border: 2px solid var(--honey-light);
    border-radius: 50px;
    font-size: 15px; outline: none;
    background: var(--white);
    color: var(--text);
    transition: border-color .2s;
}
.bkp-search-input:focus { border-color: var(--honey); box-shadow: 0 0 0 3px rgba(245,166,35,.15); }
.bkp-search-input::placeholder { color: var(--text-muted); }

.bkp-verify-result { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.bkp-verify-status-banner {
    padding: 18px 28px;
    display: flex; align-items: center; gap: 14px;
    font-size: 16px; font-weight: 800;
    letter-spacing: .3px;
}
.bkp-verify-success .bkp-verify-status-banner { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; }
.bkp-verify-invalid .bkp-verify-status-banner { background: linear-gradient(135deg, #dc2626, #b91c1c); color: #fff; }
.bkp-verify-failed { background: var(--white); padding: 60px; text-align: center; border-radius: var(--radius); box-shadow: var(--shadow); }
.bkp-verify-failed .bkp-verify-status-icon { font-size: 72px; display: block; margin-bottom: 20px; }
.bkp-verify-failed h2 { color: var(--text); margin-bottom: 12px; }
.bkp-verify-failed p { color: var(--text-muted); margin-bottom: 24px; }

.bkp-profile-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px; padding: 36px;
    background: var(--white);
    align-items: start;
}
.bkp-profile-photo img {
    width: 130px; height: 130px;
    object-fit: cover; border-radius: 14px;
    border: 3px solid var(--honey);
    box-shadow: 0 4px 16px rgba(245,166,35,.3);
}
.bkp-photo-placeholder {
    width: 130px; height: 130px;
    background: var(--honey-pale);
    border-radius: 14px;
    border: 2px solid var(--honey-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
}
.bkp-profile-name { font-size: 1.6rem; font-weight: 900; margin: 0 0 6px; color: var(--text); }
.bkp-profile-sub { color: var(--text-muted); margin: 0 0 20px; font-size: 15px; }
.bkp-profile-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bkp-detail-row { display: flex; flex-direction: column; }
.bkp-detail-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 2px; }
.bkp-detail-value { font-size: 14px; font-weight: 700; color: var(--text); }
.bkp-profile-qr { text-align: center; }
.bkp-profile-qr img { max-width: 130px; border-radius: 10px; border: 2px solid var(--honey-light); }
.bkp-profile-qr p { font-size: 12px; color: var(--text-muted); margin: 6px 0 0; }
.bkp-verify-footer {
    padding: 20px 36px;
    background: var(--bg-warm);
    display: flex; justify-content: space-between; align-items: center;
    border-top: 1px solid var(--honey-light);
}
.bkp-verify-footer p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* ════════════════════════════════
   LOGIN PAGE
   ════════════════════════════════ */
.bkp-login-wrap { max-width: 460px; margin: 60px auto; padding: 0 20px; }
.bkp-login-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(245,166,35,.2);
}
.bkp-login-header {
    background: linear-gradient(160deg, #2F2F2F 0%, #1a1a1a 100%);
    color: #fff;
    padding: 44px 36px;
    text-align: center;
    border-bottom: 3px solid var(--honey);
}
.bkp-login-icon { font-size: 56px; margin-bottom: 14px; display: block; }
.bkp-login-header h2 { font-family: var(--font-heading); margin: 0 0 8px; font-size: 1.8rem; font-weight: 500; color: #fff; }
.bkp-login-header p { color: #9C7B6B; font-size: 14px; margin: 0; }
.bkp-input {
    width: 100%; padding: 14px 18px;
    border: 2px solid var(--honey-light);
    border-radius: 12px;
    font-size: 15px; box-sizing: border-box;
    outline: none; transition: all .2s;
    background: var(--bg);
    color: var(--text);
}
.bkp-input:focus { border-color: var(--honey); box-shadow: 0 0 0 3px rgba(245,166,35,.15); background: var(--white); }
.bkp-input::placeholder { color: var(--text-muted); }
.bkp-otp-input { font-size: 28px; letter-spacing: 10px; text-align: center; font-family: monospace; }
.bkp-otp-hint { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; }
.bkp-form-group { margin-bottom: 18px; }
.bkp-form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--text-mid); }
.bkp-hint { font-size: 12px; color: var(--text-muted); margin: 5px 0 0; }

/* ════════════════════════════════
   DASHBOARD
   ════════════════════════════════ */
.bkp-dashboard-wrap { max-width: 1100px; margin: 48px auto; padding: 0 20px; }
.bkp-dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.bkp-dashboard-welcome h1 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 500; margin: 0 0 4px; color: var(--text); }
.bkp-dashboard-welcome p { color: var(--text-muted); margin: 0; }
.bkp-status-banner { padding: 16px 22px; border-radius: 12px; margin-bottom: 28px; font-size: 15px; font-weight: 600; }
.bkp-status-active { background: var(--leaf-light); color: #166534; border: 1px solid #86efac; }
.bkp-status-inactive { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.bkp-dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.bkp-dash-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(245,166,35,.12);
}
.bkp-dash-card-wide { grid-column: 1 / -1; }
.bkp-dash-card-header {
    padding: 18px 22px;
    border-bottom: 2px solid var(--honey-pale);
    background: linear-gradient(135deg, var(--honey-pale), var(--white));
}
.bkp-dash-card-header h3 { margin: 0; font-size: 16px; font-weight: 800; color: var(--text); }
.bkp-dash-card-body { padding: 22px; }
.bkp-profile-mini { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.bkp-profile-mini-photo { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; border: 2px solid var(--honey-light); }
.bkp-photo-placeholder-sm {
    width: 64px; height: 64px;
    background: var(--honey-pale);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
}
.bkp-profile-table { width: 100%; font-size: 13px; }
.bkp-profile-table td { padding: 5px 0; color: var(--text); }
.bkp-profile-table td:first-child { color: var(--text-muted); width: 100px; font-weight: 600; }
.bkp-photo-req-item { display: flex; gap: 10px; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--honey-pale); }
.bkp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.bkp-table th { padding: 12px 14px; background: var(--honey-pale); text-align: left; font-weight: 700; color: var(--text-mid); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.bkp-table td { padding: 12px 14px; border-bottom: 1px solid var(--honey-pale); color: var(--text); }
.bkp-table tr:hover td { background: var(--bg-warm); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .bkp-hero-inner { grid-template-columns: 1fr; }
    .bkp-hero-card-preview { display: none; }
    .bkp-profile-card { grid-template-columns: 1fr; }
    .bkp-profile-qr { display: none; }
    .bkp-verify-footer { flex-direction: column; gap: 12px; text-align: center; }
    .bkp-search-input-wrap { flex-direction: column; }
    .bkp-steps { flex-direction: column; align-items: center; }
    .bkp-step-arrow { transform: rotate(90deg); }
    .bkp-hero-stats { flex-wrap: wrap; gap: 16px; }
    .bkp-dashboard-header { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ════════════════════════════════
   SULAI HONEY SECTION
   ════════════════════════════════ */
.bkp-sulai-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--bg-warm) 0%, var(--white) 100%);
}
.bkp-sulai-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.bkp-gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    border: 1px solid rgba(245,166,35,.15);
    transition: transform .25s, box-shadow .25s;
}
.bkp-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.bkp-gallery-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.bkp-gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}
.bkp-gallery-item:hover .bkp-gallery-img-wrap img {
    transform: scale(1.06);
}
.bkp-gallery-caption {
    padding: 16px;
}
.bkp-gallery-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--honey-pale), #fff);
    color: var(--honey-deep);
    border: 1px solid var(--honey-light);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}
.bkp-gallery-caption p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}
.bkp-gi-banner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #2F2F2F, #1a1a1a);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid rgba(252,145,0,.3);
    box-shadow: var(--shadow-lg);
}
.bkp-gi-icon {
    font-size: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 12px rgba(245,166,35,.5));
}
.bkp-gi-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--honey);
    margin: 0 0 10px;
}
.bkp-gi-content p {
    color: #D4B896 !important;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}
.bkp-gi-content strong { color: var(--honey-light); }

/* ════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════ */
.bkp-about-section {
    padding: 90px 0;
    background: var(--white);
}
.bkp-about-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}
.bkp-about-content .bkp-section-badge { margin-bottom: 12px; display: inline-block; }
.bkp-about-content h2 { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 500; color: var(--text); margin: 0 0 16px; }
.bkp-about-content p { color: var(--text-mid); font-size: 15px; line-height: 1.8; }
.bkp-about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.bkp-highlight-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--honey-pale);
    border: 1px solid var(--honey-light);
    border-radius: 10px;
    padding: 14px;
}
.bkp-highlight-icon { font-size: 24px; flex-shrink: 0; }
.bkp-highlight-item strong { font-size: 13px; font-weight: 800; color: var(--text); display: block; margin-bottom: 4px; }
.bkp-highlight-item p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.5; }
.bkp-about-image { position: relative; }
.bkp-about-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--honey-light);
    display: block;
}
.bkp-about-img-caption {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
    font-style: italic;
}

/* ════════════════════════════════
   KEY PERSONNEL
   ════════════════════════════════ */
.bkp-personnel-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #2F2F2F 0%, #1a1a1a 100%);
}
.bkp-personnel-section .bkp-section-header h2 { color: #fff !important; }
.bkp-personnel-section .bkp-section-badge {
    background: rgba(245,166,35,.15);
    color: var(--honey-light);
    border: 1px solid rgba(245,166,35,.3);
}
.bkp-personnel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
.bkp-personnel-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(245,166,35,.2);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: all .25s;
}
.bkp-personnel-card:hover {
    background: rgba(245,166,35,.1);
    border-color: rgba(245,166,35,.5);
    transform: translateY(-4px);
}
.bkp-personnel-featured {
    background: rgba(245,166,35,.12);
    border-color: var(--honey);
    box-shadow: 0 0 0 1px rgba(245,166,35,.3), var(--shadow-lg);
}
.bkp-personnel-avatar {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,.3));
}
.bkp-personnel-info h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 500;
    color: #fff !important;
    margin: 0 0 6px;
}
.bkp-personnel-role {
    display: inline-block;
    background: linear-gradient(135deg, var(--honey), var(--honey-dark));
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}
.bkp-personnel-info p {
    font-size: 13px;
    color: #D4B896 !important;
    margin: 0;
}
.bkp-contact-bar {
    background: rgba(245,166,35,.1);
    border: 1px solid rgba(245,166,35,.3);
    border-radius: 10px;
    padding: 16px 24px;
    text-align: center;
    color: #D4B896;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.bkp-contact-bar strong { color: var(--honey); font-size: 16px; }

/* ════════════════════════════════
   RESPONSIVE
   ════════════════════════════════ */
@media (max-width: 1024px) {
    .bkp-sulai-gallery { grid-template-columns: repeat(2, 1fr); }
    .bkp-about-grid { grid-template-columns: 1fr; }
    .bkp-about-image { display: none; }
}
@media (max-width: 768px) {
    .bkp-sulai-gallery { grid-template-columns: 1fr 1fr; }
    .bkp-personnel-grid { grid-template-columns: 1fr; }
    .bkp-about-highlights { grid-template-columns: 1fr; }
    .bkp-gi-banner { flex-direction: column; }
}
@media (max-width: 480px) {
    .bkp-sulai-gallery { grid-template-columns: 1fr; }
}
