/* ═══════════════════════════════════════════════════════════════
   BOH FRONT  —  Complete landing-page styles
   Replaces home4 Bootstrap-4 CSS to avoid conflicts with infinia Bootstrap-5
   All brand colour:  #1d2b93
   ═══════════════════════════════════════════════════════════════ */

/* ── INERTIA PROGRESS BAR ─────────────────────────────────────── */
#nprogress .bar {
    background: #1d2b93 !important;
    height: 4px !important;
    box-shadow: 0 0 8px rgba(29,43,147,.6) !important;
}
#nprogress .peg {
    box-shadow: 0 0 10px #1d2b93, 0 0 5px #1d2b93 !important;
}

/* ── RESET / BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── VARIABLES ────────────────────────────────────────────────── */
:root {
    --boh: #1d2b93;
    --boh-dark: #151f6d;
    --boh-light: rgba(29,43,147,.08);
    --text-dark: #0a1121;
    --text-muted: #7a7d8a;
    --border: #e8eaf0;
    --white: #ffffff;
    --bg-soft: #f8f9fc;
}

/* ── SPACING HELPERS ──────────────────────────────────────────── */
.ptb-100 { padding-top: 100px; padding-bottom: 100px; }
.pt-100  { padding-top: 100px; }
.pb-100  { padding-bottom: 100px; }
.pb-75   { padding-bottom: 75px; }
.pt-75   { padding-top: 75px; }
.pt-60   { padding-top: 60px; }
.pb-60   { padding-bottom: 60px; }
.mb-40   { margin-bottom: 40px !important; }
.bg-whisper, .bg-soft { background-color: var(--bg-soft); }

/* ═══════════════════════════════════════════════════════════════
   TOP BAR  (infinia-style announcement strip)
   ═══════════════════════════════════════════════════════════════ */
.boh-topbar {
    background: rgba(29,43,147,.06);
    border-bottom: 1px solid rgba(29,43,147,.12);
    font-size: 13px;
}
.boh-topbar-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: #374151; text-decoration: none; font-weight: 500;
    transition: color .2s;
}
.boh-topbar-link:hover { color: var(--boh); }
.boh-topbar-link svg { flex-shrink: 0; color: var(--boh); }
.boh-topbar-social {
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(29,43,147,.1); display: inline-flex; align-items: center; justify-content: center;
    color: var(--boh); font-size: 13px; transition: all .2s;
}
.boh-topbar-social:hover { background: var(--boh); color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════ */
.boh-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow .3s;
}
.boh-header.scrolled {
    box-shadow: 0 2px 24px rgba(0,0,0,.1);
}
.boh-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
    max-width: 1320px;
    margin: 0 auto;
    gap: 24px;
}
.boh-logo img { height: 44px; width: auto; }
.boh-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.boh-nav-links a {
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 6px;
    transition: color .2s, background .2s;
}
.boh-nav-links a:hover,
.boh-nav-links a.active { color: var(--boh); background: var(--boh-light); }

.boh-nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.boh-nav-actions .btn-login {
    font-size: 14px; font-weight: 600; color: var(--boh);
    border: 2px solid var(--boh); padding: 7px 18px; border-radius: 6px;
    transition: all .2s;
}
.boh-nav-actions .btn-login:hover { background: var(--boh); color: #fff; }
.boh-nav-actions .btn-register {
    font-size: 14px; font-weight: 700; color: #fff;
    background: var(--boh); padding: 8px 20px; border-radius: 6px;
    display: inline-flex; align-items: center; gap: 6px; transition: background .2s;
}
.boh-nav-actions .btn-register:hover { background: var(--boh-dark); }

/* Google Translate pill in header */
.boh-translate { display: flex; align-items: center; }
#google_translate_element { font-size: 13px; }
#google_translate_element .goog-te-combo { border: 1px solid var(--border); border-radius: 4px; padding: 3px 6px; font-size: 13px; }

/* Mobile */
.boh-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}
.boh-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: .3s; }

