:root {
    --bk-accent: #1E3A8A;
    --bk-text: #111827;
    --bk-muted: #6b7280;
    --bk-border: #e5e7eb;
    --bk-bg: #ffffff;
    --bk-radius: 14px;
    --bk-font: 'Inter', sans-serif;
}

/* BASE */
body {
    font-family: var(--bk-font);
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .2px;
    color: var(--bk-text);
    background: var(--bk-bg);
}

.section {
    padding: 80px 0;
}

.title {
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -.3px;
}

.subtitle {
    color: var(--bk-muted);
    font-weight: 500;
    max-width: 720px;
}

/* KICKER */
.bk-kicker {
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--bk-accent);
}

/* BUTTON */
.btn-primary {
    background: var(--bk-accent);
    border: none;
}

.btn-primary:hover {
    background: #162d63;
}

/* =========================
   SIMPLE PROFESSIONAL HERO
========================= */
.bk-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: url('/assets/image/banner/banner.jpg') center/cover no-repeat;
    color: #fff;
}

.bk-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.bk-hero .container {
    position: relative;
    z-index: 2;
}

.bk-hero-title {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
}

.bk-hero-desc {
    max-width: 620px;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
}

/* =========================
   SIMPLE ABOUT
========================= */
.bk-about-img {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--bk-border);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.bk-about-img img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.bk-about-lines p {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--bk-muted);
}

/* =========================
   SIMPLE SERVICE CARDS
========================= */
/* SERVICES CARD WITH IMAGE */
.bk-svc-card-img {
    border: 1px solid var(--bk-border);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
    transition: transform .2s ease, box-shadow .2s ease;
}

body.dark-theme .bk-svc-card-img {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-svc-card-img:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.bk-svc-media {
    height: 190px;
    overflow: hidden;
}

.bk-svc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.bk-svc-card-img:hover .bk-svc-media img {
    transform: scale(1.06);
}

.bk-svc-body {
    padding: 18px 18px 20px;
}

/* =========================
   WHY CHOOSE US (V2)
========================= */
.bk-why-v2 {
    position: relative;
}

/* subtle background to make section pop */
.bk-why-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30, 58, 138, .04), rgba(30, 58, 138, 0));
    pointer-events: none;
}

.bk-why-v2 .container {
    position: relative;
    z-index: 1;
}

.bk-why-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bk-chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .85);
    font-weight: 800;
    color: var(--bk-text);
    font-size: 13px;
}

body.dark-theme .bk-chip {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

/* Right panel */
.bk-why-panel {
    border: 1px solid var(--bk-border);
    border-radius: 20px;
    padding: 22px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

body.dark-theme .bk-why-panel {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-why-badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(30, 58, 138, .10);
    border: 1px solid rgba(30, 58, 138, .18);
    color: var(--bk-accent);
    font-weight: 900;
    white-space: nowrap;
}

body.dark-theme .bk-why-badge {
    border-color: rgba(255, 255, 255, .12);
}

.bk-why-box {
    border: 1px solid var(--bk-border);
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 255, 255, .85);
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}

body.dark-theme .bk-why-box {
    background: rgba(15, 23, 42, .65);
    border-color: rgba(255, 255, 255, .10);
}

.bk-why-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .10);
}

.bk-why-ico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(30, 58, 138, .12);
    color: var(--bk-accent);
    border: 1px solid rgba(30, 58, 138, .16);
    margin-bottom: 10px;
    font-size: 18px;
}

/* =========================
   TEAM
========================= */
.bk-team-card {
    border: 1px solid var(--bk-border);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}

body.dark-theme .bk-team-card {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.bk-team-media {
    height: 220px;
    overflow: hidden;
}

.bk-team-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.bk-team-card:hover .bk-team-media img {
    transform: scale(1.06);
}

.bk-team-body {
    padding: 16px 16px 18px;
}

.bk-team-role {
    font-weight: 800;
    font-size: 13px;
    color: var(--bk-accent);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.bk-team-social {
    display: flex;
    gap: 10px;
}

.bk-team-social a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--bk-border);
    display: grid;
    place-items: center;
    color: var(--bk-text);
    background: rgba(30, 58, 138, .06);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    text-decoration: none;
}

