/* ─────────────────────────────────────────────
   Footer — Premium Dark Design
   ───────────────────────────────────────────── */

.footer-dark {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    color: #94a3b8;
    font-size: 0.875rem;
    padding: 4.5rem 0 2rem;
    position: relative;
}

.footer-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

/* ── Column Headings (h3 for SEO, styled small) ── */

.footer-dark h3 {
    color: #e2e8f0;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    letter-spacing: 0.12em;
    border-bottom: 2px solid rgba(99, 102, 241, 0.25);
    line-height: 1.3;
    display: block;
}

/* ── Link Lists ── */

.footer-dark ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.footer-dark ul li {
    margin-bottom: 0.55rem;
}

.footer-dark ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    font-size: 0.82rem;
    line-height: 1.5;
    display: inline-block;
}

.footer-dark ul li a:hover {
    color: #e2e8f0;
    padding-left: 3px;
}

/* ── Footer Bottom ── */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 3.5rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.82rem;
    color: #64748b;
}

/* ── Policy Links ── */

.footer-links-inline {
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem 1.5rem;
}

.footer-links-inline a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.82rem;
    transition: color 0.2s ease;
}

.footer-links-inline a:hover {
    color: #fff;
}

/* ── Language Bar ── */

.footer-lang-bar {
    margin-bottom: 1rem;
    font-size: 0.82rem;
    color: #475569;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.15rem;
}

.footer-lang-link {
    color: #94a3b8;
    text-decoration: none;
    padding: 0.2rem 0.35rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.footer-lang-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.footer-lang-link.active {
    color: #fff;
    font-weight: 700;
}

/* ── Copyright ── */

.footer-bottom .mt-3 {
    color: #475569;
    font-size: 0.78rem;
}

/* ── Responsive ── */

@media (max-width: 767.98px) {
    .footer-dark {
        padding: 3rem 0 1.5rem;
    }

    .footer-dark h3 {
        font-size: 0.65rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}

/* ── Cookie Banner Floating Icon ── */
.floating-cookie-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #f8f9fa;
    color: #4f46e5;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.floating-cookie-icon:hover {
    transform: scale(1.1);
    background-color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.floating-cookie-icon svg {
    width: 24px;
    height: 24px;
}

/* ── Cookie Banner Wrapper Styling ── */
.cookie-banner-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
    z-index: 10000;
    padding: 1.5rem 0;
    border-top: 4px solid #4f46e5;
}

.cookie-banner-wrapper.hidden {
    display: none !important;
}

.cookie-banner-content {
    margin-bottom: 1rem;
}

.cookie-banner-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 700;
}

.cookie-banner-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #475569;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

@media (min-width: 992px) {
    .cookie-banner-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    .cookie-banner-content {
        margin-bottom: 0;
        flex-grow: 1;
    }
    .cookie-banner-actions {
        flex-shrink: 0;
    }
}