@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');/* andes/frontend/src/OpenAccount.css */

/* --- General Form Styling --- */
.open-account-page {
    background-color: var(--white);
    padding: 40px 0 80px;
    text-align: center;
}

.step-form-content {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 30px;
    border: 1px solid var(--dark-gray);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.step-form-content h2 {
    color: var(--primary-color);
    margin-bottom: 5px;
    text-align: center;
}

.step-form-content .subtitle {
    text-align: center;
    color: var(--light-text-color);
    margin-bottom: 30px;
    font-size: 1.1em;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--dark-gray);
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(252, 163, 17, 0.2);
}
.country-code {
    padding: 12px;
    background-color: var(--dark-gray);
    border: 1px solid var(--dark-gray);
    border-right: none;
    border-radius: 6px 0 0 6px;
    font-weight: 600;
}
.form-group input[id="phone"] {
    border-radius: 0 6px 6px 0 !important;
}

/* --- Toast Notification --- */
.app-toast {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}
.toast-info {
    background-color: #e6f7ff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.toast-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.toast-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* --- Progress Bar --- */
.progress-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.progress-bar-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: var(--dark-gray);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.step-bubble {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 2px solid var(--dark-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: var(--light-text-color);
    position: relative;
    z-index: 2;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.step-bubble.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.step-label {
    position: absolute;
    top: 110%;
    white-space: nowrap;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--light-text-color);
}

.step-bubble.active .step-label {
    color: var(--primary-color);
}


/* --- Step 1: Verification Specifics --- */
.input-with-button {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}
.input-with-button input {
    flex-grow: 1;
}
.input-with-button button {
    flex-shrink: 0;
    padding: 12px 15px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 600;
    border: 1px solid var(--accent-color);
    border-radius: 6px;
}
.input-with-button button:disabled {
    background-color: var(--dark-gray);
    color: var(--light-text-color);
    cursor: not-allowed;
}

.verification-block {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.otp-container {
    margin-top: 15px;
    text-align: center;
    padding: 10px;
}

.otp-container label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.otp-input {
    width: 40px !important;
    height: 40px;
    text-align: center;
    font-size: 1.2em !important;
    font-weight: 700;
    border: 2px solid var(--dark-gray) !important;
    border-radius: 4px !important;
}

.otp-input:focus {
    border-color: var(--primary-color) !important;
}

.btn-verify {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 6px;
    font-weight: 700;
}

.verification-success {
    color: #28a745;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
}
.verification-success i {
    margin-right: 5px;
}

/* --- Resend Timer Button Styling --- */
.btn-resend-timer {
    background-color: var(--accent-color);
    color: var(--primary-color);
    position: relative;
    border-radius: 50% !important;
    overflow: hidden;
    transition: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85em;
    font-weight: 700;
}
.btn-resend-timer.counting {
    cursor: default;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
}
.timer-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.bg-circle {
    fill: none;
    stroke: var(--dark-gray);
    stroke-width: 4;
}
.progress-circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 4;
    transition: stroke-dashoffset 1s linear;
}
.timer-text {
    position: relative;
    z-index: 10;
    font-size: 0.9em;
    font-weight: 700;
    color: var(--primary-color);
}


/* --- Step 3: Account Selection --- */
.account-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.account-card {
    border: 2px solid var(--dark-gray);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
}
.account-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.account-card.selected {
    border-color: var(--primary-color);
    background-color: #f0f8ff;
}
.account-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4em;
}
.account-card ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.9em;
    color: var(--light-text-color);
    margin-top: 10px;
}
.account-card ul li:before {
    content: "✓";
    margin-right: 5px;
    color: #28a745;
    font-weight: bold;
}