body.dark-theme .bk-team-social a {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .92);
}

.bk-team-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(30, 58, 138, .30);
    background: rgba(30, 58, 138, .12);
    color: var(--bk-accent);
}

/* CTA strip */
.bk-team-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--bk-border);
    background: rgba(30, 58, 138, .06);
}

body.dark-theme .bk-team-cta {
    background: rgba(30, 58, 138, .14);
    border-color: rgba(255, 255, 255, .10);
}

/* ===== Wrapper for outside arrows ===== */
.bk-testi-wrap {
    position: relative;
    padding: 0 64px;
    /* space for outside arrows */
}

/* Hide default bootstrap arrow icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none !important;
}

/* Outside controls */
.bk-testi-control {
    width: auto;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev.bk-testi-control {
    left: -58px;
}

.carousel-control-next.bk-testi-control {
    right: -58px;
}

.bk-testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .95);
    border: 1px solid var(--bk-border);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .10);
    color: var(--bk-accent);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

body.dark-theme .bk-testi-btn {
    background: rgba(15, 23, 42, .85);
    border-color: rgba(255, 255, 255, .10);
    color: #e5e7eb;
}

.bk-testi-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(30, 58, 138, .30);
    background: rgba(30, 58, 138, .06);
}

/* ===== Pair container (2 cards) ===== */
.bk-testi-pair {
    display: flex;
    gap: 18px;
}

/* Card */
.bk-testi-card {
    flex: 1 1 50%;
    border: 1px solid var(--bk-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    padding: 18px 20px;
    min-height: 190px;
}

body.dark-theme .bk-testi-card {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-testi-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.bk-testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--bk-border);
    flex: 0 0 auto;
}

body.dark-theme .bk-testi-avatar {
    border-color: rgba(255, 255, 255, .10);
}

.bk-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bk-testi-name {
    font-weight: 900;
    color: var(--bk-text);
}

body.dark-theme .bk-testi-name {
    color: #e5e7eb;
}

.bk-testi-quote {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 650;
    color: var(--bk-text);
    position: relative;
}

body.dark-theme .bk-testi-quote {
    color: #e5e7eb;
}

.bk-testi-quote::before {
    content: "“";
    position: absolute;
    left: -8px;
    top: -20px;
    font-size: 48px;
    color: rgba(30, 58, 138, .18);
}

body.dark-theme .bk-testi-quote::before {
    color: rgba(255, 255, 255, .10);
}

/* ====== ABOUT PAGE */
/* HERO PAGE */
/* ABOUT PAGE ONLY */
/* =========================
   ABOUT PAGE (ATTRACTIVE)
========================= */

/* HERO WITH BG IMAGE */
.bk-about-hero2 {
    position: relative;
    padding: 90px 0 70px;
    background: url("/assets/image/card-img/about.jpg") center/cover no-repeat;
    overflow: hidden;
}

.bk-about-hero2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .80), rgba(0, 0, 0, .35));
}

.bk-about-hero2 .container {
    position: relative;
    z-index: 2;
}

.bk-about-hero2-title {
    font-size: clamp(34px, 4.8vw, 56px);
    font-weight: 900;
    letter-spacing: -0.7px;
    line-height: 1.05;
    margin-bottom: 12px;
}

.bk-about-hero2-desc {
    max-width: 720px;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
    line-height: 1.75;
}

.bk-about-hero2-trust {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.bk-about-hero2-trust .trust-item {
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 12px 14px;
    min-width: 160px;
}

.bk-about-hero2-trust .num {
    font-weight: 900;
    font-size: 22px;
    color: #fff;
    line-height: 1;
}

.bk-about-hero2-trust .txt {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .78);
    margin-top: 6px;
}

/* Right floating card */
.bk-about-hero2-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--bk-border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
}

body.dark-theme .bk-about-hero2-card {
    background: rgba(15, 23, 42, .85);
    border-color: rgba(255, 255, 255, .10);
}

.bk-about-hero2-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(30, 58, 138, .12);
    border: 1px solid rgba(30, 58, 138, .18);
    color: var(--bk-accent);
    font-size: 18px;
}

