.footer {
    background: #231F20;
    padding: 30px 20px;
    color: white;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 31px;
    height: 31px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover { transform: translateY(-2px); }

.footer-address-bold {
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 8px;
}

.footer-address-regular {
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 8px;
}

.footer-copyright {
    color: #959EAE;
    font-size: 14px;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 20px;
}

.footer-link {
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover { color: #b6ff52; }

.footer-support {
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 34px;
    width: auto;
    margin-bottom: 15px;
}

@media (max-width: 767.98px) {
    .footer {
        padding: 20px 15px;
        border-radius: 20px 20px 0 0;
    }
    
    .row > div { margin-bottom: 25px; }
    
    .row > div:last-child { margin-bottom: 0; }
    
    .social-icons { gap: 10px; }
    
    .social-icon {
        width: 27px;
        height: 27px;
    }
    
    .social-icon i { font-size: 14px; }
    
    .footer-logo { height: 28px; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .footer { padding: 25px 30px; }
    
    .row { gap: 30px 0; }
    
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .social-icons { gap: 15px; }
    
    .social-icon {
        width: 29px;
        height: 29px;
    }
    
    .footer-logo img { height: 30px; }
}

@media (min-width: 992px) {
    .footer {
        padding: 40px 20px;
        border-radius: 30px 30px 0 0;
    }
    
    .social-icons { gap: 15px; }
    
    .social-icon {
        width: 31px;
        height: 31px;
    }
    
    .social-icon i { font-size: 16px; }
    
    .footer-logo img { height: 35px; }
    
    .row {
        align-items: flex-start;
        justify-content: space-between;
    }
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.d-flex { display: flex; }

.flex-column { flex-direction: column; }

.gap-3 { gap: 1rem; }

.gap-4 { gap: 1.5rem; }

.mb-4 { margin-bottom: 1.5rem; }

.img-fluid {
    max-width: 100%;
    height: auto;
}

