/* Footer Styles - Enhanced Aesthetics */
.site-footer {
    background-color: #05134b;
    color: #ffffff;
    padding: 40px 8% 60px;
    font-family: 'BraindYerevan', Arial, sans-serif;
    text-transform: uppercase;
    /* ALL CAPS as requested */
}

.footer-top {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.footer-logo-centered {
    max-width: 150px;
    /* Slightly larger logo */
    height: auto;
}

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

.footer-section h4 {
    color: #ffffff;
    font-size: 18px;
    /* Larger headings */
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

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

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a,
.footer-section p,
.footer-section span {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    /* Larger content text */
    line-height: 1.6;
    display: block;
    letter-spacing: 0.5px;
}

.footer-section ul li a:hover {
    color: #f4b400;
}

.footer-socials {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    margin-top: 40px;
    /* More space from content */
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle line for balance */
}

.footer-social-link,
.footer-social-link i {
    color: #ffcc00 !important;
    /* Brighter yellow with priority */
    font-size: 28px !important;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.footer-social-link:hover {
    transform: scale(1.2);
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 40px;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul li a,
    .footer-section p,
    .footer-section span {
        text-align: center;
    }
}