/* ============================================
   LTF BANK (LIBERTY TRUST FUND) BANKING UI
   Modern, clean, card-centric banking UI
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
    /* LTF Bank signature palette */
    --navy: #003b73;
    --navy-deep: #001f45;
    --navy-light: #105a99;
    --blue: #0069bb;
    --blue-bright: #2788d9;
    --blue-light: #58b0f0;
    --blue-pale: #ecf4fd;
    --teal: #0069bb;
    --teal-light: #e3eef8;
    --icon-cobalt: #0a4d7a;
    --icon-cobalt-bg: #e3eef8;
    --icon-cyan: #0a4d7a;
    --icon-cyan-bg: #e3eef8;
    --icon-violet: #0a4d7a;
    --icon-violet-bg: #e3eef8;
    --icon-coral: #0a4d7a;
    --icon-coral-bg: #e3eef8;
    --icon-amber: #0a4d7a;
    --icon-amber-bg: #e3eef8;
    --red: #d03027;
    --red-dark: #b71c1c;

    --primary: var(--navy);
    --primary-dark: var(--navy-deep);
    --primary-light: var(--blue);
    --accent: var(--blue-bright);
    --accent-light: var(--blue-pale);

    --success: #0a4d7a;
    --success-bg: #e3eef8;
    --warning: #0a4d7a;
    --warning-bg: #e3eef8;
    --danger: #d03027;
    --danger-bg: #fdecea;
    --info: #0071c5;
    --info-bg: #e8f4fd;

    --bg-body: #f4f6fa;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --bg-sidebar: #00264d;
    --bg-header: #ffffff;
    --bg-muted: #f0f3f8;

    --text-primary: #1b2a4a;
    --text-secondary: #5a6a85;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    --text-link: #0071c5;

    --border: #e3e8ef;
    --border-light: #f0f3f8;

    --shadow-xs: 0 1px 2px rgba(0,36,77,0.04);
    --shadow-sm: 0 1px 3px rgba(0,36,77,0.06);
    --shadow: 0 2px 8px rgba(0,36,77,0.08);
    --shadow-md: 0 4px 16px rgba(0,36,77,0.1);
    --shadow-lg: 0 8px 30px rgba(0,36,77,0.12);
    --shadow-xl: 0 16px 48px rgba(0,36,77,0.14);
    --shadow-card: 0 2px 12px rgba(0,36,77,0.07);
    --shadow-card-hover: 0 8px 30px rgba(0,36,77,0.13);

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
    --ltf-primary: #0a4d7a;
    --ltf-primary-soft: #e3eef8;

    --sidebar-width: 272px;
    --header-height: 72px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.25s var(--ease);
    --transition-slow: all 0.4s var(--ease);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--text-link); }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--blue-pale); color: var(--navy); }
h1, h2, h3, h4, h5, h6, .page-title, .brand-text {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   LAYOUT
   ============================================ */
.app-wrapper { display: flex; min-height: 100vh; }

.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    padding: 32px 36px;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

/* ============================================
   SIDEBAR - Sleek dark navy
   ============================================ */
.sidebar {
    width: var(--sidebar-width);
    background: linear-gradient(195deg, #00264d 0%, #001a36 60%, #001024 100%);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar::-webkit-scrollbar { width: 0; }

.sidebar-brand {
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-brand .brand-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
    border-radius: 14px 4px 14px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 8px 18px rgba(0,113,197,0.35);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.25);
}

.sidebar-brand .brand-text {
    font-size: 1.45rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.3px;
}

.sidebar-brand .brand-text span {
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-nav { padding: 20px 14px; flex: 1; }

.nav-section { margin-bottom: 6px; }

.nav-section-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: rgba(255,255,255,0.25);
    padding: 12px 14px 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.55);
    font-size: 0.94rem;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 2px;
    position: relative;
}

.nav-link:hover {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.95);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(0,113,197,0.2) 0%, rgba(0,164,179,0.15) 100%);
    color: white;
    font-weight: 600;
}

.nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--blue-bright), var(--teal));
    border-radius: 0 3px 3px 0;
}

.nav-link i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 6px 10px 6px;
    font-size: 0.86rem;
    opacity: 1;
    color: var(--icon-cobalt);
    background: var(--icon-cobalt-bg);
    border: 1px solid rgba(26,95,208,0.2);
}

.nav-section .nav-link:nth-of-type(2) i {
    color: var(--icon-cyan);
    background: var(--icon-cyan-bg);
    border-color: rgba(11,141,170,0.2);
}

.nav-section .nav-link:nth-of-type(3) i {
    color: var(--icon-violet);
    background: var(--icon-violet-bg);
    border-color: rgba(106,77,224,0.2);
}

.nav-link:hover i,
.nav-link.active i {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.28);
    color: #ffffff;
}