/* --- Step 4: Review --- */
.review-summary {
    background-color: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.review-summary h3 {
    text-align: center;
    border-bottom: 1px solid var(--dark-gray);
    padding-bottom: 10px;
    margin-top: 0;
}
.summary-details p {
    margin-bottom: 8px;
    font-size: 1em;
}

.legal-acceptance {
    border-top: 1px solid var(--dark-gray);
    padding-top: 20px;
}

/* --- Navigation --- */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.next-step-btn {
    width: 100%;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .step-form-content { padding: 15px; }
    .otp-inputs { gap: 4px; }
    .otp-input { width: 35px !important; height: 35px; font-size: 1em !important; }
    .account-selection-grid { grid-template-columns: 1fr; }
}/* src/LoadingScreen.css */

.loading-container {
    position: fixed;
    inset: 0; /* Covers the entire screen */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Translucent Black Background */
    background: rgba(5, 5, 5, 0.75);

    /* Glassmorphism Blur Effect */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    z-index: 99999; /* Ensures it stays on top of everything */
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Glowing Neon Blue Icon */
.loading-icon {
    font-size: 3.5rem;
    color: #0088ff; /* Matches --neon-blue */
    animation: pulseGlow 1.2s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
        filter: drop-shadow(0 0 10px rgba(0, 136, 255, 0.4));
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 25px rgba(0, 136, 255, 0.8));
    }
}

/* Modern Track Background */
.loading-progress-bar {
    width: 150px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1); /* Faint white track */
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Deep Blue to Neon Blue Animated Gradient Fill */
.loading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #003366, #0088ff);
    border-radius: 10px;
    position: absolute;
    left: 0;
    top: 0;
    animation: slideLoad 1.5s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(0, 136, 255, 0.8); /* Glow spillover */
}

@keyframes slideLoad {
    0% { left: -50%; width: 30%; }
    50% { left: 25%; width: 50%; }
    100% { left: 100%; width: 30%; }
}


/* =========================================
   1. IMPORTS & VARIABLES (Black & Deep Blue Theme)
   ========================================= */
