/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

/* Main Landing Page Styles */
.main-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

.login-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: white;
    color: #1e40af;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.primary-btn {
    background: white;
    color: #1e40af;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: white;
    color: #1e40af;
}

/* Banking Card */
.banking-card {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-logo {
    font-weight: 700;
    font-size: 1.2rem;
}

.card-type {
    font-size: 0.8rem;
    opacity: 0.8;
}

.card-number {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e40af;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card.featured {
    border: 2px solid #3b82f6;
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e40af;
}

.product-rate {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.product-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.product-btn:hover {
    background: #1e40af;
}

/* Footer */
.main-footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* Login Page Styles */
.login-body {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.login-card {
    padding: 3rem;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.login-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #6b7280;
}

.login-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-input {
    width: 1rem;
    height: 1rem;
}

.forgot-password {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-submit-btn:hover {
    background: #1e40af;
}

.login-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.login-divider span {
    background: white;
    padding: 0 1rem;
    color: #6b7280;
}

.biometric-btn {
    width: 100%;
    background: #f3f4f6;
    color: #374151;
    border: 2px solid #e5e7eb;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.biometric-btn:hover {
    background: #e5e7eb;
}

.login-footer {
    text-align: center;
}

.demo-info {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.demo-info code {
    background: #374151;
    color: white;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
}

.login-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.back-link,
.verify-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover,
.verify-link:hover {
    text-decoration: underline;
}

.login-sidebar {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 3rem;
    display: flex;
    align-items: center;
}

.sidebar-content {
    width: 100%;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.security-features {
    list-style: none;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.security-icon {
    font-size: 1.5rem;
}

.security-text {
    font-weight: 500;
}

/* Dashboard Styles */
.dashboard-body {
    background: #f8fafc;
    min-height: 100vh;
}

.dashboard-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.dashboard-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-logo {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.dashboard-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-greeting {
    color: #6b7280;
}

.logout-btn {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.logout-btn:hover {
    background: #dc2626;
}

.dashboard-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.dashboard-sidebar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    height: fit-content;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sidebar-menu {
    list-style: none;
}

.menu-item {
    margin-bottom: 0.5rem;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-link:hover,
.menu-item.active .menu-link {
    background: #eff6ff;
    color: #3b82f6;
}

.menu-icon {
    font-size: 1.2rem;
}

.dashboard-content {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #6b7280;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.balance-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
}

.account-number {
    font-size: 0.9rem;
    opacity: 0.8;
}

.card-balance {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.balance-amount {
    font-size: 1.8rem;
    font-weight: 700;
}

.balance-change {
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.balance-change.positive {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.balance-change.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.quick-actions {
    margin-bottom: 3rem;
}

.actions-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.action-btn {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    padding: 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.action-icon {
    font-size: 2rem;
}

.action-text {
    font-weight: 600;
    color: #374151;
}

.recent-transactions {
    margin-bottom: 2rem;
}

.transactions-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.transactions-list {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.transaction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease;
}

.transaction-item:last-child {
    border-bottom: none;
}

.transaction-item:hover {
    background: #f8fafc;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.transaction-details {
    flex: 1;
}

.transaction-description {
    font-weight: 600;
    color: #1f2937;
    display: block;
}

.transaction-date {
    font-size: 0.9rem;
    color: #6b7280;
}

.transaction-amount {
    font-weight: 700;
    font-size: 1.1rem;
}

.transaction-amount.positive {
    color: #22c55e;
}

.transaction-amount.negative {
    color: #ef4444;
}

/* Form Styles */
.deposit-form,
.transfer-form {
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-select:focus {
    outline: none;
    border-color: #3b82f6;
}

.amount-input-wrapper {
    position: relative;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-weight: 600;
}

.amount-input {
    padding-left: 3rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.deposit-info,
.transfer-summary {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.info-title,
.summary-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: 0.25rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.summary-details {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.summary-row.total {
    border-top: 1px solid #e5e7eb;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 700;
}

.summary-label {
    color: #6b7280;
}

.summary-value {
    color: #1f2937;
    font-weight: 600;
}

/* Verification Page Styles */
.verification-body {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.verification-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.verification-card {
    padding: 3rem;
}

.verification-header {
    text-align: center;
    margin-bottom: 2rem;
}

.verification-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.verification-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.verification-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

.verification-steps {
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.step.completed,
.step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step.completed .step-number {
    background: #22c55e;
    color: white;
}

.step.active .step-number {
    background: #3b82f6;
    color: white;
}

.step-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.step-description {
    color: #6b7280;
    font-size: 0.9rem;
}

.verification-code-input {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5rem;
}

.verify-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 1rem;
}

.verify-btn:hover {
    background: #1e40af;
}

.verification-actions {
    text-align: center;
    margin-bottom: 2rem;
}

.resend-btn {
    background: none;
    border: none;
    color: #3b82f6;
    cursor: pointer;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 1rem;
}

.timer-container {
    color: #6b7280;
    font-size: 0.9rem;
}

.timer-countdown {
    font-weight: 700;
    color: #ef4444;
}

.demo-section {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.demo-title {
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.demo-description {
    color: #92400e;
    font-size: 0.9rem;
}

.verification-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.security-notice {
    text-align: center;
}

.security-text {
    color: #6b7280;
    font-size: 0.9rem;
}

.verification-sidebar {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 3rem;
    display: flex;
    align-items: center;
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Receipt Modal Styles */
.receipt-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.receipt-modal.active {
    display: flex;
}

.receipt-container {
    background: white;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: receiptSlideIn 0.3s ease-out;
}

@keyframes receiptSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.receipt-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 2rem;
    text-align: center;
    border-radius: 12px 12px 0 0;
}

.receipt-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.receipt-title {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

.receipt-content {
    padding: 2rem;
}

.receipt-status {
    text-align: center;
    margin-bottom: 2rem;
}

.status-icon {
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.status-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 0.5rem;
}

.status-message {
    color: #6b7280;
    font-size: 0.9rem;
}

.receipt-details {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row.highlight {
    background: #f8fafc;
    font-weight: 600;
}

.detail-label {
    color: #6b7280;
    font-size: 0.9rem;
}

.detail-value {
    color: #1f2937;
    font-weight: 500;
    text-align: right;
}

.detail-value.amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
}

.receipt-reference {
    background: #f8fafc;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}

.reference-label {
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reference-number {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 1px;
}

.receipt-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.receipt-timestamp {
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.receipt-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.receipt-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.receipt-btn.primary {
    background: #3b82f6;
    color: white;
}

.receipt-btn.primary:hover {
    background: #1e40af;
}

.receipt-btn.secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.receipt-btn.secondary:hover {
    background: #e5e7eb;
}

.receipt-note {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 6px;
    padding: 0.75rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #92400e;
    text-align: left;
}

.receipt-note strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Print styles for receipt */
@media print {
    .receipt-modal {
        position: static;
        background: none;
        padding: 0;
    }

    .receipt-container {
        box-shadow: none;
        max-width: none;
        border-radius: 0;
    }

    .receipt-actions {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .login-container,
    .verification-container {
        grid-template-columns: 1fr;
    }

    .login-sidebar,
    .verification-sidebar {
        display: none;
    }

    .dashboard-main {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .dashboard-sidebar {
        order: 2;
    }

    .sidebar-menu {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
    }

    .menu-item {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .receipt-modal {
        padding: 1rem;
    }

    .receipt-container {
        max-width: none;
        width: 100%;
    }

    .receipt-content {
        padding: 1.5rem;
    }

    .receipt-actions {
        flex-direction: column;
    }

    .receipt-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .section-container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .login-card,
    .verification-card {
        padding: 2rem;
    }

    .dashboard-nav {
        padding: 0 1rem;
    }

    .nav-user {
        flex-direction: column;
        gap: 0.5rem;
    }
}