@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Backgrounds */
    --bg-dark-charcoal: #0A0A0A;
    --bg-deep-teal: #141414;
    --bg-card-teal: #1A1A1A;
    --bg-glass-overlay: rgba(0, 0, 0, 0.6);

    /* Text */
    --text-main: #E2E8F0;
    --text-muted: #94A3B8;
    --text-dark: #000000;
    --text-white: #F8FAFC;

    /* Accents */
    --primary-orange: #BE123C;
    --primary-orange-hover: #9F1239;
    --accent-gold: #D4AF37;
    --accent-emerald: #10B981;

    /* Borders & Shadows */
    --border-slate: #2D2D2D;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(190, 18, 60, 0.3);

    /* Layout */
    --container-width: 1355px;
    --header-height: 80px;

    /* Typography */
    --font-main: 'Montserrat', system-ui, -apple-system, sans-serif;
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--bg-dark-charcoal);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease-in-out;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

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

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.app-cinema-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.app-cinema-text-gradient {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-cinema-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.5rem;
    text-decoration: none;
}

.app-cinema-btn--primary {
    background: var(--primary-orange);
    color: var(--text-white);
    box-shadow: 0 4px 6px -1px rgba(190, 18, 60, 0.3);
}

.app-cinema-btn--primary:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(190, 18, 60, 0.4);
}

.app-cinema-btn--white {
    background: var(--text-white);
    color: var(--text-dark);
}

.app-cinema-btn--white:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(255, 255, 255, 0.2);
}

.app-cinema-btn--outline {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
}

.app-cinema-btn--outline:hover {
    border-color: var(--text-white);
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-white);
}

/* Header */
.app-cinema-header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.app-cinema-header--hidden {
    transform: translateY(-100%);
}

.app-cinema-header--scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--accent-gold);
    box-shadow: var(--shadow-soft);
}

.app-cinema-header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.app-cinema-header__logo {
    display: flex;
    align-items: center;
    z-index: 60;
}

.app-cinema-header__logo-img {
    height: 100px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .app-cinema-header__logo-img {
        height: 38px;
    }
}

.app-cinema-header__nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.app-cinema-header__link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
}

.app-cinema-header__link:hover,
.app-cinema-header__link--active {
    opacity: 1;
    color: var(--text-white);
}

.app-cinema-header__actions {
    display: flex;
    gap: 1rem;
}

.app-cinema-mobile-toggle {
    display: none;
    z-index: 60;
    cursor: pointer;
    color: var(--text-white);
}

@media (max-width: 1024px) {

    .app-cinema-header__nav,
    .app-cinema-header__actions {
        display: none;
    }

    .app-cinema-mobile-toggle {
        display: block;
    }
}

.app-cinema-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-dark-charcoal);
    z-index: 55;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    padding-top: calc(var(--header-height) + 3rem);
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-cinema-mobile-menu--open {
    transform: translateY(0);
}

.app-cinema-mobile-menu__link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

/* Hero */
.app-cinema-hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    background: black;
}

.app-cinema-hero__slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.app-cinema-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 1.2s ease-out;
    transform: scale(1.1);
    z-index: 1;
}

.app-cinema-hero__slide--active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.app-cinema-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 3;
}

.app-cinema-hero__content-container {
    padding-top: 60px;
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.app-cinema-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--accent-gold);
    color: var(--text-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.app-cinema-hero__slide--active .app-cinema-hero__badge {
    opacity: 1;
    transform: translateY(0);
}

.app-cinema-hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-emerald);
}

.app-cinema-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.app-cinema-hero__slide--active .app-cinema-hero__title {
    opacity: 1;
    transform: translateY(0);
}

.app-cinema-hero__subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.5s;
}

.app-cinema-hero__slide--active .app-cinema-hero__subtitle {
    opacity: 1;
    transform: translateY(0);
}

.app-cinema-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.6s;
}

.app-cinema-hero__slide--active .app-cinema-hero__actions {
    opacity: 1;
    transform: translateY(0);
}

.app-cinema-hero__trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-left: 4px solid var(--primary-orange);
    padding-left: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.7s;
}

.app-cinema-hero__slide--active .app-cinema-hero__trust {
    opacity: 1;
    transform: translateY(0);
}

.app-cinema-hero__micro-proof {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.app-cinema-hero__trust-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}

.app-cinema-hero__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-cinema-hero__nav-btn:hover {
    background: var(--text-white);
    color: var(--bg-dark-charcoal);
    border-color: var(--text-white);
}

.app-cinema-hero__nav-btn--prev {
    left: 2rem;
}

.app-cinema-hero__nav-btn--next {
    right: 2rem;
}

.app-cinema-hero__dots {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.app-cinema-hero__dot {
    width: 30px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.app-cinema-hero__dot--active {
    background: var(--primary-orange);
    width: 50px;
}

.app-cinema-hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 15;
    line-height: 0;
}

.app-cinema-hero__wave-svg path {
    fill: var(--bg-dark-charcoal);
}

/* Sections */
.app-cinema-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-align: center;
}

