/* =========================================
   PREMIUM CINEMATIC FOOTER STYLES
   ========================================= */

/* Wrapper for the Reviews (Pre-Footer) */
.nmp-footer-reviews-wrapper {
    background: #f4f4f4;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Main Footer Container */
.nmp-cinema-footer {
    background-color: var(--dark, #000000);
    color: #fff;
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body, sans-serif);
}

/* The "Red Carpet" Top Border */
.nmp-footer-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--dark, #000) 0%, var(--primary, #f90403) 50%, var(--dark, #000) 100%);
    box-shadow: 0 0 20px rgba(249, 4, 3, 0.5);
}

/* Grid Layout */
.nmp-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* Headings */
.nmp-footer-heading {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.nmp-footer-heading::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--primary, #f90403);
    margin-top: 8px;
}

/* Column 1: Brand */
.nmp-footer-logo {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
}
.nmp-footer-logo img { max-width: 180px; }

.nmp-footer-tagline {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Social Icons */
.nmp-footer-socials { display: flex; gap: 15px; }
.nmp-footer-socials a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}
.nmp-footer-socials a:hover {
    background: var(--primary, #f90403);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(249, 4, 3, 0.5);
    border-color: var(--primary, #f90403);
}

/* Column 2: Navigation */
.nmp-footer-nav ul { list-style: none; padding: 0; margin: 0; }
.nmp-footer-nav li { margin-bottom: 12px; }
.nmp-footer-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: 0.3s;
    position: relative;
    padding-left: 0;
}
.nmp-footer-nav a:hover {
    color: var(--primary, #f90403);
    padding-left: 5px;
}

/* Column 3: Contact */
.nmp-footer-contact { list-style: none; padding: 0; }
.nmp-footer-contact li {
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 15px;
}
.nmp-footer-contact i { color: var(--primary, #f90403); width: 20px; text-align: center; }

/* Column 4: Newsletter */
.nmp-footer-newsletter {
    position: relative;
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.nmp-footer-newsletter input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 10px 0;
    width: 100%;
    outline: none;
}
.nmp-footer-newsletter button {
    background: transparent;
    border: none;
    color: var(--primary, #f90403);
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
}
.nmp-footer-newsletter button:hover { transform: translateX(5px); color: #fff; }

/* Bottom Bar */
.nmp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.nmp-credits a { color: rgba(255,255,255,0.5); margin: 0 5px; }
.nmp-credits a:hover { color: var(--primary, #f90403); }
.nmp-credits .sep { margin: 0 5px; opacity: 0.3; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .nmp-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .nmp-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .nmp-footer-heading::after { margin: 8px auto 0; }
    .nmp-footer-socials { justify-content: center; }
    .nmp-footer-contact li { justify-content: center; }
    
    .nmp-footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}