/* CSS Custom Properties */
:root {
    /* Core Brand Colors - Used Throughout Site */
    --brand-eggplant: #2E2B3D;
    --brand-orange: #F05030;
    --brand-white: #FFFFFF;
    
    /* Supporting Neutrals */
    --primary-navy: #0a0f1c;
    --dark-navy: #050914;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    
    /* Brand Color Variations */
    --eggplant-light: #3a3550;
    --eggplant-dark: #1a1725;
    --orange-light: #ff6b4a;
    --orange-dark: #e6441b;
    
    /* Legacy Variables - Now Using Brand Colors */
    --accent-gold: var(--brand-orange);
    --light-gold: var(--orange-light);
    --shadow-gold: 0 0 20px rgba(240, 80, 48, 0.3);
    --cinema-red: #dc2626;
    
    /* Glassmorphism Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.05);
    --shadow-brand: 0 0 20px rgba(240, 80, 48, 0.3);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Improved Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: 
        linear-gradient(135deg, 
            color-mix(in srgb, var(--brand-eggplant) 95%, transparent) 0%, 
            rgba(10, 15, 28, 0.95) 50%, 
            color-mix(in srgb, var(--brand-orange) 5%, transparent) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid color-mix(in srgb, var(--brand-orange) 30%, transparent);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    margin-right: 60px; /* Increased spacing from navigation items */
}

.logo-image {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    /* Blend seamlessly with dark background */
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    /* Make black background transparent by filtering */
    mix-blend-mode: screen;
}

.logo-image:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Maintain text logo styles for fallback */
.text-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--brand-white) 0%, var(--brand-orange) 50%, var(--orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.text-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px; /* Increased spacing between nav items */
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-orange);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(90deg, 
            rgba(10, 15, 28, 0.85) 0%, 
            rgba(10, 15, 28, 0.7) 50%, 
            rgba(10, 15, 28, 0.3) 75%, 
            transparent 90%
        ),
        url('../images/tron-ares-hero.jpg');
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(
            ellipse at 30% 70%,
            rgba(0, 255, 255, 0.12) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at 70% 30%,
            rgba(240, 80, 48, 0.1) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            rgba(46, 43, 61, 0.2) 0%,
            rgba(10, 15, 28, 0.3) 100%
        );
    backdrop-filter: blur(0.5px);
    pointer-events: none;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 2;
    position: relative;
    width: 100%;
    overflow: visible;
    min-height: 60vh;
}

.hero-text {
    max-width: 700px;
    width: 55%;
    padding-right: 40px;
    z-index: 3;
    position: relative;
    overflow: visible;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: visible;
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}



/* Simple Clean Hero */
.simple-hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    display: block;
    padding-top: 100px;
    padding-bottom: 60px;
    box-sizing: border-box;
    overflow: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 1;
}

.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.65) 35%, 
        rgba(0, 0, 0, 0.35) 60%, 
        rgba(0, 0, 0, 0.1) 80%, 
        transparent 100%
    );
    z-index: 2;
}

/* Avatar Hero Section - Centered Style (Like Avengers) */
.avatar-full-hero {
    position: relative;
    min-height: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.avatar-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9), 0 2px 6px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.avatar-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .avatar-full-hero {
        min-height: 400px;
        height: 400px;
    }
    
    .avatar-hero-title {
        font-size: 2.5rem;
    }
    
    .avatar-hero-subtitle {
        font-size: 1.1rem;
    }
}

.simple-hero .container {
    position: relative;
    z-index: 3;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 20px 40px 60px;
    margin-top: 0;
}

.simple-hero-content {
    max-width: 600px;
    width: 55%;
    padding-right: 40px;
    margin: 0;
    position: relative;
    z-index: 5;
    padding-top: 40px;
}

.simple-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 24px 0;
    padding: 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    width: 100%;
    overflow: visible;
}

.simple-subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 32px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.simple-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    position: relative;
    z-index: 10;
}

.simple-buttons .btn {
    min-width: 160px;
    z-index: 15;
    position: relative;
}

/* Netflix-style Stats Overlay - Enhanced */
.netflix-stats-overlay {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 4;
}

.netflix-stat {
    background: linear-gradient(145deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(46, 43, 61, 0.8) 100%
    );
    backdrop-filter: blur(15px);
    border: 2px solid rgba(240, 80, 48, 0.3);
    border-radius: 16px;
    padding: 16px 20px;
    text-align: center;
    min-width: 120px;
    max-width: 160px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.netflix-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(240, 80, 48, 0.2), 
        transparent
    );
    transition: left 0.6s ease;
}

.netflix-stat:hover::before {
    left: 100%;
}

.netflix-stat:hover {
    background: linear-gradient(145deg, 
        rgba(240, 80, 48, 0.15) 0%, 
        rgba(0, 0, 0, 0.9) 100%
    );
    border-color: rgba(240, 80, 48, 0.8);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(240, 80, 48, 0.3),
        0 0 0 1px rgba(240, 80, 48, 0.2);
}

.netflix-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 
        0 0 10px rgba(240, 80, 48, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.netflix-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

/* Mobile Responsive for Simple Hero */
@media (max-width: 768px) {
    .simple-hero {
        min-height: 85vh;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .simple-hero .container {
        padding-left: 20px;
        padding-right: 20px;
        justify-content: flex-start;
        text-align: left;
    }
    
    .simple-hero-content {
        max-width: 100%;
        width: 100%;
        padding-right: 0;
        margin-top: 40px;
    }
    
    .simple-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        margin-bottom: 20px;
        max-width: 100%;
        width: 100%;
    }
    
    .simple-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 25px;
        max-width: 100%;
        width: 100%;
    }
    
    .simple-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }
    
    .simple-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-dark-overlay {
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.75) 0%, 
            rgba(0, 0, 0, 0.6) 40%, 
            rgba(0, 0, 0, 0.85) 100%
        );
    }
    
    /* Hide stats overlay on mobile */
    .netflix-stats-overlay {
        display: none;
    }
}

@media (max-width: 480px) {
    .simple-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    
    .simple-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .netflix-number {
        font-size: 1rem;
    }
    
    .netflix-label {
        font-size: 0.6rem;
    }
}

