.site-footer {
    background: #0f172a;
    color: #e2e8f0;
    margin-top: 60px;
}

.footer-top {
    padding: 50px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 30px;
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-column h3 {
    font-size: 1.4rem;
}

.footer-column h4 {
    font-size: 1rem;
}

.footer-description {
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: #cbd5e1;
}

.footer-column p,
.footer-column a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #ffffff;
}

.youtube-box img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    display: block;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.social-icons a {
    display: inline-block;
    padding: 8px 12px;
    background: #1e293b;
    border-radius: 6px;
    font-size: 0.88rem;
    margin-bottom: 0;
}

.social-icons a:hover {
    background: #334155;
}

.footer-subheading {
    margin-top: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    background: #0b1220;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.footer-bottom a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom span {
    margin: 0 8px;
    color: #64748b;
}

.footer-contact-link {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-contact-link:hover {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .youtube-box img {
        max-width: 100%;
    }
}