:root {
    /* Color Palette */
    --black-bg: #050505;        /* Main background */
    --dark-surface: #121212;    /* Cards and boxes */
    --dark-surface-2: #1a1a1a;  /* Lighter borders/inputs */

    --deep-blue: #001a33;       /* Very dark navy */
    --mid-blue: #003366;        /* Standard deep blue */
    --light-blue: #005bb5;      /* Accent/Highlight blue */
    --neon-blue: #0088ff;       /* Glows and active states */

    --text-main: #ffffff;
    --text-muted: #9ba4b5;

    /* UI Variables */
    --radius-lg: 24px;
    --radius-md: 12px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 5px 20px rgba(0, 91, 181, 0.3);
}
/* =========================================
   2. GLOBAL RESET & BASE STYLES
   ========================================= */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--black-bg);
    color: var(--text-main);
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: 'Poppins', sans-serif; }
.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }
/* Utility Classes */
.mobile-only { display: none !important; }
.desktop-only { display: flex !important; }
.full-width { width: 100%; }
/* Animations */
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.animate-slide-up { animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
/* =========================================
   3. MODERN GLASS HEADER (Dark Mode)
   ========================================= */
.modern-header {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; flex-direction: row; gap: 12px; align-items: center; cursor: pointer; }
.logo-icon {
    background: linear-gradient(135deg, var(--mid-blue), var(--light-blue));
    color: var(--text-main);
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; justify-content: center; align-items: center;
    box-shadow: var(--shadow-glow);
}
.modern-header .logo h1 { margin: 0; font-size: 1.4rem; font-weight: 700; letter-spacing: -0.5px; }
.main-nav a { color: var(--text-muted); margin: 0 18px; font-weight: 500; font-size: 1.05rem; transition: color 0.3s; }
.main-nav a:hover { color: var(--text-main); text-shadow: 0 0 10px rgba(255,255,255,0.3); }
.header-actions { display: flex; gap: 15px; }
.btn-login-outline {
    background: transparent; border: 2px solid var(--light-blue);
    color: var(--light-blue); padding: 10px 25px; border-radius: 10px;
    font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 1rem;
}
.btn-login-outline:hover { background: rgba(0, 91, 181, 0.1); box-shadow: var(--shadow-glow); }
.btn-login-solid {
    background: var(--light-blue); border: 2px solid var(--light-blue);
    color: var(--text-main); padding: 10px 25px; border-radius: 10px;
    font-weight: 600; cursor: pointer; transition: 0.3s; font-size: 1rem;
}
.btn-login-solid:hover { background: var(--neon-blue); border-color: var(--neon-blue); box-shadow: 0 0 15px var(--neon-blue); }
/* =========================================
   4. SPLIT HERO SECTION (Large & Detailed)
   ========================================= */
.hero-modern {
    padding: 80px 0 120px;
    background: radial-gradient(circle at top right, var(--deep-blue) 0%, var(--black-bg) 60%);
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.badge-pill {
    display: inline-block; padding: 8px 18px;
    background: rgba(0, 91, 181, 0.2); color: var(--neon-blue);
    border: 1px solid rgba(0, 91, 181, 0.4);
    border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 25px;
}
.hero-title { font-size: 4rem; color: var(--text-main); line-height: 1.15; margin-bottom: 25px; letter-spacing: -1px; }
.text-highlight { color: var(--neon-blue); position: relative; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; max-width: 550px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 20px; margin-bottom: 50px; }
.btn-primary-large {
    background: linear-gradient(135deg, var(--mid-blue), var(--light-blue));
    color: var(--text-main); border: none; padding: 18px 35px; border-radius: 12px;
    font-size: 1.1rem; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 12px;
    transition: 0.3s; box-shadow: var(--shadow-glow);
}
.btn-primary-large:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0, 91, 181, 0.5); }
.btn-secondary-large {
    background: rgba(255, 255, 255, 0.05); color: var(--text-main); border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 35px; border-radius: 12px; font-size: 1.1rem; font-weight: 600;
    cursor: pointer; transition: 0.3s; backdrop-filter: blur(5px);
}
.btn-secondary-large:hover { border-color: var(--light-blue); background: rgba(0, 91, 181, 0.1); }
.hero-trust { display: flex; align-items: center; gap: 15px; font-size: 1rem; color: var(--text-muted); }
.avatars img { width: 45px; height: 45px; border-radius: 50%; border: 3px solid var(--black-bg); margin-left: -15px; }
.avatars img:first-child { margin-left: 0; }
/* Hero Visual Composition */
.visual-composition { position: relative; }
.main-img { width: 100%; border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(0,0,0,0.8); object-fit: cover; height: 550px; opacity: 0.8; }
.floating-card {
    position: absolute; background: rgba(18, 18, 18, 0.9); border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(15px); padding: 20px 25px; border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); font-weight: 600; font-size: 1.1rem;
    display: flex; align-items: center; gap: 15px; color: var(--text-main);
}
.text-blue { color: var(--neon-blue); font-size: 1.5rem; }
.top-card { top: 50px; left: -40px; animation: floatUp 4s ease-in-out infinite; }
.bottom-card { bottom: 80px; right: -30px; animation: floatUp 5s ease-in-out infinite reverse; display: flex; flex-direction: column; align-items: flex-start; }
.chart-bars { display: flex; gap: 6px; align-items: flex-end; height: 40px; margin-bottom: 8px; }
.bar { background: rgba(255,255,255,0.2); width: 10px; border-radius: 5px; }
.b1 { height: 20px; }
.b2 { height: 30px; }
.b3 { height: 40px; background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue); }
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
/* =========================================
   5. STATS STRIP
   ========================================= */
