html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

:root {
    --navy-dark: #3398fd;
    --navy-light: #208de6;
    --blue-primary: #1a73e8;
    --blue-light: #e8f0fe;
    --blue-soft: #f0f7ff;
    --gold: #ffb300;
    --white: #ffffff;
    --off-white: #f8faff;
    --gray-soft: #e2e8f0;
    --text-dark: #1e293b;
    --text-light: #475569;
    --primary-blue: #08275c;
    --shadow-sm: 0 8px 20px rgba(10, 37, 64, 0.05);
    --shadow-hover: 0 16px 32px rgba(26, 115, 232, 0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    background: #2563eb;
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* ===== NAVIGATION - FINAL VERSION (WHITE BACKGROUND) ===== */
.navbar {
    background: #ffffff;  /* WHITE BACKGROUND */
    padding: 12px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    gap: 56px;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: auto;
    flex-shrink: 0;
}

.company-logo {
    height: 50px;
    width: 50px;
    margin-right: 12px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

/* "THE LOAN BAZZAR" - DARK BLUE */
.logo-text h1 {
    margin: 0;
    font-size: 22px;
    color: #0a1f44;  /* DARK BLUE */
    line-height: 1.2;
    font-weight: 700;
}

/* "Your Trusted Financial Partner" - DARK GRAY */
.tagline {
    margin: 0;
    font-size: 13px;
    color: #475569;  /* DARK GRAY */
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex-shrink: 0;
}

/* Base navigation links */
.nav-menu a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.96rem;
    padding: 6px 4px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0a1f44;
}

.nav-menu a i {
    color: inherit;
    font-size: 0.9rem;
}

/* Right side actions: Support + Login button */
.nav-menu .support-link {
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    font-size: 0.9rem;
    color: #0a1f44;
    margin-left: 24px;
}

.nav-menu .support-link i {
    color: #0a1f44;
}

.nav-menu .support-link:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: #1a73e8;
}

.nav-menu a.login-btn,
.nav-menu a.login-btn.active {
    padding: 8px 20px;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.35);
}

.nav-menu a.login-btn i,
.nav-menu a.login-btn.active i {
    color: #ffffff;
}

.nav-menu a.login-btn:hover,
.nav-menu a.login-btn.active:hover {
    background: #1d4ed8;
    color: #ffffff;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #0a1f44;  /* DARK BLUE */
    margin: 3px 0;
    border-radius: 4px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    padding: 8px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #0a1f44 !important;
    padding: 12px 20px !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-content a:hover {
    background: #e8f0fe !important;
    color: #1a73e8 !important;
    padding-left: 25px !important;
}

.dropdown-content a i {
    color: #1e40af !important;
    width: 20px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 120px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-headline {
    text-align: center;
    margin-bottom: 48px;
}

.hero-headline h1 {
    color: #0a1f44;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-shadow: none;
}

.hero-headline p {
    color: #475569;
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 16px 20px;
    background: #edf5ff;
    border-radius: 16px;
}

.hero-left .form-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.05);
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 380px;
}