.app-cinema-section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    display: block;
}

/* Programs Section */
.app-cinema-programs {
    padding: 3rem 0;
    background: var(--bg-deep-teal);
    overflow: hidden;
    position: relative;
}

.app-cinema-programs__header {
    text-align: center;
    margin-bottom: 4rem;
}

.app-cinema-programs__sw-container {
    position: relative;
    padding: 0 1rem;
}

.app-cinema-programs__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card-teal);
    border: 1px solid var(--border-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    color: var(--primary-orange);
    transition: all 0.2s;
}

.app-cinema-programs__nav-btn:hover {
    border-color: var(--primary-orange);
    background: var(--primary-orange);
    color: white;
}

.app-cinema-programs__nav-btn--prev {
    left: -2rem;
}

.app-cinema-programs__nav-btn--next {
    right: -2rem;
}

@media (max-width: 1200px) {
    .app-cinema-programs__nav-btn--prev {
        left: 0;
    }

    .app-cinema-programs__nav-btn--next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .app-cinema-programs__nav-btn {
        display: none;
    }
}

.app-cinema-programs__card {
    background: var(--bg-card-teal);
    border-radius: 1.5rem;
    border: 1px solid var(--border-slate);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s;
}

.app-cinema-programs__card:hover {
    transform: translateY(-10px);
}

.app-cinema-programs__card-image-wrapper {
    position: relative;
    height: 240px;
}

.app-cinema-programs__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-cinema-programs__status {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-cinema-programs__status--open {
    background: var(--primary-orange);
    color: white;
}

.app-cinema-programs__status--soon {
    background: var(--accent-gold);
    color: black;
}

.app-cinema-programs__card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-cinema-programs__badge {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
}

.app-cinema-programs__card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-white);
}

.app-cinema-programs__card-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-cinema-programs__highlights {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-cinema-programs__highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.app-cinema-programs__actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-cinema-programs__cta-btn {
    width: 100%;
}

.app-cinema-programs__microcopy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.app-cinema-programs__swiper {
    padding-bottom: 4rem;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-orange) !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* Why DBIMA Section */
.app-cinema-why {
    background: var(--bg-dark-charcoal);
    padding: 6rem 0 0 0;
}

.app-cinema-why__grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 1.5fr;
    gap: 4rem;
}

.app-cinema-why__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-cinema-why__desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.app-cinema-why__cta {
    color: var(--primary-orange);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    transition: gap 0.3s;
}

.app-cinema-why__cta:hover {
    gap: 1rem;
}

.app-cinema-why__image-container {
    margin-top: auto;
    display: flex;
    justify-content: center;
    padding-bottom: 2rem;
}

.app-cinema-why__image {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) contrast(120%);
    mix-blend-mode: luminosity;
    opacity: 0.8;
}

.app-cinema-why__benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.app-cinema-why__benefit-card {
    position: relative;
    background: var(--bg-card-teal);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border-slate);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
    z-index: 1;
    transition: transform 0.3s;
}

.app-cinema-why__benefit-card:hover {
    transform: translateY(-5px);
}

.app-cinema-why__benefit-circle {
    position: absolute;
    top: 50%;
    right: -25px;
    background: var(--primary-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    z-index: 0;
    transform: translateX(0) scale(1);
    transition: transform 0.5s ease-in-out;
    pointer-events: none;
}

.app-cinema-why__benefit-card:hover .app-cinema-why__benefit-circle {
    transform: translateX(-50%) scale(40);
}

.app-cinema-why__benefit-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-cinema-why__benefit-icon {
    margin-bottom: 1.25rem;
    color: var(--text-white);
    transition: color 0.3s;
}

.app-cinema-why__benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    transition: color 0.3s;
}

.app-cinema-why__benefit-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    transition: color 0.3s;
}

.app-cinema-why__benefit-card:hover .app-cinema-why__benefit-icon,
.app-cinema-why__benefit-card:hover .app-cinema-why__benefit-title {
    color: white;
}

.app-cinema-why__benefit-card:hover .app-cinema-why__benefit-desc {
    color: rgba(255, 255, 255, 0.9);
}

.app-cinema-why__video-wrapper {
    margin-top: 5rem;
    width: 100%;
}

.app-cinema-why__video-card {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: black;
    box-shadow: var(--shadow-glow);
    transition: transform 0.3s;
}

.app-cinema-why__video-card:hover {
    transform: scale(1.01);
}

.app-cinema-why__video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 0.7s ease;
}

.app-cinema-why__video-card:hover .app-cinema-why__video-thumb {
    transform: scale(1.05);
}

.app-cinema-why__video-corner {
    position: absolute;
    width: 3rem;
    height: 3rem;
    border-color: var(--accent-gold);
    border-style: solid;
    border-width: 0;
    z-index: 3;
}

