﻿/* ============================================================
   LOCKER PAGE
   ============================================================ */

/* ── INTRO SECTION ───────────────────────────────────────── */
.locker-intro-section {
    padding: 80px 0;
    background: #fff;
}
.locker-body-text {
    font-size: 0.97rem;
    color: #000;
    line-height: 1.95;
    margin-bottom: 14px;
}

/* Stats row */
.locker-stat-row {
    display: flex;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.locker-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #f0ebe4;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bank-maroon);
}
.locker-stat i {
    color: var(--gold);
    font-size: 1rem;
}

/* Intro visual */
.locker-intro-visual {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}
.locker-intro-visual img {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    height: 400px;
    box-shadow: 0 20px 60px rgba(61,7,16,0.15);
}
.locker-floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--bank-maroon);
    color: #fff;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(61,7,16,0.3);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
}
.locker-floating-badge i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── CARDS SECTION ───────────────────────────────────────── */
.locker-cards-section {
    padding: 80px 0;
    background: #f4f0eb;
}

.locker-use-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.locker-use-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(61,7,16,0.12);
}
.locker-use-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.locker-use-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.locker-use-card:hover .locker-use-img-wrap img {
    transform: scale(1.06);
}
.locker-use-chip {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--bank-maroon);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 14px;
    border-radius: 20px;
}
.locker-use-body {
    padding: 22px 24px 26px;
}
.locker-use-body h5 {
    font-weight: 700;
    font-size: 0.97rem;
    color: var(--bank-maroon);
    margin-bottom: 10px;
}
.locker-use-body p {
    font-size: 0.855rem;
    color: #000;
    line-height: 1.75;
    margin: 0;
}

/* ── FEATURES STRIP ──────────────────────────────────────── */
.locker-features-section {
    padding: 72px 0;
    background: #fff;
}
.locker-feature-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1.5px solid #f0ebe4;
    border-radius: 16px;
    padding: 22px 16px;
    text-align: center;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    cursor: default;
}
.locker-feature-pill:hover {
    background: var(--bank-maroon);
    border-color: var(--bank-maroon);
    transform: translateY(-4px);
}
.locker-feature-pill i {
    font-size: 1.6rem;
    color: var(--gold);
    transition: color 0.25s;
}
.locker-feature-pill:hover i { color: var(--gold-light); }
.locker-feature-pill span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--bank-maroon);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: color 0.25s;
}
.locker-feature-pill:hover span { color: #fff; }

/* ── CTA STRIP ───────────────────────────────────────────── */
.locker-cta-strip {
    padding: 60px 0;
    background: var(--bank-maroon);
    position: relative;
    overflow: hidden;
}
.locker-cta-strip::before {
    content: '\F4A5';
    font-family: 'bootstrap-icons';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18rem;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
}
.locker-cta-strip h3 {
    font-weight: 800;
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    color: #fff;
    margin-bottom: 10px;
}
.locker-cta-strip p {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    margin: 0;
}
.locker-cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(255,140,0,0.3);
}
.locker-cta-btn:hover {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255,140,0,0.4);
}

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.active {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .locker-intro-section,
    .locker-cards-section,
    .locker-features-section { padding: 52px 0; }
    .locker-intro-visual img { height: 300px; }
    .locker-floating-badge { left: 12px; bottom: -16px; }
}
@media (max-width: 767px) {
    .locker-stat-row { gap: 10px; }
    .locker-cta-strip { text-align: center; }
    .locker-cta-strip .text-lg-end { text-align: center !important; margin-top: 20px; }
    .locker-floating-badge { display: none; }
}