/* Responsive Design for New Hero */
@media (max-width: 1024px) {
    .hero-title-new {
        font-size: 3rem;
    }
    
    .hero-subtitle-new {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-new {
        height: 90vh;
        align-items: flex-start;
        padding-top: 120px;
    }
    
    .hero-text-new {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle-new {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    
    .hero-buttons-new {
        justify-content: center;
    }
    
    .hero-overlay-new {
        background: linear-gradient(180deg, 
            rgba(0, 0, 0, 0.7) 0%, 
            rgba(0, 0, 0, 0.5) 50%, 
            rgba(0, 0, 0, 0.8) 100%
        );
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 2rem;
    }
    
    .hero-subtitle-new {
        font-size: 0.95rem;
    }
}



/* Enhanced Movie Carousel Section */
.now-showing-section {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
    position: relative;
    overflow: hidden;
    border-left: 6px solid var(--brand-orange);
    box-shadow: inset 6px 0 20px rgba(240, 80, 48, 0.1);
}





.now-showing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(240, 80, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.movie-carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.movie-marquee {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.marquee-letter {
    display: grid;
    grid-template-columns: repeat(3, 12px);
    grid-template-rows: repeat(4, 12px);
    gap: 2px;
    position: relative;
}

.marquee-letter[data-letter="I"] {
    grid-template-columns: repeat(1, 12px);
    grid-template-rows: repeat(6, 12px);
}

.marquee-spacer {
    width: 20px;
}

.bulb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-orange);
    box-shadow: 
        0 0 8px rgba(212, 175, 55, 0.8),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
    animation: marqueeFlash 1.5s infinite;
}

/* Letter N */
.marquee-letter[data-letter="N"] .bulb:nth-child(1),
.marquee-letter[data-letter="N"] .bulb:nth-child(4),
.marquee-letter[data-letter="N"] .bulb:nth-child(7),
.marquee-letter[data-letter="N"] .bulb:nth-child(10),
.marquee-letter[data-letter="N"] .bulb:nth-child(3),
.marquee-letter[data-letter="N"] .bulb:nth-child(6),
.marquee-letter[data-letter="N"] .bulb:nth-child(9),
.marquee-letter[data-letter="N"] .bulb:nth-child(12),
.marquee-letter[data-letter="N"] .bulb:nth-child(5) {
    opacity: 1;
}

/* Letter O */
.marquee-letter[data-letter="O"] .bulb:nth-child(1),
.marquee-letter[data-letter="O"] .bulb:nth-child(2),
.marquee-letter[data-letter="O"] .bulb:nth-child(3),
.marquee-letter[data-letter="O"] .bulb:nth-child(4),
.marquee-letter[data-letter="O"] .bulb:nth-child(6),
.marquee-letter[data-letter="O"] .bulb:nth-child(7),
.marquee-letter[data-letter="O"] .bulb:nth-child(9),
.marquee-letter[data-letter="O"] .bulb:nth-child(10),
.marquee-letter[data-letter="O"] .bulb:nth-child(11),
.marquee-letter[data-letter="O"] .bulb:nth-child(12) {
    opacity: 1;
}

/* Letter W */
.marquee-letter[data-letter="W"] .bulb:nth-child(1),
.marquee-letter[data-letter="W"] .bulb:nth-child(3),
.marquee-letter[data-letter="W"] .bulb:nth-child(4),
.marquee-letter[data-letter="W"] .bulb:nth-child(6),
.marquee-letter[data-letter="W"] .bulb:nth-child(7),
.marquee-letter[data-letter="W"] .bulb:nth-child(8),
.marquee-letter[data-letter="W"] .bulb:nth-child(9),
.marquee-letter[data-letter="W"] .bulb:nth-child(10),
.marquee-letter[data-letter="W"] .bulb:nth-child(11),
.marquee-letter[data-letter="W"] .bulb:nth-child(12) {
    opacity: 1;
}

/* Letter S */
.marquee-letter[data-letter="S"] .bulb:nth-child(1),
.marquee-letter[data-letter="S"] .bulb:nth-child(2),
.marquee-letter[data-letter="S"] .bulb:nth-child(3),
.marquee-letter[data-letter="S"] .bulb:nth-child(4),
.marquee-letter[data-letter="S"] .bulb:nth-child(7),
.marquee-letter[data-letter="S"] .bulb:nth-child(8),
.marquee-letter[data-letter="S"] .bulb:nth-child(9),
.marquee-letter[data-letter="S"] .bulb:nth-child(12) {
    opacity: 1;
}

/* Letter H */
.marquee-letter[data-letter="H"] .bulb:nth-child(1),
.marquee-letter[data-letter="H"] .bulb:nth-child(3),
.marquee-letter[data-letter="H"] .bulb:nth-child(4),
.marquee-letter[data-letter="H"] .bulb:nth-child(5),
.marquee-letter[data-letter="H"] .bulb:nth-child(6),
.marquee-letter[data-letter="H"] .bulb:nth-child(7),
.marquee-letter[data-letter="H"] .bulb:nth-child(9),
.marquee-letter[data-letter="H"] .bulb:nth-child(10),
.marquee-letter[data-letter="H"] .bulb:nth-child(12) {
    opacity: 1;
}

/* Letter I */
.marquee-letter[data-letter="I"] .bulb {
    opacity: 1;
}

/* Letter G */
.marquee-letter[data-letter="G"] .bulb:nth-child(1),
.marquee-letter[data-letter="G"] .bulb:nth-child(2),
.marquee-letter[data-letter="G"] .bulb:nth-child(3),
.marquee-letter[data-letter="G"] .bulb:nth-child(4),
.marquee-letter[data-letter="G"] .bulb:nth-child(8),
.marquee-letter[data-letter="G"] .bulb:nth-child(9),
.marquee-letter[data-letter="G"] .bulb:nth-child(10),
.marquee-letter[data-letter="G"] .bulb:nth-child(11),
.marquee-letter[data-letter="G"] .bulb:nth-child(12) {
    opacity: 1;
}

/* Default bulbs are hidden */
.bulb {
    opacity: 0.2;
}

@keyframes marqueeFlash {
    0%, 100% { 
        box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
    }
    50% { 
        box-shadow: 0 0 20px rgba(212, 175, 55, 1);
    }
}

.marquee-letter .bulb:nth-child(odd) {
    animation-delay: 0.3s;
}

.marquee-letter .bulb:nth-child(even) {
    animation-delay: 0.6s;
}

.movie-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}



.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 20px;
}

.movie-card {
    flex: 0 0 320px;
    height: 520px;
    perspective: 1000px;
    position: relative;
    transition: transform 0.3s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
}

.movie-card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.movie-card:hover .movie-card-inner {
    transform: rotateY(180deg);
}

.movie-card-front,
.movie-card-back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.movie-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

/* Removed shimmer effect - conflicts with flip card structure */

/* Removed old hover transform - now using flip effect */

.movie-poster {
    width: 100%;
    height: 420px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

/* Removed image scale on hover - conflicts with flip */

.movie-info {
    color: var(--text-light);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Movie Synopsis Styles */
.movie-synopsis {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: var(--text-light);
}

.movie-synopsis h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--brand-orange);
    text-align: center;
}

.synopsis-text {
    flex: 1;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: left;
    color: var(--text-light);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.synopsis-details {
    border-top: 1px solid rgba(240, 80, 48, 0.3);
    padding-top: 15px;
}

.synopsis-details .detail {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.synopsis-details .detail strong {
    color: var(--brand-orange);
}

.movie-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    gap: 10px;
}

.movie-stats .sessions,
.movie-stats .cinemas {
    flex: 1;
}

.movie-stats .sessions {
    text-align: left;
}

.movie-stats .cinemas {
    text-align: right;
}

.experience-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
    /* Default styling for tags without specific class */
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.tag.imax {
    background: rgba(220, 20, 60, 0.3);
    color: #ff6b8a;
    border-color: #ff6b8a;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.tag.gold-class {
    background: rgba(255, 193, 7, 0.3);
    color: #ffd54f;
    border-color: #ffd54f;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.tag.dolby {
    background: rgba(0, 191, 255, 0.3);
    color: #5dd9ff;
    border-color: #5dd9ff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.tag.family {
    background: rgba(50, 205, 50, 0.3);
    color: #5dff5d;
    border-color: #5dff5d;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.tag.drama, .tag.action, .tag.animation, .tag.musical {
    background: rgba(147, 112, 219, 0.3);
    color: #c8b4ff;
    border-color: #c8b4ff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.tag.premium {
    background: rgba(255, 140, 0, 0.3);
    color: #ffb84d;
    border-color: #ffb84d;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.capacity-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.capacity-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--brand-orange) 0%, var(--orange-light) 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.capacity-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 3;
}

.carousel-btn {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(10, 15, 28, 0.8);
    border: 2px solid var(--accent-gold);
    color: var(--brand-orange);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--brand-orange);
    color: var(--primary-navy);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--brand-orange);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Sections with Movie Backdrops */
.section {
    padding: 100px 0;
    position: relative;
}

.movie-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    filter: blur(1px) brightness(0.4);
}

