/* ============================================
   LUMIÈRE 360 PHOTOBOOTH - MAIN STYLES
   ============================================ */

/* CSS VARIABLES */
:root {
    /* Colors - Red & Black Theme */
    --primary-red: #DC2626;
    /* True Red */
    --primary-red-dark: #8B0000;
    /* Deep Red */
    --secondary-red: #FF4500;
    /* Orange Red for gradients */
    --primary-black: #000000;
    /* Pure Black */
    --secondary-black: #0a0a0a;
    /* Soft Black */
    --accent-gold: #F59E0B;
    --accent-gold-light: #FCD34D;

    --dark-bg: #000000;
    /* Was Slate, now Black */
    --dark-bg-light: #111111;
    /* Was Slate light, now Very Dark Grey */
    --dark-bg-lighter: #1a1a1a;

    --white: #FFFFFF;
    --light-gray: #0a0a0a;
    /* Inverted for Dark Theme - was #F1F5F9 */
    --medium-gray: #9CA3AF;
    --text-dark: #F3F4F6;
    /* Inverted text for Dark Theme - was #1E293B */
    --text-light: #111827;
    /* For rare white backgrounds */

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.8);
    --shadow-glow: 0 0 30px rgba(220, 38, 38, 0.4);
}

/* RESET & BASE */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    /* 'clip' prevents sticky issues caused by 'hidden' */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* LOADING SCREEN */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-red-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOut 0.5s ease 2s forwards;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    animation: pulse 2s ease infinite;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* NAVIGATION */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
    margin-left: -30px;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: white;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-red));
    transition: var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow);
}

.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition-normal);
}

/* CONTAINER */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 21, 56, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-red);
}

.btn-light {
    background: white;
    color: var(--primary-red);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* SECTION HEADERS */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
}

.text-gradient {
    background: linear-gradient(135deg, white 20%, var(--secondary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   HERO SECTION - Diagonal Split
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

/* Seamless Bottom Gradient Overlay */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    /* Strong, large fade */
    background: linear-gradient(to bottom, transparent 0%, #000 100%);
    pointer-events: none;
    z-index: 4;
}

.hero-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 40%, rgba(220, 38, 38, 0.25) 0%, rgba(0, 0, 0, 1) 70%);
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 40% 100%);
    overflow: hidden;
}

.hero-bg-video video {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%) rotate(12deg);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: right center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Darker overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin-left: 120px;
    padding: 2rem 2rem 2rem 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    /* Smaller title */
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    display: block;
}

.typewriter-wrapper {
    display: block;
    min-height: 1.2em;
    /* Reserve space */
}

.hero-title .typewriter-text {
    display: inline;
    /* Override .hero-title span block display */
    color: var(--primary-red);
    position: relative;
    z-index: 1;
}

.hero-title .typewriter-cursor {
    display: inline-block;
    /* Ensure it sits next to text */
    color: var(--primary-red);
    font-weight: 400;
    margin-left: 5px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    border-left: 3px solid var(--primary-red);
    padding-left: 1.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-red);
    /* Changed to Red */
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-description {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 3rem;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.8);
    border-left: 2px solid var(--primary-red);
    padding-left: 1.5rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SERVICES SECTION */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-bg-light);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-gold);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.luxury {
    background: linear-gradient(135deg, #B91C1C, #F59E0B);
}

.service-badge.trending {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
}

.service-badge.tech {
    background: linear-gradient(135deg, #374151, #9CA3AF);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    min-height: 4.5rem;
    /* Force alignment of features below */
    display: flex;
    align-items: center;
    /* Vertical center */
    justify-content: center;
    /* Horizontal center */
    text-align: center;
    width: 100%;
}

/* Removed .service-description block */

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-red);
    font-weight: 600;
    transition: var(--transition-fast);
    margin-top: auto;
    /* Push to bottom */
}

.service-link:hover {
    color: var(--secondary-red);
    gap: 0.5rem;
}