.bk-about-hero2-card hr {
    border-color: rgba(148, 163, 184, .35);
}

/* STORY MEDIA */
.bk-about-story {
    padding-top: 80px;
}

.bk-about-media2 {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--bk-border);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .10);
    background: #fff;
}

body.dark-theme .bk-about-media2 {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-about-media2 img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.bk-about-chip {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(229, 231, 235, .9);
    font-weight: 800;
    color: var(--bk-text);
}

body.dark-theme .bk-about-chip {
    background: rgba(15, 23, 42, .80);
    border-color: rgba(255, 255, 255, .10);
    color: #e5e7eb;
}

.bk-about-chip i {
    color: #22c55e;
}

.bk-about-paragraph {
    color: var(--bk-muted);
    font-weight: 500;
    line-height: 1.75;
}

body.dark-theme .bk-about-paragraph {
    color: rgba(226, 232, 240, .85);
}

/* points */
.bk-about-points2 .point {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .92);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--bk-text);
}

.bk-about-points2 .point i {
    color: #22c55e;
    font-size: 18px;
}

body.dark-theme .bk-about-points2 .point {
    background: rgba(15, 23, 42, .72);
    border-color: rgba(255, 255, 255, .10);
    color: #e5e7eb;
}

/* VALUES */
.bk-about-values {
    background: rgba(30, 58, 138, .04);
}

body.dark-theme .bk-about-values {
    background: rgba(30, 58, 138, .10);
}

.bk-value-card {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
}

body.dark-theme .bk-value-card {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-value-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    background: rgba(30, 58, 138, .12);
    border: 1px solid rgba(30, 58, 138, .18);
    color: var(--bk-accent);
    font-size: 18px;
}

.bk-about-photo {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--bk-border);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .10);
    background: #fff;
}

body.dark-theme .bk-about-photo {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-about-photo img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* CTA */
.bk-about-cta2 {
    padding: 64px 0;
    background: var(--bk-accent);
    color: #fff;
}

.bk-about-cta2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
}


/* =========================
   SERVICES PAGE
========================= */

/* HERO */
.bk-svc-hero {
    position: relative;
    padding: 90px 0 70px;
    background: url("/assets/image/banner/service-banner.jpg") center/cover no-repeat;
    overflow: hidden;
}

.bk-svc-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .35));
}

.bk-svc-hero .container {
    position: relative;
    z-index: 2;
}

.bk-svc-hero-title {
    font-size: clamp(34px, 4.6vw, 54px);
    font-weight: 900;
    letter-spacing: -0.7px;
    line-height: 1.06;
    margin-bottom: 12px;
}

.bk-svc-hero-desc {
    max-width: 760px;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
    line-height: 1.75;
}

.bk-svc-hero-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--bk-border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
}

body.dark-theme .bk-svc-hero-card {
    background: rgba(15, 23, 42, .85);
    border-color: rgba(255, 255, 255, .10);
}

.bk-svc-hero-card .icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(30, 58, 138, .12);
    border: 1px solid rgba(30, 58, 138, .18);
    color: var(--bk-accent);
    font-size: 18px;
}

.bk-svc-hero-card hr {
    border-color: rgba(148, 163, 184, .35);
}

/* SERVICES GRID */
.bk-services {
    background: rgba(30, 58, 138, .04);
}

body.dark-theme .bk-services {
    background: rgba(30, 58, 138, .10);
}

.bk-svc-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

body.dark-theme .bk-svc-card {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, .10);
    border-color: rgba(30, 58, 138, .35);
}

.bk-svc-media {
    height: 190px;
    overflow: hidden;
}

.bk-svc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.bk-svc-card:hover .bk-svc-media img {
    transform: scale(1.06);
}

.bk-svc-body {
    padding: 18px 18px 20px;
}

.bk-svc-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    margin-bottom: 12px;
    background: rgba(30, 58, 138, .12);
    border: 1px solid rgba(30, 58, 138, .18);
    color: var(--bk-accent);
    font-size: 18px;
}

