/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: white;
    padding: 16px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

    .cookie-banner.show {
        transform: translateY(0);
    }

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

    .cookie-text i {
        font-size: 1.5rem;
        color: var(--secondary);
    }

    .cookie-text p {
        margin: 0;
        font-size: 0.85rem;
    }

.cookie-buttons {
    display: flex;
    gap: 10px;
}

    .cookie-buttons .btn-sm {
        padding: 6px 16px;
        font-size: 0.8rem;
    }

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: white;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .footer-brand i {
        font-size: 2rem;
        color: var(--secondary);
    }

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Footer Links - Vertical Layout (FIXED) */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 12px;
        display: block;
        width: 100%;
    }

    .footer-links a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.9rem;
        display: inline-block;
    }

        .footer-links a:hover {
            color: var(--secondary);
        }

/* Contact Info - Vertical Layout */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    width: 100%;
}

.contact-info i {
    width: 20px;
    color: var(--secondary);
}

.contact-info span,
.contact-info a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-decoration: none;
}

    .contact-info a:hover {
        color: var(--secondary);
    }

.app-buttons .btn-download {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

    .app-buttons .btn-download i {
        font-size: 1.3rem;
    }

    .app-buttons .btn-download small {
        font-size: 0.7rem;
        display: block;
        line-height: 1.2;
    }

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Loader */
.fullscreen-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,25,47,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    text-align: center;
}

.legal-loader {
    text-align: center;
}

.scales-animation {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto;
}

.scale {
    position: absolute;
    width: 40px;
    height: 8px;
    background: var(--secondary);
    border-radius: 4px;
    animation: swing 1s ease-in-out infinite;
}

    .scale.left {
        left: 10px;
        top: 20px;
        transform-origin: right center;
    }

    .scale.right {
        right: 10px;
        top: 20px;
        transform-origin: left center;
        animation-delay: 0.5s;
    }

.pillar {
    position: absolute;
    width: 4px;
    height: 40px;
    background: var(--secondary);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

@keyframes swing {
    0%, 100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }
}

.loader-text {
    color: white;
    margin-top: 30px;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
    }

    .footer {
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        text-align: center;
    }

        .footer-links li {
            display: block;
            text-align: center;
        }

    .contact-info li {
        justify-content: center;
    }
}
