﻿:root {
    --stripe-purple: #635bff;
    --stripe-purple-light: #7c3aed;
    --stripe-purple-dark: #5b21b6;
    --stripe-blue: #0070f3;
    --stripe-blue-light: #00d4ff;
    --stripe-green: #00d924;
    --stripe-orange: #ff5722;
    --stripe-gray-50: #f8fafc;
    --stripe-gray-100: #f1f5f9;
    --stripe-gray-200: #e2e8f0;
    --stripe-gray-300: #cbd5e1;
    --stripe-gray-400: #94a3b8;
    --stripe-gray-500: #64748b;
    --stripe-gray-600: #475569;
    --stripe-gray-700: #334155;
    --stripe-gray-800: #1e293b;
    --stripe-gray-900: #0f172a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--stripe-gray-50);
    color: var(--stripe-gray-800);
    line-height: 1.6;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--stripe-gray-200);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--stripe-purple) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: var(--stripe-gray-700) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: var(--stripe-purple) !important;
    }

.btn-primary {
    background: linear-gradient(135deg, var(--stripe-purple), var(--stripe-purple-light));
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(99, 91, 255, 0.4);
    }

.btn-outline-primary {
    border: 2px solid var(--stripe-purple);
    color: var(--stripe-purple);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background: var(--stripe-purple);
        border-color: var(--stripe-purple);
        transform: translateY(-1px);
    }

.btn-outline-dark {
    border: 2px solid var(--stripe-gray-900);
    color: var(--stripe-gray-900);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btn-outline-dark:hover {
        background: var(--stripe-gray-900);
        border-color: var(--stripe-gray-900);
        transform: translateY(-1px);
    }


.support-hero {
    background: linear-gradient(135deg, var(--stripe-gray-50) 0%, rgba(99, 91, 255, 0.05) 100%);
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

    .support-hero h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: var(--stripe-gray-900);
    }

    .support-hero p {
        font-size: 1.125rem;
        max-width: 600px;
        margin: 0 auto;
        color: var(--stripe-gray-600);
    }

.support-content {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.support-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

    .support-card i {
        font-size: 2rem;
        color: #0f172a;
        margin-bottom: 1rem;
    }

    .support-card h3 {
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
    }

    .support-card p {
        font-size: 0.95rem;
        color: #555;
    }






/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand svg {
        width: 38px;
        height: 38px;
    }

    .brand-text {
        font-size: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .loan-dashboard {
        max-width: 300px;
    }
}


@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .feature-card {
        padding: 30px;
    }
}
