/* ==========================================================================
   SITE FOOTER (SHREEDHAM108)
   ========================================================================== */
.site-footer {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.65);
    padding: 60px 0 0;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    margin: 16px 0 0;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-logo-wrap {
    display: block;
    margin: 0 0 6px 24px;
}

.footer-logo {
    height: 84px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-social a {
    position: relative;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.footer-social a svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 17px;
    height: 17px;
    display: block;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: #fff;
}

.footer-social a.social-youtube:hover   { background: #ff0000; }
.footer-social a.social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social a.social-facebook:hover  { background: #1877f2; }

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 600;
    color: #fcd34d;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-col a {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #d97706;
}

.footer-contact {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    color: #d97706;
    margin-top: 2px;
}

.footer-bottom {
    text-align: center;
    padding: 22px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

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

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