.app-cinema-why__video-corner--tl {
    top: 2rem;
    left: 2rem;
    border-top-width: 4px;
    border-left-width: 4px;
}

.app-cinema-why__video-corner--tr {
    top: 2rem;
    right: 2rem;
    border-top-width: 4px;
    border-right-width: 4px;
}

.app-cinema-why__video-corner--bl {
    bottom: 2rem;
    left: 2rem;
    border-bottom-width: 4px;
    border-left-width: 4px;
}

.app-cinema-why__video-corner--br {
    bottom: 2rem;
    right: 2rem;
    border-bottom-width: 4px;
    border-right-width: 4px;
}

.app-cinema-why__watermark {
    position: absolute;
    top: 2.5rem;
    right: 3rem;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-cinema-why__watermark-text {
    font-size: 1.2rem;
    color: var(--text-white);
}

.app-cinema-why__watermark-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
    color: #fbbf24;
}

.app-cinema-why__play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.app-cinema-why__play-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: rgba(190, 18, 60, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    color: white;
}

.app-cinema-why__play-circle:hover {
    transform: scale(1.1);
    background: var(--primary-orange);
    border-color: white;
}

@media (max-width: 1024px) {
    .app-cinema-why__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .app-cinema-why__benefits {
        grid-template-columns: 1fr;
    }
}

/* Modal Overlay */
.app-cinema-why__modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.app-cinema-why__modal-overlay--open {
    display: flex;
}

.app-cinema-why__modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 101;
}

.app-cinema-why__modal-iframe-container {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: black;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Outcomes Section */
.app-cinema-outcomes {
    background: var(--bg-deep-teal);
    padding: 6rem 0;
}

.app-cinema-outcomes__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.app-cinema-outcomes__card {
    position: relative;
    height: 320px;
    width: 300px;
    flex: 1 1 300px;
    max-width: 350px;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: default;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-slate);
}

.app-cinema-outcomes__card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease-out;
}

.app-cinema-outcomes__card:hover .app-cinema-outcomes__card-bg {
    transform: scale(1.1);
}

.app-cinema-outcomes__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.app-cinema-outcomes__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: white;
    text-align: left;
    pointer-events: none;
    z-index: 2;
}

.app-cinema-outcomes__card-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.app-cinema-outcomes__card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Student Showcase Section */
.app-cinema-showcase {
    background: var(--bg-card-teal);
    padding: 6rem 0;
}

.app-cinema-showcase__container {
    position: relative;
    padding: 0 1rem;
}

.app-cinema-showcase__nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-deep-teal);
    border: 1px solid var(--border-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    color: var(--text-white);
    transition: all 0.3s;
}

.app-cinema-showcase__nav-btn:hover {
    border-color: var(--primary-orange);
    background: var(--primary-orange);
}

.app-cinema-showcase__nav-btn--prev {
    left: -2rem;
}

.app-cinema-showcase__nav-btn--next {
    right: -2rem;
}

@media (max-width: 1200px) {
    .app-cinema-showcase__nav-btn--prev {
        left: 0;
    }

    .app-cinema-showcase__nav-btn--next {
        right: 0;
    }
}

@media (max-width: 768px) {
    .app-cinema-showcase__nav-btn {
        display: none;
    }
}

.app-cinema-showcase__card {
    position: relative;
    border-radius: 1.5rem;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-slate);
}

.app-cinema-showcase__card-thumb-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.app-cinema-showcase__card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-cinema-showcase__card:hover .app-cinema-showcase__card-thumb {
    transform: scale(1.05);
}

.app-cinema-showcase__card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.app-cinema-showcase__play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    justify-content: end;
    z-index: 5;
}

.app-cinema-showcase__play-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: white;
}

.app-cinema-showcase__card:hover .app-cinema-showcase__play-icon {
    transform: scale(1.1);
    background: var(--primary-orange);
    border-color: white;
}

.app-cinema-showcase__card-info {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    z-index: 10;
}

.app-cinema-showcase__card-title {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.app-cinema-showcase__card-director {
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 600;
}

.app-cinema-showcase__modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.app-cinema-showcase__modal--open {
    display: flex;
}

.app-cinema-showcase__modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: white;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 102;
}

.app-cinema-showcase__modal-video {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: black;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.app-cinema-showcase__swiper {
    padding-bottom: 4rem;
}

/* Mentors Section */
.app-cinema-mentors {
    background: var(--bg-deep-teal);
    padding: 6rem 0;
}

.app-cinema-mentors__header {
    text-align: center;
    margin-bottom: 4rem;
}

.app-cinema-mentors__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 3rem;
    align-items: start;
}

.app-cinema-mentors__main-card {
    background: var(--bg-card-teal);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: row;
    min-height: 500px;
    border: 1px solid var(--border-slate);
}

.app-cinema-mentors__image-col {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.app-cinema-mentors__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.app-cinema-mentors__progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: var(--primary-orange);
    z-index: 10;
    width: 0%;
}

