:root {
    --primary: #0a1f3a;
    --secondary: #d4af37;
    --accent: #1e3a5f;
    --light: #f8f9fa;
    --dark: #121212;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --gray: #6c757d;
    --glass: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--light);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(10, 31, 58, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-primary:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--light);
    border: 2px solid var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-danger {
    background-color: var(--danger);
    color: white;
}

.btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--success);
    color: white;
}

.btn-success:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5f 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translate(-25%, -25%) rotate(0deg);
    }
    100% {
        transform: translate(-25%, -25%) rotate(360deg);
    }
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Features Section */
.section {
    padding: 5rem 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.section-title p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge i {
    font-size: 2.5rem;
    color: var(--secondary);
}

/* Testimonials */
.testimonials {
    background: var(--accent);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
}

.author-info h4 {
    font-size: 1.1rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #0a1525;
    padding: 3rem 5% 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 100px auto 50px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
}

.error-message {
    color: var(--danger);
    margin-top: 0.5rem;
    font-size: 0.9rem;
    display: none;
}

/* Dashboard */
.dashboard {
    padding-top: 100px;
    min-height: 100vh;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 5%;
}

.dashboard-title h1 {
    font-size: 2.2rem;
    color: var(--secondary);
}

.dashboard-title p {
    color: rgba(255, 255, 255, 0.7);
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 0 5%;
}

.account-card {
    background: linear-gradient(135deg, var(--accent) 0%, #2a4a7a 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.account-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.balance {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.account-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.detail-item h3 {
    font-size: 1.1rem;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.action-btn i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.chart-container {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Transfer Pages */
.transfer-form {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.receipt {
    background: white;
    color: var(--dark);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: none;
    margin-top: 2rem;
}

.receipt-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 1rem;
}

.receipt-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.receipt-item {
    margin-bottom: 1rem;
}

.receipt-item label {
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    color: var(--gray);
}

.receipt-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Receipts Page */
.receipts-list {
    display: grid;
    gap: 1.5rem;
}

.receipt-item-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.receipt-item-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.receipt-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.receipt-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.receipt-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--primary);
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-size: 1.5rem;
    color: var(--secondary);
}

.close-modal {
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--secondary);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Recent Transactions */
.transactions-section {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.transaction-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.transaction-amount {
    font-weight: 600;
}

.transaction-amount.positive {
    color: var(--success);
}

.transaction-amount.negative {
    color: var(--danger);
}

/* Bill Pay Section */
.bills-section {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bill-item:last-child {
    border-bottom: none;
}

.bill-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.bill-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.bill-amount {
    font-weight: 600;
}

.bill-due {
    color: var(--warning);
    font-size: 0.8rem;
}

/* Investment Section */
.investments-section {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-item:last-child {
    border-bottom: none;
}

.investment-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.investment-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.investment-value {
    font-weight: 600;
}

.investment-change {
    font-size: 0.8rem;
}

.investment-change.positive {
    color: var(--success);
}

.investment-change.negative {
    color: var(--danger);
}

/* Credit Score Widget */
.credit-score-widget {
    background: linear-gradient(135deg, var(--accent) 0%, #2a4a7a 100%);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.credit-score-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.credit-score-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.credit-score-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.credit-score-progress {
    height: 100%;
    background: var(--secondary);
    width: 78%;
}

.credit-score-status {
    color: var(--secondary);
    font-weight: 600;
}

/* Security Alerts */
.security-alert {
    background: rgba(220, 53, 69, 0.2);
    border-left: 4px solid var(--danger);
    border-radius: 5px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.security-alert i {
    color: var(--danger);
    font-size: 1.5rem;
}

.security-alert p {
    color: rgba(255, 255, 255, 0.9);
}

/* Security Modal */
.security-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.security-modal-content {
    background: var(--primary);
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.security-modal-icon {
    font-size: 3rem;
    color: var(--danger);
    margin-bottom: 1.5rem;
}

.security-modal-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.security-modal-message {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.security-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Promotional Banner */
.promo-banner {
    background: linear-gradient(135deg, var(--secondary) 0%, #c19b2e 100%);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
    color: var(--primary);
}

.promo-banner h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.promo-banner p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Mobile App Section */
.mobile-app-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 5rem 0;
}

.mobile-app-content h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.mobile-app-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.app-badges {
    display: flex;
    gap: 1rem;
}

.app-badge {
    background: var(--light);
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.app-badge:hover {
    transform: translateY(-5px);
}

.mobile-app-image {
    text-align: center;
}

.mobile-app-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Financial Tools Section */
.tools-section {
    background: var(--accent);
    padding: 5rem 5%;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tool-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tool-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

/* Dashboard Widgets */
.dashboard-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.widget {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.widget-title {
    font-size: 1.2rem;
    color: var(--secondary);
}

.widget-more {
    color: var(--secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.savings-goal {
    margin-bottom: 1.5rem;
}

.savings-goal:last-child {
    margin-bottom: 0;
}

.goal-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.goal-name {
    font-weight: 500;
}

.goal-amount {
    color: var(--secondary);
    font-weight: 600;
}

.goal-progress {
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.goal-progress-bar {
    height: 100%;
    background: var(--secondary);
    border-radius: 4px;
}

.budget-category {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.budget-category:last-child {
    margin-bottom: 0;
}

.category-name {
    font-weight: 500;
}

.category-amount {
    color: var(--secondary);
}

.category-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 0.3rem;
}

.category-progress-bar {
    height: 100%;
    background: var(--secondary);
    border-radius: 3px;
}

/* Spending Insights */
.spending-insights {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-item:last-child {
    border-bottom: none;
}

.insight-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.insight-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.insight-change {
    font-weight: 600;
}

.insight-change.positive {
    color: var(--success);
}

.insight-change.negative {
    color: var(--danger);
}

/* Account Alerts */
.account-alerts {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-item:last-child {
    border-bottom: none;
}

.alert-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warning);
}

.alert-info h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.alert-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Rewards Section */
.rewards-section {
    background: linear-gradient(135deg, var(--accent) 0%, #2a4a7a 100%);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rewards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rewards-title {
    font-size: 1.5rem;
    color: var(--secondary);
}

.rewards-balance {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.rewards-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .dashboard-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .mobile-app-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dashboard-widgets {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem 5%;
    }
    
    .nav-links {
        margin: 1.5rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .quick-actions {
        grid-template-columns: 1fr;
    }
    
    .receipt-details {
        grid-template-columns: 1fr;
    }

    .app-badges {
        justify-content: center;
    }

    .rewards-actions {
        flex-direction: column;
    }

    .security-modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .account-details {
        grid-template-columns: 1fr;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }
}