.stats-strip { background: linear-gradient(90deg, var(--deep-blue), var(--mid-blue)); padding: 50px 0; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }
.stats-container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; text-align: center; }
.stat-box h2 { margin: 0 0 10px; font-size: 3rem; font-weight: 700; color: var(--text-main); text-shadow: 0 0 15px rgba(255,255,255,0.2); }
.stat-box p { margin: 0; font-size: 1.1rem; color: rgba(255,255,255,0.7); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
/* =========================================
   6. BENTO BOX FEATURES GRID (Dark Tech Style)
   ========================================= */
.bento-section { padding: 120px 0; background: var(--black-bg); }
.section-heading.center { text-align: center; margin-bottom: 60px; }
.section-heading h2 { font-size: 3rem; color: var(--text-main); margin-bottom: 15px; }
.section-heading p { color: var(--text-muted); font-size: 1.25rem; max-width: 600px; margin: 0 auto; }
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 25px;
}
.bento-item {
    background: var(--dark-surface); border-radius: var(--radius-lg); padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid var(--dark-surface-2);
    cursor: pointer; transition: all 0.4s ease; position: relative; overflow: hidden;
}
.bento-item:hover {
    transform: translateY(-8px);
    border-color: var(--light-blue);
    box-shadow: 0 15px 40px rgba(0, 91, 181, 0.2);
}
.large-card { grid-column: span 2; grid-row: span 2; background: linear-gradient(180deg, var(--dark-surface) 0%, var(--black-bg) 100%); }
.wide-card { grid-column: span 2; display: flex; align-items: center; }
.deep-blue-bg { background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue)); border: 1px solid var(--light-blue); }
.bento-icon {
    width: 65px; height: 65px; background: rgba(0, 91, 181, 0.15); color: var(--neon-blue);
    border-radius: 16px; display: flex; justify-content: center; align-items: center;
    font-size: 1.8rem; margin-bottom: 25px; border: 1px solid rgba(0, 91, 181, 0.3);
}
.white-icon { background: rgba(255,255,255,0.1); color: var(--text-main); border-color: rgba(255,255,255,0.2); }
.bento-item h3 { margin: 0 0 15px; font-size: 1.6rem; color: var(--text-main); }
.bento-item p { margin: 0; color: var(--text-muted); line-height: 1.6; font-size: 1.1rem; z-index: 2; position: relative; }
.bento-img { position: absolute; bottom: 0; right: 0; width: 65%; height: 55%; object-fit: cover; border-top-left-radius: var(--radius-lg); opacity: 0.6; transition: 0.5s; filter: grayscale(50%) contrast(120%); }
.bento-item:hover .bento-img { transform: scale(1.05); opacity: 0.9; filter: grayscale(0%); }
/* =========================================
   7. APP PROMO SECTION
   ========================================= */