.app-cinema-mentors__content-col {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-cinema-mentors__name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.app-cinema-mentors__role {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.app-cinema-mentors__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.app-cinema-mentors__bio {
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.app-cinema-mentors__socials {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.app-cinema-mentors__social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.app-cinema-mentors__social-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.app-cinema-mentors__contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.app-cinema-mentors__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.app-cinema-mentors__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.app-cinema-mentors__grid-item {
    cursor: pointer;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 2.5/4.2;
    transition: all 0.3s ease;
    border: 1px solid var(--border-slate);
}

.app-cinema-mentors__grid-item--active {
    transform: scale(0.95);
    opacity: 0.6;
}

.app-cinema-mentors__grid-item:hover {
    transform: translateY(-5px);
}

.app-cinema-mentors__grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-cinema-mentors__grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(2px);
    display: none;
    align-items: center;
    justify-content: center;
}

.app-cinema-mentors__grid-item--active .app-cinema-mentors__grid-overlay {
    display: flex;
}

.app-cinema-mentors__grid-indicator {
    width: 40px;
    height: 40px;
    background: var(--bg-card-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-orange);
}

.app-cinema-mentors__grid-dot {
    width: 10px;
    height: 10px;
    background: var(--primary-orange);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .app-cinema-mentors__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .app-cinema-mentors__main-card {
        flex-direction: column;
    }

    .app-cinema-mentors__image-col {
        height: 300px;
    }

    .app-cinema-mentors__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Testimonials Section */
.app-cinema-testimonials {
    padding: 8rem 0;
    background: var(--bg-deep-teal);
    overflow: hidden;
    position: relative;
}

.app-cinema-testimonials__header {
    margin-bottom: 4rem;
}

.app-cinema-testimonials__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.5fr) 100px;
    gap: 4rem;
    align-items: center;
}

.app-cinema-testimonials__image-col {
    position: relative;
    display: flex;
    justify-content: center;
}

.app-cinema-testimonials__image-wrapper {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--bg-card-teal);
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 10;
}

.app-cinema-testimonials__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-cinema-testimonials__badge {
    position: absolute;
    top: 10%;
    left: -20px;
    background: var(--primary-orange);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(190, 18, 60, 0.3);
    border: 4px solid var(--bg-deep-teal);
    z-index: 20;
}

.app-cinema-testimonials__decorative-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    max-width: 100%;
}

.app-cinema-testimonials__author-name {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: var(--text-white);
}

.app-cinema-testimonials__author-role {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.app-cinema-testimonials__quote {
    font-size: 1.25rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.app-cinema-testimonials__stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.app-cinema-testimonials__socials {
    display: flex;
    gap: 1rem;
}

.app-cinema-testimonials__social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-slate);
    background: var(--bg-card-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.app-cinema-testimonials__social-btn:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.app-cinema-testimonials__nav-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.app-cinema-testimonials__nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card-teal);
    border: 1px solid var(--border-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-main);
}

.app-cinema-testimonials__nav-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.app-cinema-testimonials__nav-dots {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.app-cinema-testimonials__nav-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.app-cinema-testimonials__nav-dot--active {
    background: var(--primary-orange);
    color: white;
}

@media (max-width: 1024px) {
    .app-cinema-testimonials__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .app-cinema-testimonials__nav-col {
        flex-direction: row;
        justify-content: center;
    }

    .app-cinema-testimonials__nav-dots {
        flex-direction: row;
    }
}

/* Process Section */
.app-cinema-process {
    background: var(--bg-card-teal);
    padding: 6rem 0;
    overflow: hidden;
}

.app-cinema-process__header {
    text-align: center;
    margin-bottom: 4rem;
}

.app-cinema-process__timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.app-cinema-process__line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--border-slate);
    transform: translateX(-50%);
}

.app-cinema-process__item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}

.app-cinema-process__marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border: 4px solid var(--bg-deep-teal);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(190, 18, 60, 0.2);
}

.app-cinema-process__content {
    width: 45%;
    background: var(--bg-deep-teal);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-slate);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform 0.3s;
}

.app-cinema-process__item:nth-child(odd) .app-cinema-process__content {
    margin-right: auto;
    margin-left: 0;
}

.app-cinema-process__item:nth-child(even) .app-cinema-process__content {
    margin-left: auto;
    margin-right: 0;
}

.app-cinema-process__content:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.app-cinema-process__step-num {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.app-cinema-process__step-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-white);
}

.app-cinema-process__step-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.app-cinema-process__icon-box {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-card-teal);
    border: 1px solid var(--border-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.app-cinema-process__desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .app-cinema-process__line {
        left: 20px;
        transform: none;
    }

    .app-cinema-process__marker {
        left: 20px;
        transform: translate(-50%, -50%);
    }

    .app-cinema-process__content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }

    .app-cinema-process__item {
        justify-content: flex-start;
    }
}

/* Admissions Section */
.app-cinema-admissions {
    background: var(--bg-card-teal);
    padding: 6rem 0;
}

