/* NBC Remita Payment Portal Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --nbc-primary: #1a365d;
    --nbc-primary-light: #2c5282;
    --nbc-primary-dark: #0f2744;
    --nbc-accent: #d69e2e;
    --nbc-accent-light: #ecc94b;
    --nbc-success: #38a169;
    --nbc-danger: #e53e3e;
    --nbc-warning: #dd6b20;
    --nbc-bg: #f7fafc;
    --nbc-card-bg: #ffffff;
    --nbc-text: #2d3748;
    --nbc-text-light: #718096;
    --nbc-border: #e2e8f0;
    --nbc-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --nbc-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.nbc-remita-portal * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nbc-remita-portal {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--nbc-bg);
    color: var(--nbc-text);
    line-height: 1.6;
    min-height: 100vh;
}

/* ==================== HERO SECTION ==================== */
.nbc-remita-portal .nbc-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    min-height: 500px;
    background: linear-gradient(135deg, var(--nbc-primary) 0%, var(--nbc-primary-dark) 60%, #0a1929 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 2rem;
}

.nbc-remita-portal .nbc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(214, 158, 46, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
}

.nbc-remita-portal .nbc-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
}

.nbc-remita-portal .nbc-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    color: white;
}

.nbc-remita-portal .nbc-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: nbc-fade-in-down 0.8s ease;
}

.nbc-remita-portal .nbc-hero-badge i {
    color: var(--nbc-accent-light);
}

.nbc-remita-portal .nbc-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: nbc-fade-in-up 0.8s ease 0.2s both;
}

.nbc-remita-portal .nbc-hero h1 span {
    color: var(--nbc-accent-light);
}

.nbc-remita-portal .nbc-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: nbc-fade-in-up 0.8s ease 0.4s both;
}

.nbc-remita-portal .nbc-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    animation: nbc-fade-in-up 0.8s ease 0.6s both;
}

.nbc-remita-portal .nbc-hero-stat {
    text-align: center;
}

.nbc-remita-portal .nbc-hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nbc-accent-light);
    display: block;
}

.nbc-remita-portal .nbc-hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nbc-remita-portal .nbc-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: nbc-bounce 2s infinite;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes nbc-fade-in-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes nbc-fade-in-down {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes nbc-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ==================== MAIN CONTAINER ==================== */
.nbc-remita-portal .nbc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* ==================== SECTION CARDS ==================== */
.nbc-remita-portal .nbc-section {
    background: var(--nbc-card-bg);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--nbc-shadow);
    border: 1px solid var(--nbc-border);
}

.nbc-remita-portal .nbc-section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--nbc-bg);
}

.nbc-remita-portal .nbc-section-header i {
    font-size: 1.5rem;
    color: var(--nbc-primary);
}

.nbc-remita-portal .nbc-section-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nbc-primary);
}

/* ==================== BANK ATM CARDS ==================== */
.nbc-remita-portal .nbc-accounts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.nbc-remita-portal .nbc-account-card {
    position: relative;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.nbc-remita-portal .nbc-account-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.nbc-remita-portal .nbc-account-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
}