.wicked-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/test-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

.action-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(220, 38, 38, 0.2) 0%, 
        rgba(10, 15, 28, 0.8) 30%, 
        rgba(220, 38, 38, 0.1) 60%, 
        rgba(10, 15, 28, 0.8) 100%);
    background-size: 400% 400%;
    animation: actionBackgroundShift 6s ease-in-out infinite;
    opacity: 0.6;
    z-index: -1;
}

.roses-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/test-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: -1;
}

@keyframes actionBackgroundShift {
    0%, 100% { background-position: center, 0% 50%; }
    50% { background-position: center, 100% 50%; }
}

/* Movie-themed CSS backgrounds that will definitely show */
.wicked-movie-theme {
    background: 
        radial-gradient(circle at 20% 80%, rgba(46, 43, 61, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 43, 61, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(10, 15, 28, 1) 0%, 
            rgba(46, 43, 61, 0.15) 25%, 
            rgba(5, 9, 20, 1) 50%, 
            rgba(46, 43, 61, 0.1) 75%, 
            rgba(10, 15, 28, 1) 100%);
    background-size: 300px 300px, 250px 250px, 400px 400px, 100% 100%;
    background-position: 0% 0%, 100% 100%, 50% 50%, center;
    animation: wickedShimmer 8s ease-in-out infinite;
}

.action-movie-theme {
    background: 
        radial-gradient(circle at 30% 70%, rgba(220, 38, 38, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, 
            rgba(220, 38, 38, 0.1) 0%, 
            rgba(10, 15, 28, 0.9) 25%, 
            rgba(220, 38, 38, 0.05) 50%, 
            rgba(10, 15, 28, 0.9) 75%, 
            rgba(220, 38, 38, 0.1) 100%);
    background-size: 200px 200px, 350px 350px, 100% 100%;
    background-position: 0% 0%, 100% 100%, center;
    animation: actionPulse 6s ease-in-out infinite;
}

.roses-movie-theme {
    background: 
        radial-gradient(circle at 60% 40%, rgba(240, 80, 48, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(240, 80, 48, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(5, 9, 20, 1) 0%, 
            rgba(240, 80, 48, 0.15) 25%, 
            rgba(10, 15, 28, 1) 50%, 
            rgba(240, 80, 48, 0.1) 75%, 
            rgba(5, 9, 20, 1) 100%);
    background-size: 280px 280px, 320px 320px, 180px 180px, 100% 100%;
    background-position: 0% 0%, 100% 0%, 100% 100%, center;
    animation: rosesFlow 10s ease-in-out infinite;
}

@keyframes wickedShimmer {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, 50% 50%, center;
    }
    50% { 
        background-position: 100% 100%, 0% 0%, 25% 75%, center;
    }
}

@keyframes actionPulse {
    0%, 100% { 
        background-position: 0% 0%, 100% 100%, center;
    }
    50% { 
        background-position: 50% 50%, 50% 50%, center;
    }
}

@keyframes rosesFlow {
    0%, 100% { 
        background-position: 0% 0%, 100% 0%, 100% 100%, center;
    }
    33% { 
        background-position: 100% 0%, 0% 100%, 0% 0%, center;
    }
    66% { 
        background-position: 50% 100%, 50% 50%, 50% 0%, center;
    }
}

.satellite-map {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.australia-satellite {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.pulse-background {
    animation: subtleBackgroundPulse 4s ease-in-out infinite;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.network-pulse {
    position: absolute;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, var(--brand-orange) 0%, rgba(240, 80, 48, 0.7) 50%, transparent 70%);
    border-radius: 50%;
    animation: networkPulse 2s infinite;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(255, 77, 31, 0.4);
}

.network-pulse.major-pulse {
    width: 30px;
    height: 30px;
    animation: majorNetworkPulse 1.8s infinite;
}

.network-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: rgba(255, 77, 31, 0.2);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

.network-pulse:hover {
    transform: scale(1.5);
    z-index: 10;
}

@keyframes networkPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes majorNetworkPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes pulseRing {
    0% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(0.5);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

@keyframes subtleBackgroundPulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.backdrop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 15, 28, 0.95) 0%, 
        rgba(5, 9, 20, 0.98) 50%,
        rgba(10, 15, 28, 0.95) 100%);
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--orange-light) 50%, var(--brand-orange) 100%);
    color: var(--brand-white);
    box-shadow: 0 4px 15px rgba(255, 77, 31, 0.4);
    border: 2px solid var(--brand-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 77, 31, 0.6);
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--brand-orange) 50%, var(--orange-light) 100%);
}

.btn-secondary {
    background: rgba(46, 43, 61, 0.8);
    color: var(--brand-white);
    border: 2px solid var(--brand-orange);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--brand-orange);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 31, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--brand-orange);
    color: var(--primary-navy);
    border-color: var(--brand-orange);
}