.app-cinema-admissions__card {
    background: linear-gradient(135deg, var(--bg-deep-teal) 0%, var(--bg-dark-charcoal) 100%);
    border-radius: 2rem;
    padding: 4rem 3rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--border-slate);
}

.app-cinema-admissions__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.app-cinema-admissions__info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s;
}

.app-cinema-admissions__info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.app-cinema-admissions__info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.app-cinema-admissions__info-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.app-cinema-admissions__info-value {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--primary-orange);
}

.app-cinema-admissions__info-sub {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--text-muted);
}

.app-cinema-admissions__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.app-cinema-admissions__btn-primary {
    background: var(--primary-orange);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.app-cinema-admissions__btn-primary:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(190, 18, 60, 0.3);
}

.app-cinema-admissions__btn-secondary {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 99px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.app-cinema-admissions__btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

@media (max-width: 768px) {
    .app-cinema-admissions__grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.app-cinema-faq-section {
    background: var(--bg-deep-teal);
    padding: 8rem 0;
    border-top: 1px solid var(--border-slate);
}

.app-cinema-faq-section__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.app-cinema-faq-section__header {
    text-align: center;
    margin-bottom: 5rem;
}

.app-cinema-faq-section__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.app-cinema-faq-section__desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.app-cinema-faq-section__tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.app-cinema-faq-section__tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--bg-card-teal);
    color: var(--text-main);
    border: 1px solid var(--border-slate);
    border-radius: 1.25rem;
    cursor: pointer;
    min-width: 180px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-cinema-faq-section__tab-btn--active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.app-cinema-faq-section__tab-icon {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: all 0.3s;
}

.app-cinema-faq-section__tab-btn--active .app-cinema-faq-section__tab-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.app-cinema-faq-section__tab-label {
    font-weight: 700;
    font-size: 1rem;
}

.app-cinema-faq-section__questions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.app-cinema-faq-section__container-inner {
    display: none;
}

.app-cinema-faq-section__container-inner--active {
    display: block;
}

.app-cinema-faq-section__item {
    background: var(--bg-card-teal);
    border-radius: 1rem;
    margin-bottom: 0;
    overflow: hidden;
    border: 1px solid var(--border-slate);
    transition: all 0.3s ease;
}

.app-cinema-faq-section__item:hover {
    border-color: var(--primary-orange);
}

.app-cinema-faq-section__question-btn {
    width: 100%;
    text-align: left;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
}

.app-cinema-faq-section__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-cinema-faq-section__arrow--active {
    color: var(--primary-orange);
    transform: rotate(180deg);
}

.app-cinema-faq-section__answer-wrapper {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}

.app-cinema-faq-section__answer {
    padding: 0 2rem 1.75rem 4.75rem;
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .app-cinema-faq-section__tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .app-cinema-faq-section__tab-btn {
        min-width: 140px;
        flex-shrink: 0;
    }

    .app-cinema-faq-section__tabs::-webkit-scrollbar {
        display: none;
    }

    .app-cinema-faq-section__answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .app-cinema-faq-section__question-btn {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }
}

/* Final CTA Section */
.app-cinema-cta {
    background: linear-gradient(90deg, rgba(11, 37, 41, 0.95) 0%, rgba(13, 27, 30, 0.95) 100%), url("https://images.unsplash.com/photo-1605647540924-852290f6b0d5?auto=format&fit=crop&q=80&w=2000");
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    color: var(--text-white);
    margin-top: 0;
    position: relative;
    border-top: 1px solid var(--border-slate);
}

.app-cinema-cta__text {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    opacity: 0.9;
    text-align: center;
    color: var(--text-main);
}

.app-cinema-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.app-cinema-cta__btn {
    padding: 1.1rem 2.5rem;
    border-radius: 99px;
    text-decoration: none;
    display: inline-block;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.app-cinema-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.app-cinema-cta__btn--primary {
    background: var(--primary-orange);
    color: white;
}

.app-cinema-cta__btn--primary:hover {
    background: var(--primary-orange-hover);
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
}

.app-cinema-cta__btn--outline {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.app-cinema-cta__btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Footer */
.app-cinema-footer {
    border-top: 1px solid var(--border-slate);
    padding: 4rem 0 2rem;
    background: var(--bg-deep-teal);
    color: var(--text-muted);
}

.app-cinema-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.app-cinema-footer__brand {
    margin-bottom: 1rem;
}

.app-cinema-footer__logo-img {
    height: 95px;
    width: auto;
    display: block;
}

.app-cinema-footer__heading {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.app-cinema-footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.app-cinema-footer__link {
    transition: color 0.2s;
    font-size: 0.95rem;
}

.app-cinema-footer__link:hover {
    color: var(--primary-orange);
}

.app-cinema-footer__bottom {
    border-top: 1px solid var(--border-slate);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .app-cinema-footer__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .app-cinema-footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Page Header Component */
.app-cinema-page-header {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-height);
    min-height: 60vh;
}

.app-cinema-page-header__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.app-cinema-page-header__container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 2rem;
}

.app-cinema-page-header__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-white);
}

.app-cinema-page-header__subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-muted);
    font-weight: 400;
}