.nav-link .badge {
    margin-left: auto;
    background: var(--red);
    color: white;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.sidebar-footer {
    padding: 18px 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.sidebar-user:hover { background: rgba(255,255,255,0.06); }

.sidebar-user .user-avatar {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sidebar-user .user-info { flex: 1; min-width: 0; }
.sidebar-user .user-name {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.88rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-user .user-role { color: rgba(255,255,255,0.35); font-size: 0.73rem; }

/* ============================================
   TOP HEADER
   ============================================ */
.top-header {
    height: var(--header-height);
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    position: sticky;
    top: 0;
    z-index: 900;
}

.header-left { display: flex; align-items: center; gap: 18px; }

.header-left .page-title {
    font-size: 1.38rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.header-left .page-subtitle { font-size: 0.82rem; color: var(--text-secondary); font-weight: 400; }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-primary);
    padding: 8px;
}

.header-right { display: flex; align-items: center; gap: 6px; }

.header-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    color: var(--icon-cobalt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.header-btn:hover { background: var(--bg-muted); color: var(--text-primary); }

.header-btn .notif-dot {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    border: 2px solid var(--bg-header);
}

.header-search {
    display: flex;
    align-items: center;
    background: var(--bg-muted);
    border-radius: var(--radius-full);
    padding: 0 18px;
    gap: 10px;
    width: 280px;
    border: 1.5px solid transparent;
    transition: var(--transition);
}

.header-search:focus-within {
    border-color: var(--blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(0,113,197,0.08);
}

.header-search i { color: var(--text-muted); font-size: 0.88rem; }

.header-search input {
    border: none;
    background: transparent;
    padding: 10px 0;
    font-size: 0.88rem;
    color: var(--text-primary);
    width: 100%;
    outline: none;
}

.header-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 5px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    margin-left: 6px;
}

.header-profile:hover { background: var(--bg-muted); }

.header-profile .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.header-profile .name { font-weight: 600; font-size: 0.88rem; }

/* ============================================
   CARDS / PANELS
   ============================================ */
.card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover { box-shadow: var(--shadow-card-hover); }

.card-header {
    padding: 22px 26px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.card-body { padding: 26px; }
.card-footer {
    padding: 16px 26px;
    border-top: 1px solid var(--border-light);
    background: var(--bg-muted);
}

/* ============================================
   STAT CARDS - LTF Bank style
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--teal) 100%);
    opacity: 0;
    transition: var(--transition);
}

.stat-card:hover::before { opacity: 1; }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.stat-card.blue::before { background: linear-gradient(90deg, var(--blue), var(--blue-light)); opacity: 1; }
.stat-card.green::before { background: var(--ltf-primary); opacity: 1; }
.stat-card.gold::before { background: var(--ltf-primary); opacity: 1; }
.stat-card.red::before { background: var(--red); opacity: 1; }

.stat-card .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px 6px 16px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.stat-card .stat-icon.blue { background: var(--blue-pale); color: var(--blue); }
.stat-card .stat-icon.green { background: var(--ltf-primary-soft); color: var(--ltf-primary); }
.stat-card .stat-icon.gold { background: var(--ltf-primary-soft); color: var(--ltf-primary); }
.stat-card .stat-icon.red { background: var(--ltf-primary-soft); color: var(--ltf-primary); }

.stat-card .stat-label {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.stat-card .stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -1px;
}

.stat-card .stat-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-top: 10px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.stat-change.up { background: var(--ltf-primary-soft); color: var(--ltf-primary); }
.stat-change.down { background: var(--danger-bg); color: var(--red); }

/* ============================================
   ACCOUNT CARDS
   ============================================ */
.account-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
    border: 1.5px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.account-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-3px);
    border-color: var(--blue);
}

.account-card .account-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.account-card .account-type-badge.checking,
.account-type-badge.checking {
    background: #e3eef8;
    color: #0a4d7a;
    border: 1px solid rgba(10, 77, 122, 0.2);
}
.account-card .account-type-badge.savings,
.account-type-badge.savings,
.account-card .account-type-badge.money_market,
.account-type-badge.money_market,
.account-card .account-type-badge.cd,
.account-type-badge.cd {
    background: #e3eef8;
    color: #0a4d7a;
    border: 1px solid rgba(10, 77, 122, 0.22);
}

.ltf-hero-account-type {
    margin-bottom: 10px;
}

.ltf-ui .account-type-badge i {
    color: inherit !important;
}

.account-card .account-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.account-card .account-number-display { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 20px; }
.account-card .account-balance-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; }
.account-card .account-balance-value { font-size: 1.55rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.5px; }

/* ============================================
   BANK CARD VISUAL - Premium LTF Bank look
   ============================================ */
.bank-card-visual {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1.586;
    border-radius: var(--radius-lg);
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,36,77,0.25);
    transition: var(--transition-slow);
}

.bank-card-visual:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0,36,77,0.3);
}

