/* ============================================
   BANKING LANDING PAGE - STYLES
   ============================================ */

:root {
    --primary: #0a2d5e;
    --primary-dark: #051a38;
    --secondary: #005eb8;
    --accent: #00d4ff;
    --text-dark: #111827;
    --text-gray: #4b5563;
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo-icon-bg {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary);
}

/* Dropdowns (Desktop) */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.arrow {
    font-size: 0.7em;
    transition: transform 0.2s;
}

.dropdown-menu {
    position: absolute;
    top: 50px; /* Offset for desktop */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--secondary);
}

/* Hover effect only for Desktop */
@media (min-width: 993px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown:hover .arrow {
        transform: rotate(180deg);
    }
    
    .mobile-login {
        display: none;
    }
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}

/* ============================================
   MOBILE MENU STYLES
   ============================================ */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .login-btn-desktop {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 0;
        transition: 0.3s ease-in-out;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 1.1rem;
    }

    .dropdown {
        flex-direction: column;
        width: 100%;
        height: auto;
        align-items: flex-start;
        border-bottom: 1px solid #eee;
    }

    .dropdown-toggle {
        width: 100%;
        padding: 15px 0;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static; /* Stack naturally */
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: #f8f9fa;
        display: none; /* Hidden by default via JS */
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown.active .arrow {
        transform: rotate(180deg);
    }

    .mobile-login {
        display: block;
        margin-top: 20px;
        background: var(--primary);
        color: white;
        text-align: center;
        padding: 12px;
        border-radius: 6px;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-top: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 26, 56, 0.7);
    z-index: -1;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--primary);
    color: white;
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    text-align: center;
    gap: 30px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--secondary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.learn-more {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

/* ============================================
   APP SECTION
   ============================================ */
.app-section {
    background: var(--primary-dark);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tag {
    background: rgba(255,255,255,0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.app-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-store {
    background: white;
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-store:hover {
    background: var(--accent);
}

.phone-mockup {
    width: 300px;
    height: 550px;
    background: #111;
    border-radius: 40px;
    border: 8px solid #333;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.screen {
    background: white;
    width: 100%;
    height: 100%;
    border-radius: 32px;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.screen-header {
    background: var(--primary);
    margin: -20px -20px 20px -20px;
    padding: 40px 20px 20px;
    color: white;
}

.screen-balance {
    font-size: 2rem;
    font-weight: 700;
}

.screen-row {
    height: 60px;
    background: #f3f4f6;
    margin-bottom: 15px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .app-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .phone-mockup {
        margin-top: 40px;
        height: 450px;
        width: 240px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #f9fafb;
    padding: 80px 0 20px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-col .logo {
    margin-bottom: 15px;
    background: var(--primary);
    padding: 10px;
    display: inline-flex;
    border-radius: 6px;
}

.footer-col a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   PAGE SPECIFIC STYLES (Savings, etc)
   ============================================ */

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 70px; /* Offset fixed navbar */
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-content-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.pill-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.4);
}

.highlight-text {
    color: var(--accent);
    font-weight: 800;
}

.small-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* Features Row */
.features-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.feature-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    transition: var(--transition);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th, 
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: #f8f9fa;
    font-size: 1.1rem;
    color: var(--primary);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table .recommended {
    background: #eef2ff;
    border-top: 4px solid var(--secondary);
    position: relative;
}

.comparison-table .badge {
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
}

.highlight-cell {
    color: var(--secondary);
    font-weight: 800;
    font-size: 1.2rem;
}

.check { color: #10b981; font-weight: bold; }
.cross { color: #ef4444; font-weight: bold; }

.table-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: 15px;
}

.text-dark {
    color: var(--text-dark) !important;
    border-color: var(--text-dark) !important;
}

.text-dark:hover {
    background: var(--text-dark) !important;
    color: white !important;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.btn-transparent {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-transparent:hover {
    background: rgba(255,255,255,0.1);
}
/* ============================================
   LOAN CALCULATOR & AUTO PAGE STYLES
   ============================================ */

/* Calculator Container */
.calculator-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.calc-inputs {
    flex: 3;
    padding: 40px;
    min-width: 300px;
}

.calc-result {
    flex: 2;
    background: var(--primary);
    padding: 40px;
    color: white;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Input Styles */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 12px 15px 12px 35px; /* space for currency symbol */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
    transition: 0.3s;
}

.input-wrapper input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.1);
}

.currency-symbol {
    position: absolute;
    left: 15px;
    color: #888;
    font-weight: 600;
}

.percent-symbol {
    position: absolute;
    right: 15px;
    color: #888;
    font-weight: 600;
}

/* Term Buttons */
.term-options {
    display: flex;
    gap: 10px;
}

.term-btn {
    flex: 1;
    padding: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-gray);
    transition: 0.2s;
}

.term-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.term-btn.active {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Result Box */
.result-box {
    width: 100%;
    text-align: center;
}

.result-label {
    display: block;
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 10px;
}

.result-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1;
}

.result-details {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.detail-row:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-weight: 600;
}

/* Loan Type Features List */
.feature-list-small {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.feature-list-small li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.feature-list-small li::before {
    content: "•";
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .calculator-container {
        flex-direction: column;
    }
    
    .term-options {
        flex-wrap: wrap;
    }
    
    .term-btn {
        min-width: 45%;
    }
}
/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Grid Layout */
.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .input-group {
    flex: 1;
}

/* FAQ Accordion */
.faq-accordion {
    border-top: 1px solid #eee;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

/* Active State for FAQ */
.faq-item.active .faq-answer {
    max-height: 150px; /* Adjust based on content length */
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}

/* Responsive Contact Page */
@media (max-width: 900px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-map-wrapper {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}
/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

.login-body {
    background: linear-gradient(135deg, var(--primary) 0%, #051a38 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.login-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
}

.back-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.back-link:hover {
    color: white;
}

.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    background: white;
    width: 100%;
    max-width: 450px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: fadeInUp 0.5s ease-out;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    font-size: 0.95rem;
}

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

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

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 20px;
    color: #9ca3af;
}

.input-icon-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.input-icon-wrapper input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #666;
}

.forgot-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: #666;
}

.register-link {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    margin-left: 5px;
}

.security-badge {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #999;
    background: #f9fafb;
    padding: 8px;
    border-radius: 6px;
}

.security-badge svg {
    width: 14px;
    height: 14px;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .login-nav {
        padding: 15px 20px;
    }
    
    .logo-text {
        display: block !important; /* Force logo text on login page */
    }
    
    .login-card {
        padding: 30px 20px;
    }
}