.hero-left .form-header h2 {
    color: #1e3a5f;
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.hero-left .form-header h2 i {
    color: #287ffb;
    font-size: 1rem;
}

.hero-left .form-subtitle {
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.hero-left .partner-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 12px 0 14px;
}

.hero-left .highlight {
    background: #ffffff;
    padding: 10px 8px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-left .highlight:hover {
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.hero-left .highlight i {
    font-size: 1.25rem;
    color: #287ffb;
    margin-bottom: 6px;
}

.hero-left .highlight h4 {
    color: #1e3a5f;
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-left .highlight p {
    color: #64748b;
    font-size: 0.7rem;
}

.hero-left .submit-btn {
    width: 100%;
    background: #287ffb;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(40, 127, 251, 0.25);
    margin-top: auto;
}

.hero-left .submit-btn:hover {
    background: #1a6ae6;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 127, 251, 0.3);
}

.form-header h2 {
    color: var(--primary-blue);
    font-size: 1.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.form-header h2 i {
    color: var(--blue-primary);
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 28px;
}

/* HIGHLIGHTS */
.partner-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0 28px;
}

.highlight {
    background: var(--blue-soft);
    padding: 20px 12px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(26, 115, 232, 0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}

.highlight:hover {
    background: #e3f0ff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(26, 115, 232, 0.12);
}

.highlight i {
    font-size: 1.9rem;
    color: var(--blue-primary);
    margin-bottom: 12px;
}

.highlight h4 {
    color: var(--primary-blue);
    font-size: 1.05rem;
    font-weight: 600;
}

.highlight p {
    color: var(--text-light);
    font-size: 0.8rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    border: none;
    color: white;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.35);
    margin-top: auto;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1557b0 0%, #0d47a1 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(26, 115, 232, 0.4);
}

/* RIGHT PARTNER CARD */
.hero-right .partner-card {
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 180, 0, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 180, 0, 0.2);
}

.partner-header h3 {
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.partner-header h3 i {
    color: #ffb300;
}

.partner-subtitle {
    color: #a0c0ff;
    font-size: 0.98rem;
    margin-bottom: 30px;
}

.hero-right .highlight {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 180, 0, 0.3);
    backdrop-filter: blur(5px);
}

.hero-right .highlight i {
    color: #ffb300;
    font-size: 2.2rem;
}

.hero-right .highlight h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-right .highlight p {
    color: #ffb300;
    font-size: 0.85rem;
    font-weight: 500;
}

.partner-btn {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border: none;
    color: #0f172a;
    font-weight: 700;
    padding: 16px;
    border-radius: 14px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
}

.partner-btn:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.45);
    color: #0f172a;
}

.partner-commission-card {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 16px;
    padding: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 179, 0, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.commission-item i {
    font-size: 2rem;
    color: #ffb300;
}

.commission-item h4 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.commission-item p {
    color: #a0c0ff;
    font-size: 0.9rem;
}

.commission-footer {
    margin-top: 16px;
    font-size: 0.9rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid rgba(255, 179, 0, 0.3);
    padding-top: 16px;
}

.commission-footer i {
    color: #ffb300;
}

.partner-stats {
    text-align: center;
    margin-top: 25px;
    color: #ffb300;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 40px;
}

.partner-stats i {
    color: #ffb300;
}

/* ===== EMI CALCULATOR ===== */
.emi-section {
    padding: 80px 20px 100px;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-title h2 {
    color: var(--primary-blue);
    font-size: clamp(1.5rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.section-title p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.emi-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.04);
    max-width: 900px;
    margin: 0 auto;
}

.control-group {
    margin-bottom: 30px;
}

.control-group label {
    display: block;
    margin-bottom: 12px;
    color: var(--primary-blue);
    font-weight: 600;
}

.slider-container input[type="range"] {
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, var(--blue-primary) 0%, #4a9eff 100%);
    border-radius: 5px;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: white;
    border: 3px solid var(--blue-primary);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.value-display {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.result-card {
    background: linear-gradient(145deg, var(--primary-blue) 0%, #1e3a8a 100%);
    color: white;
    padding: 36px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 32px rgba(8, 39, 92, 0.25);
}

.result-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.emi-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 30px;
}

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

.detail {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail:last-child {
    border-bottom: none;
}

.detail span:last-child {
    color: var(--gold);
    font-weight: 600;
}

/* ===== BANKS SECTION ===== */
.banks-section {
    display: none;
    min-height: 400px;
    padding: 70px 0;
    background: var(--off-white);
}

.banks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bank-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.1);
    border-color: #1a73e8;
}

.bank-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.bank-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px dashed #eef2f6;
}

.bank-detail span:first-child {
    color: var(--text-light);
    font-size: 0.9rem;
}

.bank-detail span:last-child {
    color: var(--blue-primary);
    font-weight: 600;
}

.bank-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.feature-tag {
    background: var(--blue-soft);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== BANK CARD ACTIONS ===== */
.bank-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
    width: 100%;
}

.bank-apply-btn {
    flex: 1;
    background: #1a73e8;
    color: white;
    text-align: center;
    padding: 12px 8px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    order: 1;
}

.policy-btn {
    flex: 1;
    background: transparent;
    color: #1a73e8;
    border: 1px solid #1a73e8;
    padding: 12px 8px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    order: 2;
}

.policy-btn:hover {
    background: #e8f0fe;
    transform: translateY(-2px);
}

.bank-apply-btn:hover {
    background: #0d5bba;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26,115,232,0.3);
}

/* Policy Section */
.policy-section {
    margin-top: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    text-align: left;
    border-left: 4px solid #1a73e8;
    animation: slideDown 0.3s ease;
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-section h4 {
    color: #0a1f44;
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.policy-section h4 i {
    color: #1a73e8;
}

.interest-details {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
}

.interest-details h5 {
    color: #0a1f44;
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.interest-details h5 i {
    color: #ffb300;
}

.interest-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px dashed #eef2f6;
}

.interest-row:last-child {
    border-bottom: none;
}

.interest-row span:first-child {
    color: #64748b;
    font-size: 0.9rem;
}

.interest-row span:last-child {
    color: #1a73e8;
    font-weight: 600;
    font-size: 1rem;
}

.policy-details {
    background: white;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.policy-details h5 {
    color: #0a1f44;
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.policy-details h5 i {
    color: #22c55e;
}

.policy-details ul {
    list-style: none;
    padding: 0;
}

.policy-details li {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: #1e293b;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.policy-details li i {
    color: #22c55e;
    font-size: 0.9rem;
    margin-top: 2px;
}

.back-btn {
    background: var(--text-light);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    cursor: pointer;
    transition: 0.2s;
}

.back-btn:hover {
    background: #334155;
    transform: translateY(-2px);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.7);
    backdrop-filter: blur(6px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal {
    background: white;
    max-width: 500px;
    width: 90%;
    border-radius: 20px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlide 0.3s ease;
    overflow: hidden;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: var(--primary-blue);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
}

.close-modal:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

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

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

.icon-input i {
    position: absolute;
    left: 15px;
    color: var(--blue-primary);
    font-size: 1.1rem;
}

.icon-input input,
.icon-input select {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--gray-soft);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: 0.2s;
}

.icon-input input:focus,
.icon-input select:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.1);
}

.modal-btn {
    width: 100%;
    background: var(--blue-primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
}

.modal-btn:hover {
    background: #0d5bba;
    transform: translateY(-2px);
}

.secure-text {
    text-align: center;
    margin-top: 18px;
    color: var(--text-light);
    font-size: 0.8rem;
}

.secure-text i {
    color: var(--blue-primary);
}

.modal-footer {
    padding: 15px 20px;
    background: var(--blue-soft);
    text-align: center;
    border-top: 1px solid var(--gray-soft);
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: white;
    padding: 56px 0 24px;
    margin-top: 0;
    border-top: none;
}

.footer .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 32px 24px 8px;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.9fr;
    column-gap: 12px;
    row-gap: 48px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo{
    padding-right: 22px;
}

.footer-links{
    padding-left: 16px;
}

.footer-about{
    padding-left: 0;
}

.footer-contact{
    padding-left: 0;
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    white-space: nowrap;
}

.footer-logo h3 img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-inline-contact {
    margin-top: 16px;
}

.footer-inline-contact p {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.footer-inline-contact i {
    margin-right: 8px;
    color: #1a73e8;
}

/* Keep tagline in one line (desktop) */
.footer-logo p:first-of-type{
    white-space: nowrap;
}

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-links a,
.footer-contact p {
    color: #e2e8f0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: 0.2s;
}

.footer-about h4 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer-about a {
    color: #e2e8f0;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-about a:hover {
    color: #ffffff;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact i {
    color: #1a73e8;
    width: 20px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: none;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    font-size: 18px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background-color: #1a73e8;
    color: #fff;
}

/* ===== PARTNER PAGE ===== */
.partner-page .navbar {
    position: relative;
    background: white;
}

.partner-page .navbar .logo h1,
.partner-page .navbar .tagline {
    color: #0a1f44;
}