
/* Footer */
.site-footer {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 20px;
    margin-top: 60px;
    font-size: 0.95rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.footer-brand-title {
    font-weight: 700;
    color: #fff;
    font-size: 1.9rem;
    line-height: 1.2;
}

.footer-about-main {
    flex: 1;
    max-width: 760px;
}

.footer-about p {
    line-height: 1.8;
    margin: 0;
    color: #a0aec0;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram colors */
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.social-icon.fb:hover {
    background: #3b5998;
}

.social-icon.yt:hover {
    background: #ff0000;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #718096;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 18px;
    }

    .footer-content {
        gap: 28px;
        margin-bottom: 28px;
    }

    .footer-about {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .footer-brand-title {
        font-size: 1.35rem;
    }
}