/* Technology Section */
.technology-section {
    background: linear-gradient(135deg, 
        rgba(10, 15, 28, 1) 0%, 
        rgba(46, 43, 61, 0.1) 25%, 
        rgba(5, 9, 20, 1) 50%, 
        rgba(46, 43, 61, 0.05) 75%, 
        rgba(10, 15, 28, 1) 100%);
    border-left: 6px solid var(--brand-eggplant);
    box-shadow: inset 6px 0 20px rgba(46, 43, 61, 0.1);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.technology-section .section-title {
    background: linear-gradient(135deg, var(--text-light) 0%, var(--brand-eggplant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experiences-section .section-title {
    background: linear-gradient(135deg, var(--text-light) 0%, var(--cinema-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-section .section-title {
    background: linear-gradient(135deg, var(--text-light) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.network-section .section-title {
    background: linear-gradient(135deg, var(--text-light) 0%, var(--brand-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.data-section .section-title {
    background: linear-gradient(135deg, var(--text-light) 0%, var(--brand-eggplant) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Movie Still Banners */
.movie-still-banner {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.movie-still-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 0 -1.5cm;
    transition: transform 0.3s ease;
}

/* Specific positioning for Spider-Man image */
.movie-still-banner img[alt*="Spider-Man"] {
    object-position: center center;
}

.movie-still-banner:hover img {
    transform: scale(1.05);
}

.movie-still-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(10, 15, 28, 0.7) 0%, 
        rgba(10, 15, 28, 0.3) 30%, 
        rgba(10, 15, 28, 0.3) 70%, 
        rgba(10, 15, 28, 0.7) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.movie-still-banner:hover .movie-still-overlay {
    opacity: 1;
}

.movie-still-text {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Movie Still Banners - Section Specific Themes */
.technology-section .movie-still-overlay {
    background: linear-gradient(
        to right, 
        rgba(46, 43, 61, 0.8) 0%, 
        rgba(37, 34, 51, 0.4) 30%, 
        rgba(37, 34, 51, 0.4) 70%, 
        rgba(46, 43, 61, 0.8) 100%
    );
}

.experiences-section .movie-still-overlay {
    background: linear-gradient(
        to right, 
        rgba(220, 38, 38, 0.8) 0%, 
        rgba(220, 38, 38, 0.4) 30%, 
        rgba(220, 38, 38, 0.4) 70%, 
        rgba(220, 38, 38, 0.8) 100%
    );
}

.solutions-section .movie-still-overlay {
    background: linear-gradient(
        to right, 
        rgba(255, 77, 31, 0.8) 0%, 
        rgba(255, 77, 31, 0.4) 30%, 
        rgba(255, 77, 31, 0.4) 70%, 
        rgba(255, 77, 31, 0.8) 100%
    );
}

.network-section .movie-still-overlay {
    background: linear-gradient(
        to right, 
        rgba(225, 29, 72, 0.8) 0%, 
        rgba(225, 29, 72, 0.4) 30%, 
        rgba(225, 29, 72, 0.4) 70%, 
        rgba(225, 29, 72, 0.8) 100%
    );
}

/* Responsive Movie Stills */
@media (max-width: 768px) {
    .movie-still-banner {
        height: 220px;
        margin: 30px 0;
    }
    
    .movie-still-text {
        font-size: 1rem;
    }
}

/* Animated Customer Journey Phone Mockup */
.journey-phone-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 60px 0;
    max-width: 1400px;
}

.journey-steps-left,
.journey-steps-right {
    flex: 1;
    max-width: 280px;
}

.journey-steps-right {
    display: flex;
    flex-direction: column;
}

.journey-step {
    display: flex;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 15px;
    opacity: 0.7;
    margin-bottom: 4px;
    position: relative;
}

.journey-step.active {
    opacity: 1;
    border-left-color: var(--cinema-red);
    background: rgba(220, 38, 38, 0.1);
    border-radius: 0 8px 8px 0;
}

.journey-step:hover {
    opacity: 1;
    transform: translateX(5px);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--card-bg);
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--brand-orange);
    margin-right: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.journey-step.active .step-number {
    background: var(--cinema-red);
    border-color: var(--cinema-red);
    color: white;
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.journey-step h3 {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    transition: all 0.3s ease;
}

.step-detail {
    color: var(--text-muted);
    line-height: 1.4;
    font-size: 0.8rem;
    margin: 4px 0 0 0;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.journey-step:hover .step-detail,
.journey-step.active .step-detail {
    opacity: 1;
    height: auto;
    margin-top: 4px;
}

/* Animation for the final "Enjoy Movie" image */
.phone-screen img.enjoy-animation.active {
    animation: enjoyPulse 3s ease-in-out infinite;
}

@keyframes enjoyPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: brightness(1);
    }
    50% { 
        transform: scale(1.02); 
        filter: brightness(1.1);
    }
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.6s ease;
    position: absolute;
    top: 0;
    left: 0;
}

.phone-screen img:not(.active) {
    opacity: 0;
}

.phone-screen img.active {
    opacity: 1;
}

/* Auto-play progress indicator */
.journey-progress {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: var(--cinema-red);
    transform: scale(1.3);
}

/* Responsive phone mockup */
@media (max-width: 1200px) {
    .journey-phone-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .journey-steps-left,
    .journey-steps-right {
        max-width: none;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .journey-step {
        flex: 0 1 calc(50% - 10px);
        margin-bottom: 8px;
    }
    
    .phone-mockup {
        width: 280px;
        height: 580px;
        order: 1;
    }
    
    .journey-steps-left {
        order: 0;
    }
    
    .journey-steps-right {
        order: 2;
    }
}

@media (max-width: 768px) {
    .journey-phone-container {
        gap: 20px;
    }
    
    .journey-steps-left,
    .journey-steps-right {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    .journey-step {
        padding: 6px 0;
        margin-bottom: 2px;
        flex: none;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        margin-right: 10px;
    }
    
    .journey-step h3 {
        font-size: 0.85rem;
    }
    
    .step-detail {
        font-size: 0.75rem;
    }
    
    .phone-mockup {
        width: 240px;
        height: 500px;
        padding: 15px;
    }
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    align-items: start;
}

.tech-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(46, 43, 61, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 43, 61, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(37, 34, 51, 0.4);
    border-color: var(--brand-eggplant);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-eggplant) 0%, var(--brand-orange) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(46, 43, 61, 0.3);
}

.tech-icon i {
    font-size: 24px;
    color: var(--text-light);
}

.tech-icon-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(1) brightness(1.2) contrast(1.1);
}

.tech-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
    min-height: 4.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    line-height: 1.3;
}

.tech-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    flex: 1;
    min-height: 4.8rem;
    display: flex;
    align-items: flex-start;
}

.tech-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    min-height: 60px;
    border-top: 1px solid rgba(46, 43, 61, 0.3);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-orange);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tech-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.tech-cta .btn {
    margin: 0 10px;
}

/* Network Section */
.network-section {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-navy) 100%);
}

/* Interactive Cinema Map Styles */
.network-map-container {
    position: relative;
    margin-bottom: 80px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-gold);
}

/* Clean Cinema Map Background */
.cinema-seats-bg {
    background: var(--dark-navy);
}

.cinema-seats-bg .cinema-map {
    background: var(--dark-navy);
}



.cinema-seats-bg .leaflet-container {
    background: transparent;
}

.cinema-map {
    height: 600px;
    width: 100%;
    background: var(--dark-navy);
}

.map-stats-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 34, 51, 0.4);
    border-radius: 15px;
    padding: 20px;
    z-index: 1000;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

/* Population Coverage Special Styling */
.population-coverage {
    position: relative;
    padding: 10px;
    border-radius: 12px;
    background: rgba(46, 43, 61, 0.2);
    border: 2px solid rgba(240, 80, 48, 0.3);
}

.population-coverage .stat-number {
    font-size: 2.2rem !important;
    animation: populationPulse 3s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 77, 31, 0.4);
}

.population-coverage .stat-label {
    color: var(--brand-orange) !important;
    font-weight: 600;
    font-size: 1rem !important;
}

@keyframes populationPulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(255, 77, 31, 0.4);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(255, 77, 31, 0.6);
    }
}

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 15px;
    z-index: 1000;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.legend-color.metro {
    background: var(--brand-orange);
}

.legend-color.regional {
    background: var(--brand-orange);
}



/* Clean success story cards - old styles removed as we now use proper buttons */

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 255, 0.98) 100%);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(240, 80, 48, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    max-width: 900px;
    max-height: 85vh;
    width: 95%;
    overflow: hidden;
    transform: translateY(40px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(240, 80, 48, 0.15);
}

.lightbox-overlay.active .lightbox-content {
    transform: translateY(0) scale(1);
    animation: lightboxBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxBounce {
    0% { transform: translateY(40px) scale(0.9); }
    50% { transform: translateY(-5px) scale(1.01); }
    100% { transform: translateY(0) scale(1); }
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(240, 80, 48, 0.05) 0%, rgba(46, 43, 61, 0.05) 100%);
    border-bottom: 2px solid rgba(240, 80, 48, 0.15);
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.lightbox-title-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lightbox-brand {
    opacity: 0.7;
}

.lightbox-logo {
    height: 70px;
    width: auto;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.lightbox-header h2 {
    color: var(--brand-eggplant);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lightbox-close {
    background: rgba(46, 43, 61, 0.08);
    border: 1px solid rgba(46, 43, 61, 0.1);
    font-size: 1.5rem;
    color: var(--brand-eggplant);
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--brand-orange);
    color: var(--brand-white);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(240, 80, 48, 0.3);
    border-color: var(--brand-orange);
}

.lightbox-body {
    padding: 40px 40px 30px;
    color: var(--brand-eggplant);
    line-height: 1.7;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    scrollbar-width: thin;
    scrollbar-color: rgba(240, 80, 48, 0.3) rgba(240, 80, 48, 0.05);
}

.lightbox-body::-webkit-scrollbar {
    width: 8px;
}

.lightbox-body::-webkit-scrollbar-track {
    background: rgba(240, 80, 48, 0.05);
    border-radius: 10px;
}

.lightbox-body::-webkit-scrollbar-thumb {
    background: rgba(240, 80, 48, 0.3);
    border-radius: 10px;
}

.lightbox-body::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 80, 48, 0.5);
}

.case-overview {
    background: linear-gradient(135deg, rgba(240, 80, 48, 0.08) 0%, rgba(46, 43, 61, 0.08) 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 35px;
    border-left: 4px solid var(--brand-orange);
    box-shadow: 0 4px 20px rgba(240, 80, 48, 0.08);
    position: relative;
    overflow: hidden;
}

.case-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(240, 80, 48, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 35px 0;
}

.metric-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 80, 48, 0.05) 100%);
    border: 2px solid rgba(240, 80, 48, 0.2);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.metric-card:hover {
    border-color: var(--brand-orange);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(240, 80, 48, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 80, 48, 0.08) 100%);
}

