/* Footer Social Media Buttons - Extracted from footer.php */

/* Font Application */
.dgm-footer-area,
.dgm-footer-area p,
.dgm-footer-area a,
.dgm-footer-area li,
.dgm-footer-area h3,
.dgm-footer-area span,
.dgm-footer-area div {
    font-family: 'Urbanist', sans-serif !important;
    letter-spacing: 0.02em;
}

/* Social Media Icons - 5 Column Grid Layout */
.dgm-footer-widget-social {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    padding: 25px 0;
    max-width: 320px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    padding: 0;
    margin: 0;
}

.social-btn:hover {
    background: #ffd700;
    border-color: #ffd700;
    color: #000 !important;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.social-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
}

.social-btn:hover i {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dgm-footer-widget-social {
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
        max-width: 100%;
    }

    .social-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .dgm-footer-widget-social {
        grid-template-columns: repeat(4, 1fr);
    }
}