* {
    font-family: "Satoshi", sans-serif;
}

footer {
    padding: 80px 10%;
    color: #fff;
    background-color: black;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-link {
    font-size: 15px;
    color: #bfbfbf;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #00a651;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #bfbfbf;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.contact-icon {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 6px;

    padding: 5px;
    display: flex; /* ← important */
    align-items: center; /* vertical */
    justify-content: center; /* orizontal */
    flex-shrink: 0;
}

/* Stiluri pentru numerele de telefon din footer */
.footer-phone-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
}

.footer-phone-icon {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 6px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-phone-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-phone-link {
    font-size: 15px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-phone-link:hover {
    color: #00a651;
}

/* Stiluri pentru email și adresă din footer */
.footer-email-link,
.footer-address-link {
    font-size: 15px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-email-link:hover,
.footer-address-link:hover {
    color: #00a651;
}

.footer-bottom {
    background: white;
    color: #333;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center; /* vertical */
    justify-content: center; /* orizontal */
    gap: 20%;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-link {
    font-size: 13px;
    color: #666666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal-link:hover {
    color: #01784B;
    text-decoration: underline;
}

.footer-legal-separator {
    color: #cccccc;
    font-size: 13px;
}

.social-media {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.social-media a {
    background-color: #DBFAE0;
    width: 50px;
    height: 50px;
    border-radius: 50%;

    /* Cele 3 linii esențiale pentru centrare: */
    display: flex;
    align-items: center; /* vertical */
    justify-content: center; /* orizontal */

    transition: all 0.25s ease;
}

.social-media a:hover {
    background-color: #c8f0d2; /* sau orice altă nuanță mai închisă */
    transform: scale(1.08);
}

/* Curățăm ce nu mai ai nevoie */
.social-media a svg {
    width: 34px; /* cel mai folosit pentru 50px container */
    height: 34px;
}

.footer-bottom p {
    margin: 0;
    font-size: 15px;
}

@media (max-width: 1050px) {
    footer {
        padding: 50px 6% 40px;
    }

    .footer-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 70px;
        margin-bottom: 40px;
    }

    .footer-column:nth-child(1),
    .footer-column:nth-child(2),
    .footer-contact {
        grid-column: 1;
    }

    .footer-title {
        font-size: 1.6em;
        margin-bottom: 15px;
    }

    .footer-link {
        font-size: 1em;
        margin-bottom: 10px;
    }

    .contact-item {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-logo {
        width: 120px;
    }

    .footer-bottom {
        flex-direction: column;
        padding: 25px 15px;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.5;
    }

    .social-media {
        gap: 15px;
        justify-content: center;
    }

    .social-media a {
        width: 45px;
        height: 45px;
    }

    .social-media a svg {
        width: 28px;
        height: 28px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
    }
}
