.nav-link {
    color: var(--ink);
    font-weight: 500;
    padding: 8px 10px;

    transition: var(--transition);
}

.nav-link:hover {
    color: var(--brand);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;

    min-width: 240px;

    background: #fff;

    border-radius: 14px;

    border: 1px solid var(--line);

    padding: 10px 0;

    box-shadow:
        0 12px 40px rgba(0,0,0,.08);
}

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

.dropdown-item {
    display: block;

    padding: 10px 16px;

    color: var(--ink);

    transition: var(--transition);
}

.dropdown-item:hover {
    background: #f5f7fb;
    color: var(--brand);
}

.kpi-card {
    padding: 24px;

    background: #fff;

    border-radius: 18px;

    border: 1px solid var(--line);

    height: 100%;

    transition: var(--transition);
}

.kpi-card:hover {
    transform: translateY(-3px);
}

.btn-primary {
    border-radius: 12px;
}

.btn-success {
    border-radius: 12px;
}

.breadcrumb {
    font-size: .95rem;
}

.breadcrumb a {
    color: var(--brand);
}
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    background: #fff;
    border-top: 1px solid #e5e7eb;

    padding: 12px;

    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}

.mobile-cta .btn {
    height: 52px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
}

.site-logo {

    height: 42px;
    width: auto;

    object-fit: contain;

}

.form-check-label {
    line-height: 1.4;
}

.form-check-label a {
    text-decoration: underline;
}

.hero-image-wrapper {
    position: relative;
}

.hero-section {

    border-radius: 24px;

    min-height: 420px;

    display: flex;

    align-items: center;

}


.hero-info-card {

    background: rgba(255,255,255,0.92);

    border-radius: 20px;

    backdrop-filter: blur(8px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

}


@media (max-width: 991px) {

    .hero-section {

        min-height: auto;

    }

}