/* Why Page Specific Styles */
.app-cinema-why-page-section {
    padding: 6rem 0;
    background: var(--bg-dark-charcoal);
}

.app-cinema-why-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .app-cinema-why-page__grid {
        grid-template-columns: 1fr;
    }
}

.app-cinema-why-page__image-card {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-slate);
}

.app-cinema-why-page__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.app-cinema-why-page__image-card:hover .app-cinema-why-page__img {
    transform: scale(1.05);
}

.app-cinema-why-page__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.app-cinema-why-page__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.app-cinema-why-page__intro {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.app-cinema-why-page__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-cinema-why-page__feature-card {
    position: relative;
    background: var(--bg-card-teal);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-slate);
    overflow: hidden;
    z-index: 1;
}

.app-cinema-why-page__feature-circle {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-orange);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
    transition: transform 0.5s ease;
}

.app-cinema-why-page__feature-card:hover .app-cinema-why-page__feature-circle {
    transform: scale(30);
}

.app-cinema-why-page__feature-content {
    display: flex;
    gap: 1.5rem;
}

.app-cinema-why-page__feature-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(190, 18, 60, 0.1);
    color: var(--primary-orange);
    border-radius: 1rem;
    border: 1px solid rgba(190, 18, 60, 0.2);
}

.app-cinema-why-page__feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.app-cinema-why-page__feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Programs Page Styles */
.app-cinema-programs-page {
    background: var(--bg-deep-teal);
    padding: 6rem 0;
}

.app-cinema-container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.app-cinema-programs-page__filter-bar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--bg-card-teal);
    border-radius: 1rem;
    border: 1px solid var(--border-slate);
}

.app-cinema-programs-page__filter-group {
    display: flex;
    gap: 2rem;
}

.app-cinema-programs-page__filter-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    cursor: pointer;
}

.app-cinema-programs-page__grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
}

@media (max-width: 992px) {
    .app-cinema-programs-page__grid {
        grid-template-columns: 1fr;
    }
}

.app-cinema-programs-page__sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.app-cinema-programs-page__sidebar-box {
    background: var(--bg-card-teal);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-slate);
}

.app-cinema-programs-page__sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.app-cinema-programs-page__search {
    position: relative;
    display: flex;
}

.app-cinema-programs-page__search-input {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: var(--bg-deep-teal);
    border: 1px solid var(--border-slate);
    border-radius: 0.75rem;
    color: var(--text-white);
    outline: none;
}

.app-cinema-programs-page__search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-orange);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-cinema-programs-page__cat-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-cinema-programs-page__cat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    cursor: pointer;
}

.app-cinema-programs-page__checkbox {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: var(--primary-orange);
}

.app-cinema-programs-page__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .app-cinema-programs-page__cards-grid {
        grid-template-columns: 1fr;
    }
}

.app-cinema-programs-page__cta-banner {
    margin-top: 6rem;
    padding: 4rem;
    background: linear-gradient(135deg, var(--bg-card-teal) 0%, var(--primary-orange) 200%);
    border-radius: 2rem;
    border: 1px solid var(--border-slate);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.app-cinema-programs-page__cta-title {
    font-size: 2rem;
}

.app-cinema-programs-page__cta-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
}

.app-cinema-programs-page__cta-btn {
    background: white;
    color: black;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
}

/* Admissions Page Styles */
.app-cinema-eligibility {
    background: var(--bg-dark-charcoal);
    padding: 6rem 0;
}

.app-cinema-eligibility__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .app-cinema-eligibility__grid {
        grid-template-columns: 1fr;
    }
}

.app-cinema-eligibility__title {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
}

.app-cinema-eligibility__card {
    background: var(--bg-card-teal);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-slate);
    margin-bottom: 2rem;
}

.app-cinema-eligibility__card-title {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.app-cinema-eligibility__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-cinema-eligibility__list li {
    display: flex;
    gap: 1rem;
    color: var(--text-muted);
}

.app-cinema-eligibility__list li::before {
    content: "•";
    color: var(--primary-orange);
    font-weight: bold;
}

.app-cinema-eligibility__deadline-box {
    background: linear-gradient(135deg, var(--bg-card-teal) 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--accent-gold);
    text-align: center;
    position: sticky;
    top: 100px;
}

.app-cinema-eligibility__deadline-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.app-cinema-eligibility__deadline-text {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.app-cinema-eligibility__btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary-orange);
    color: white;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Fees Section Styles */
.app-cinema-fees {
    background: var(--bg-deep-teal);
    padding: 6rem 0;
}

.app-cinema-fees__grid {
    display: flex;
    justify-content: center;
}

.app-cinema-fees__main-card {
    background: var(--bg-card-teal);
    padding: 4rem;
    border-radius: 2rem;
    border: 1px solid var(--border-slate);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.app-cinema-fees__card-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.app-cinema-fees__price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.app-cinema-fees__period {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
}

.app-cinema-fees__desc {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 3rem;
}

.app-cinema-fees__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.app-cinema-fees__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
}

.app-cinema-fees__check {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Contact Page Styles */
.app-cinema-contact {
    background: var(--bg-dark-charcoal);
    padding: 6rem 0;
}

.app-cinema-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .app-cinema-contact__grid {
        grid-template-columns: 1fr;
    }
}

.app-cinema-contact__info-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-white);
}