/* Brand-specific metric card accents */
.origin-brand .metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(0, 168, 89, 0.3) 0%, 
        rgba(0, 168, 89, 0.7) 50%, 
        rgba(0, 168, 89, 0.3) 100%);
}

.aia-brand .metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(237, 28, 36, 0.3) 0%, 
        rgba(237, 28, 36, 0.7) 50%, 
        rgba(237, 28, 36, 0.3) 100%);
}

.telstra-brand .metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(0, 174, 239, 0.3) 0%, 
        rgba(0, 174, 239, 0.7) 50%, 
        rgba(0, 174, 239, 0.3) 100%);
}

.olay-brand .metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(255, 105, 180, 0.3) 0%, 
        rgba(255, 105, 180, 0.7) 50%, 
        rgba(255, 105, 180, 0.3) 100%);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-orange);
    display: block;
    margin-bottom: 10px;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(240, 80, 48, 0.15);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--brand-eggplant);
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.case-section {
    margin-bottom: 18px;
}

.case-section h3 {
    color: var(--brand-eggplant);
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.case-section p {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.case-highlights {
    background: linear-gradient(135deg, rgba(46, 43, 61, 0.04) 0%, rgba(240, 80, 48, 0.03) 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(240, 80, 48, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.case-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-highlights li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.case-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 1.1rem;
}

.case-highlights h4 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    color: var(--brand-eggplant);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Origin Energy Brand Backdrop - Green Energy Theme */
.lightbox-content.origin-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 168, 89, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 85, 0, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 168, 89, 0.02) 0%, transparent 50%, rgba(255, 85, 0, 0.01) 100%),
        linear-gradient(45deg, transparent 48%, rgba(0, 168, 89, 0.05) 49%, rgba(0, 168, 89, 0.05) 51%, transparent 52%);
    background-size: 300px 300px, 250px 250px, 100% 100%, 80px 80px;
    border-radius: 15px;
    z-index: 1;
}

/* AIA Insurance Brand Backdrop - Red Corporate Theme */
.lightbox-content.aia-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 85%, rgba(237, 28, 36, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(20, 20, 20, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(237, 28, 36, 0.02) 0%, transparent 50%, rgba(20, 20, 20, 0.01) 100%),
        linear-gradient(-45deg, transparent 48%, rgba(237, 28, 36, 0.03) 49%, rgba(237, 28, 36, 0.03) 51%, transparent 52%);
    background-size: 350px 350px, 280px 280px, 100% 100%, 100px 100px;
    border-radius: 15px;
    z-index: 1;
}

/* Telstra Brand Backdrop - Teal/Purple Theme */
.lightbox-content.telstra-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(0, 174, 239, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(102, 45, 145, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 174, 239, 0.02) 0%, transparent 50%, rgba(102, 45, 145, 0.015) 100%),
        linear-gradient(90deg, transparent 48%, rgba(0, 174, 239, 0.03) 49%, rgba(0, 174, 239, 0.03) 51%, transparent 52%);
    background-size: 320px 320px, 270px 270px, 100% 100%, 90px 90px;
    border-radius: 15px;
    z-index: 1;
}

