@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    /* Cooler, crisper off-white */
    --text-primary: #0f172a;
    /* Deep slate for high contrast */
    --text-secondary: #475569;
    /* Balanced slate for secondary text */
    --accent-blue: #1e3a8a;
    /* Deep professional corporate blue */
    --accent-gold: #f97316;
    /* Vibrant orange matching reference CTA */
    --accent-gold-hover: #ea580c;
    /* Deepened orange for hover state */
    --border-color: #e2e8f0;
}

html,
body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

main {
    flex: 1;
}

/* Navbar Customizations */
.navbar {
    background-color: #1e4178 !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem !important;
    border-radius: 0.375rem;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

/* CTA Button */
.btn-cta {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
    color: #ffffff !important;
    font-weight: 700;
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary-cta {
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary-cta:hover {
    background-color: var(--accent-blue);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(14, 165, 233, 0.25);
}

/* Footer Customizations */
.footer {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.footer h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.875rem;
}

/* Custom Utilities for Homepage */
.bg-darker {
    background-color: var(--bg-secondary);
}

.hero-bg {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 32px 32px;
    background-position: center center;
}

.stat-card {
    background: var(--bg-primary) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-radius: 1rem !important;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}