.bk-readmore {
    font-weight: 900;
    text-decoration: none;
    color: var(--bk-accent);
}

.bk-readmore:hover {
    text-decoration: underline;
}

/* CTA STRIP */
.bk-svc-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid var(--bk-border);
    background: rgba(30, 58, 138, .10);
}

body.dark-theme .bk-svc-cta {
    background: rgba(30, 58, 138, .16);
    border-color: rgba(255, 255, 255, .10);
}

/* =========================
   SERVICE DETAILS PAGE
========================= */

.bk-sd-hero {
    position: relative;
    padding: 90px 0 70px;
    background: url("/assets/image/banner/service-details.jpg") center/cover no-repeat;
    overflow: hidden;
}

.bk-sd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .84), rgba(0, 0, 0, .35));
}

.bk-sd-hero .container {
    position: relative;
    z-index: 2;
}

.bk-sd-title {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 900;
    letter-spacing: -0.7px;
    line-height: 1.06;
    margin-bottom: 10px;
}

.bk-sd-desc {
    max-width: 760px;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
    line-height: 1.75;
}

.bk-sd-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.bk-sd-meta .item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .88);
    font-weight: 700;
}

.bk-sd-meta .item i {
    color: #22c55e;
}

/* Hero card */
.bk-sd-hero-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--bk-border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
}

body.dark-theme .bk-sd-hero-card {
    background: rgba(15, 23, 42, .85);
    border-color: rgba(255, 255, 255, .10);
}

.bk-sd-hero-card .bk-muted {
    color: var(--bk-muted);
}

body.dark-theme .bk-sd-hero-card .bk-muted {
    color: rgba(226, 232, 240, .85);
}

.bk-sd-mini .mini {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--bk-text);
    margin-bottom: 8px;
}

.bk-sd-mini .mini i {
    color: #22c55e;
}

body.dark-theme .bk-sd-mini .mini {
    color: #e5e7eb;
}

/* Panels */
.bk-sd-panel {
    border-radius: 22px;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    overflow: hidden;
}

body.dark-theme .bk-sd-panel {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-sd-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* list */
.bk-sd-list {
    margin: 0;
    padding-left: 18px;
    color: var(--bk-muted);
    font-weight: 600;
}

body.dark-theme .bk-sd-list {
    color: rgba(226, 232, 240, .85);
}

.bk-sd-list li {
    margin-bottom: 10px;
}

.bk-sd-list li:last-child {
    margin-bottom: 0;
}

/* steps */
.bk-sd-steps .step {
    display: flex;
    gap: 14px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .92);
    margin-bottom: 12px;
}

body.dark-theme .bk-sd-steps .step {
    background: rgba(15, 23, 42, .65);
    border-color: rgba(255, 255, 255, .10);
}

.bk-sd-steps .n {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 900;
    background: rgba(30, 58, 138, .12);
    border: 1px solid rgba(30, 58, 138, .18);
    color: var(--bk-accent);
}

/* sidebar */
.bk-sd-side {
    position: sticky;
    top: 92px;
    border-radius: 22px;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    padding: 18px;
}

body.dark-theme .bk-sd-side {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-sd-side-title {
    font-weight: 900;
    margin-bottom: 10px;
}

.bk-sd-side-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    color: var(--bk-text);
    border: 1px solid transparent;
    margin-bottom: 8px;
    background: rgba(30, 58, 138, .04);
}

body.dark-theme .bk-sd-side-link {
    color: #e5e7eb;
    background: rgba(30, 58, 138, .10);
}

.bk-sd-side-link:hover {
    border-color: rgba(30, 58, 138, .25);
}

.bk-sd-side-link.active {
    background: rgba(30, 58, 138, .14);
    border-color: rgba(30, 58, 138, .30);
}

/* accordion */
.accordion-item {
    border: 1px solid var(--bk-border);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, .95);
    margin-bottom: 12px;
}

body.dark-theme .accordion-item {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.accordion-button {
    background: transparent;
}

body.dark-theme .accordion-button {
    color: #e5e7eb;
}

body.dark-theme .accordion-body {
    color: rgba(226, 232, 240, .85);
}

/* CTA */
.bk-sd-cta {
    padding: 64px 0;
    background: var(--bk-accent);
    color: #fff;
}

.bk-sd-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
}