/* Olay Brand Backdrop - Pink/Purple Beauty Theme */
.lightbox-content.olay-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 105, 180, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(186, 85, 211, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 105, 180, 0.02) 0%, transparent 50%, rgba(186, 85, 211, 0.015) 100%),
        linear-gradient(60deg, transparent 48%, rgba(255, 105, 180, 0.025) 49%, rgba(255, 105, 180, 0.025) 51%, transparent 52%);
    background-size: 280px 280px, 240px 240px, 100% 100%, 70px 70px;
    border-radius: 15px;
    z-index: 1;
}

/* Enhanced brand presence */
.lightbox-header .lightbox-brand {
    position: relative;
}

.lightbox-header .lightbox-brand::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, rgba(240, 80, 48, 0.1) 0%, rgba(46, 43, 61, 0.05) 100%);
    border-radius: 8px;
    z-index: -1;
}

/* Brand-specific corner accents */
.lightbox-content.origin-brand::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle at center, rgba(0, 168, 89, 0.08) 20%, transparent 20%),
        conic-gradient(from 0deg, rgba(0, 168, 89, 0.04), rgba(255, 85, 0, 0.03), rgba(0, 168, 89, 0.04));
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.lightbox-content.aia-brand::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle at center, rgba(237, 28, 36, 0.08) 20%, transparent 20%),
        conic-gradient(from 0deg, rgba(237, 28, 36, 0.04), rgba(20, 20, 20, 0.03), rgba(237, 28, 36, 0.04));
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.lightbox-content.telstra-brand::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle at center, rgba(0, 174, 239, 0.08) 20%, transparent 20%),
        conic-gradient(from 0deg, rgba(0, 174, 239, 0.04), rgba(102, 45, 145, 0.03), rgba(0, 174, 239, 0.04));
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

.lightbox-content.olay-brand::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle at center, rgba(255, 105, 180, 0.08) 20%, transparent 20%),
        conic-gradient(from 0deg, rgba(255, 105, 180, 0.04), rgba(186, 85, 211, 0.03), rgba(255, 105, 180, 0.04));
    border-radius: 50%;
    z-index: 1;
    opacity: 0.6;
}

/* Brand-specific header accent lines */
.origin-brand .lightbox-header::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 168, 89, 0.3) 20%, 
        rgba(0, 168, 89, 0.6) 50%, 
        rgba(0, 168, 89, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.aia-brand .lightbox-header::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(237, 28, 36, 0.3) 20%, 
        rgba(237, 28, 36, 0.6) 50%, 
        rgba(237, 28, 36, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.telstra-brand .lightbox-header::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 174, 239, 0.3) 20%, 
        rgba(0, 174, 239, 0.6) 50%, 
        rgba(0, 174, 239, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.olay-brand .lightbox-header::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 105, 180, 0.3) 20%, 
        rgba(255, 105, 180, 0.6) 50%, 
        rgba(255, 105, 180, 0.3) 80%, 
        transparent 100%);
    z-index: 3;
}

.case-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: bold;
}

/* Dynamic Case Study Content Styling */
.case-study-content {
    animation: fadeInContent 0.6s ease;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-study-header {
    margin-bottom: 30px;
}

.case-study-header h3 {
    font-size: 1.6rem;
    color: var(--brand-eggplant);
    margin: 0 0 20px 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.case-study-meta {
    font-size: 0.95rem;
    color: rgba(46, 43, 61, 0.7);
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.case-study-meta::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: bold;
}

.case-study-meta strong {
    color: var(--brand-eggplant);
    font-weight: 600;
    margin-right: 8px;
}

/* Primary Metric Highlight */
.case-study-metric-highlight {
    background: linear-gradient(135deg, rgba(240, 80, 48, 0.1) 0%, rgba(46, 43, 61, 0.05) 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 35px 0;
    border: 2px solid rgba(240, 80, 48, 0.2);
    box-shadow: 0 8px 30px rgba(240, 80, 48, 0.15);
    position: relative;
    overflow: hidden;
}

.case-study-metric-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 80, 48, 0.08) 0%, transparent 60%);
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.metric-big {
    font-size: 4rem;
    font-weight: 900;
    color: var(--brand-orange);
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(240, 80, 48, 0.2);
    letter-spacing: -2px;
    position: relative;
    z-index: 1;
}

.metric-big-label {
    font-size: 1.1rem;
    color: var(--brand-eggplant);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Summary Section */
.case-study-summary {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--brand-eggplant);
    margin: 25px 0;
    padding: 25px;
    background: linear-gradient(135deg, rgba(240, 80, 48, 0.04) 0%, rgba(46, 43, 61, 0.04) 100%);
    border-radius: 15px;
    border-left: 4px solid var(--brand-orange);
    font-weight: 500;
}

/* Description Section */
.case-study-description {
    margin: 30px 0;
    line-height: 1.8;
    color: var(--brand-eggplant);
}

.case-study-description p {
    margin-bottom: 20px;
}

.case-study-description h4 {
    font-size: 1.3rem;
    color: var(--brand-eggplant);
    margin: 30px 0 20px 0;
    font-weight: 700;
    border-bottom: 2px solid rgba(240, 80, 48, 0.2);
    padding-bottom: 10px;
}

/* Results Section */
.case-study-results {
    margin: 35px 0;
}

.case-study-results h4 {
    font-size: 1.3rem;
    color: var(--brand-eggplant);
    margin: 0 0 20px 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-study-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-results li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--brand-eggplant);
    border-bottom: 1px solid rgba(240, 80, 48, 0.1);
}

.case-study-results li:last-child {
    border-bottom: none;
}

.case-study-results li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(240, 80, 48, 0.15) 0%, rgba(240, 80, 48, 0.08) 100%);
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Featured Image */
.case-study-image {
    margin: 35px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.case-study-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.case-study-image:hover img {
    transform: scale(1.05);
}

/* Download and External Links */
.case-study-download,
.case-study-external {
    margin: 25px 0;
    text-align: center;
}

.btn-download,
.btn-external {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, rgba(240, 80, 48, 0.9) 100%);
    color: var(--brand-white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 80, 48, 0.3);
    border: 2px solid var(--brand-orange);
}

.btn-download:hover,
.btn-external:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 80, 48, 0.4);
    background: linear-gradient(135deg, rgba(240, 80, 48, 1) 0%, var(--brand-orange) 100%);
}

.btn-external {
    background: linear-gradient(135deg, var(--brand-eggplant) 0%, rgba(46, 43, 61, 0.9) 100%);
    border-color: var(--brand-eggplant);
    box-shadow: 0 4px 15px rgba(46, 43, 61, 0.3);
}

