footer {
    background-color: #396AFF;
    color: white;
    padding: 10px 0;
    text-align: left;
    width: 100%;
}

.amira-footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* تم تصحيحه */
    gap: 40px;
    padding: 20px 40px;
}

.amira-footer-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.amira-footer-section.about {
    padding: 5px;
}

.amira-footer-section.about p {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 15px;
    max-width: 300px;
    line-height: 1.6;
}

.amira-footer-section.links ul {
    list-style: none;
    padding: 0;
}

.amira-footer-section.links ul li {
    margin-bottom: 5px;
    text-align: left;
}

.amira-footer-section.links ul li a {
    color: white;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

.amira-footer-section.links ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s;
}

.amira-footer-section.links ul li a:hover::after {
    width: 100%;
}

.amira-logo-img {
    max-width: 100%;
    height: 75px;
    display: block;
    margin: 0 0 20px 0;
}

.amira-footer-section h1 {
    margin-bottom: 10px;
    font-size: 20px;
}

.amira-footer-section p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 15px;
}

.amira-footer-section .icon {
    width: 14px;
    height: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.amira-footer-bottom {
    padding: 10px 0;
    text-align: center;
    background-color: #3258c7;
    font-size: 14px;
}

/* ====== أيقونات السوشيال ميديا ====== */
.amira-socials {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.amira-social {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 2px solid currentColor;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

.amira-social:hover {
    background-color: white;
    color: #396AFF;
}

.amira-social svg {
    width: 22px;
    height: 22px;
}

.amira-social.youtube svg {
    width: 18px;
    height: 18px;
}

/* ====== الريسبونسف ====== */
@media (max-width: 768px) {
    .amira-footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
        text-align: center;
        align-items: center;
    }

    .amira-footer-section {
        align-items: center;
    }

    .amira-footer-section.about p {
        width: 100%;
        max-width: 100%;
    }

    .amira-logo-img {
        margin-left: 0;
    }

    .amira-footer-section.links ul li,
    .amira-footer-section.links ul li a {
        text-align: center;
    }

    .amira-socials {
        justify-content: center;
    }
}