/* FEATURES SECTION */
.features {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.feature-item:hover {
    background: var(--dark-bg-lighter);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-text {
    color: var(--medium-gray);
}

/* EVENTS SECTION */
.events {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    position: relative;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.event-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: white;
    transform: translateY(40%);
    transition: var(--transition-normal);
}

.event-card:hover .event-overlay {
    transform: translateY(0);
}

.event-card:hover img {
    transform: scale(1.1);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-description {
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.event-card:hover .event-description {
    opacity: 1;
    transform: translateY(0);
}

.event-card .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-normal) 0.1s;
}

.event-card:hover .btn {
    opacity: 1;
    transform: translateY(0);
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.testimonials-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    /* Overflow removed to allow arrows outside */
}

.carousel-mask {
    overflow: hidden;
    /* Clips the slides */
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    flex: 0 0 100%;
    width: 100%;
    padding: 0 1rem;
    /* Creates space between cards */
    box-sizing: border-box;
    margin: 0;
    /* Visual styles moved to .card-content */
}

.card-content {
    background: var(--dark-bg-light);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-lg);
    text-align: center;
    padding: 3rem;
    height: 100%;
    /* Ensure equal height if flexed */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 900px) {
    .testimonial-card {
        min-width: 50%;
        flex: 0 0 50%;
        width: 50%;
        padding: 0 1.5rem;
        /* Larger gap on desktop */
    }
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-black), var(--primary-red));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info {
    text-align: left;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
}

.author-event {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--dark-bg-light);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    /* Visual centering tweaks */
    padding-bottom: 4px;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--primary-red);
    color: white;
}

.carousel-btn.prev {
    left: -70px;
}

.carousel-btn.next {
    right: -70px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--medium-gray);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.3);
}

/* FAQ SECTION */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark-bg-light);
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-red);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--medium-gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* CONTACT SECTION */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon {
    font-size: 2rem;
}

.contact-detail h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: var(--medium-gray);
}

.contact-form {
    background: var(--dark-bg-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--dark-bg);
    border: 2px solid var(--dark-bg-lighter);
    border-radius: var(--radius-sm);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group textarea {
    resize: vertical;
}

/* FOOTER */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--dark-bg-lighter);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 1rem 0;
}

.footer-brand img {
    width: 60px;
}

.footer-brand p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg-light);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column a {
    display: block;
    color: var(--medium-gray);
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--secondary-red);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--dark-bg-lighter);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--medium-gray);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a:hover {
    color: white;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-bg);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        margin-left: 0;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-top: 8rem;
    }

    .hero-description {
        font-size: 0.85rem;
        margin-top: 2rem;
        padding-left: 1rem;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: row;
        gap: 2.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .hero-stats .stat:nth-child(2) {
        display: none;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        margin: 0;
        max-width: 100%;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .carousel-btn {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .testimonials-carousel {
        padding: 2rem 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ========================================
   CAROUSEL STYLES - BURGUNDY THEME
   ======================================== */

.carousel-section {
    padding: 12rem 0 10rem;
    /* Increased bottom padding for buttons */
    /* Black and Red Theme Background */
    background: radial-gradient(circle at 50% 50%, #2a0a12 0%, #000000 70%);
    position: relative;
    overflow: hidden;
}

.carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at top right, rgba(139, 21, 56, 0.15), transparent 60%),
        radial-gradient(circle at bottom left, rgba(90, 10, 40, 0.12), transparent 60%);
    pointer-events: none;
}

.carousel-container {
    position: relative;
    z-index: 2;
    /* Removed background and box-shadow to remove the "gray border" look */
    background: transparent;
    box-shadow: none;
    border-radius: 20px;
    overflow: visible;
}

.slide {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: visible;
}

.slide .item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.7);
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
    cursor: pointer;
    overflow: hidden;
}

.slide .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
    pointer-events: none;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 30px;
    width: 85%;
    height: 100%;
}

.slide .item:nth-child(3) {
    left: 65%;
    width: 200px;
    height: 300px;
    top: 55%;
}

.slide .item:nth-child(4) {
    left: calc(65% + 220px);
    width: 200px;
    height: 300px;
    top: 60%;
}

.slide .item:nth-child(5) {
    left: calc(65% + 440px);
    width: 200px;
    height: 300px;
    top: 65%;
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6) {
    left: calc(65% + 660px);
    opacity: 0;
    width: 200px;
    height: 300px;
    top: 70%;
}

.item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    font-family: var(--font-body);
    display: none;
    z-index: 2;
}

.slide .item:nth-child(2) .content {
    display: block;
}

.content .badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: white;
    margin-bottom: 1rem;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content .name {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-red);
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.content button:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* ============================================
   SIDEBAR NAVIGATION LAYOUT
   ============================================ */

.effects-layout-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.effects-sidebar {
    display: block;
    position: relative;
    height: 100%;
}

.sidebar-sticky {
    position: sticky;
    top: 120px;
    /* Adjust based on navbar height */
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.sidebar-sticky h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.sidebar-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transform: translateX(5px);
}

.sidebar-link.active {
    background: rgba(220, 38, 38, 0.1);
    color: white;
    border-left-color: var(--primary-red);
    font-weight: 600;
}

.effects-content-container {
    min-width: 0;
    /* Prevents grid blowout */
}

/* Mobile/Tablet Responsiveness */
@media (max-width: 1024px) {
    .effects-layout-wrapper {
        display: block;
        /* Stack vertically */
    }

    .effects-sidebar {
        display: none;
        /* Hide sidebar on mobile */
    }

    .effects-content-container {
        width: 100%;
    }
}

.button {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.button button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.button button:hover {
    background: #8B1538;
    border-color: #8B1538;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.4);
}

/* Carousel responsive styles */
@media (max-width: 1024px) {
    .carousel-container {
        width: 900px;
        height: 500px;
    }

    .slide {
        height: 500px;
    }

    .slide .item:nth-child(3) {
        left: 70%;
        width: 160px;
        height: 240px;
    }

    .slide .item:nth-child(4) {
        left: calc(70% + 180px);
        width: 140px;
        height: 210px;
    }

    .slide .item:nth-child(5) {
        left: calc(70% + 320px);
        width: 120px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .carousel-section {
        padding: 3rem 0;
    }

    .carousel-container {
        width: 95%;
        height: 400px;
    }

    .slide {
        height: 400px;
    }

    .slide .item {
        width: 150px;
        height: 225px;
    }

    .slide .item:nth-child(3) {
        left: 75%;
        width: 120px;
        height: 180px;
        top: 60%;
    }

    .slide .item:nth-child(4) {
        left: calc(75% + 130px);
        width: 100px;
        height: 150px;
        top: 65%;
    }

    .slide .item:nth-child(5) {
        left: calc(75% + 240px);
        width: 80px;
        height: 120px;
        top: 70%;
    }

    .item .content {
        left: 50px;
        width: 250px;
    }

    .content .name {
        font-size: 30px;
    }

    .content .des {
        font-size: 14px;
    }

    .button {
        bottom: -50px;
    }

    .button button {
        width: 35px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* ========================================
   BENTO GRID GALLERY - DARK THEME
   ======================================== */

.bento-section {
    padding: 6rem 2rem;
    background-color: #0F172A;
    /* Dark Background */
    background: radial-gradient(circle at center, #1a050b 0%, #000000 100%);
}

.bento-header {
    text-align: center;
    margin-bottom: 4rem;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bento-subtitle {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.2rem;
    color: #A64253;
    /* Muted Burgundy */
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 250px);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    grid-template-areas:
        "floral wedding wedding pearls"
        "candle wedding wedding botez"
        "candle hands   hands   space"
        "inside hands   hands   space";
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.2);
    /* Burgundy Glow */
    border-color: rgba(139, 21, 56, 0.5);
}

.bento-item:hover img {
    transform: scale(1.08);
}

.bento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 20;
}

/* Grid Areas Mapping */
.area-floral {
    grid-area: floral;
}

.area-wedding {
    grid-area: wedding;
}

.area-pearls {
    grid-area: pearls;
}

.area-candle {
    grid-area: candle;
}

.area-botez {
    grid-area: botez;
}

.area-slice {
    grid-area: slice;
}

.area-dark {
    grid-area: dark;
}

.area-space {
    grid-area: space;
}

.area-inside {
    grid-area: inside;
}

.area-hands {
    grid-area: hands;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        grid-auto-rows: 250px;
        grid-template-areas:
            "wedding wedding"
            "floral pearls"
            "candle botez"
            "hands hands"
            "space inside";
    }

    .area-wedding {
        height: 400px;
    }

    .area-candle {
        height: 400px;
    }
}

@media (max-width: 576px) {

    /* Hide Carousel on Mobile */
    .carousel-section {
        display: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
        gap: 2rem;
        grid-template-areas:
            "wedding"
            "floral"
            "pearls"
            "candle"
            "botez"
            "hands"
            "space"
            "inside";
    }

    .area-wedding {
        height: 100%;
    }

    .area-candle {
        height: 100%;
    }

    .bento-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   CINEMA 360 SECTION - PREMIUM DARK
   ======================================== */

.cinema-section {
    padding: 8rem 2rem;
    /* Dark radial gradient matching Bento but slightly deeper */
    background: radial-gradient(circle at center, #1F080F 0%, #000000 90%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(139, 21, 56, 0.2);
}

/* Ambient Glow Background Effect */
.cinema-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cinema-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.cinema-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(139, 21, 56, 0.5);
}

.cinema-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #A64253;
    letter-spacing: 1px;
}

.text-gradient-red {
    background: linear-gradient(135deg, #FFD700 0%, #8B1538 100%);
    /* Gold to Red */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cinema-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 550px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 21, 56, 0.6);
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.2);
}

.video-poster {
    position: relative;
    width: 100%;
    height: 320px;
    /* Cinematic ratio */
    overflow: hidden;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-card:hover .video-poster img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.1);
}

/* Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background: rgba(139, 21, 56, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(139, 21, 56, 0.7);
    animation: pulse-red 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: #FFFFFF;
}

.video-card:hover .play-icon {
    color: #8B1538;
}

.play-icon {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
    /* Visual center adjustment */
    transition: color 0.3s ease;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(139, 21, 56, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(139, 21, 56, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(139, 21, 56, 0);
    }
}

.video-info {
    padding: 2rem;
    text-align: left;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.video-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.video-duration {
    color: #888;
    font-size: 0.9rem;
    font-family: monospace;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.video-info p {
    font-size: 0.95rem;
    color: #BBB;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .cinema-showcase {
        flex-direction: column;
        align-items: center;
    }

    .video-card {
        max-width: 100%;
    }

    .cinema-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   CINEMA 360 SECTION - PREMIUM DARK
   ======================================== */

.cinema-section {
    padding: 8rem 2rem;
    /* Dark radial gradient matching Bento but slightly deeper */
    background: radial-gradient(circle at center, #1F080F 0%, #000000 90%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(139, 21, 56, 0.2);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Ambient Glow Background Effect */
.cinema-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(circle, rgba(139, 21, 56, 0.15), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cinema-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.cinema-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(139, 21, 56, 0.5);
}

.cinema-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #A64253;
    letter-spacing: 1px;
}

.text-gradient-red {
    background: linear-gradient(135deg, #FFD700 0%, #8B1538 100%);
    /* Gold to Red */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cinema-showcase {
    display: flex;
    justify-content: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    max-width: 1400px;
    /* Keep content contained */
    margin: 0 auto;
}

.video-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(139, 21, 56, 0.5);
    /* Burgundy border initially visible */
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 550px;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(139, 21, 56, 0.3);
    /* Persistent Glow */
    backdrop-filter: blur(5px);
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #8B1538;
    box-shadow: 0 0 40px rgba(139, 21, 56, 0.6);
    /* Stronger Glow on Hover */
}

.video-poster {
    position: relative;
    width: 100%;
    height: 320px;
    /* Cinematic ratio */
    overflow: hidden;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-card:hover .video-poster img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.1);
}

/* Play Button */
.play-button {
    width: 80px;
    height: 80px;
    background: rgba(139, 21, 56, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(139, 21, 56, 0.7);
    animation: pulse-red 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: #FFFFFF;
}

.video-card:hover .play-icon {
    color: #8B1538;
}

.play-icon {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
    /* Visual center adjustment */
    transition: color 0.3s ease;
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(139, 21, 56, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 20px rgba(139, 21, 56, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(139, 21, 56, 0);
    }
}

.video-info {
    padding: 2rem;
    text-align: left;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.video-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.video-duration {
    color: #888;
    font-size: 0.9rem;
    font-family: monospace;
}

.video-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #FFF;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.video-info p {
    font-size: 0.95rem;
    color: #BBB;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .cinema-showcase {
        flex-direction: column;
        align-items: center;
    }

    .video-card {
        max-width: 100%;
    }

    .cinema-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   SPLIT HERO SECTION (3 Columns)
   ============================================ */
.split-hero {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 80px;
    /* Account for fixed header */
}

@media (min-width: 900px) {
    .split-hero {
        flex-direction: row;
        padding-top: 0;
    }
}

.split-item {
    position: relative;
    flex: 1;
    display: flex;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s ease;
    height: 33.33vh;
    /* stacked on mobile */
    min-height: 300px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 900px) {
    .split-item {
        height: 100%;
        min-height: auto;
    }
}

.split-item:last-child {
    border-right: none;
}

/* Specific Column Alignment */
/* Left Column */
.split-item:nth-child(1) {
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
}

/* Center Column */
.split-item:nth-child(2) {
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

/* Right Column */
.split-item:nth-child(3) {
    align-items: flex-end;
    justify-content: flex-end;
    text-align: right;
}

.split-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    filter: brightness(0.7);
}

.split-item:hover .split-bg {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.split-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 3rem;
    transition: transform 0.3s ease;
    width: 100%;
}

.split-item:hover .split-content {
    transform: translateY(-10px);
}

.split-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.split-content span {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.8;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.split-item:hover .split-content span {
    opacity: 1;
    transform: translateY(0);
    color: var(--accent-gold);
}

/* ============================================
   NEW SECTIONS EXPANSION - V2 PREMIUM
   ============================================ */

/* 1. PROCESS SECTION - ZIG ZAG FLOW */
.process {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

/* Background flourish */
.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Connecting line for desktop */
.process-line {
    position: absolute;
    top: 100px;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.1) 0%,
            var(--primary-red) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    width: 45%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.process-step:hover .step-content {
    border-color: rgba(220, 38, 38, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.step-number-large {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-red);
    -webkit-text-stroke: 0;
    margin-bottom: 1rem;
    position: absolute;
    top: -30px;
    opacity: 1;
    z-index: -1;
}

.process-step:nth-child(odd) .step-number-large {
    left: 10px;
}

.process-step:nth-child(even) .step-number-large {
    right: 10px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--medium-gray);
    font-size: 1rem;
}

.step-image-wrapper {
    width: 45%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    filter: grayscale(20%);
}

.process-step:hover .step-image-wrapper img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

@media (max-width: 900px) {
    .process-line {
        left: 20px;
        transform: none;
    }

    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 50px;
    }

    .step-content {
        width: 100%;
        margin-bottom: 2rem;
    }

    .step-image-wrapper {
        display: none;
    }

    .step-number-large {
        left: -10px !important;
    }
}

/* 2. GALLERY SECTION - MASONRY V2 */
.gallery-preview {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg-light);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.masonry-item.wide {
    grid-column: span 2;
}

.masonry-item.tall {
    grid-row: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(139, 21, 56, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.masonry-item:hover img {
    transform: scale(1.08);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-tag {
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.masonry-item:hover .masonry-tag {
    transform: translateY(0);
}

@media (max-width: 900px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .masonry-item.wide,
    .masonry-item.tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }
}

/* 3. PARTNERS - PREMIUM MARQUEE */
.partners {
    padding: 6rem 0;
    background: var(--primary-black);
    position: relative;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    /* Red tint border */
}

.partners-title {
    text-align: center;
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-content {
    display: flex;
    gap: 5rem;
    animation: marquee 40s linear infinite;
    min-width: max-content;
}

.partner-logo-box {
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

/* Remove Hover Effect - Keep minimal or none */
.partner-logo-box:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
    transform: none;
    z-index: 1;
}

/* Persistent Glow on Alternating Items (Every 2nd starting from 1) */
.partner-logo-box:nth-child(odd) {
    border-color: var(--primary-red);
    background: rgba(220, 38, 38, 0.15);
    box-shadow: 0 0 25px rgba(220, 38, 38, 0.5);
    /* Persistent Red Glow */
    z-index: 5;
}

.partner-text {
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

/* Ensure text is full opacity on glowing items */
.partner-logo-box:nth-child(odd) .partner-text {
    opacity: 1;
}



@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-content {
        gap: 2rem;
    }

    .partner-logo-box {
        width: 120px;
        height: 60px;
        font-size: 0.8rem;
    }
}

/* 4. CTA - PARALLAX */
.cta-parallax {
    position: relative;
    padding: 10rem 0;
    background: fixed url('../images/hero_photobooth_1769002434192.png') center/cover no-repeat;
    /* Note: "fixed" provides simple parallax. */
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    /* Darken image */
}

.cta-parallax::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(220, 38, 38, 0.2) 100%);
    z-index: 1;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.cta-big-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.cta-big-title span {
    color: var(--primary-red);
    font-style: italic;
}

.cta-sub {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

/* ABOUT SECTION V2 - Removed generic grid, focusing on text */
.about-v2 {
    padding: var(--spacing-xl) 0;
    background: var(--dark-bg);
}

.about-text-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* CTA BANNER */
.cta-banner {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-red-dark) 100%);
    text-align: center;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 900px) {
    .hero-content {
        margin-left: 5%;
        padding: 2rem;
    }
}

/* GALLERY CTA ALIGNMENT */
.gallery-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5rem;
    padding-bottom: 2rem;
}

/* NAVBAR DROPDOWN */
.nav-item.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    border-radius: var(--radius-md);
    padding: 0.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: rgba(10, 10, 10, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-left: 2px solid transparent;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary-red);
    padding-left: 25px;
    border-left: 2px solid var(--secondary-red);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.6em;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

#navMenu {
    align-items: center;
}

/* ============================================
   GLOBAL WHATSAPP BUTTON
   ============================================ */
.bin-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: bin-pulse 2s infinite;
}

.bin-whatsapp-float:hover {
    transform: scale(1.1);
}

.bin-whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes bin-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ============================================
   SPECIAL EFFECTS SHOWCASE (CINEMATIC)
   ============================================ */

.effects-showcase-section {
    padding: 100px 0;
    background: var(--dark-bg);
    /* overflow: hidden; Removed to allow sticky sidebar */
}

.effect-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 150px;
    position: relative;
}

.effect-row:last-child {
    margin-bottom: 0;
}

.effect-row.reversed {
    flex-direction: row-reverse;
}

.effect-visual {
    flex: 1;
    position: relative;
    z-index: 2;
}

.img-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
}

.effect-row.reversed .img-frame {
    transform: perspective(1000px) rotateY(-5deg);
}

.effect-row:hover .img-frame {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 40px 80px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.img-frame img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.effect-content {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.effect-number {
    position: absolute;
    top: -4rem;
    left: -2rem;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: -1;
    font-family: var(--font-heading);
    user-select: none;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
}

.effect-row.reversed .effect-number {
    left: auto;
    right: -2rem;
}

.effect-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.1;
    position: relative;
}

.effect-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin-top: 15px;
    border-radius: 4px;
}

.effect-content p {
    font-size: 1.2rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.effect-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.effect-features-list li {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-effect {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.6);
}

@media (max-width: 1024px) {

    .effect-row,
    .effect-row.reversed {
        flex-direction: column;
        gap: 3rem;
    }

    .effect-visual,
    .effect-content {
        flex: auto;
        width: 100%;
    }

    .img-frame,
    .effect-row.reversed .img-frame {
        transform: none;
    }

    .effect-content {
        padding: 0;
        text-align: left;
        /* Or center if preferred */
    }

    .effect-number {
        font-size: 6rem;
        top: -2rem;
    }

    .effect-content h2 {
        font-size: 2.5rem;
    }
}

/* ============================================
   SIDEBAR TIMELINE NAVIGATION (SLIM DESIGN)
   ============================================ */

.effects-layout-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.effects-sidebar {
    display: block;
    position: sticky;
    top: 160px;
    align-self: start;
    height: fit-content;
    z-index: 100;

    /* Removed box styling for slim look */
    padding: 10px 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.sidebar-sticky {
    display: contents;
}

.sidebar-sticky h3 {
    display: none;
    /* Hide header for cleaner look, or style differently */
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Continuous line perception */
    position: relative;
    padding-left: 10px;
    counter-reset: sidebar-counter;
    /* Init counter */
}

/* TRACK LINE (Faint background) */
.sidebar-nav::before {
    content: '';
    position: absolute;
    top: 25px;
    /* Start from center of first dot */
    bottom: 25px;
    /* End at center of last dot (approx) */
    left: 29px;
    /* Re-aligned to center of 40px bubble (+10px padding) = 20px + 10px = 30px? No, left padding is 10. Bubble width 40. Center is 10 + 20 = 30px. So Left: 29px for 2px width is correct. */
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    /* Dark track */
    z-index: 0;
}

/* PROGRESS LINE (Red fill) */
.sidebar-progress-line {
    position: absolute;
    top: 25px;
    /* Same start as track */
    left: 29px;
    width: 2px;
    background: var(--primary-red);
    /* Glowing red */
    height: 0%;
    /* JS will control this */
    z-index: 1;
    transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /* Smooth fill */
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
    will-change: height;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #64748b;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 1.5rem 0;
    /* More spacing for height */
    transition: all 0.5s ease;
    position: relative;
    border: none;
    z-index: 2;
    /* Above lines */
}

/* Number Bubble */
.sidebar-link::before {
    counter-increment: sidebar-counter;
    content: counter(sidebar-counter);
    width: 40px;
    height: 40px;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    /* Default border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #64748b;
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.sidebar-link span {
    transition: all 0.5s ease;
    font-weight: 500;
}

/* Hover State */
.sidebar-link:hover {
    color: #e2e8f0;
    transform: translateX(5px);
}

.sidebar-link:hover::before {
    border-color: rgba(220, 38, 38, 0.5);
}

/* COMPLETED STATE (Passed items) */
.sidebar-link.completed {
    color: #e2e8f0;
}

.sidebar-link.completed::before {
    background: #000;
    border-color: var(--primary-red);
    color: white;
    box-shadow: 0 0 5px rgba(220, 38, 38, 0.3);
}

/* ACTIVE STATE (Current item) */
.sidebar-link.active {
    color: white;
    font-weight: 700;
}

.sidebar-link.active::before {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: white;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
    transform: scale(1.2);
}

.sidebar-link.active span {
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.effects-content-container {
    min-width: 0;
    /* Prevents grid blowout */
}

/* Mobile/Tablet Responsiveness */
@media (max-width: 1024px) {
    .effects-layout-wrapper {
        display: block;
        /* Stack vertically */
    }

    .effects-sidebar {
        display: none;
        /* Hide sidebar on mobile */
    }

    .effects-content-container {
        width: 100%;
    }
}

/* ============================================
   BENTO SLIDESHOW STYLES
   ============================================ */
.bento-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.bento-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.bento-slide.active {
    opacity: 1;
    z-index: 2;
}

.bento-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bento-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 30;
    opacity: 1;
    transition: background 0.3s ease;
    font-size: 1.2rem;
}

/* Removed hover dependency for opacity */
/* .bento-item:hover .bento-nav-btn { opacity: 1; } */

.bento-nav-btn:hover {
    background: rgba(220, 38, 38, 0.8);
}

.bento-nav-btn.prev {
    left: 10px;
}

.bento-nav-btn.next {
    right: 10px;
}

/* ============================================
   VIDEO PLAYER STYLES
   ============================================ */
.video-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    background: black;
    /* Prevent white flash */
}