.bank-card-visual.visa-debit {
    background: linear-gradient(135deg, #004977 0%, #0071c5 45%, #0a4d7a 100%);
}

.bank-card-visual.mastercard-credit {
    background: linear-gradient(135deg, #1b2a4a 0%, #004977 50%, #0071c5 100%);
}

.bank-card-visual.visa-credit {
    background: linear-gradient(135deg, #00264d 0%, #0a6da1 60%, #4db5e6 100%);
}

.bank-card-visual::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 55%;
    height: 180%;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}

.bank-card-visual::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 45%;
    height: 140%;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}

.bank-card-visual .card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.bank-card-visual .card-chip {
    width: 48px;
    height: 34px;
    background: linear-gradient(135deg, #e8c66a, #c9a84c);
    border-radius: 7px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.bank-card-visual .card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68%;
    height: 55%;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 4px;
}

.bank-card-visual .card-brand-logo {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: 0.9;
    text-transform: uppercase;
}

.bank-card-visual .card-number-display {
    font-size: 1.2rem;
    letter-spacing: 3.5px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    font-family: 'Courier New', monospace;
}

.bank-card-visual .card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.bank-card-visual .card-holder { font-size: 0.65rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.bank-card-visual .card-holder-name { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.bank-card-visual .card-expiry-label { font-size: 0.58rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 2px; text-align: right; }
.bank-card-visual .card-expiry { font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; }

/* ============================================
   TABLES
   ============================================ */
.table-responsive { overflow-x: auto; }

.data-table { width: 100%; border-collapse: collapse; }

.data-table th {
    padding: 13px 22px;
    text-align: left;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-secondary);
    background: var(--bg-muted);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
}

.data-table td {
    padding: 15px 22px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.data-table tr { transition: var(--transition); }
.data-table tr:hover td { background: rgba(0,113,197,0.02); }

.data-table .amount-credit { color: var(--ltf-primary); font-weight: 700; }
.data-table .amount-debit { color: var(--text-primary); font-weight: 700; }

/* ============================================
   TRANSACTION LIST
   ============================================ */
.transaction-list { list-style: none; }

.transaction-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.transaction-item:last-child { border-bottom: none; }

.transaction-item .txn-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px 6px 14px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 1px solid rgba(0,0,0,0.05);
}

.txn-icon.deposit,
.txn-icon.withdrawal,
.txn-icon.transfer,
.txn-icon.payment,
.txn-icon.card_purchase {
    background: var(--ltf-primary-soft);
    color: var(--ltf-primary);
    border-color: rgba(10, 77, 122, 0.15);
}

.transaction-item .txn-details { flex: 1; min-width: 0; }
.transaction-item .txn-title { font-weight: 600; font-size: 0.88rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.transaction-item .txn-meta { font-size: 0.78rem; color: var(--text-secondary); }
.transaction-item .txn-amount { font-weight: 700; font-size: 0.92rem; text-align: right; white-space: nowrap; }
.txn-amount.credit { color: var(--ltf-primary); }
.txn-amount.debit { color: var(--text-primary); }
.transaction-item .txn-status { font-size: 0.7rem; text-align: right; color: var(--text-muted); }

/* ============================================
   FORMS
   ============================================ */
.form-group { margin-bottom: 22px; }

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    color: var(--text-primary);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0,113,197,0.1);
}

.form-control::placeholder { color: var(--text-muted); }
.form-control.error { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(208,48,39,0.08); }

.form-hint { font-size: 0.78rem; color: var(--text-secondary); margin-top: 6px; }
.form-error { font-size: 0.78rem; color: var(--danger); margin-top: 6px; }

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235a6a85'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.input-group { display: flex; align-items: stretch; }
.input-group .input-prefix {
    display: flex;
    align-items: center;
    padding: 0 14px;
    background: var(--bg-muted);
    border: 1.5px solid var(--border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 700;
}
.input-group .form-control { border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(0,73,119,0.25);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    box-shadow: 0 4px 16px rgba(0,73,119,0.35);
    transform: translateY(-1px);
    color: white;
}

.btn-secondary { background: var(--navy); color: white; }
.btn-secondary:hover { background: var(--navy-deep); color: white; }

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}
.btn-outline:hover { background: var(--bg-muted); border-color: var(--text-secondary); color: var(--text-primary); }

.btn-outline-primary {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}
.btn-outline-primary:hover { background: var(--blue); color: white; }

.btn-success { background: var(--ltf-primary); color: white; border-color: var(--ltf-primary); }
.btn-success:hover { background: #073d5c; color: white; border-color: #073d5c; }

.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-danger:hover { background: var(--red-dark); color: white; }

.btn-ghost { background: transparent; color: var(--text-secondary); border: none; padding: 8px 12px; }
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-muted); }

.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ============================================
   BADGES / STATUS
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.badge-success { background: var(--ltf-primary-soft); color: var(--ltf-primary); }
.badge-warning { background: var(--ltf-primary-soft); color: var(--ltf-primary); }
.badge-danger { background: var(--danger-bg); color: var(--red); }
.badge-info { background: var(--blue-pale); color: var(--blue); }
.badge-neutral { background: var(--bg-muted); color: var(--text-secondary); }

.status-dot { width: 7px; height: 7px; border-radius: 50%; display: inline-block; }
.status-dot.active { background: var(--ltf-primary); }
.status-dot.pending { background: var(--ltf-primary); opacity: 0.65; }
.status-dot.frozen { background: var(--info); }
.status-dot.failed { background: var(--danger); }

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    border-left: 4px solid;
}

