
.pro-footer {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding-top: 4rem;
    margin-top: 4rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo img {
    border-radius: 50%;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--lemon-dark);
    padding-right: 5px;
}

.stats-box {
    background: var(--lemon);
    padding: 1.5rem;
    border-radius: var(--radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--dark-light);
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(0,0,0,0.1);
}

.contact-text {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.btn-support {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-support:hover {
    background: var(--dark-light);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.soc-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #F1F5F9;
    overflow: hidden;
}

.soc-icon:hover {
    transform: translateY(-3px);
}

.soc-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-bottom {
    background: #F8FAFC;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--gray);
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .col-about {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .stats-box {
        flex-direction: column;
        gap: 1rem;
    }
    .stat-divider {
        width: 30px;
        height: 1px;
    }
}