.btn-external:hover {
    background: linear-gradient(135deg, rgba(46, 43, 61, 1) 0%, var(--brand-eggplant) 100%);
    box-shadow: 0 8px 25px rgba(46, 43, 61, 0.4);
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }
    
    .lightbox-header {
        padding: 20px 25px;
    }
    
    .lightbox-header h2 {
        font-size: 1.4rem;
    }
    
    .lightbox-logo {
        height: 50px;
    }
    
    .lightbox-body {
        padding: 25px 25px 20px;
    }
    
    .case-overview {
        padding: 20px;
    }
    
    .case-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .metric-card {
        padding: 20px 15px;
    }
    
    .metric-big {
        font-size: 3rem;
    }
    
    .case-study-metric-highlight {
        padding: 30px 20px;
    }
    
    .case-study-header h3 {
        font-size: 1.3rem;
    }
    
    .case-study-summary {
        font-size: 1rem;
        padding: 20px;
    }
}

/* Partner Logo Grid Styles */
.partner-logos-section {
    margin-top: 80px;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.partner-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100%;
    background: radial-gradient(ellipse at center top, 
        rgba(240, 80, 48, 0.04) 0%, 
        transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.partner-logos-section h3 {
    color: var(--brand-white);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.partner-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-logo-card {
    background: rgba(8, 12, 20, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 2;
    position: relative;
    overflow: hidden;
}

.partner-logo-card:hover {
    transform: translateY(-4px);
    background: rgba(240, 80, 48, 0.15);
    box-shadow: 
        0 12px 32px rgba(240, 80, 48, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 0 20px rgba(240, 80, 48, 0.2);
    border: 1px solid rgba(240, 80, 48, 0.5);
}

.partner-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 5px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    /* Enhance logos for light background */
    filter: brightness(0.95) contrast(1.05);
    /* Add subtle shadow */
    drop-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.partner-logo-card:hover .partner-logo img {
    filter: brightness(1);
    transform: scale(1.05);
}

.logo-placeholder {
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-eggplant), #3a3550);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.logo-placeholder span {
    color: var(--brand-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.partner-name {
    color: var(--brand-eggplant);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.partner-logo-card:hover .logo-placeholder {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--brand-orange), #e64420);
}

.partner-logo-card:hover .partner-name {
    color: var(--brand-orange);
}

/* Responsive adjustments for partner logos */
@media (max-width: 1024px) {
    .partner-logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .partner-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .partner-logos-section h3 {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .partner-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        gap: 15px;
    }
    
    .partner-logo-card {
        min-height: 100px;
        padding: 16px 12px;
    }
    
    .logo-placeholder {
        width: 50px;
        height: 35px;
    }
    
    .partner-name {
        font-size: 0.8rem;
    }
}

/* Responsive Map Styles */
@media (max-width: 768px) {
    .cinema-map {
        height: 350px;
    }
    
    .map-stats-overlay {
        position: static;
        top: auto;
        right: auto;
        margin: 20px auto;
        width: 100%;
        max-width: 500px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .map-stats-overlay .stat-item {
        margin-bottom: 0;
        padding: 12px 10px;
    }
    
    .map-stats-overlay .stat-number {
        font-size: 1.5rem;
    }
    
    .map-stats-overlay .stat-label {
        font-size: 0.75rem;
    }
    
    .map-legend {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 10px auto;
        width: fit-content;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px;
    }
    
    .legend-item {
        margin-bottom: 0 !important;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

.cinema-profiles {
    margin-bottom: 60px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cinema-profile {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.cinema-profile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.cinema-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 15px;
}

.cinema-logo-img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent;
    transition: all 0.3s ease;
}

/* Remove mix-blend for most logos but not all */
.cinema-logo-img:not([alt*="Event"]) {
    mix-blend-mode: multiply;
}

/* Specific sizing for independents logo */
.cinema-logo img[alt*="Independent"] {
    max-height: 75px;
}

/* Specific sizing for Reading logo */
.cinema-logo img[alt*="Reading"] {
    max-height: 95px;
}

/* Specific fix for Event logo white background */
.cinema-logo img[alt*="Event"],
.cinema-logo-img[alt*="Event"],
img[alt*="Event Cinemas"],
img[src*="event-logo"] {
    mix-blend-mode: normal !important;
    background: white !important;
    background-color: #ffffff !important;
    padding: 8px !important;
    border-radius: 4px !important;
}

.cinema-profile:hover .cinema-logo-img {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Palace logo specific sizing removed - using default size */

/* Maintain h4 styling for fallback */
.cinema-profile h4 {
    color: var(--brand-orange);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.profile-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.profile-stats span {
    padding: 5px 10px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--brand-orange);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.cinema-profile p {
    color: var(--text-muted);
    line-height: 1.5;
}

.network-cta {
    text-align: center;
}

.network-cta .btn {
    margin: 0 10px;
}

/* Experiences Section */
.experiences-section {
    background: linear-gradient(135deg, 
        rgba(10, 15, 28, 1) 0%, 
        rgba(220, 38, 38, 0.1) 25%, 
        rgba(5, 9, 20, 1) 50%, 
        rgba(220, 38, 38, 0.05) 75%, 
        rgba(10, 15, 28, 1) 100%);
    border-left: 6px solid var(--cinema-red);
    box-shadow: inset 6px 0 20px rgba(220, 38, 38, 0.1);
    position: relative;
}

.experience-journey {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.journey-step {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.journey-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cinema-red) 0%, var(--accent-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.journey-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-light);
}

.journey-step p {
    color: var(--text-muted);
    line-height: 1.5;
}

.brand-success-stories {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.brand-success-stories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, 
        rgba(37, 34, 51, 0.15) 0%, 
        transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.brand-success-stories h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-light);
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);  /* Default: 4 columns on desktop */
    gap: 20px;
    align-items: stretch; /* Make all cards same height */
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Responsive adjustments for success stories */
@media (max-width: 1400px) {
    .success-grid {
        padding: 0 30px;
    }
}

@media (max-width: 1100px) {
    .success-grid {
        grid-template-columns: repeat(3, 1fr);  /* 3 columns on medium screens */
    }
}
@media (max-width: 1200px) {
    .success-grid {
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .success-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .success-story {
        height: auto; /* Allow flexible height on mobile */
        min-height: 200px;
    }
    
    .success-metric-button {
        padding: 10px 16px;
        max-width: 160px;
    }
    
    .success-metric-button .metric-number {
        font-size: 1rem;
    }
    
    .success-metric-button .metric-label {
        font-size: 0.75rem;
    }
}

.success-story {
    background: rgba(10, 15, 25, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 220px; /* Minimum height */
    height: 100%; /* Fill grid cell */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.success-story:hover {
    transform: translateY(-5px);
    background: rgba(240, 80, 48, 0.12);
    box-shadow: 
        0 10px 30px rgba(240, 80, 48, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 0 20px rgba(240, 80, 48, 0.15);
    border-color: rgba(240, 80, 48, 0.5);
}

.success-story h4 {
    color: var(--brand-orange);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.success-story p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 0.9rem;
    flex: 1; /* Fills available space */
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-metric-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--orange-light) 100%);
    color: var(--brand-white);
    border: 2px solid var(--brand-orange);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 180px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(240, 80, 48, 0.3);
}

.success-metric-button:hover {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--brand-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 31, 0.5);
    border-color: var(--orange-light);
}

.success-metric-button .metric-number {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
    color: var(--brand-white);
}

.success-metric-button .metric-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand-white);
    opacity: 1;
}

.experience-metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    line-height: 1;
}

.metric-label {
    display: block;
    color: var(--text-muted);
    margin-top: 8px;
    font-size: 0.9rem;
}

/* Solutions Section */
.solutions-section {
    background: linear-gradient(135deg, 
        rgba(5, 9, 20, 1) 0%, 
        rgba(240, 80, 48, 0.1) 25%, 
        rgba(10, 15, 28, 1) 50%, 
        rgba(240, 80, 48, 0.05) 75%, 
        rgba(5, 9, 20, 1) 100%);
    border-left: 6px solid var(--brand-orange);
    box-shadow: inset 6px 0 20px rgba(240, 80, 48, 0.1);
    position: relative;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
    border-color: var(--brand-orange);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--brand-orange);
}

.solution-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.solution-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.solution-card li {
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.solution-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-orange);
    font-weight: bold;
}

.solution-cta {
    margin-top: auto;
}

/* Data Section */
.data-section {
    background: linear-gradient(135deg, 
        rgba(10, 15, 28, 1) 0%, 
        rgba(46, 43, 61, 0.1) 25%, 
        rgba(5, 9, 20, 1) 50%, 
        rgba(46, 43, 61, 0.05) 75%, 
        rgba(10, 15, 28, 1) 100%);
    border-left: 6px solid var(--brand-eggplant);
    box-shadow: inset 6px 0 20px rgba(46, 43, 61, 0.1);
}

.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.data-insights h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-light);
}

.insight-stats {
    display: grid;
    gap: 30px;
}

.insight-stat {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.insight-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.insight-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 10px;
}

.insight-stat .stat-label {
    color: var(--text-muted);
    font-size: 1rem;
}

.analytics-chart {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
}

.analytics-chart h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-light);
    text-align: center;
}

.reports-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text-light);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.report-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(46, 43, 61, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.report-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--brand-orange);
}