.alert i { margin-top: 2px; font-size: 1.05rem; }
.alert-success { background: var(--ltf-primary-soft); border-color: var(--ltf-primary); color: #073d5c; }
.alert-warning { background: var(--ltf-primary-soft); border-color: var(--ltf-primary); color: #073d5c; }
.alert-danger { background: var(--danger-bg); border-color: var(--danger); color: #8b1a1a; }
.alert-info { background: var(--blue-pale); border-color: var(--blue); color: #00365c; }

.alert .alert-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}
.alert .alert-close:hover { opacity: 1; }

/* ============================================
   QUICK ACTIONS
   ============================================ */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 12px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1.5px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.quick-action-btn:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.quick-action-btn .qa-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px 6px 16px 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.quick-action-btn .qa-label { font-size: 0.78rem; font-weight: 600; color: var(--text-primary); }
.quick-action-btn .qa-icon.transfer { background: var(--icon-cobalt-bg); color: var(--icon-cobalt); }
.quick-action-btn .qa-icon.ach { background: var(--ltf-primary-soft); color: var(--ltf-primary); }
.quick-action-btn .qa-icon.wire { background: var(--icon-amber-bg); color: var(--icon-amber); }
.quick-action-btn .qa-icon.bill-pay { background: var(--icon-coral-bg); color: var(--icon-coral); }
.quick-action-btn .qa-icon.cards { background: var(--icon-violet-bg); color: var(--icon-violet); }
.quick-action-btn .qa-icon.settings { background: #edf2f8; color: #51607a; }

/* ============================================
   NOTIFICATION DROPDOWN
   ============================================ */
.notif-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    z-index: 1000;
    display: none;
    max-height: 450px;
    overflow-y: auto;
}

.notif-dropdown.show { display: block; }
.notif-dropdown .notif-header { padding: 18px 22px; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.notif-dropdown .notif-header h4 { font-size: 1rem; font-weight: 700; }

.notif-item {
    display: flex;
    gap: 12px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
}

.notif-item:hover { background: var(--bg-muted); }
.notif-item.unread { background: var(--blue-pale); }

.notif-item .notif-icon { width: 38px; height: 38px; border-radius: 12px 5px 12px 5px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0; border: 1px solid rgba(0,0,0,0.06); }
.notif-item .notif-text { flex: 1; min-width: 0; }
.notif-item .notif-title { font-weight: 600; font-size: 0.85rem; margin-bottom: 2px; }
.notif-item .notif-msg { font-size: 0.78rem; color: var(--text-secondary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.notif-item .notif-time { font-size: 0.7rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   TRANSFER FORMS
   ============================================ */
.transfer-form-card { max-width: 680px; }

.transfer-summary {
    background: var(--bg-muted);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-top: 10px;
}

.transfer-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.88rem;
}

.transfer-summary .summary-row.total {
    border-top: 2px solid var(--border);
    margin-top: 8px;
    padding-top: 14px;
    font-weight: 800;
    font-size: 1.05rem;
}

.transfer-type-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
    background: var(--bg-muted);
    padding: 5px;
    border-radius: var(--radius-sm);
}

.transfer-type-tab {
    flex: 1;
    padding: 11px;
    text-align: center;
    border-radius: var(--radius-xs);
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
    background: transparent;
}

.transfer-type-tab.active {
    background: white;
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.transfer-type-tab:hover:not(.active) { color: var(--text-primary); }

/* ============================================
   SETTINGS LIST
   ============================================ */
.settings-list { list-style: none; }

.settings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--border-light);
}

.settings-item:last-child { border-bottom: none; }
.settings-item .setting-info h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 2px; }
.settings-item .setting-info p { font-size: 0.8rem; color: var(--text-secondary); }

/* ============================================
   TOGGLE SWITCH
   ============================================ */
.toggle-switch { position: relative; width: 46px; height: 25px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 19px;
    height: 19px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.toggle-switch input:checked + .toggle-slider { background: linear-gradient(135deg, var(--blue), var(--teal)); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(21px); }

/* ============================================
   STEPS INDICATOR
   ============================================ */
.steps { display: flex; align-items: center; margin-bottom: 40px; }

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
}

.step::after { content: ''; flex: 1; height: 2px; background: var(--border); margin: 0 16px; }
.step:last-child::after { display: none; }

.step .step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-muted);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
}

.step.active .step-circle { background: var(--blue); border-color: var(--blue); color: white; }
.step.completed .step-circle { background: var(--ltf-primary); border-color: var(--ltf-primary); color: white; }
.step.completed::after { background: var(--ltf-primary); }
.step .step-label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.step.active .step-label { color: var(--text-primary); }
.step.completed .step-label { color: var(--ltf-primary); }

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 3rem; color: var(--text-muted); margin-bottom: 16px; }
.empty-state h3 { font-size: 1.15rem; margin-bottom: 8px; }
.empty-state p { color: var(--text-secondary); margin-bottom: 20px; }

/* ============================================
   TABS
   ============================================ */
.tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; gap: 4px; }

.tab {
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.tab:hover { color: var(--text-primary); }
.tab.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,26,54,0.55);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.show { display: flex; }

.modal {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlide 0.3s var(--ease-spring);
}

@keyframes modalSlide {
    from { transform: translateY(24px) scale(0.97); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-header { padding: 26px 28px 18px; display: flex; justify-content: space-between; align-items: center; }
.modal-header h3 { font-size: 1.15rem; font-weight: 700; }

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-muted);
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover { background: var(--border); }

.modal-body { padding: 0 28px 26px; }
.modal-footer { padding: 16px 28px; border-top: 1px solid var(--border-light); display: flex; gap: 12px; justify-content: flex-end; }

/* ============================================
   AUTH PAGES - LTF Bank style
   ============================================ */
.auth-wrapper { min-height: 100vh; display: flex; }

.auth-left {
    flex: 1;
    background: linear-gradient(165deg, #00264d 0%, #004977 40%, #0071c5 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.auth-left::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,164,179,0.2) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    pointer-events: none;
}

.auth-left::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77,181,230,0.15) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    pointer-events: none;
}