/* =========================
   PRICING PAGE (DARK GLASS)
========================= */

.bk-price-hero {
    position: relative;
    padding: 90px 0 70px;
    background: url("/assets/image/pricing/pricing-hero.jpg") center/cover no-repeat;
    overflow: hidden;
}

.bk-price-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 420px at 20% 20%, rgba(30, 58, 138, .38), transparent 60%),
        radial-gradient(900px 420px at 80% 70%, rgba(34, 197, 94, .16), transparent 60%),
        linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .55));
}

.bk-price-hero .container {
    position: relative;
    z-index: 2;
}

.bk-price-title {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.06;
    margin-bottom: 10px;
}

.bk-price-sub {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .86);
    font-weight: 500;
    line-height: 1.75;
}

/* section bg */
.bk-price-section {
    position: relative;
    background:
        radial-gradient(900px 520px at 15% 10%, rgba(30, 58, 138, .08), transparent 60%),
        radial-gradient(900px 520px at 90% 90%, rgba(34, 197, 94, .06), transparent 60%);
}

body.dark-theme .bk-price-section {
    background:
        radial-gradient(900px 520px at 15% 10%, rgba(30, 58, 138, .18), transparent 60%),
        radial-gradient(900px 520px at 90% 90%, rgba(34, 197, 94, .10), transparent 60%);
}

/* =========================
   PLAN CARDS
========================= */

.bk-plan {
    position: relative;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid rgba(148, 163, 184, .35);
    background: rgba(17, 24, 39, .85);
    /* dark glass */
    color: #e5e7eb;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .22);
    backdrop-filter: blur(14px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.bk-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 75px rgba(0, 0, 0, .28);
    border-color: rgba(30, 58, 138, .55);
}

.bk-plan-top {
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    margin-bottom: 14px;
}

.bk-plan-name {
    font-weight: 900;
    letter-spacing: .2px;
    color: rgba(226, 232, 240, .90);
    margin-bottom: 8px;
}

.bk-plan-price {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -0.6px;
    line-height: 1;
    margin-bottom: 8px;
    color: #fff;
}

.bk-plan-price span {
    font-size: 15px;
    font-weight: 800;
    opacity: .75;
}

.bk-plan-note {
    color: rgba(226, 232, 240, .78);
    font-weight: 600;
}

/* list */
.bk-plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.bk-plan-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(148, 163, 184, .18);
    font-weight: 700;
    color: rgba(226, 232, 240, .88);
}

.bk-plan-list li:last-child {
    border-bottom: none;
}

.bk-plan-list i {
    margin-top: 2px;
    color: #22c55e;
}

/* button */
.bk-plan-btn {
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 900;
    border: 1px solid rgba(148, 163, 184, .22);
    background: rgba(30, 58, 138, .18);
    color: #fff;
}

.bk-plan-btn:hover {
    background: rgba(30, 58, 138, .28);
    color: #fff;
}

/* featured */
.bk-plan-featured {
    border-color: rgba(30, 58, 138, .70);
    box-shadow: 0 30px 80px rgba(30, 58, 138, .22);
}

.bk-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    color: #0b1220;
    background: #22c55e;
}

/* =========================
   CTA STRIP
========================= */
.bk-price-cta {
    margin-top: 18px;
    border-radius: 22px;
    padding: 18px 18px;
    background:
        radial-gradient(900px 280px at 20% 50%, rgba(30, 58, 138, .55), transparent 60%),
        linear-gradient(90deg, rgba(34, 197, 94, .24), rgba(30, 58, 138, .22));
    border: 1px solid rgba(148, 163, 184, .25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.bk-price-cta .bk-muted {
    color: rgba(226, 232, 240, .85) !important;
    font-weight: 600;
}

.bk-cta-btn {
    background: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
    color: var(--bk-accent);
}

.bk-cta-btn:hover {
    background: rgba(255, 255, 255, .92);
    color: var(--bk-accent);
}

/* =========================
   CONTACT PAGE
========================= */

.bk-contact-hero {
    position: relative;
    padding: 90px 0 70px;
    background: url("/assets/image/banner/service-details.jpg") center/cover no-repeat;
    overflow: hidden;
}

.bk-contact-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 420px at 18% 25%, rgba(30, 58, 138, .40), transparent 60%),
        radial-gradient(900px 420px at 85% 70%, rgba(34, 197, 94, .14), transparent 60%),
        linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .55));
}

