.pro-max-footer {
    position: relative;
    padding: 120px 0 40px;
    background: #000;
    color: #fff;
    overflow: hidden;
}

/* Video Background Styling */
.footer-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.footer-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) brightness(0.3); /* Jo aapne kaha: Blurry + Dark */
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 10%, transparent); /* Smooth blend */
}

.footer-content { position: relative; z-index: 10; }

/* Footer Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-label {
    display: block;
    color: var(--primary);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-info {
    font-size: 1.1rem;
    font-weight: 200;
    line-height: 1.6;
    opacity: 0.8;
}

/* Brand Column */
.brand-col .brand-name { font-size: 2rem; margin-bottom: 15px; }
.footer-tagline {
    font-weight: 200;
    opacity: 0.5;
    max-width: 300px;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.social-links { display: flex; gap: 20px; }
.social-icon {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}
.social-icon:hover { opacity: 1; border-color: var(--primary); color: var(--primary); }

/* Bottom Credit */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Very thin line */
    font-size: 0.65rem;
    letter-spacing: 2px;
    opacity: 0.5;
}

.designer-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.designer-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--primary);
}

/* --- MOBILE RESPONSIVE (100%) --- */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .brand-col .footer-tagline { margin: 0 auto 30px; }
    .social-links { justify-content: center; }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}