.auth-left .auth-hero-img {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800&q=80') center/cover;
    opacity: 0.08;
    pointer-events: none;
}

.auth-left .auth-brand {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.auth-left .auth-brand span {
    background: linear-gradient(135deg, var(--blue-light), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-left .auth-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    text-align: center;
    max-width: 360px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.auth-left .auth-features {
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.auth-left .auth-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.auth-left .auth-feature i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px 5px 12px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-light);
    font-size: 0.88rem;
    border: 1px solid rgba(255,255,255,0.12);
}

.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: white;
}

.auth-form-container { width: 100%; max-width: 440px; }

.auth-form-container h2 {
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    color: var(--navy);
}

.auth-form-container .auth-subtitle { color: var(--text-secondary); margin-bottom: 36px; font-size: 0.95rem; }

.auth-form-container .form-footer { text-align: center; margin-top: 24px; font-size: 0.88rem; color: var(--text-secondary); }
.auth-form-container .form-footer a { color: var(--blue); font-weight: 600; }
.auth-form-container .form-footer a:hover { text-decoration: underline; }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.remember-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.remember-row label { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; cursor: pointer; }
.remember-row a { font-size: 0.86rem; color: var(--blue); font-weight: 600; }
.remember-row a:hover { text-decoration: underline; }

/* ============================================
   LANDING PAGE
   ============================================ */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

.landing-nav .logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.5px;
}
.landing-nav .logo span {
    background: linear-gradient(135deg, var(--blue-bright), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-nav .nav-links { display: flex; gap: 28px; align-items: center; }
.landing-nav .nav-links a { color: rgba(255,255,255,0.75); font-size: 0.92rem; font-weight: 500; }
.landing-nav .nav-links a:hover { color: white; }

.hero-section {
    min-height: 100vh;
    background: linear-gradient(165deg, #00264d 0%, #004977 35%, #0071c5 70%, #0a4d7a 100%);
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}

.hero-section .hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?w=1400&q=80') center/cover;
    opacity: 0.06;
    pointer-events: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,164,179,0.15) 0%, transparent 60%);
    top: -300px;
    right: -200px;
    pointer-events: none;
}

.hero-section .hero-image {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 45%;
    max-width: 600px;
    z-index: 1;
    opacity: 0.9;
}

.hero-content { max-width: 580px; position: relative; z-index: 2; }

.hero-content h1 {
    font-size: 3.6rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -2px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--blue-light), #80deea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-buttons { display: flex; gap: 14px; }

.hero-buttons .btn-primary {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-full);
    background: white;
    color: var(--navy);
    border-color: white;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.hero-buttons .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.25);
    color: var(--navy);
}

.hero-buttons .btn-outline {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius-full);
    color: white;
    border-color: rgba(255,255,255,0.3);
}
.hero-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: white;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
}

.hero-stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.hero-stat-label {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    font-weight: 500;
}

.features-section { padding: 100px 60px; background: white; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-header h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 14px;
    letter-spacing: -1px;
    color: var(--navy);
}

.section-header p { color: var(--text-secondary); font-size: 1.1rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border-light);
    transition: var(--transition);
    background: white;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--blue-pale);
}

.feature-card .feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px 7px 18px 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 22px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.feature-icon--mono {
    background: var(--ltf-primary-soft) !important;
    color: var(--ltf-primary) !important;
    border-color: rgba(0, 90, 134, 0.18) !important;
}

.feature-icon--mono i {
    color: var(--ltf-primary) !important;
}

.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--navy); }
.feature-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.7; }

.landing-footer {
    background: var(--navy-deep);
    padding: 60px;
    color: rgba(255,255,255,0.5);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 { color: white; margin-bottom: 16px; font-size: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); font-size: 0.86rem; margin-bottom: 10px; transition: var(--transition); }
.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 0.82rem;
}

/* ============================================
   GRIDS
   ============================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }

/* Linked external credit cards */
.external-card-list {
    display: grid;
    gap: 12px;
}

.external-card-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
}

.external-card-brand {
    min-width: 74px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--blue);
    background: var(--blue-pale);
    border: 1px solid rgba(0, 113, 197, 0.2);
    padding: 7px 10px;
    border-radius: 8px 4px 8px 4px;
}

.external-card-main {
    flex: 1;
    min-width: 0;
}

.external-card-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.external-card-meta {
    font-size: 0.78rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--blue) !important; }