.report-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
    flex: 1;
}

/* Footer */
.footer {
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(46, 43, 61, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(240, 80, 48, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, var(--dark-navy) 0%, var(--brand-eggplant) 60%, var(--dark-navy) 100%);
    border-top: 2px solid var(--brand-orange);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--brand-orange);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--brand-orange);
}

.footer-logo-image {
    height: 94.5px;
    width: auto;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
    /* Blend seamlessly with dark background */
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    /* Make black background transparent by filtering */
    mix-blend-mode: screen;
}

.footer-logo-image:hover {
    opacity: 0.9;
}

/* Maintain footer text logo styles for fallback */
.footer-text-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    display: none;
}

.modal.active {
    display: block;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 0;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--brand-orange);
    color: var(--primary-navy);
}

.modal-content {
    padding: 0 30px 30px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-form {
    display: grid;
    gap: 20px;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    outline: none;
    border-color: var(--brand-orange);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.modal-form textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-form button {
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(10, 15, 28, 0.98);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 40px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carousel-track {
        gap: 20px;
        padding: 0 10px;
    }

    .movie-card {
        flex: 0 0 250px;
    }

    .data-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .experience-metrics {
        gap: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        width: 100%;
        padding-right: 0;
        max-width: 100%;
    }

    .hero {
        background-attachment: scroll;
        background-position: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card .stat-number {
        font-size: 1.6rem;
    }

    .stat-card .stat-label {
        font-size: 0.75rem;
    }

    .tech-cta .btn,
    .network-cta .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 800px;
    }
    
    .stat-card .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-card .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .movie-card {
        flex: 0 0 220px;
    }

    .carousel-controls {
        padding: 0 5px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .modal {
        width: 95%;
        margin: 20px;
    }

    .modal-header,
    .modal-content {
        padding: 20px;
    }

    .modal-header {
        padding-bottom: 0;
    }
}

/* Human Touch Behind the Tech Section */
.human-touch-section {
    background: linear-gradient(135deg, 
        rgba(37, 34, 51, 0.9) 0%, 
        rgba(10, 15, 28, 0.95) 30%, 
        rgba(46, 43, 61, 0.8) 70%, 
        rgba(10, 15, 28, 1) 100%);
    border-left: 6px solid var(--brand-eggplant);
    position: relative;
    overflow: hidden;
}

.human-touch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(240,80,48,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.human-touch-content {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.brand-managers-showcase {
    margin-bottom: 50px;
}

.manager-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7;
}

.manager-profile.active,
.manager-profile:hover {
    opacity: 1;
    border-color: rgba(240, 80, 48, 0.3);
    background: rgba(255, 77, 31, 0.08);
    transform: translateX(5px);
}

.manager-photo {
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a1f35 0%, #0a0f1c 100%);
    border-radius: 50%;
}

.manager-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 77, 31, 0.4);
}

.movie-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--brand-orange);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(240, 80, 48, 0.3);
}

.manager-info {
    flex: 1;
}

.manager-info h4 {
    color: var(--brand-orange);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.manager-role {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.manager-specialty {
    color: var(--brand-orange);
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-style: italic;
}

.manager-quote {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    font-style: italic;
    opacity: 0.9;
    border-left: 3px solid var(--brand-orange);
    padding-left: 12px;
}

.personal-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 60px;
}

.personal-stat {
    text-align: center;
    padding: 20px 30px;
    background: rgba(37, 34, 51, 0.7);
    border-radius: 15px;
    border: 2px solid rgba(240, 80, 48, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.personal-stat:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 77, 31, 0.5);
    box-shadow: 0 8px 25px rgba(255, 77, 31, 0.2);
}

.personal-stat .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(240, 80, 48, 0.3);
}

.personal-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.personal-success-stories {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.personal-success-stories h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 600;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 77, 31, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 77, 31, 0.4);
    box-shadow: 0 10px 30px rgba(240, 80, 48, 0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.brand-logo-small {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.brand-logo-small img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.manager-attribution {
    display: flex;
    flex-direction: column;
}

.manager-name {
    color: var(--brand-orange);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

.manager-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.story-result {
    text-align: center;
    padding: 20px;
    background: rgba(255, 77, 31, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 77, 31, 0.2);
}

.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-orange);
    margin-bottom: 5px;
    text-shadow: 0 0 15px rgba(240, 80, 48, 0.3);
}

.result-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
}

.human-touch-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.human-touch-cta h3 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 600;
}

.human-touch-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.human-touch-cta .btn {
    margin: 0 10px;
}

/* Responsive Design for Human Touch Section */
@media (max-width: 768px) {
    .manager-profile {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .personal-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .personal-stats .personal-stat {
        width: 80%;
        max-width: 300px;
    }

    .story-cards {
        grid-template-columns: 1fr;
    }

    .story-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .human-touch-cta .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}