.app-cinema-contact__info-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.app-cinema-contact__info-item {
    display: flex;
    gap: 1.5rem;
}

.app-cinema-contact__icon-box {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(190, 18, 60, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-cinema-contact__info-heading {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.app-cinema-contact__info-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.app-cinema-contact__info-text--small {
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.app-cinema-contact__form-card {
    background: var(--bg-card-teal);
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid var(--border-slate);
}

.app-cinema-contact__form-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.app-cinema-contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-cinema-contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .app-cinema-contact__form-row {
        grid-template-columns: 1fr;
    }
}

.app-cinema-contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-cinema-contact__label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.app-cinema-contact__input,
.app-cinema-contact__select,
.app-cinema-contact__textarea {
    width: 100%;
    background: var(--bg-deep-teal);
    border: 1px solid var(--border-slate);
    border-radius: 0.75rem;
    padding: 0.8rem 1.2rem;
    color: var(--text-white);
    outline: none;
    transition: border-color 0.3s ease;
}

.app-cinema-contact__input:focus,
.app-cinema-contact__select:focus,
.app-cinema-contact__textarea:focus {
    border-color: var(--primary-orange);
}

.app-cinema-contact__checkbox-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.app-cinema-contact__checkbox {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.2rem;
    accent-color: var(--primary-orange);
}

.app-cinema-contact__checkbox-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.app-cinema-contact__submit-btn {
    background: var(--primary-orange);
    color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    margin-top: 1rem;
    transition: transform 0.2s ease;
}

.app-cinema-contact__submit-btn:hover {
    transform: translateY(-2px);
}

/* Login Page Styles */
.app-cinema-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem;
    background: var(--bg-dark-charcoal);
    text-align: center;
}

.app-cinema-login-text {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 2rem;
}

/* Full FAQ Page Styles */
.app-cinema-faq {
    background: var(--bg-dark-charcoal);
    padding: 6rem 0;
}

.app-cinema-faq__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4rem;
}

@media (max-width: 992px) {
    .app-cinema-faq__grid {
        grid-template-columns: 1fr;
    }
}

.app-cinema-faq__sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-cinema-faq__tab-btn {
    width: 100%;
    text-align: left;
    padding: 1.25rem 2rem;
    background: var(--bg-card-teal);
    border: 1px solid var(--border-slate);
    border-radius: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.app-cinema-faq__tab-btn--active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    box-shadow: 0 10px 20px rgba(190, 18, 60, 0.2);
}

.app-cinema-faq__help-box {
    background: linear-gradient(135deg, var(--bg-card-teal) 0%, #1a1a1a 100%);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-slate);
    margin-top: 2rem;
}

.app-cinema-faq__help-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.app-cinema-faq__help-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.app-cinema-faq__help-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.app-cinema-faq__category-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-white);
}

.app-cinema-faq__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.app-cinema-faq__item {
    background: var(--bg-card-teal);
    border-radius: 1rem;
    border: 1px solid var(--border-slate);
    overflow: hidden;
}

.app-cinema-faq__question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
}

.app-cinema-faq__answer {
    padding: 0 2rem 2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Legal Page Styles */
.app-cinema-legal-section {
    background: var(--bg-dark-charcoal);
    padding: 6rem 0;
}

.app-cinema-legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.app-cinema-legal-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-slate);
    padding-bottom: 1.5rem;
}

.app-cinema-legal-updated {
    font-size: 0.9rem;
    color: var(--accent-gold);
}

.app-cinema-legal-content {
    color: var(--text-muted);
    line-height: 1.8;
}

.app-cinema-legal-content h3 {
    color: var(--text-white);
    margin: 2.5rem 0 1rem;
    font-size: 1.5rem;
}

.app-cinema-legal-content p {
    margin-bottom: 1.5rem;
}

.app-cinema-legal-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.app-cinema-legal-content li {
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.app-cinema-legal-subtitle {
    font-size: 1.1rem;
    color: var(--primary-orange);
    margin-bottom: 2rem;
}

/* Page Loader Styles */
.app-cinema-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0f172a;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transition: opacity 0.5s ease-out, visibility 0.5s;
    border: none;
    border-radius: 0;
    animation: none;
}

.app-cinema-loader--hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}