.text-success { color: var(--ltf-primary) !important; }
.text-danger { color: var(--danger) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fs-sm { font-size: 0.85rem; }
.fs-lg { font-size: 1.15rem; }
.fs-xl { font-size: 1.4rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.p-0 { padding: 0; }
.p-3 { padding: 24px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1; }
.hidden { display: none; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeIn 0.5s var(--ease) forwards; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-up { animation: slideUp 0.6s var(--ease) forwards; }

.skeleton {
    background: linear-gradient(90deg, var(--border-light) 25%, var(--border) 50%, var(--border-light) 75%);
    background-size: 200% 100%;
    animation: skeletonLoad 1.5s infinite;
    border-radius: var(--radius-xs);
}

@keyframes skeletonLoad {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: 1fr; }
    .hero-section .hero-image { display: none; }
}

@media (max-width: 992px) {
    .sidebar { transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .mobile-toggle { display: flex; }
    .auth-left { display: none; }
    .auth-right { padding: 24px; }
    .hero-section { padding: 100px 30px 60px; }
    .hero-content h1 { font-size: 2.6rem; }
    .features-section { padding: 60px 30px; }
    .landing-nav { padding: 20px 28px; }
    .footer-content { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    html { font-size: 14px; }
    .page-content { padding: 18px; }
    .top-header { padding: 0 18px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .header-search { display: none; }
    .cards-grid { grid-template-columns: 1fr; }
    .hero-section { padding: 80px 20px 40px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .features-grid { grid-template-columns: 1fr; }
    .landing-nav { padding: 16px 20px; }
    .landing-nav .nav-links { display: none; }
    .landing-footer { padding: 40px 20px; }
    .steps { flex-direction: column; gap: 8px; }
    .step::after { display: none; }
    .quick-actions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .quick-actions { grid-template-columns: 1fr 1fr; }
    .bank-card-visual { padding: 22px; }
    .bank-card-visual .card-number-display { font-size: 1rem; letter-spacing: 2px; }
}

/* ============================================
   LTF BANK OVERRIDES
   ============================================ */
.ltf-ui {
    background: #f3f4f6;
    color: #25313d;
}

.ltf-ui .sidebar {
    display: none !important;
}

.ltf-ui .main-content {
    margin-left: 0;
}

.ltf-ui .page-content {
    max-width: 1240px;
    padding: 16px 20px 28px;
}

.ltf-ui .top-header.ltf-top-header {
    background: #ffffff;
    border-bottom: 1px solid #d8dde3;
    height: auto;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ltf-top-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ltf-back-btn {
    border: 1px solid #b9bec6;
    background: #fff;
    color: #2d3742;
    border-radius: 3px;
    padding: 8px 14px;
    font-size: 1rem;
    font-weight: 600;
}

.ltf-back-btn i {
    margin-right: 6px;
    font-size: 0.86rem;
}

.ltf-brand {
    color: #0a5f97;
    font-weight: 700;
    font-size: 1.45rem;
    letter-spacing: -0.3px;
}

.ltf-top-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ltf-help-link {
    color: #2c465a;
    font-weight: 600;
    font-size: 1rem;
}

.ltf-help-link i {
    color: #0b7ea0;
    margin-right: 4px;
}

.ltf-profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    color: #2d3944;
    font-weight: 600;
    padding: 0;
}

.ltf-profile .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #d7dee5;
    color: #2b3a46;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ltf-notif-wrap {
    position: relative;
    z-index: 10050;
}

.ltf-notif-toggle {
    position: relative;
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0a5f97;
}

.ltf-notif-toggle:hover {
    background: #e8f2f8;
}

.ltf-ui .ltf-notif-toggle > i {
    color: #0a5f97 !important;
    pointer-events: none;
}

.ltf-notif-dot {
    position: absolute;
    top: 2px;
    right: 0;
    pointer-events: none;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #c41e3a;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #fff;
    box-sizing: border-box;
}

.ltf-notif-dot--hidden {
    display: none !important;
}

.ltf-notif-dropdown {
    max-height: min(85vh, 520px);
    z-index: 10051;
}

.ltf-notif-dropdown.notif-dropdown.show {
    display: block !important;
}

.ltf-notif-section-title {
    padding: 10px 20px 6px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5a6b7a;
    background: #f4f7fa;
    border-bottom: 1px solid var(--border-light);
}

.ltf-notif-section--codes {
    border-top: 1px solid var(--border);
    margin-top: 2px;
}

.ltf-notif-otp-list,
.ltf-notif-activity-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ltf-notif-empty {
    padding: 14px 22px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.ltf-notif-empty--pad {
    padding-bottom: 20px;
}

.ltf-otp-row {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-light);
}

.ltf-otp-row-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ltf-otp-title {
    font-weight: 600;
    font-size: 0.85rem;
}

.ltf-otp-code {
    font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
    font-size: 1.15rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: #0a4d7a;
}

.ltf-otp-exp {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.ltf-otp-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.ltf-activity-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.82rem;
}

.ltf-activity-desc {
    grid-column: 1 / -1;
    color: var(--text-primary);
}

.ltf-activity-amt {
    font-weight: 700;
    color: #0a4d7a;
}

.ltf-activity-meta {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: right;
}

.ltf-notif-footer-link {
    display: block;
    padding: 12px 20px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0a5f97;
}

.ltf-notif-footer-link:hover {
    text-decoration: underline;
}

.ltf-ui .notif-dropdown .notif-icon i {
    color: inherit !important;
}

.notif-item .notif-icon.notif-success {
    background: var(--success-bg);
    color: var(--success) !important;
}

.notif-item .notif-icon.notif-info {
    background: var(--blue-pale);
    color: #0a4d7a !important;
}

.notif-item .notif-icon.notif-warning {
    background: #fff8e6;
    color: #b8860b !important;
}

.notif-item .notif-icon.notif-danger {
    background: #fdecea;
    color: #c62828 !important;
}

.ltf-account-hero {
    background: linear-gradient(180deg, #005a86 0%, #004f78 100%);
    min-height: 168px;
    border: 1px solid #0a4d72;
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 26px 30px;
    color: #fff;
}

.ltf-hero-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ltf-hero-arrow {
    color: #d9ebf5;
    font-size: 1.1rem;
}

.ltf-hero-account {
    font-size: 2.2rem;
    line-height: 1.05;
    font-weight: 400;
}

.ltf-hero-meta {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
}

.ltf-hero-details {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.ltf-balance-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.94rem;
}

.ltf-balance-value {
    font-size: 3.55rem;
    letter-spacing: -1.4px;
    line-height: 1;
    font-weight: 400;
}

.ltf-transfer-btn {
    border: 1px solid rgba(255, 255, 255, 0.88);
    color: #fff;
    background: transparent;
    padding: 11px 18px;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
}

.ltf-action-row {
    margin-top: 12px;
    border: 1px solid #d7dbe0;
    background: #ffffff;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ltf-action-link {
    padding: 12px 18px;
    color: #0a6286;
    font-size: 1rem;
    font-weight: 600;
    border-right: 1px solid #e1e5ea;
}

.ltf-action-link:last-child {
    border-right: none;
}

.ltf-action-link i {
    margin-right: 8px;
    color: #0d7f9f;
}

.ltf-offers-card {
    margin-top: 12px;
    background: #fff;
    border: 1px solid #d7dbe0;
}

.ltf-offers-head {
    padding: 11px 14px;
    border-bottom: 1px solid #e6e9ed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #33404b;
}

.ltf-offers-head i {
    color: #2b4f69;
    margin-right: 6px;
}

.ltf-offers-head a {
    color: #0a6f95;
    font-weight: 600;
}

.ltf-offers-head a i {
    margin-left: 4px;
    font-size: 0.8rem;
}

.ltf-offers-list {
    padding: 10px 12px;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ltf-offer-item {
    border: 1px solid #e0e4e9;
    min-height: 58px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #33424f;
    font-size: 0.9rem;
}

.ltf-offer-item strong {
    font-weight: 700;
}

.ltf-offer-item span {
    color: #61707d;
}

.ltf-offer-more {
    color: #0a6f95;
    font-weight: 700;
}

.ltf-offer-more i {
    margin-left: 4px;
}

.ltf-transactions-wrap {
    margin-top: 14px;
}

.ltf-transactions-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ltf-transactions-head h3 {
    font-size: 1.7rem;
    font-weight: 600;
}

.ltf-transactions-head a {
    color: #0a6f95;
    font-weight: 600;
    font-size: 1rem;
}

.ltf-transactions-filters {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 10px;
    margin-bottom: 10px;
}

.ltf-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid #d0d6dc;
    background: #fff;
}

.ltf-search-box i {
    color: #60717f;
}

.ltf-search-box input {
    border: none;
    width: 100%;
    font-size: 0.95rem;
    outline: none;
}

.ltf-filter-btn {
    border: 1px solid #d0d6dc;
    background: #fff;
    color: #0d5779;
    font-weight: 600;
    font-size: 0.95rem;
}

.ltf-data-table th {
    background: #f6f7f9;
    border-bottom: 1px solid #d9dfe5;
    color: #4b5b68;
    font-size: 0.72rem;
    padding: 12px 14px;
}

.ltf-data-table td {
    border-bottom: 1px solid #e8ebef;
    padding: 14px;
    font-size: 0.95rem;
}

.ltf-desc-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ltf-merchant-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eef3f8;
    border: 1px solid #d7dee5;
    color: #738393;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
}

.ltf-date-cell span {
    display: block;
    color: #647482;
    text-transform: uppercase;
    font-size: 0.72rem;
    line-height: 1;
}

.ltf-date-cell strong {
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 400;
    color: #2f3f4d;
}

.ltf-ui .card {
    border-radius: 2px;
    border: 1px solid #d7dbe0;
    box-shadow: none;
}

.ltf-ui .card:hover {
    box-shadow: none;
}

.ltf-ui .card-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e6eb;
    padding: 14px 16px;
}

.ltf-ui .card-header h3 {
    font-size: 1.18rem;
    font-weight: 600;
    color: #2b3b47;
}

.ltf-ui .card-body {
    padding: 16px;
}

.ltf-ui .btn {
    border-radius: 2px;
    font-weight: 600;
}

.ltf-ui .btn-primary {
    background: #0b6d95;
    border-color: #0b6d95;
    box-shadow: none;
}

.ltf-ui .btn-primary:hover {
    background: #085b7d;
    border-color: #085b7d;
    box-shadow: none;
    transform: none;
}

.ltf-ui .btn-outline,
.ltf-ui .btn-outline-primary {
    background: #fff;
    border-color: #cfd6de;
    color: #305062;
}

.ltf-ui .btn-outline:hover,
.ltf-ui .btn-outline-primary:hover {
    background: #f7f9fb;
    color: #264657;
    border-color: #b8c2cc;
}

.ltf-ui .form-control {
    border-radius: 2px;
    border-color: #cfd6de;
    font-size: 0.95rem;
    padding: 10px 12px;
}

.ltf-ui .form-control:focus {
    border-color: #0b6d95;
    box-shadow: 0 0 0 2px rgba(11, 109, 149, 0.15);
}

.ltf-ui .input-group .input-prefix {
    border-radius: 2px 0 0 2px;
    border-color: #cfd6de;
    background: #f7f9fb;
}

.ltf-ui .input-group .form-control {
    border-radius: 0 2px 2px 0;
}

.ltf-ui .data-table th {
    background: #f6f7f9;
    color: #4e5f6d;
    font-size: 0.73rem;
}

.ltf-ui .data-table td {
    font-size: 0.94rem;
}

.ltf-ui .stat-card {
    padding: 18px;
    border-radius: 2px;
    border-color: #d7dbe0;
    box-shadow: none;
}

.ltf-ui .stat-card:hover {
    transform: none;
    box-shadow: none;
}

.ltf-ui .stat-card .stat-icon {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
}

.ltf-ui .transaction-item .txn-icon {
    border-radius: 50%;
    width: 38px;
    height: 38px;
}

.copy-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.copy-row .form-control {
    flex: 1;
}

/* Single-color dashboard accents */
.ltf-ui .stat-card::before,
.ltf-ui .stat-card.blue::before,
.ltf-ui .stat-card.green::before,
.ltf-ui .stat-card.gold::before,
.ltf-ui .stat-card.red::before {
    background: var(--ltf-primary);
    opacity: 1;
}

.ltf-ui .stat-card .stat-icon,
.ltf-ui .stat-card .stat-icon.blue,
.ltf-ui .stat-card .stat-icon.green,
.ltf-ui .stat-card .stat-icon.gold,
.ltf-ui .stat-card .stat-icon.red {
    background: var(--ltf-primary-soft);
    color: var(--ltf-primary);
    border-color: rgba(0, 90, 134, 0.18);
}

.ltf-ui .stat-change.up,
.ltf-ui .stat-change.down {
    background: var(--ltf-primary-soft);
    color: var(--ltf-primary);
}

.ltf-ui .quick-action-btn .qa-icon.ltf-mono {
    background: var(--ltf-primary-soft);
    color: var(--ltf-primary);
    border-color: rgba(0, 90, 134, 0.18);
}

/* Global one-color icon system */
.ltf-ui i,
.ltf-ui .fa,
.ltf-ui .fas,
.ltf-ui .far,
.ltf-ui .fab {
    color: var(--ltf-primary) !important;
}

/* Readability exceptions on dark/primary surfaces */
.ltf-ui .ltf-account-hero i,
.ltf-ui .btn-primary i,
.ltf-ui .ltf-transfer-btn i,
.ltf-ui .ltf-action-link:hover i {
    color: #ffffff !important;
}

/* Account type pills: must override global .ltf-ui i/.fas (grid-3 + hero) */
.ltf-ui .account-card .account-type-badge.checking,
.ltf-ui .ltf-account-hero .account-type-badge.checking {
    background: #e3eef8 !important;
    color: #0a4d7a !important;
    border: 1px solid rgba(10, 77, 122, 0.22) !important;
}
.ltf-ui .account-card .account-type-badge.savings,
.ltf-ui .ltf-account-hero .account-type-badge.savings,
.ltf-ui .account-card .account-type-badge.money_market,
.ltf-ui .ltf-account-hero .account-type-badge.money_market,
.ltf-ui .account-card .account-type-badge.cd,
.ltf-ui .ltf-account-hero .account-type-badge.cd {
    background: #e3eef8 !important;
    color: #0a4d7a !important;
    border: 1px solid rgba(10, 77, 122, 0.22) !important;
}

.ltf-ui .account-card .account-type-badge i,
.ltf-ui .ltf-account-hero .account-type-badge i {
    color: inherit !important;
}

.ltf-ui .data-table .amount-credit,
.ltf-ui .txn-amount.credit {
    color: var(--ltf-primary) !important;
}

.ltf-ui .ltf-merchant-icon {
    background: var(--ltf-primary-soft) !important;
    border-color: rgba(10, 77, 122, 0.2) !important;
    color: var(--ltf-primary) !important;
}

@media (max-width: 1100px) {
    .ltf-account-hero {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ltf-action-row,
    .ltf-offers-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .ltf-top-inner {
        flex-wrap: wrap;
    }

    .ltf-profile .name {
        display: none;
    }

    .ltf-action-row,
    .ltf-offers-list,
    .ltf-transactions-filters {
        grid-template-columns: 1fr;
    }
}

/* Mobile: panel is moved under <body> via JS so position:fixed is viewport-true (avoids
   ancestor transforms / sticky clipping). Centered modal-style panel. */
#notifDropdown.notif-dropdown[data-mounted-to-body="1"] {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    right: auto !important;
    bottom: auto !important;
    transform: translate3d(-50%, -50%, 0) !important;
    width: min(calc(100vw - 24px), 420px) !important;
    max-width: 420px !important;
    max-height: min(78vh, 600px) !important;
    margin: 0 !important;
    z-index: 2147483000 !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
}


