/* ==== FOOTER LAYOUT ==== */
.footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;

    /* Animation defaults */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* ==== FOOTER COLUMNS ==== */
.footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #bbb;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* ==== SOCIAL ICONS ==== */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #222;
    border-radius: 50%;
    color: #fff;
    font-size: 14px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff9800;
    transform: scale(1.1);
}

/* ==== LANGUAGE SELECTOR ==== */
.language-selector select {
    margin-top: 15px;
    padding: 5px;
    border: none;
    border-radius: 4px;
    background-color: #222;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.language-selector select:focus {
    outline: none;
    background-color: #333;
}

/* ==== FOOTER BOTTOM ==== */
.footer{}