.app-cinema-loader__reel {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-cinema-loader__reel i,
.app-cinema-loader__reel svg {
    width: 50px;
    height: 50px;
    display: block;
    animation: rotateFilm 2s linear infinite;
}

@keyframes rotateFilm {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.app-cinema-loader__text {
    margin-top: 1.5rem;
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

.app-cinema-loader__progress {
    height: 2px;
    width: 200px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.app-cinema-loader__progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #7c3aed, transparent);
    animation: progressMove 1.5s ease-in-out infinite;
}

@keyframes progressMove {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* =========================================
   Program Detail Page
   ========================================= */
.app-cinema-program-detail__overview-section {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background: var(--bg-deep-teal);
    /* Changed from bg-secondary to match var */
    border-bottom: 1px solid var(--border-slate);
}

.app-cinema-program-detail__back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.app-cinema-program-detail__back-link:hover {
    color: var(--primary-orange);
}

.app-cinema-program-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.app-cinema-program-detail__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.app-cinema-program-detail__description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.app-cinema-program-detail__actions {
    display: flex;
    gap: 1rem;
}

/* Sidebar Card */
.app-cinema-program-detail__sidebar-card {
    background: var(--bg-card-teal);
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-glow);
    border: 1px solid var(--accent-gold);
    margin-top: -6rem;
    position: relative;
    z-index: 20;
}

.app-cinema-program-detail__sidebar-title {
    margin-bottom: 1.5rem;
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
}

.app-cinema-program-detail__sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-cinema-program-detail__sidebar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-cinema-program-detail__sidebar-icon {
    padding: 0.75rem;
    background: var(--bg-deep-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-cinema-program-detail__sidebar-label {
    font-size: 0.875rem;
    color: var(--text-main);
}

.app-cinema-program-detail__sidebar-value {
    font-weight: 600;
    color: var(--text-white);
}

.app-cinema-program-detail__sidebar-divider {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-slate);
}

.app-cinema-program-detail__fees-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* Curriculum Section */
.app-cinema-program-detail__curriculum-section {
    padding: 6rem 0;
}

.app-cinema-program-detail__curriculum-container {
    max-width: 900px;
    margin: 0 auto;
}

.app-cinema-program-detail__module-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-cinema-program-detail__module {
    border: 1px solid var(--border-slate);
    border-radius: 1rem;
    overflow: hidden;
    background: var(--bg-card-teal);
}

.app-cinema-program-detail__module-btn {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    color: var(--text-white);
    transition: background 0.2s;
}

.app-cinema-program-detail__module-btn:hover {
    background: var(--bg-deep-teal);
}

.app-cinema-program-detail__module-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-main);
    line-height: 1.6;
    display: none;
    /* Hidden by default */
}

.app-cinema-program-detail__module-content.active {
    display: block;
}

@media (max-width: 1024px) {
    .app-cinema-program-detail__grid {
        grid-template-columns: 1fr;
    }

    .app-cinema-program-detail__sidebar-card {
        margin-top: 0;
    }
}

/* Footer Social Icons */
.app-cinema-footer__socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.app-cinema-footer__social-link {
    color: var(--text-muted);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-cinema-footer__social-link:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

/* =========================================
   Login Page Styles
   ========================================= */
.app-cinema-login-section {
    padding: 100px 0;
    background: var(--bg-dark-charcoal);
    min-height: calc(100vh - var(--header-height) - 400px);
    display: flex;
    align-items: center;
}

.app-cinema-login-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card-teal);
    border: 1px solid var(--border-slate);
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.app-cinema-login-card__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.app-cinema-login-card__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.app-cinema-login-card__subtitle {
    color: var(--text-muted);
}

.app-cinema-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.app-cinema-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.app-cinema-form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.app-cinema-form-input-wrapper {
    position: relative;
}

.app-cinema-form-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.app-cinema-form-input {
    width: 100%;
    background: var(--bg-deep-teal);
    border: 1px solid var(--border-slate);
    border-radius: 9999px;
    padding: 0.75rem 1.25rem 0.75rem 3rem;
    color: var(--text-white);
    font-family: inherit;
    transition: all 0.2s;
}

.app-cinema-form-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px rgba(190, 18, 60, 0.2);
}

.app-cinema-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.app-cinema-form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.app-cinema-form-forgot {
    color: var(--primary-orange);
    font-weight: 600;
}

.app-cinema-login-btn {
    margin-top: 1rem;
    width: 100%;
}

.app-cinema-login-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.app-cinema-login-footer a {
    color: var(--primary-orange);
    font-weight: 600;
}

@media (max-width: 480px) {
    .app-cinema-login-card {
        padding: 2rem 1.5rem;
    }
}

/* Programs Page Mobile Sidebar Toggle */
@media (max-width: 992px) {
    .app-cinema-programs-page__sidebar {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, margin-bottom 0.3s ease;
        margin-bottom: 0;
    }

    .app-cinema-programs-page__sidebar--open {
        max-height: 800px;
        margin-bottom: 2rem;
    }
}