.site-footer {
    background: url("../images/bgs/bg-2.jpg") center/cover no-repeat;
    color: #fff;
    padding: 30px 10px 15px;
    font-family: 'Poppins', Arial, sans-serif;
    position: relative;
}

/* container */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* left block (logo + desc) */
.footer-left {
    text-align: left;
}

.footer-title {
    font-size: 28px;
    font-weight: 700;
    margin: 5px 0;
    color: #ffae42;
    letter-spacing: 1px;
}

.footer-desc {
    font-size: 15px;
    font-style: italic;
    color: #f8f8f8;
}

/* company info */
.about-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-block li {
    margin-bottom: 2px;
    font-size: 14px;
    line-height: 1.5;
}

.about-block strong {
    color: #fff;
}

/* right block (socials) */
.footer-right {
    text-align: right;
}

.footer-right h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #ffae42;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-links a img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a img:hover {
    transform: scale(1.1);
    filter: brightness(0.8) sepia(1) hue-rotate(10deg) saturate(3);
}

/* bottom copyright */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding-top: 15px;
    margin-top: 20px;
    font-size: 13px;
    color: #ddd;
}