.bk-contact-hero .container {
    position: relative;
    z-index: 2;
}

.bk-contact-title {
    font-size: clamp(34px, 4.6vw, 56px);
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.06;
    margin-bottom: 10px;
}

.bk-contact-sub {
    max-width: 760px;
    color: rgba(255, 255, 255, .86);
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 14px;
}

.bk-contact-bullets {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bk-contact-bullets .b {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .88);
    font-weight: 700;
}

.bk-contact-bullets .b i {
    color: #22c55e;
}

/* =========================
   PANELS (REUSE STYLE)
========================= */
.bk-panel {
    border-radius: 22px;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .06);
    padding: 18px;
}

body.dark-theme .bk-panel {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

/* Small pill */
.bk-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    background: rgba(34, 197, 94, .14);
    border: 1px solid rgba(34, 197, 94, .22);
    color: #14532d;
}

body.dark-theme .bk-pill {
    color: #bbf7d0;
    border-color: rgba(34, 197, 94, .25);
}

/* Inputs */
.bk-input {
    border-radius: 14px;
    border: 1px solid var(--bk-border);
    padding: 12px 12px;
    font-weight: 600;
}

body.dark-theme .bk-input {
    background: rgba(2, 6, 23, .35);
    border-color: rgba(255, 255, 255, .10);
    color: #e5e7eb;
}

body.dark-theme .bk-input::placeholder {
    color: rgba(226, 232, 240, .55);
}

.bk-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(30, 58, 138, .08);
    border: 1px solid rgba(30, 58, 138, .14);
    font-weight: 700;
    color: var(--bk-muted);
}

body.dark-theme .bk-note {
    background: rgba(30, 58, 138, .14);
    border-color: rgba(255, 255, 255, .10);
    color: rgba(226, 232, 240, .85);
}

/* =========================
   Right side hero card
========================= */
.bk-contact-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--bk-border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
}

body.dark-theme .bk-contact-card {
    background: rgba(15, 23, 42, .85);
    border-color: rgba(255, 255, 255, .10);
}

.bk-contact-mini .item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(148, 163, 184, .35);
}

.bk-contact-mini .item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.bk-contact-mini i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--bk-accent);
    background: rgba(30, 58, 138, .12);
    border: 1px solid rgba(30, 58, 138, .18);
}

/* =========================
   Info cards
========================= */
.bk-info-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 18px;
    background: rgba(30, 58, 138, .04);
    border: 1px solid rgba(30, 58, 138, .10);
    margin-bottom: 12px;
}

body.dark-theme .bk-info-card {
    background: rgba(30, 58, 138, .10);
    border-color: rgba(255, 255, 255, .10);
}

.bk-info-card i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #22c55e;
    background: rgba(34, 197, 94, .12);
    border: 1px solid rgba(34, 197, 94, .18);
}

/* link */
.bk-link {
    text-decoration: none;
    color: var(--bk-accent);
}

body.dark-theme .bk-link {
    color: #93c5fd;
}

.bk-link:hover {
    text-decoration: underline;
}

/* =========================
   Map
========================= */
.bk-map {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .92);
}

body.dark-theme .bk-map {
    background: rgba(2, 6, 23, .25);
    border-color: rgba(255, 255, 255, .10);
}

.bk-map-placeholder {
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px;
}

.bk-map-placeholder i {
    font-size: 34px;
    color: var(--bk-accent);
}

/* FAQ */
.bk-contact-faq .accordion-item {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .95);
    margin-bottom: 12px;
}

body.dark-theme .bk-contact-faq .accordion-item {
    background: rgba(15, 23, 42, .75);
    border-color: rgba(255, 255, 255, .10);
}

.bk-contact-faq .accordion-button {
    background: transparent;
}

