.clone-footer {
    background: #ffd600;
    padding: clamp(48px, 6vw, 70px) clamp(32px, 6vw, 64px) clamp(36px, 6vw, 50px);
    font-family: 'Poppins', sans-serif;
    margin-top: clamp(60px, 8vw, 120px);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 360px) 1fr auto;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}

.footer-left-content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px 18px;
}

.footer-image {
    width: clamp(140px, 18vw, 180px);
    max-width: 100%;
    height: auto;
}

.footer-message {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 12px clamp(40px, 6vw, 70px);
    align-items: center;
}

.footer-links h4 {
    margin: 17px;
    font-size: 17px;
    font-weight: 700;
    color: #000;
    transition: 0.2s;
}

.footer-links a {
    text-decoration: none;
}

.footer-links h4:hover {
    transform: translateX(2px);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
    padding-right: 12px;
}

.footer-social img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s;
}

.footer-social a:hover img {
    transform: translateY(-2px);
}

.footer-bottom-text {
    margin: 40px auto 0;
    max-width: 1100px;
    text-align: center;
    font-size: 13px;
    line-height: 1.7;
    color: #000;
}

@media (max-width: 992px) {
    .clone-footer {
        padding: 56px 20px 40px;
    }
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        text-align: center;
        justify-items: center;
    }
    .footer-left {
        align-items: center;
    }
    .footer-links {
        width: 100%;
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        justify-items: center;
    }
    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .footer-left-content {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer-left-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .footer-social {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    .footer-message {
        font-size: 15px;
    }
    .footer-bottom-text {
        font-size: 12px;
    }
}