.boh-mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 16px 24px 20px;
    gap: 4px;
}
.boh-mobile-menu a {
    padding: 10px 12px; font-size: 15px; font-weight: 600;
    color: var(--text-dark); border-radius: 6px; display: block;
}
.boh-mobile-menu a:hover { background: var(--boh-light); color: var(--boh); }
.boh-mobile-menu .mobile-actions {
    display: flex; gap: 10px; margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--border);
}
.boh-mobile-menu .mobile-actions a {
    flex: 1; text-align: center; padding: 10px;
    border-radius: 6px; font-weight: 700; font-size: 14px;
}
.boh-mobile-menu .mobile-actions .btn-login { border: 2px solid var(--boh); color: var(--boh); }
.boh-mobile-menu .mobile-actions .btn-register { background: var(--boh); color: #fff; }
.boh-mobile-menu.open { display: flex; }

@media (max-width: 992px) {
    .boh-nav-links, .boh-nav-actions { display: none; }
    .boh-hamburger { display: flex; }
    .boh-translate { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   TRADINGVIEW TICKER
   ═══════════════════════════════════════════════════════════════ */
.boh-ticker-bar { height: 46px; overflow: hidden; background: #fff; border-bottom: 1px solid var(--border); }

/* ═══════════════════════════════════════════════════════════════
   HERO SLIDER  (infinia home-5 glassmorphism style)
   ═══════════════════════════════════════════════════════════════ */
.section-hero-5 { position: relative; overflow: hidden; }

/* Slide container — controls height via padding (matches infinia py-188) */
.py-188 { padding-top: 188px; padding-bottom: 188px; }
@media (max-width: 991px) { .py-188 { padding-top: 100px; padding-bottom: 100px; } }
@media (max-width: 575px) { .py-188 { padding-top: 70px; padding-bottom: 70px; } }

/* Background photo fills slide */
.img-pull { background-repeat: no-repeat; background-size: cover; background-position: center center; }

/* Glassmorphism content card (exact infinia values) */
.backdrop-filter {
    background: hsla(0,0%,100%,.82) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: inset 1px 2px 0 0 hsla(0,0%,100%,.6), -12px 36px 44px 0 rgba(127,124,168,.18);
    /* Inner padding: extra left gives rotated side badge clearance */
    padding: 2.5rem 2.5rem 2.5rem 4rem !important;
}
@media (max-width: 767px) {
    .backdrop-filter { padding: 1.75rem !important; }
}

/* Rotated side badge */
.tag-home-5 {
    background: hsla(0,0%,100%,.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: inset 1.3px 2px 0 0 hsla(0,0%,100%,.6), -12px 36.7px 44.9px 0 rgba(127,124,168,.18);
}
.rotate-n90 { transform: rotate(-90deg); white-space: nowrap; }

/* Display font size ds-3 = 64px (infinia scale) */
.ds-3 { font-size: clamp(36px, 5vw, 64px) !important; line-height: 1.1 !important; }

/* Gradient CTA button */
.btn-gradient {
    background: linear-gradient(135deg, var(--boh) 0%, #3a4fd4 100%);
    color: #fff !important; border: none;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: 12px; font-weight: 700; font-size: 15px;
    transition: all .3s ease; text-decoration: none;
}
.btn-gradient:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(29,43,147,.35); color: #fff; }

/* Secondary video/outline button */
.hero-alt-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: hsla(0,0%,100%,.65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 12px; padding: 10px 20px;
    color: #111827; font-weight: 600; font-size: 14px;
    transition: all .2s; text-decoration: none;
}
.hero-alt-btn:hover { background: hsla(0,0%,100%,.9); color: #111827; }
.hero-play-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: hsla(0,0%,100%,.6); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Pagination */
.section-hero-5 .swiper-pagination { bottom: 28px; }
.section-hero-5 .swiper-pagination-bullet { width: 12px; height: 12px; opacity: 1; background: rgba(255,255,255,.5); }
.section-hero-5 .swiper-pagination-bullet-active { width: 18px; height: 18px; background: var(--boh); }

/* Nav arrows */
.section-hero-5 .swiper-button-next,
.section-hero-5 .swiper-button-prev {
    background: hsla(0,0%,100%,.7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    width: 48px; height: 48px; border-radius: 50%;
    color: var(--boh); --swiper-navigation-size: 18px;
}
.section-hero-5 .swiper-button-next:hover,
.section-hero-5 .swiper-button-prev:hover { background: #fff; }

/* Override Bootstrap text-primary to BOH blue */
.text-primary { color: var(--boh) !important; }

/* ═══════════════════════════════════════════════════════════════
   SECTION TITLE
   ═══════════════════════════════════════════════════════════════ */
.sec-subtitle {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--boh); margin-bottom: 12px;
}
.sec-title { font-size: clamp(26px,3.5vw,40px); font-weight: 800; color: var(--text-dark); margin: 0 0 16px; line-height: 1.25; }
.sec-title span { color: var(--boh); }
.sec-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════════════════
   PARTNER LOGOS
   ═══════════════════════════════════════════════════════════════ */
.partner-section { padding: 56px 0; border-bottom: 1px solid var(--border); }
.partner-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #aaa; margin-bottom: 24px; }
.partner-swiper .swiper-slide { display: flex; align-items: center; justify-content: center; }
.partner-swiper img { height: 38px; width: auto; opacity: .55; filter: grayscale(100%); transition: opacity .3s, filter .3s; }
.partner-swiper img:hover { opacity: .9; filter: none; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════════ */
.services-section { padding: 80px 0; }
.service-card {
    border: 1px solid var(--border); border-radius: 12px; padding: 28px 24px;
    height: 100%; transition: border-color .25s, box-shadow .25s, transform .25s;
    background: #fff;
}
.service-card:hover { border-color: var(--boh); box-shadow: 0 8px 32px rgba(29,43,147,.12); transform: translateY(-4px); }
.service-card .svc-icon {
    width: 60px; height: 60px; background: var(--boh-light); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    transition: background .25s;
}
.service-card:hover .svc-icon { background: var(--boh); }
.service-card .svc-icon i { font-size: 28px; color: var(--boh); transition: color .25s; }
.service-card:hover .svc-icon i { color: #fff; }
.service-card h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; color: var(--text-dark); }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin: 0 0 16px; }
.service-card .explore-link { font-size: 14px; font-weight: 700; color: var(--boh); display: inline-flex; align-items: center; gap: 6px; }
.service-card .explore-link:hover { color: var(--boh-dark); }
.services-cta { margin-top: 40px; }

/* ═══════════════════════════════════════════════════════════════
   STATS / COUNTER SECTION
   ═══════════════════════════════════════════════════════════════ */
.stats-section { background: var(--boh); padding: 80px 0; color: #fff; }
.stats-section .sec-title { color: #fff; }
.stats-section .sec-title span { color: #f59e0b; }
.stats-section .sec-desc { color: rgba(255,255,255,.8); }
.stat-card { text-align: center; padding: 24px; }
.stat-card .stat-num { font-size: clamp(36px,5vw,60px); font-weight: 900; color: #fff; line-height: 1; }
.stat-card .stat-suffix { font-size: 28px; font-weight: 800; color: #f59e0b; }
.stat-card .stat-label { font-size: 14px; color: rgba(255,255,255,.75); margin-top: 8px; }
.stat-divider { border-right: 1px solid rgba(255,255,255,.2); }
@media (max-width: 576px) { .stat-divider { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); margin-bottom: 16px; padding-bottom: 16px; } }
.stats-cta-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--boh); border: none;
    padding: 12px 28px; border-radius: 6px; font-weight: 700; font-size: 15px;
    transition: background .2s;
}
.stats-cta-btn:hover { background: #f0f2fd; color: var(--boh-dark); }

/* ═══════════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════════ */
.about-section { padding: 80px 0; }
.about-img-wrap { border-radius: 14px; overflow: hidden; }
.about-img-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: top center; border-radius: 14px; }
.about-feature { display: flex; gap: 16px; margin-bottom: 24px; }
.about-feature-icon {
    flex-shrink: 0; width: 52px; height: 52px; border-radius: 10px;
    background: var(--boh-light); display: flex; align-items: center; justify-content: center;
    transition: background .25s;
}
.about-feature:hover .about-feature-icon { background: var(--boh); }
.about-feature-icon i { font-size: 24px; color: var(--boh); transition: color .25s; }
.about-feature:hover .about-feature-icon i { color: #fff; }
.about-feature-text h4 { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--text-dark); }
.about-feature-text p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   PRIMARY CTA BUTTON
   ═══════════════════════════════════════════════════════════════ */
.btn-boh {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--boh); color: #fff; border: 2px solid var(--boh);
    padding: 12px 28px; border-radius: 6px; font-weight: 700; font-size: 15px;
    transition: background .2s, border-color .2s;
}
.btn-boh:hover { background: var(--boh-dark); border-color: var(--boh-dark); color: #fff; }
.btn-boh-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--boh); border: 2px solid var(--boh);
    padding: 10px 24px; border-radius: 6px; font-weight: 700; font-size: 15px;
    transition: all .2s;
}
.btn-boh-outline:hover { background: var(--boh); color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   EXCHANGE TABLE
   ═══════════════════════════════════════════════════════════════ */
.exchange-section { padding: 80px 0; background: var(--bg-soft); }
.exchange-table-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.07); background: #fff; }
.exchange-table-wrap table { margin: 0; width: 100%; border-collapse: collapse; }
.exchange-table-wrap table thead th { background: var(--text-dark); color: #fff; padding: 14px 20px; font-weight: 600; font-size: 14px; }
.exchange-table-wrap table thead th:first-child { border-radius: 0; }
.exchange-table-wrap table tbody tr { border-bottom: 1px solid var(--border); transition: background .2s; }
.exchange-table-wrap table tbody tr:last-child { border-bottom: none; }
.exchange-table-wrap table tbody tr:hover { background: var(--boh-light); }
.exchange-table-wrap table tbody td { padding: 14px 20px; font-size: 14px; vertical-align: middle; }
.country-flag { display: flex; align-items: center; gap: 10px; }
.country-flag strong { font-weight: 700; color: var(--text-dark); }
.text-green { color: #17a363; font-weight: 600; }
.text-red   { color: #e53935; font-weight: 600; }
.update-bar { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.update-bar::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #17a363; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   FEATURES / BENEFITS
   ═══════════════════════════════════════════════════════════════ */
.features-section { padding: 80px 0; }
.feature-card-boh {
    background: #fff; border: 1px solid var(--border); border-radius: 12px;
    padding: 28px 24px; height: 100%; display: flex; gap: 18px; align-items: flex-start;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    margin-bottom: 24px;
}
.feature-card-boh:hover { border-color: var(--boh); box-shadow: 0 8px 28px rgba(29,43,147,.1); transform: translateY(-3px); }
.feature-card-boh .fc-icon {
    flex-shrink: 0; width: 56px; height: 56px; border-radius: 10px;
    background: var(--boh-light); display: flex; align-items: center; justify-content: center;
    transition: background .25s;
}
.feature-card-boh:hover .fc-icon { background: var(--boh); }
.feature-card-boh .fc-icon i { font-size: 26px; color: var(--boh); transition: color .25s; }
.feature-card-boh:hover .fc-icon i { color: #fff; }
.feature-card-boh .fc-body h3 { font-size: 17px; font-weight: 700; margin: 0 0 8px; color: var(--text-dark); }
.feature-card-boh .fc-body p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   CURRENCY CARDS
   ═══════════════════════════════════════════════════════════════ */
.currencies-section { padding: 80px 0; background: var(--bg-soft); }
.currency-card-boh {
    background: #fff; border: 1px solid var(--border); border-radius: 10px;
    padding: 18px 20px; display: flex; align-items: center; gap: 14px;
    margin-bottom: 16px; transition: all .25s; cursor: default;
}
.currency-card-boh:hover { border-color: var(--boh); box-shadow: 0 4px 16px rgba(29,43,147,.1); transform: translateY(-2px); }
.currency-card-boh .cc-name { font-size: 15px; font-weight: 700; color: var(--text-dark); }
.currency-card-boh .cc-sub  { font-size: 12px; color: var(--text-muted); }
/* Color-coded currency dots (replaces flag emojis) */
.cc-code-dot { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.cc-dot-usd { background: #3b82f6; }
.cc-dot-eur { background: #6366f1; }
.cc-dot-gbp { background: #8b5cf6; }
.cc-dot-cad { background: #f59e0b; }
.cc-dot-jpy { background: #ef4444; }
.cc-dot-aud { background: #10b981; }
.cc-dot-chf { background: #e11d48; }
.cc-dot-nzd { background: #0ea5e9; }
.cc-dot-sgd { background: #f97316; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonials-section { padding: 80px 0; }
.testi-card {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 28px; height: 100%; display: flex; flex-direction: column; gap: 18px;
    position: relative; transition: border-color .25s, box-shadow .25s;
}
.testi-card:hover { border-color: var(--boh); box-shadow: 0 8px 28px rgba(29,43,147,.1); }
.testi-header { display: flex; align-items: center; justify-content: space-between; }
.testi-user  { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-name { font-size: 16px; font-weight: 700; color: var(--text-dark); margin: 0; }
.testi-role { font-size: 13px; color: var(--text-muted); }
.testi-quote-icon { font-size: 36px; color: var(--boh); opacity: .25; line-height: 1; }
.testi-body { font-size: 14px; color: #555; line-height: 1.75; font-style: italic; flex: 1; }
.swiper-pagination-bullet-active { background: var(--boh) !important; }
.swiper-button-next, .swiper-button-prev { color: var(--boh) !important; }

/* ═══════════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.cta-banner { background: linear-gradient(135deg, var(--boh) 0%, #2d3db5 100%); padding: 80px 0; }
.cta-banner h2 { color: #fff; font-size: clamp(26px,3.5vw,40px); font-weight: 800; margin: 0 0 12px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 16px; margin: 0; }
.cta-banner .btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--boh); border: 2px solid #fff;
    padding: 12px 28px; border-radius: 6px; font-weight: 700; font-size: 15px;
    transition: background .2s;
}
.cta-banner .btn-white:hover { background: #f0f2fd; }
.cta-banner .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5);
    padding: 12px 28px; border-radius: 6px; font-weight: 700; font-size: 15px;
    transition: background .2s;
}
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,.12); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.boh-footer { background: #0a1121; padding: 80px 0 0; color: rgba(255,255,255,.7); }
.boh-footer .footer-logo img { height: 38px; filter: brightness(0) invert(1); }
.boh-footer .footer-desc { font-size: 14px; line-height: 1.7; margin: 20px 0 24px; }
.boh-footer .footer-social { display: flex; gap: 10px; }
.boh-footer .footer-social a {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6);
    font-size: 16px; transition: all .2s;
}
.boh-footer .footer-social a:hover { background: var(--boh); border-color: var(--boh); color: #fff; }
.boh-footer .footer-heading { font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 20px; }
.boh-footer .footer-links { display: flex; flex-direction: column; gap: 10px; }
.boh-footer .footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.boh-footer .footer-links a:hover { color: #fff; }
.boh-footer .footer-contact { display: flex; flex-direction: column; gap: 14px; }
.boh-footer .footer-contact li { display: flex; gap: 12px; font-size: 14px; }
.boh-footer .footer-contact li i { color: var(--boh); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.boh-footer .footer-contact li a { color: rgba(255,255,255,.6); }
.boh-footer .footer-contact li a:hover { color: #fff; }
.boh-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); margin-top: 60px;
    padding: 20px 0; text-align: center; font-size: 13px; color: rgba(255,255,255,.4);
}
.boh-footer .footer-bottom a { color: rgba(255,255,255,.6); }
.boh-footer .footer-bottom a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════════ */
.back-to-top-btn {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--boh); color: #fff; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
    box-shadow: 0 4px 16px rgba(29,43,147,.35); transition: background .2s, transform .2s;
    z-index: 999; text-decoration: none;
}
.back-to-top-btn:hover { background: var(--boh-dark); transform: translateY(-3px); color: #fff; }


/* ═══════════════════════════════════════════════════════════════
   CSS MARQUEE (replaces Swiper for partners)
   ═══════════════════════════════════════════════════════════════ */
.marquee-track { display: flex; width: max-content; animation: marquee 35s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { padding: 0 48px; display: flex; align-items: center; }
.marquee-item img { height: 36px; width: auto; opacity: .6; filter: grayscale(100%); transition: opacity .3s, filter .3s; }
.marquee-item img:hover { opacity: .95; filter: none; }
.partner-section { overflow: hidden; padding: 56px 0; border-top: 1px solid #e8eaf0; border-bottom: 1px solid #e8eaf0; background: #fff; }

/* ═══════════════════════════════════════════════════════════════
   AUTH SPLIT LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 120px); }
.auth-split-brand { background: linear-gradient(145deg, #1d2b93 0%, #0d1a5e 100%); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 60px 56px; color: #fff; }
.auth-split-brand .brand-logo img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 48px; }
.auth-split-brand h2 { font-size: 2.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.auth-split-brand p { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 40px; }
.auth-split-brand .brand-trust { display: flex; flex-direction: column; gap: 12px; }
.auth-split-brand .brand-trust-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,.8); }
.auth-split-brand .brand-trust-item i { font-size: 20px; color: #f59e0b; }
.auth-split-form { display: flex; align-items: center; justify-content: center; padding: 48px 32px; background: #f8f9fc; }
.auth-form-inner { width: 100%; max-width: 480px; }
@media (max-width: 900px) { .auth-split { grid-template-columns: 1fr; } .auth-split-brand { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   SECTION BACKGROUNDS
   ═══════════════════════════════════════════════════════════════ */
.section-white { background: #ffffff; }
.section-soft  { background: #f8f9fc; }
.section-blue  { background: #1d2b93; }

/* ═══════════════════════════════════════════════════════════════
   SECTION SPACING
   ═══════════════════════════════════════════════════════════════ */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }
