:root { --nmp-primary: #f90403; --nmp-secondary: #fc9707; --nmp-white: #fff; --nmp-black: #000; }
.nmp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.nmp-section { padding: 80px 0; }
.nmp-hero-section { position: relative; height: 100vh; background: #000; overflow: hidden; display:flex; align-items:center; justify-content:center; }
.nmp-hero-section iframe { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100vw; height: 100vh; pointer-events: none; min-width: 177.77vh; }
.nmp-video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2; }
.nmp-hero-content { position: relative; z-index: 3; color: white; text-align: center; }
.nmp-hero-content h1 { font-size: 4rem; text-transform: uppercase; }
.nmp-card { padding: 40px; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.nmp-glass-card { background: rgba(255,255,255,0.9); border-left: 5px solid var(--nmp-primary); }
.nmp-media { background: var(--nmp-black); color: white; }
.nmp-media-card { position: relative; border-radius: 10px; overflow: hidden; }
.nmp-media-card img { width: 100%; display: block; }
.nmp-play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 3rem; }
.nmp-news-card { display: flex; background: white; margin: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.nmp-news-img { flex: 1; background-size: cover; min-height: 250px; }
.nmp-news-content { flex: 1; padding: 30px; }
.nmp-cta { background: linear-gradient(135deg, var(--nmp-primary), var(--nmp-secondary)); color: white; text-align: center; }
.nmp-reviews-footer { background: #1a1a1a; padding: 40px 0; color: white; text-align: center; }
.nmp-review-card { background: #333; padding: 20px; border-radius: 10px; }
.nmp-stars { color: var(--nmp-secondary); }
.nmp-btn { padding: 15px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; text-transform: uppercase; display: inline-block; }
.nmp-btn-main { background: var(--nmp-primary); color: white; }
.nmp-btn-white { background: white; color: var(--nmp-primary); }

/* --- Event Module Styles --- */
.nmp-event-card {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
    border-left: 4px solid var(--nmp-primary);
    background: #fff;
}

.nmp-event-date {
    background: var(--nmp-black);
    color: var(--nmp-white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.nmp-event-date .day { font-size: 1.8rem; font-weight: bold; display: block; line-height: 1; }
.nmp-event-date .month { font-size: 0.9rem; text-transform: uppercase; }

.nmp-meta-row {
    color: var(--nmp-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.nmp-btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* --- Pricing Module --- */
.nmp-pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.nmp-price-card {
    background: #fff;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #eee;
}

.nmp-price-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--nmp-primary);
    z-index: 2;
}

.nmp-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--nmp-primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
}

.nmp-price-header {
    background: var(--nmp-black);
    color: white;
    padding: 30px;
    text-align: center;
}

.nmp-price-header h3 { margin: 0; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 2px; }
.nmp-price-header .price { font-size: 2.5rem; font-weight: 800; margin-top: 10px; color: var(--nmp-primary); }

.nmp-price-body { padding: 30px; }
.nmp-price-body ul { list-style: none; padding: 0; margin: 0; }
.nmp-price-body li { margin-bottom: 15px; color: #555; }
.nmp-price-body li i { color: var(--nmp-secondary); margin-right: 10px; }

.nmp-price-footer { padding: 0 30px 30px; text-align: center; }

/* --- Forms Module --- */
.nmp-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.nmp-theme-dark { background: #1a1a1a; color: white; border-top: 4px solid var(--nmp-primary); }
.nmp-theme-light { background: #fff; color: #333; border-top: 4px solid var(--nmp-black); }

.nmp-form h3 { text-align: center; margin-bottom: 30px; text-transform: uppercase; }

.nmp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.nmp-field { margin-bottom: 20px; }
.nmp-field label { display: block; margin-bottom: 8px; font-weight: bold; font-size: 0.9rem; letter-spacing: 1px; }

.nmp-form input[type="text"], 
.nmp-form input[type="email"], 
.nmp-form input[type="password"],
.nmp-form input[type="number"],
.nmp-form select, 
.nmp-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: rgba(255,255,255,0.05); /* Works for dark theme too */
    color: inherit;
    font-size: 1rem;
}

.nmp-form input:focus { outline: none; border-color: var(--nmp-primary); }

.nmp-file-upload {
    border: 2px dashed #444;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}
.nmp-file-upload:hover { border-color: var(--nmp-primary); }
.nmp-file-upload input { position: absolute; width: 100%; height: 100%; top: 0; left: 0; opacity: 0; cursor: pointer; }

.nmp-rating-group { display: flex; gap: 15px; }
.nmp-rating-group label { background: #333; padding: 10px 15px; border-radius: 4px; cursor: pointer; }
.nmp-rating-group input:checked + label { background: var(--nmp-primary); }

.nmp-block { width: 100%; }

.nmp-alert { padding: 15px; border-radius: 4px; margin-bottom: 20px; text-align: center; font-weight: bold; }
.nmp-msg-success { background: #d4edda; color: #155724; }
.nmp-msg-error { background: #f8d7da; color: #721c24; }


/* Horizontal Grid for Events (3 columns) */
.nmp-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 columns */
    gap: 30px;
}
@media (max-width: 992px) {
    .nmp-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .nmp-grid-horizontal { grid-template-columns: 1fr; } /* Stack on mobile */
}

/* Section Header for News */
.nmp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* --- SURVEY BASE --- */
.nmp-survey-wrapper {
    max-width: 700px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 12px;
    transition: 0.3s;
}
.nmp-field-group { margin-bottom: 25px; }
.nmp-label { display: block; font-weight: bold; margin-bottom: 8px; }
.nmp-input { width: 100%; padding: 12px; border-radius: 6px; border: 1px solid #ccc; }
.nmp-submit-btn { width: 100%; padding: 15px; border: none; font-weight: bold; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; }

/* Star Rating Logic (Reverse for CSS hover effects) */
.nmp-rating-stars { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 5px; }
.nmp-rating-stars input { display: none; }
.nmp-rating-stars label { font-size: 1.5rem; color: #ccc; cursor: pointer; transition: 0.2s; }
.nmp-rating-stars label:hover, .nmp-rating-stars label:hover ~ label,
.nmp-rating-stars input:checked ~ label { color: #f90403; }

/* --- TEMPLATE 1: MODERN MINIMAL (Light) --- */
.nmp-style-minimal {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.nmp-style-minimal .nmp-header h3 { color: #000; }
.nmp-style-minimal .nmp-input { background: #f9f9f9; border: 1px solid #e1e1e1; color: #333; }
.nmp-style-minimal .nmp-input:focus { background: #fff; border-color: #000; outline: none; }
.nmp-style-minimal .nmp-submit-btn { background: #000; color: #fff; }
.nmp-style-minimal .nmp-submit-btn:hover { background: #333; }

/* --- TEMPLATE 2: CINEMA (Dark) --- */
.nmp-style-dark {
    background: #111;
    color: #fff;
    border: 1px solid #222;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.nmp-style-dark .nmp-label { color: #ccc; }
.nmp-style-dark .nmp-input { background: #222; border: 1px solid #333; color: #fff; }
.nmp-style-dark .nmp-input:focus { border-color: #f90403; outline: none; }
.nmp-style-dark .nmp-submit-btn { background: #f90403; color: #fff; }
.nmp-style-dark .nmp-submit-btn:hover { background: #d00303; box-shadow: 0 0 15px rgba(249, 4, 3, 0.4); }

/* --- TEMPLATE 3: GLASSMORPHISM (Overlay) --- */
/* Note: This works best if the section behind it has a background image */
.nmp-style-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    color: white; /* Assumes dark background */
}
/* If used on light background, use dark glass */
.site-main .nmp-style-glass { color: #000; } /* Override if in main text flow */

.nmp-style-glass .nmp-input {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #000;
}
.nmp-style-glass .nmp-input::placeholder { color: #555; }
.nmp-style-glass .nmp-submit-btn {
    background: rgba(255,255,255,0.7);
    color: #000;
}
.nmp-style-glass .nmp-submit-btn:hover { background: white; }

/* =========================================
   CONTACT PAGE (Split Layout)
   ========================================= */
.nmp-contact-container {
    display: flex;
    max-width: 1100px;
    margin: 60px auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15); /* Premium depth shadow */
    border: 1px solid rgba(0,0,0,0.05);
}

/* --- LEFT COLUMN: Info Panel (Dark Cinema Style) --- */
.nmp-contact-info {
    flex: 1;
    background: var(--dark); /* Uses theme black */
    color: #fff;
    padding: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Decorative background circle for cinematic flair */
.nmp-contact-info::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: var(--primary); /* Uses theme red */
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.nmp-contact-info h3 { 
    color: #fff; 
    font-size: 2rem; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.nmp-contact-info p { 
    color: rgba(255,255,255,0.7); 
    margin-bottom: 40px; 
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

/* Contact Details List */
.nmp-info-list { 
    display: flex; 
    flex-direction: column; 
    gap: 35px; 
    position: relative;
    z-index: 2;
}

.nmp-info-item { 
    display: flex; 
    align-items: flex-start; 
    gap: 20px; 
}

.nmp-info-item i { 
    font-size: 1.2rem; 
    color: var(--primary); 
    background: rgba(255,255,255,0.1); /* Glassmorphism icon bg */
    width: 45px; 
    height: 45px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: 0.3s;
}

.nmp-info-item:hover i {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(249, 4, 3, 0.4); /* Glow effect */
}

.nmp-info-item div {
    display: flex;
    flex-direction: column;
}

.nmp-info-item strong { 
    display: block; 
    font-size: 0.8rem; 
    margin-bottom: 5px; 
    color: rgba(255,255,255,0.5); 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    font-weight: 600;
}

.nmp-info-item span { 
    display: block; 
    font-size: 1.1rem; 
    line-height: 1.4; 
    color: white;
    font-weight: 500;
}

/* Social Links */
.nmp-social-links { 
    margin-top: 60px; 
    display: flex; 
    gap: 15px; 
    position: relative;
    z-index: 2;
}

.nmp-social-links a {
    width: 45px; 
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.nmp-social-links a:hover { 
    background: var(--primary); 
    transform: translateY(-5px); 
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(249, 4, 3, 0.3);
}

/* --- RIGHT COLUMN: Form Wrapper --- */
.nmp-contact-form-wrapper {
    flex: 1.4;
    padding: 60px;
    background: #fff;
}

/* Mobile Header (Hidden on Desktop) */
.nmp-form-header-mobile { display: none; margin-bottom: 30px; text-align: center; }
.nmp-form-header-mobile h3 { font-size: 1.8rem; color: var(--dark); }

/* Form Fields Styling (Ensuring consistent look) */
.nmp-contact-form-wrapper label {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    display: block;
    font-size: 0.9rem;
}

.nmp-contact-form-wrapper input,
.nmp-contact-form-wrapper select,
.nmp-contact-form-wrapper textarea {
    background: #f8f8f8;
    border: 2px solid #eee;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    transition: 0.3s;
    font-size: 1rem;
    color: #333;
}

.nmp-contact-form-wrapper input:focus,
.nmp-contact-form-wrapper select:focus,
.nmp-contact-form-wrapper textarea:focus {
    background: #fff;
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(249, 4, 3, 0.1);
}

.nmp-contact-form-wrapper textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
.nmp-contact-form-wrapper .nmp-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .nmp-contact-container { 
        flex-direction: column; 
        margin: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nmp-contact-info { 
        padding: 40px; 
    }
    
    .nmp-contact-form-wrapper { 
        padding: 40px; 
    }
    
    .nmp-form-header-mobile { display: block; }
}

@media (max-width: 480px) {
    .nmp-contact-info, .nmp-contact-form-wrapper { padding: 30px 20px; }
    
    .nmp-info-item i { width: 35px; height: 35px; font-size: 1rem; }
    .nmp-info-item span { font-size: 1rem; }
    
    .nmp-social-links { justify-content: center; }
    .nmp-contact-info { text-align: center; }
    .nmp-info-item { text-align: left; } /* Keep list aligned left or center if preferred */
}

/* --- CINEMATIC FORM STYLES (Dark Theme) --- */
.nmp-theme-dark {
    background: #0a0a0a;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid #222;
    color: #fff;
}

.nmp-form-section-title {
    color: var(--primary);
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 40px;
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Cinematic Inputs */
.nmp-input-cinema {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    transition: 0.3s;
}

.nmp-input-cinema:focus {
    background: #000;
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(249, 4, 3, 0.2);
}

/* File Upload Premium Styling */
.nmp-file-upload {
    border: 2px dashed #444;
    background: #111;
    color: #888;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    transition: 0.3s;
}

.nmp-file-upload:hover {
    border-color: var(--primary);
    color: #fff;
    background: #1a1a1a;
}

.nmp-file-upload i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    color: var(--primary);
}

.nmp-file-upload input[type="file"] {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Form Rows for Grid Layout */
.nmp-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.nmp-form-row .nmp-field { flex: 1; }

@media (max-width: 768px) {
    .nmp-form-row { flex-direction: column; gap: 0; }
    .nmp-theme-dark { padding: 30px; }
}