/* Bank-specific colors */
.nbc-remita-portal .nbc-account-card.nbc-bank-firstbank {
    background: linear-gradient(135deg, #1a5276 0%, #2980b9 50%, #1a5276 100%);
}

.nbc-remita-portal .nbc-account-card.nbc-bank-gtb {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 50%, #c0392b 100%);
}

.nbc-remita-portal .nbc-account-card.nbc-bank-zenith {
    background: linear-gradient(135deg, #6c3483 0%, #8e44ad 50%, #6c3483 100%);
}

.nbc-remita-portal .nbc-account-card.nbc-bank-access {
    background: linear-gradient(135deg, #d68910 0%, #f39c12 50%, #d68910 100%);
}

.nbc-remita-portal .nbc-account-card.nbc-bank-uba {
    background: linear-gradient(135deg, #922b21 0%, #c0392b 50%, #922b21 100%);
}

.nbc-remita-portal .nbc-account-card.nbc-bank-ecobank {
    background: linear-gradient(135deg, #1e8449 0%, #27ae60 50%, #1e8449 100%);
}

.nbc-remita-portal .nbc-account-card.nbc-bank-fidelity {
    background: linear-gradient(135deg, #1f618d 0%, #2980b9 50%, #1f618d 100%);
}

.nbc-remita-portal .nbc-account-card.nbc-bank-stanbic {
    background: linear-gradient(135deg, #117a65 0%, #16a085 50%, #117a65 100%);
}

.nbc-remita-portal .nbc-account-card.nbc-bank-union {
    background: linear-gradient(135deg, #a04000 0%, #d35400 50%, #a04000 100%);
}

.nbc-remita-portal .nbc-account-card.nbc-bank-polaris {
    background: linear-gradient(135deg, #1c2833 0%, #2c3e50 50%, #1c2833 100%);
}

.nbc-remita-portal .nbc-account-card.nbc-bank-sterling {
    background: linear-gradient(135deg, #6c3483 0%, #8e44ad 50%, #6c3483 100%);
}

.nbc-remita-portal .nbc-account-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.nbc-remita-portal .nbc-account-card.nbc-active {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 0 4px var(--nbc-accent), 0 20px 40px rgba(0,0,0,0.25);
}

.nbc-remita-portal .nbc-account-card.nbc-active::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 1.5rem;
    z-index: 5;
    background: rgba(0,0,0,0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ATM Card Elements */
.nbc-remita-portal .nbc-account-card .nbc-card-chip {
    width: 40px;
    height: 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.nbc-remita-portal .nbc-account-card .nbc-card-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    right: 20%;
    height: 1px;
    background: rgba(0,0,0,0.2);
    transform: translateY(-50%);
}

.nbc-remita-portal .nbc-account-card .nbc-card-chip::after {
    content: '';
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 50%;
    width: 1px;
    background: rgba(0,0,0,0.2);
    transform: translateX(-50%);
}

.nbc-remita-portal .nbc-account-card .nbc-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.nbc-remita-portal .nbc-account-card .nbc-bank-logo {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.nbc-remita-portal .nbc-account-card .nbc-card-type {
    font-size: 0.75rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nbc-remita-portal .nbc-account-card .nbc-account-number {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nbc-remita-portal .nbc-account-card .nbc-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

.nbc-remita-portal .nbc-account-card .nbc-account-name {
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.9;
    max-width: 70%;
}

.nbc-remita-portal .nbc-account-card .nbc-account-purpose {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.nbc-remita-portal .nbc-account-card .nbc-copy-btn {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 10;
}

.nbc-remita-portal .nbc-account-card .nbc-copy-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.05);
}

/* ==================== PAYMENT FORM ==================== */
.nbc-remita-portal .nbc-payment-form {
    display: grid;
    gap: 1.25rem;
}

.nbc-remita-portal .nbc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.nbc-remita-portal .nbc-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nbc-remita-portal .nbc-form-group.nbc-full-width {
    grid-column: 1 / -1;
}

.nbc-remita-portal .nbc-form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--nbc-text);
}

.nbc-remita-portal .nbc-form-group label .nbc-required {
    color: var(--nbc-danger);
}

.nbc-remita-portal .nbc-form-group input,
.nbc-remita-portal .nbc-form-group select,
.nbc-remita-portal .nbc-form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--nbc-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
    width: 100%;
}

.nbc-remita-portal .nbc-form-group input:focus,
.nbc-remita-portal .nbc-form-group select:focus,
.nbc-remita-portal .nbc-form-group textarea:focus {
    outline: none;
    border-color: var(--nbc-primary-light);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.nbc-remita-portal .nbc-form-group input::placeholder {
    color: #a0aec0;
}

.nbc-remita-portal .nbc-input-hint {
    font-size: 0.8rem;
    color: var(--nbc-text-light);
}

/* ==================== REMITA CHECKOUT ONLY ==================== */
.nbc-remita-portal .nbc-remita-checkout {
    background: linear-gradient(145deg, #ebf8ff 0%, #e6fffa 100%);
    border: 2px solid var(--nbc-primary-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.nbc-remita-portal .nbc-remita-checkout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 54, 93, 0.05) 0%, transparent 70%);
}

.nbc-remita-portal .nbc-remita-checkout-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--nbc-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.nbc-remita-portal .nbc-remita-checkout-badge i {
    font-size: 1.1rem;
}

.nbc-remita-portal .nbc-remita-checkout h3 {
    color: var(--nbc-primary);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.nbc-remita-portal .nbc-remita-checkout p {
    color: var(--nbc-text-light);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

.nbc-remita-portal .nbc-remita-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nbc-remita-portal .nbc-remita-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--nbc-text);
}

.nbc-remita-portal .nbc-remita-feature i {
    color: var(--nbc-success);
    font-size: 1rem;
}

/* ==================== AMOUNT INPUT ==================== */
.nbc-remita-portal .nbc-amount-input-wrapper {
    position: relative;
}

.nbc-remita-portal .nbc-amount-input-wrapper .nbc-currency {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 700;
    color: var(--nbc-primary);
    font-size: 1.1rem;
}

.nbc-remita-portal .nbc-amount-input-wrapper input {
    padding-left: 3rem !important;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Quick Amount Buttons */
.nbc-remita-portal .nbc-quick-amounts {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.nbc-remita-portal .nbc-quick-amount {
    background: var(--nbc-bg);
    border: 1px solid var(--nbc-border);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

.nbc-remita-portal .nbc-quick-amount:hover {
    background: var(--nbc-primary);
    color: white;
    border-color: var(--nbc-primary);
}

/* ==================== SUBMIT BUTTON ==================== */
.nbc-remita-portal .nbc-submit-btn {
    background: linear-gradient(135deg, var(--nbc-primary) 0%, var(--nbc-primary-light) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.nbc-remita-portal .nbc-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.3);
}

.nbc-remita-portal .nbc-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.nbc-remita-portal .nbc-submit-btn .nbc-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: nbc-spin 0.8s linear infinite;
}

.nbc-remita-portal .nbc-submit-btn.nbc-loading .nbc-spinner {
    display: inline-block;
}

@keyframes nbc-spin {
    to { transform: rotate(360deg); }
}

/* ==================== MAP SECTION ==================== */
.nbc-remita-portal .nbc-map-section {
    background: var(--nbc-card-bg);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: var(--nbc-shadow);
    border: 1px solid var(--nbc-border);
    overflow: hidden;
}

.nbc-remita-portal .nbc-map-header {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--nbc-bg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nbc-remita-portal .nbc-map-header i {
    font-size: 1.5rem;
    color: var(--nbc-primary);
}

.nbc-remita-portal .nbc-map-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nbc-primary);
}

.nbc-remita-portal .nbc-map-container {
    width: 100%;
    height: 400px;
    position: relative;
}

.nbc-remita-portal .nbc-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.nbc-remita-portal .nbc-map-info {
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.nbc-remita-portal .nbc-map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.nbc-remita-portal .nbc-map-info-item i {
    font-size: 1.25rem;
    color: var(--nbc-primary);
    margin-top: 0.25rem;
}

.nbc-remita-portal .nbc-map-info-item h4 {
    font-size: 0.9rem;
    color: var(--nbc-text);
    margin-bottom: 0.25rem;
}

.nbc-remita-portal .nbc-map-info-item p {
    font-size: 0.85rem;
    color: var(--nbc-text-light);
}

/* ==================== TRANSACTION HISTORY ==================== */
.nbc-remita-portal .nbc-history-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.nbc-remita-portal .nbc-history-table th {
    background: var(--nbc-bg);
    padding: 1rem;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--nbc-text-light);
    font-weight: 600;
}

.nbc-remita-portal .nbc-history-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--nbc-border);
    font-size: 0.9rem;
}

.nbc-remita-portal .nbc-history-table tr:hover {
    background: var(--nbc-bg);
}

.nbc-remita-portal .nbc-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.nbc-remita-portal .nbc-status-badge.nbc-success {
    background: #c6f6d5;
    color: #276749;
}

.nbc-remita-portal .nbc-status-badge.nbc-pending {
    background: #feebc8;
    color: #c05621;
}

.nbc-remita-portal .nbc-status-badge.nbc-failed {
    background: #fed7d7;
    color: #c53030;
}

/* ==================== MODAL ==================== */
.nbc-remita-portal .nbc-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.nbc-remita-portal .nbc-modal-overlay.nbc-active {
    display: flex;
}

.nbc-remita-portal .nbc-modal {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: nbc-modal-slide 0.3s ease;
}

@keyframes nbc-modal-slide {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nbc-remita-portal .nbc-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--nbc-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nbc-remita-portal .nbc-modal-header h3 {
    font-size: 1.25rem;
    color: var(--nbc-primary);
}

.nbc-remita-portal .nbc-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--nbc-text-light);
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.nbc-remita-portal .nbc-modal-close:hover {
    background: var(--nbc-bg);
    color: var(--nbc-text);
}

.nbc-remita-portal .nbc-modal-body {
    padding: 1.5rem;
}

.nbc-remita-portal .nbc-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--nbc-border);
    display: flex;
    gap: 1rem;
}

.nbc-remita-portal .nbc-modal-footer button {
    flex: 1;
    padding: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.nbc-remita-portal .nbc-btn-secondary {
    background: var(--nbc-bg);
    color: var(--nbc-text);
    border-color: var(--nbc-border);
}

.nbc-remita-portal .nbc-btn-secondary:hover {
    background: var(--nbc-border);
}

.nbc-remita-portal .nbc-btn-primary {
    background: var(--nbc-primary);
    color: white;
}

.nbc-remita-portal .nbc-btn-primary:hover {
    background: var(--nbc-primary-light);
}

/* RRR Display */
.nbc-remita-portal .nbc-rrr-box {
    background: linear-gradient(135deg, var(--nbc-primary) 0%, var(--nbc-primary-light) 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 1rem 0;
}

.nbc-remita-portal .nbc-rrr-box .nbc-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.nbc-remita-portal .nbc-rrr-box .nbc-rrr-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.nbc-remita-portal .nbc-rrr-box .nbc-copy-rrr {
    margin-top: 1rem;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nbc-remita-portal .nbc-rrr-box .nbc-copy-rrr:hover {
    background: rgba(255,255,255,0.3);
}

/* ==================== TOAST NOTIFICATION ==================== */
.nbc-remita-portal .nbc-toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.nbc-remita-portal .nbc-toast {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--nbc-shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: nbc-toast-slide 0.3s ease;
    border-left: 4px solid var(--nbc-success);
    max-width: 400px;
}

.nbc-remita-portal .nbc-toast.nbc-error {
    border-left-color: var(--nbc-danger);
}

.nbc-remita-portal .nbc-toast.nbc-warning {
    border-left-color: var(--nbc-warning);
}

@keyframes nbc-toast-slide {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Purpose Config Info */
.nbc-remita-portal .nbc-purpose-config-info {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--nbc-text-light);
    padding: 0.5rem;
    background: #ebf8ff;
    border-radius: 6px;
    border-left: 3px solid var(--nbc-primary-light);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .nbc-remita-portal .nbc-hero {
        min-height: 400px;
        padding: 3rem 1.5rem;
    }

    .nbc-remita-portal .nbc-hero h1 {
        font-size: 2rem;
    }

    .nbc-remita-portal .nbc-hero-subtitle {
        font-size: 1rem;
    }

    .nbc-remita-portal .nbc-hero-stats {
        gap: 1.5rem;
    }

    .nbc-remita-portal .nbc-hero-stat-number {
        font-size: 1.75rem;
    }

    .nbc-remita-portal .nbc-form-row {
        grid-template-columns: 1fr;
    }

    .nbc-remita-portal .nbc-accounts-grid {
        grid-template-columns: 1fr;
    }

    .nbc-remita-portal .nbc-history-table {
        font-size: 0.8rem;
    }

    .nbc-remita-portal .nbc-history-table th,
    .nbc-remita-portal .nbc-history-table td {
        padding: 0.75rem 0.5rem;
    }

    .nbc-remita-portal .nbc-toast-container {
        left: 1rem;
        right: 1rem;
        top: 1rem;
    }

    .nbc-remita-portal .nbc-toast {
        max-width: 100%;
    }

    .nbc-remita-portal .nbc-map-container {
        height: 300px;
    }

    .nbc-remita-portal .nbc-remita-features {
        gap: 1rem;
    }
}

/* Print Styles */
@media print {
    .nbc-remita-portal .nbc-hero,
    .nbc-remita-portal .nbc-section:not(.nbc-print-section),
    .nbc-remita-portal .nbc-submit-btn,
    .nbc-remita-portal .nbc-modal-overlay,
    .nbc-remita-portal .nbc-map-section {
        display: none !important;
    }
}