body.dark-theme .bk-contact-faq .accordion-button {
    color: #e5e7eb;
}

body.dark-theme .bk-contact-faq .accordion-body {
    color: rgba(226, 232, 240, .85);
}

/* =========================
           404 PAGE
=========================== */
/* =========================
   404 PAGE
========================= */

.bk-404 {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
    background:
        radial-gradient(900px 500px at 15% 10%, rgba(30, 58, 138, .06), transparent 60%),
        radial-gradient(900px 500px at 85% 90%, rgba(34, 197, 94, .05), transparent 60%);
}

body.dark-theme .bk-404 {
    background:
        radial-gradient(900px 500px at 15% 10%, rgba(30, 58, 138, .16), transparent 60%),
        radial-gradient(900px 500px at 85% 90%, rgba(34, 197, 94, .10), transparent 60%);
}

.bk-404-card {
    max-width: 720px;
    margin: auto;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .10);
}

body.dark-theme .bk-404-card {
    background: rgba(15, 23, 42, .80);
    border-color: rgba(255, 255, 255, .10);
}

.bk-404-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    font-size: 32px;
    color: #fff;
    background: var(--bk-accent);
    box-shadow: 0 12px 30px rgba(30, 58, 138, .35);
}

.bk-404-code {
    font-size: clamp(70px, 10vw, 120px);
    font-weight: 900;
    letter-spacing: -3px;
    color: var(--bk-accent);
    line-height: 1;
    margin-bottom: 10px;
}

.bk-404-title {
    font-weight: 900;
    margin-bottom: 10px;
}

.bk-404-text {
    color: var(--bk-muted);
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 24px;
}

body.dark-theme .bk-404-text {
    color: rgba(226, 232, 240, .80);
}

.bk-404-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.bk-404-actions .btn {
    border-radius: 14px;
    font-weight: 800;
    padding: 12px 20px;
}

/* =========================
   COMING SOON (Simple + Pro)
========================= */

.bk-soon {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    padding: 70px 0;
    background:
        radial-gradient(900px 520px at 15% 10%, rgba(30, 58, 138, .06), transparent 60%),
        radial-gradient(900px 520px at 90% 90%, rgba(34, 197, 94, .05), transparent 60%);
}

body.dark-theme .bk-soon {
    background:
        radial-gradient(900px 520px at 15% 10%, rgba(30, 58, 138, .16), transparent 60%),
        radial-gradient(900px 520px at 90% 90%, rgba(34, 197, 94, .10), transparent 60%);
}

.bk-soon-card {
    max-width: 820px;
    margin: auto;
    padding: 44px 28px;
    border-radius: 24px;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .10);
}

body.dark-theme .bk-soon-card {
    background: rgba(15, 23, 42, .80);
    border-color: rgba(255, 255, 255, .10);
}

.bk-soon-kicker {
    font-weight: 900;
    letter-spacing: .18em;
    font-size: 12px;
    color: var(--bk-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
}

body.dark-theme .bk-soon-kicker {
    color: rgba(226, 232, 240, .75);
}

.bk-soon-title {
    font-weight: 900;
    letter-spacing: -0.8px;
    margin-bottom: 10px;
}

.bk-soon-text {
    max-width: 620px;
    margin: 0 auto 18px;
    color: var(--bk-muted);
    font-weight: 600;
    line-height: 1.75;
}

body.dark-theme .bk-soon-text {
    color: rgba(226, 232, 240, .78);
}

/* Progress */
.bk-soon-progress {
    height: 12px;
    border-radius: 999px;
    background: rgba(148, 163, 184, .25);
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, .28);
}

body.dark-theme .bk-soon-progress {
    background: rgba(148, 163, 184, .16);
    border-color: rgba(255, 255, 255, .10);
}

.bk-soon-bar {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--bk-accent), rgba(30, 58, 138, .65));
}

.bk-soon-progress-text {
    color: var(--bk-muted);
    font-weight: 700;
    font-size: 14px;
}

body.dark-theme .bk-soon-progress-text {
    color: rgba(226, 232, 240, .75);
}