.app-promo-section { padding: 100px 0; background: var(--black-bg); }
.app-promo-box {
    background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 40px; padding: 80px; color: var(--text-main);
    display: flex; justify-content: space-between; align-items: center; gap: 50px;
    position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.app-promo-text { flex: 1; z-index: 2; }
.app-promo-text h2 { font-size: 3rem; margin-bottom: 20px; line-height: 1.1; }
.app-promo-text p { font-size: 1.25rem; opacity: 0.8; margin-bottom: 40px; max-width: 450px; line-height: 1.6; }
.store-buttons { display: flex; gap: 20px; }
.store-btn {
    background: rgba(0,0,0,0.4); color: var(--text-main); border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 30px; border-radius: 12px; font-weight: 600; font-size: 1.1rem;
    display: flex; align-items: center; gap: 12px; cursor: pointer; transition: 0.3s; backdrop-filter: blur(5px);
}
.store-btn:hover { background: var(--text-main); color: var(--black-bg); }
.store-btn i { font-size: 1.4rem; }
/* CSS Phone Mockup Dark Mode */
.app-promo-image { flex: 1; display: flex; justify-content: flex-end; position: relative; z-index: 2; }
.mockup-frame {
    width: 280px; height: 560px; background: #000; border-radius: 40px;
    border: 10px solid #222; position: relative; box-shadow: 25px 25px 50px rgba(0,0,0,0.5);
    transform: rotate(-5deg); transition: 0.5s;
}
.app-promo-box:hover .mockup-frame { transform: rotate(0deg) translateY(-15px); }
.mockup-screen {
    background: var(--dark-surface); width: 100%; height: 100%; border-radius: 28px;
    overflow: hidden; padding: 25px; box-sizing: border-box; display: flex; flex-direction: column; gap: 20px;
}
.mockup-header { width: 100%; height: 50px; background: var(--dark-surface-2); border-radius: 12px; }
.mockup-card { width: 100%; height: 160px; background: linear-gradient(135deg, var(--light-blue), var(--neon-blue)); border-radius: 18px; }
.mockup-row { width: 100%; height: 70px; background: var(--dark-surface-2); border-radius: 12px; }
/* =========================================
   8. FOOTER
   ========================================= */
.simple-footer { background: #030303; color: var(--text-muted); padding: 80px 0 0; margin-top: auto; border-top: 1px solid #111; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; margin-bottom: 50px; }
.footer-brand h2 { color: var(--text-main); margin: 0 0 15px; font-size: 1.8rem; display: flex; align-items: center; gap: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 1rem; max-width: 300px; line-height: 1.6; }
.footer-grid h4 { color: var(--text-main); margin-bottom: 25px; font-weight: 600; font-size: 1.2rem; }
.footer-grid a { display: block; color: var(--text-muted); margin-bottom: 12px; font-size: 1rem; transition: color 0.2s; }
.footer-grid a:hover { color: var(--light-blue); }
.footer-bottom { background: #000; text-align: center; padding: 25px; font-size: 0.95rem; color: #555; }
/* =========================================
   9. AUTH & FORMS (Login / Register)
   ========================================= */
.auth-container, .registration-wrapper {
    background: var(--black-bg);
    padding: 80px 20px;
    display: flex; justify-content: center; align-items: center;
    min-height: 85vh;
}
.auth-box {
    background: var(--dark-surface);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    width: 100%; max-width: 480px;
    border: 1px solid var(--dark-surface-2);
}
.auth-box h2 { color: var(--text-main); font-size: 2rem; margin-bottom: 10px; }
.input-field, input, .dash-input {
    width: 100%; padding: 15px 20px; margin: 10px 0 25px;
    border: 1px solid var(--dark-surface-2); border-radius: 12px;
    box-sizing: border-box; font-family: inherit; font-size: 1.1rem;
    background: #181818; color: var(--text-main); transition: 0.3s;
}
.input-field:focus, input:focus, .dash-input:focus {
    outline: none; border-color: var(--light-blue);
    box-shadow: 0 0 0 4px rgba(0, 91, 181, 0.2); background: #1f1f1f;
}
.input-field::placeholder, input::placeholder { color: #555; }
/* Split Screen Registration (Dark Mode) */
.registration-container {
    display: flex; background: var(--dark-surface); width: 100%; max-width: 1100px;
    border-radius: var(--radius-lg); box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    overflow: hidden; border: 1px solid var(--dark-surface-2);
}
.registration-sidebar {
    background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue));
    width: 45%; padding: 60px 50px; color: var(--text-main);
    display: flex; flex-direction: column; justify-content: center;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.sidebar-content h2 { font-size: 2.5rem; margin-bottom: 20px; line-height: 1.2; }
.sidebar-content p { font-size: 1.15rem; opacity: 0.8; margin-bottom: 40px; line-height: 1.6; }
.sidebar-features li { margin-bottom: 20px; font-size: 1.15rem; display: flex; align-items: center; gap: 15px; font-weight: 500; }
.sidebar-features i { color: #00e676; background: rgba(0, 230, 118, 0.1); border-radius: 50%; padding: 2px; }
.registration-form-area { width: 55%; padding: 60px 50px; background: var(--dark-surface); }
.form-heading { font-size: 2rem; color: var(--text-main); margin: 0 0 10px 0; }
.form-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; }
.section-step { display: flex; align-items: center; gap: 15px; color: var(--text-main); font-size: 1.25rem; margin-bottom: 20px; }
.step-num {
    background: var(--light-blue); color: var(--text-main);
    width: 35px; height: 35px; display: flex; justify-content: center; align-items: center;
    border-radius: 50%; font-size: 1.1rem; font-weight: bold;
}
.btn-cta {
    background: linear-gradient(135deg, var(--mid-blue), var(--light-blue));
    border: none; padding: 18px 30px; font-size: 1.15rem; font-weight: bold;
    cursor: pointer; border-radius: 12px; color: var(--text-main);
    box-shadow: var(--shadow-glow); transition: all 0.2s;
}
.btn-cta:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0, 91, 181, 0.5); }
/* OTP & Auth elements */
.btn-verify {
    background: var(--mid-blue); color: var(--text-main); border: none;
    padding: 15px 20px; border-radius: 12px; cursor: pointer; font-size: 1rem;
    transition: 0.2s; white-space: nowrap; font-weight: 600;
}
.btn-verify:hover { background: var(--light-blue); }
.otp-container { background: #181818; padding: 20px; border-radius: 15px; border: 1px solid var(--dark-surface-2); margin-bottom: 25px; text-align: center; }
.otp-box {
    width: 45px; height: 55px; border: 2px solid var(--dark-surface-2); border-radius: 10px;
    text-align: center; font-size: 1.5rem; font-weight: bold; color: var(--neon-blue);
    background: #111; transition: all 0.2s; margin: 0 5px;
}
.otp-box:focus { border-color: var(--light-blue); box-shadow: 0 0 10px rgba(0, 91, 181, 0.4); }
.error-msg { background: rgba(211, 47, 47, 0.1); color: #ff5252; padding: 15px; border-radius: 10px; border: 1px solid rgba(255, 82, 82, 0.3); font-size: 1.05rem; display: flex; align-items: center; gap: 10px; margin-top: 20px; }
/* =========================================
   10. USER DASHBOARD (Deep Blue & Black)
   ========================================= */
.dashboard-layout { display: flex; min-height: 100vh; background: var(--black-bg); }
/* Sidebar */
.dash-sidebar {
    width: 320px; background: var(--dark-surface); color: var(--text-main);
    padding: 40px 30px; display: flex; flex-direction: column; flex-shrink: 0;
    border-right: 1px solid var(--dark-surface-2);
}
.dash-logo { display: flex; align-items: center; gap: 15px; font-size: 1.5rem; font-weight: 700; color: var(--text-main); margin-bottom: 50px; cursor: pointer; }
.dash-logo i { color: var(--neon-blue); }
.user-profile-snippet { display: flex; align-items: center; gap: 18px; margin-bottom: 50px; padding-bottom: 30px; border-bottom: 1px solid var(--dark-surface-2); }
.avatar-circle { width: 55px; height: 55px; background: linear-gradient(135deg, var(--mid-blue), var(--light-blue)); color: var(--text-main); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-weight: 700; font-size: 1.5rem; box-shadow: var(--shadow-glow); }
.dash-menu li { padding: 18px 20px; margin-bottom: 8px; border-radius: 14px; cursor: pointer; display: flex; align-items: center; gap: 18px; color: var(--text-muted); transition: all 0.2s; font-weight: 500; font-size: 1.1rem; }
.dash-menu li:hover, .dash-menu li.active { background: rgba(0, 91, 181, 0.1); color: var(--neon-blue); }
.btn-logout { margin-top: auto; background: transparent; border: 1px solid var(--dark-surface-2); color: var(--text-muted); padding: 15px; border-radius: 12px; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 12px; transition: all 0.2s; font-size: 1.1rem; }
.btn-logout:hover { background: rgba(255, 82, 82, 0.1); border-color: #ff5252; color: #ff5252; }
/* Content */
.dash-content { flex: 1; padding: 50px; overflow-y: auto; }
.dash-header h2 { color: var(--text-main); font-size: 2rem; margin: 0 0 30px 0; }
/* Bank Cards */
.account-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-bottom: 50px; }
.bank-card {
    padding: 35px; border-radius: 28px; display: flex; flex-direction: column; justify-content: space-between;
    min-height: 240px; box-shadow: 0 15px 40px rgba(0,0,0,0.6); position: relative; overflow: hidden;
}
/* Main Checking (Black/Dark Grey with Blue accent) */
.gold-card { background: linear-gradient(135deg, #181818, #0a0a0a); border: 1px solid var(--dark-surface-2); color: var(--text-main); }
.gold-card .card-balance h3 { color: var(--text-main); }
/* Secondary Visa (Deep Blue Gradient) */
.blue-card { background: linear-gradient(135deg, var(--deep-blue), var(--mid-blue)); border: 1px solid var(--light-blue); color: var(--text-main); }
.card-top { display: flex; justify-content: space-between; align-items: center; opacity: 0.8; margin-bottom: 25px; font-weight: 600; font-size: 1.1rem; }
.card-balance h3 { font-size: 2.8rem; margin: 5px 0 0 0; }
.card-number { font-size: 1.6rem; letter-spacing: 3px; margin: 30px 0; font-family: monospace; }
.card-bottom { display: flex; justify-content: space-between; font-size: 1rem; opacity: 0.8; margin-top: auto; font-weight: 500; text-transform: uppercase; }
/* Quick Actions */
.quick-actions { margin-bottom: 50px; }
.section-title-sm { color: var(--text-main); margin-bottom: 25px; font-size: 1.4rem; font-weight: 600; }
.action-buttons { display: flex; gap: 25px; flex-wrap: wrap; }
.action-btn {
    background: var(--dark-surface); border: 1px solid var(--dark-surface-2); padding: 25px; border-radius: var(--radius-lg);
    width: 130px; display: flex; flex-direction: column; align-items: center; gap: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); cursor: pointer; transition: 0.3s; color: var(--text-main); font-size: 1.05rem; font-weight: 500;
}
.action-btn:hover { transform: translateY(-8px); border-color: var(--light-blue); background: #1a1a1a; }
.icon-box { width: 55px; height: 55px; background: rgba(0, 91, 181, 0.15); border-radius: 16px; display: flex; justify-content: center; align-items: center; color: var(--neon-blue); font-size: 1.5rem; }
/* Transactions */
.transactions-section { background: var(--dark-surface); padding: 35px; border-radius: var(--radius-lg); box-shadow: 0 10px 30px rgba(0,0,0,0.5); border: 1px solid var(--dark-surface-2); }
.tx-list { display: flex; flex-direction: column; gap: 20px; }
.tx-item { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid var(--dark-surface-2); }
.tx-icon-circle { width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; }
.tx-icon-circle.out { background: rgba(255, 82, 82, 0.1); color: #ff5252; }
.tx-icon-circle.in { background: rgba(0, 230, 118, 0.1); color: #00e676; }
.tx-details { flex: 1; margin-left: 20px; display: flex; flex-direction: column; color: var(--text-main); font-size: 1.1rem; }
.tx-details small { color: var(--text-muted); font-size: 0.9rem; margin-top: 5px; }
.amount-neg { color: var(--text-main); font-weight: 600; font-size: 1.2rem; }
.amount-pos { color: #00e676; font-weight: 600; font-size: 1.2rem; }
/* =========================================
   11. MODALS & CHATBOT (Dark Theme)
   ========================================= */
.fullscreen-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--black-bg); z-index: 2000; display: flex; flex-direction: column; }
.modal-header { background: var(--dark-surface); padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--dark-surface-2); }
.modal-header i { font-size: 1.5rem; color: var(--text-muted); cursor: pointer; transition: 0.2s; }
.modal-header i:hover { color: var(--text-main); }
.modal-header h2 { margin: 0; font-size: 1.4rem; color: var(--text-main); }
.modal-body { padding: 40px; }
/* Chatbot */
.chat-overlay { position: fixed; bottom: 0; left: 0; right: 0; top: 15%; background: var(--dark-surface); border-top-left-radius: 35px; border-top-right-radius: 35px; box-shadow: 0 -15px 50px rgba(0,0,0,0.8); display: flex; flex-direction: column; z-index: 3000; border: 1px solid var(--dark-surface-2); }
.chat-header { padding: 25px 30px; border-bottom: 1px solid var(--dark-surface-2); display: flex; justify-content: space-between; align-items: center; }
.bot-profile { display: flex; align-items: center; gap: 15px; font-weight: 600; font-size: 1.2rem; color: var(--text-main); }
.bot-avatar { width: 45px; height: 45px; background: var(--light-blue); color: var(--text-main); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; }
.chat-body { flex: 1; padding: 30px; overflow-y: auto; display: flex; flex-direction: column; gap: 20px; }
.bot-msg { background: #1f1f1f; border: 1px solid #333; padding: 15px 22px; border-radius: 20px; border-top-left-radius: 4px; max-width: 85%; font-size: 1.1rem; line-height: 1.5; margin: 0; color: var(--text-main); }
.chat-options { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.chat-options button, .chat-back-btn { background: transparent; border: 1px solid var(--light-blue); color: var(--light-blue); padding: 12px 20px; border-radius: 25px; cursor: pointer; font-weight: 500; font-size: 1.05rem; transition: 0.2s; }
.chat-options button:hover { background: rgba(0, 91, 181, 0.2); }
.contact-card-chat { background: rgba(0, 91, 181, 0.1); border: 1px solid var(--light-blue); color: var(--text-main); padding: 20px; border-radius: 15px; display: flex; gap: 15px; align-items: center; margin: 15px 0; font-size: 1.1rem; }
.chat-form textarea { width: 100%; border: 1px solid var(--dark-surface-2); border-radius: 12px; padding: 15px; margin: 15px 0; font-family: inherit; background: #111; color: var(--text-main); font-size: 1.1rem; }
/* Toasts */
.toast-notification { position: fixed; left: 50%; transform: translateX(-50%); padding: 18px 30px; border-radius: 50px; font-weight: 500; font-size: 1.1rem; z-index: 4000; box-shadow: 0 10px 30px rgba(0,0,0,0.8); display: flex; align-items: center; gap: 15px; width: 90%; max-width: 450px; border: 1px solid rgba(255,255,255,0.1); }
.toast-notification.error { background: #d32f2f; color: white; top: 30px; }
.toast-notification.info { background: var(--dark-surface); color: var(--text-main); top: 30px; border-color: var(--light-blue); }
/* =========================================
   12. MOBILE RESPONSIVE (Dark Theme Specifics)
   ========================================= */
@media (max-width: 900px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
    .main-nav, .dash-sidebar { display: none; }

    .header-container { flex-direction: column; gap: 15px; }
    .mobile-header { background: var(--dark-surface); padding: 20px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 50; border-bottom: 1px solid #222; }
    .mobile-user { display: flex; align-items: center; gap: 15px; font-weight: 600; font-size: 1.1rem; color: var(--text-main); }
    .logout-icon { color: var(--text-muted); font-size: 1.4rem; padding: 10px; cursor: pointer; }

    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; flex-direction: column; }
    .hero-trust { justify-content: center; }
    .floating-card { display: none; }

    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .large-card, .wide-card { grid-column: span 1; grid-row: auto; }

    .app-promo-box { flex-direction: column; text-align: center; padding: 50px 30px; }
    .store-buttons { flex-direction: column; align-items: center; }
    .app-promo-image { display: none; }

    .dashboard-layout { flex-direction: column; }
    .dash-content { padding: 30px 20px 120px; }
    .welcome-banner { flex-direction: column; margin-bottom: 30px; }
    .welcome-banner h2 { margin: 0; font-size: 1.1rem; color: var(--text-muted); font-weight: 500; }
    .welcome-banner h1 { margin: 8px 0 0; font-size: 2.8rem; color: var(--text-main); font-weight: 700; }

    .account-cards-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 15px; gap: 20px; margin-right: -20px; padding-right: 20px; }
    .bank-card { min-width: 88vw; scroll-snap-align: center; }

    .action-buttons { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 15px; }
    .action-btn { min-width: 100px; padding: 18px; }

    .mobile-bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; height: 85px; background: var(--dark-surface); border-top: 1px solid var(--dark-surface-2); display: flex; justify-content: space-around; align-items: center; z-index: 1000; padding-bottom: 10px; }
    .nav-item { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text-muted); font-size: 0.8rem; width: 70px; transition: 0.2s; }
    .nav-item i { font-size: 1.5rem; }
    .nav-item.active { color: var(--neon-blue); font-weight: 600; }

    .registration-container { flex-direction: column; }
    .registration-sidebar { display: none; }
    .registration-form-area { width: 100%; padding: 40px 25px; }
}
/* Card Management / Modal Layouts specific fixes for Dark Mode */
.card-manage-body { background: var(--black-bg); }
.flip-card-container { width: 350px; height: 220px; }
.manage-options-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.manage-option-item { background: var(--dark-surface); padding: 25px; border-radius: 20px; border: 1px solid var(--dark-surface-2); color: var(--text-main); font-size: 1.1rem; font-weight: 500; }
.manage-icon { width: 55px; height: 55px; background: rgba(0, 91, 181, 0.15); color: var(--neon-blue); font-size: 1.5rem; }
.transfer-tabs { background: #111; padding: 8px; border-radius: 15px; margin-bottom: 30px; border: 1px solid #222; display: flex; }
.tab-btn { flex: 1; padding: 15px; border-radius: 10px; color: var(--text-muted); font-size: 1.1rem; }
.tab-btn.active { background: var(--dark-surface); color: var(--text-main); border: 1px solid var(--dark-surface-2); }