/* Countdown */
.bk-soon-countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bk-time {
    width: 140px;
    border-radius: 18px;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .92);
    padding: 14px 10px;
}

body.dark-theme .bk-time {
    background: rgba(2, 6, 23, .35);
    border-color: rgba(255, 255, 255, .10);
}

.bk-time .n {
    font-weight: 900;
    font-size: 34px;
    line-height: 1;
    color: var(--bk-accent);
    letter-spacing: -0.6px;
}

.bk-time .t {
    margin-top: 6px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bk-muted);
}

body.dark-theme .bk-time .t {
    color: rgba(226, 232, 240, .70);
}

/* Form */
.bk-soon-input {
    border-radius: 14px;
    padding: 12px 12px;
    border: 1px solid var(--bk-border);
    font-weight: 600;
}

body.dark-theme .bk-soon-input {
    background: rgba(2, 6, 23, .35);
    border-color: rgba(255, 255, 255, .10);
    color: #e5e7eb;
}

body.dark-theme .bk-soon-input::placeholder {
    color: rgba(226, 232, 240, .55);
}

.bk-soon-btn {
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 900;
    border: none;
    background: var(--bk-accent);
    color: #fff;
}

.bk-soon-btn:hover {
    filter: brightness(.95);
    color: #fff;
}

.bk-soon-note {
    font-size: 13px;
    font-weight: 700;
    color: var(--bk-muted);
}

body.dark-theme .bk-soon-note {
    color: rgba(226, 232, 240, .70);
}

/* Social */
.bk-soon-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bk-soon-social a {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    text-decoration: none;
    border: 1px solid var(--bk-border);
    background: rgba(255, 255, 255, .92);
    color: var(--bk-accent);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    transition: transform .15s ease;
}

body.dark-theme .bk-soon-social a {
    background: rgba(2, 6, 23, .35);
    border-color: rgba(255, 255, 255, .10);
    color: #e5e7eb;
}

.bk-soon-social a:hover {
    transform: translateY(-2px);
}

/* bottom links */
.bk-soon-bottom {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--bk-muted);
    font-weight: 800;
}

.bk-soon-link {
    text-decoration: none;
    color: var(--bk-accent);
    font-weight: 900;
}

body.dark-theme .bk-soon-link {
    color: #93c5fd;
}

.dot {
    opacity: .6;
}

/* Mobile */
@media (max-width: 576px) {
    .bk-soon-card {
        padding: 34px 16px;
    }

    .bk-time {
        width: 145px;
    }
}


/* ===== Mobile: only 1 visible ===== */
@media (max-width: 991px) {
    .bk-testi-wrap {
        padding: 0;
    }

    .carousel-control-prev.bk-testi-control {
        left: 8px;
    }

    .carousel-control-next.bk-testi-control {
        right: 8px;
    }

    .bk-testi-pair {
        flex-direction: column;
    }

    .bk-testi-card {
        flex-basis: 100%;
    }

    /* ABOUT PAGE */
    .bk-about-media2 img {
        height: 380px;
    }

    .bk-about-photo img {
        height: 280px;
    }

    .bk-about-cta2-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    /* SERVICE PAGE */
    .bk-svc-hero {
        padding: 80px 0 60px;
    }

    .bk-svc-hero-card {
        margin-top: 10px;
    }

    .bk-svc-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    /* SERVICE DETAILS PAGE */
    .bk-sd-hero {
        padding: 80px 0 60px;
    }

    .bk-sd-side {
        position: static;
    }

    .bk-sd-media img {
        height: 240px;
    }

    .bk-sd-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    /* PRICING PAGE */
    .bk-price-hero {
        padding: 80px 0 60px;
    }

    .bk-price-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    /* CONTACT PAGE */
    .bk-contact-hero {
        padding: 80px 0 60px;
    }

    .bk-map-placeholder {
        height: 260px;
    }
}




/* ===== Mobile ===== */


@media (max-width: 576px) {
    .bk-hero {
        min-height: 420px;
        text-align: center;
    }

    .bk-hero-desc {
        margin: 0 auto;
    }

    .bk-about-img img {
        height: 360px;
    }

    /* TEAM SECTION  */
    .bk-team-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}