/* ==========================================================================
   VALKYRIE FILMS - PREMIUM CINEMATIC DESIGN SYSTEM
   ========================================================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
    --bg-black-base: #050505;
    --bg-black-dark: #0B0B0B;
    --bg-black-mid: #111111;
    --bg-black-light: #1B1B1B;
    --bg-card: #151515;
    
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.35);
    --gold-flare: rgba(255, 122, 0, 0.4);
    --red: #C1121F;
    --blue-spotlight: #1E90FF;
    --orange-lens: #FF7A00;
    --silver: #D9D9D9;
    --white: #FFFFFF;
    
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-mid: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.25s cubic-bezier(0.33, 1, 0.68, 1);
}

/* --- FONTS --- */
.Bebas-Neue { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; }
.Cinzel { font-family: 'Cinzel', serif; letter-spacing: 0.1em; }
.Cormorant-Garamond { font-family: 'Cormorant Garamond', serif; }
.Inter { font-family: 'Inter', sans-serif; }

/* --- BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black-base);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-black-base);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange-lens);
}

/* --- CINEMATIC EFFECTS --- */

/* Film Grain */
.film-grain {
    position: fixed;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.035;
    pointer-events: none;
    z-index: 9999;
    animation: grain-animation 8s steps(10) infinite;
}

@keyframes grain-animation {
    0%, 100% { transform:translate(0, 0); }
    10% { transform:translate(-5%, -10%); }
    20% { transform:translate(-15%, 5%); }
    30% { transform:translate(7%, -25%); }
    40% { transform:translate(-5%, 25%); }
    50% { transform:translate(-15%, 10%); }
    60% { transform:translate(15%, 0%); }
    70% { transform:translate(0%, 15%); }
    80% { transform:translate(3%, 35%); }
    90% { transform:translate(-10%, 10%); }
}

/* Cinematic Vignette */
.cinematic-vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 35%, rgba(0,0,0,0.92) 100%);
    pointer-events: none;
    z-index: 99;
}

/* Soft Glowing Spotlights */
.spotlight-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    pointer-events: none;
    opacity: 0.12;
    z-index: 1;
}
.spotlight-glow.top-right {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, var(--blue-spotlight) 0%, transparent 70%);
}
.spotlight-glow.bottom-left {
    bottom: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}

/* --- CUSTOM CURSOR --- */
.custom-cursor {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-lens {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform 0.3s;
}

.cursor-label {
    position: absolute;
    color: var(--bg-black-base);
    font-family: 'Cinzel', serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.3s, transform 0.3s;
}

/* Cursor Interactive States */
.custom-cursor.hovering {
    width: 70px;
    height: 70px;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}
.custom-cursor.hovering .cursor-lens {
    transform: scale(0);
}
.custom-cursor.hovering .cursor-label {
    opacity: 1;
    transform: scale(1);
}

.custom-cursor.link-hover {
    width: 45px;
    height: 45px;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}
.custom-cursor.link-hover .cursor-lens {
    background: var(--white);
}

/* Sound Wave & Button */
.audio-control-panel {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 1000;
}

.sound-btn {
    background: rgba(11, 11, 11, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    cursor: pointer;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: var(--transition-fast);
}

.sound-btn:hover {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.sound-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 12px;
}

.sound-wave .bar {
    width: 2px;
    height: 4px;
    background: var(--silver);
    transition: height 0.3s;
}

.sound-btn.playing .sound-wave .bar {
    background: var(--gold);
    animation: bounce 0.8s ease-in-out infinite alternate;
}

.sound-btn.playing .sound-wave .bar:nth-child(2) { animation-delay: 0.15s; }
.sound-btn.playing .sound-wave .bar:nth-child(3) { animation-delay: 0.3s; }
.sound-btn.playing .sound-wave .bar:nth-child(4) { animation-delay: 0.05s; }
.sound-btn.playing .sound-wave .bar:nth-child(5) { animation-delay: 0.2s; }

@keyframes bounce {
    0% { height: 3px; }
    100% { height: 12px; }
}

/* --- PRELOADER --- */
.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-black-base);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Film Countdown */
.film-countdown {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.countdown-circle {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#countdown-num {
    font-family: 'Cinzel', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.countdown-line {
    position: absolute;
    width: 50%;
    height: 1px;
    background: var(--gold);
    top: 50%;
    left: 50%;
    transform-origin: 0% 0%;
    animation: rotate-countdown 1s linear infinite;
}

@keyframes rotate-countdown {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-logo {
    font-size: 32px;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
}

.loader-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--silver);
    opacity: 0;
    transform: translateY(15px);
    margin-bottom: 40px;
}

.enter-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 0.15em;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.enter-btn:hover {
    background: var(--gold);
    color: var(--bg-black-base);
    box-shadow: 0 0 25px var(--gold-glow);
}

/* --- HEADER NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    z-index: 900;
    transition: padding 0.4s, background-color 0.4s;
}

.main-header.scrolled {
    padding: 15px 40px;
    background-color: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: var(--white);
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.15em;
    transition: var(--transition-fast);
}

.logo:hover {
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-item {
    color: var(--silver);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: var(--white);
}

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

.header-cta {
    border: 1px solid var(--gold);
    padding: 10px 22px;
    border-radius: 2px;
    transition: var(--transition-fast);
    color: var(--gold);
}

.header-cta::after {
    display: none;
}

.header-cta:hover {
    background: var(--gold);
    color: var(--bg-black-base) !important;
    box-shadow: 0 0 15px var(--gold-glow);
}

/* Mobile Toggle */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 25px;
    height: 20px;
    justify-content: center;
}

.mobile-nav-toggle .line {
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

.mobile-nav-toggle.open .line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-nav-toggle.open .line:nth-child(2) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-black-dark);
    z-index: 850;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    left: 0;
}

.drawer-item {
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--silver);
    text-decoration: none;
    transition: var(--transition-fast);
}

.drawer-item:hover {
    color: var(--gold);
}

.drawer-cta {
    border: 1px solid var(--gold);
    padding: 12px 30px;
    color: var(--gold);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: 1;
}

/* Volumetric Lighting & Lens Flare */
.hero-lighting {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.light-beam {
    position: absolute;
    width: 250px;
    height: 150%;
    top: -20%;
    background: linear-gradient(90deg, transparent 0%, rgba(30, 144, 255, 0.08) 50%, transparent 100%);
    filter: blur(40px);
    transform-origin: top center;
    animation: beam-swing 12s ease-in-out infinite alternate;
}

.left-beam {
    left: 15%;
    transform: rotate(20deg);
}

.right-beam {
    right: 15%;
    transform: rotate(-15deg);
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.07) 50%, transparent 100%);
    animation-delay: -6s;
}

.orange-flare {
    position: absolute;
    top: 30%;
    left: 45%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-flare) 0%, transparent 65%);
    filter: blur(60px);
    mix-blend-mode: screen;
    animation: pulse-flare 8s ease-in-out infinite alternate;
}

@keyframes beam-swing {
    0% { transform: rotate(12deg); }
    100% { transform: rotate(28deg); }
}

@keyframes pulse-flare {
    0% { opacity: 0.3; transform: scale(0.9); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

/* Hero Content */
.hero-content {
    position: relative;
    max-width: 1200px;
    text-align: center;
    z-index: 10;
    margin-top: 60px;
}

.hero-tagline {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.3em;
    margin-bottom: 24px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-title {
    font-size: clamp(48px, 6vw, 92px);
    line-height: 0.95;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.highlight-gold {
    color: var(--gold);
    background: linear-gradient(90deg, var(--gold) 30%, #FFEBA3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: clamp(14px, 1.2vw, 17px);
    color: var(--silver);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Immersive Viewfinder Box */
.hero-footer {
    position: absolute;
    bottom: 40px;
    width: 100%;
    max-width: 1600px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
}

.viewfinder-box {
    position: relative;
    width: 160px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewfinder-box .corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.viewfinder-box .top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.viewfinder-box .top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.viewfinder-box .bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.viewfinder-box .bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

.viewfinder-text {
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--silver);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mouse-wheel {
    width: 22px;
    height: 38px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.mouse-wheel::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
    0% { top: 6px; opacity: 1; }
    100% { top: 22px; opacity: 0; }
}

.scroll-text {
    font-size: 8px;
    letter-spacing: 0.18em;
    color: var(--silver);
}

/* BUTTONS */
.btn-primary, .btn-secondary {
    text-decoration: none;
    padding: 15px 36px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    transition: var(--transition-fast);
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-black-base);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    border: 1px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--bg-black-base);
}

/* --- ABOUT SECTION --- */
.about-section {
    position: relative;
    padding: 150px 0;
    background-color: var(--bg-black-dark);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-quote-container {
    border-left: 2px solid var(--gold);
    padding-left: 40px;
}

.about-quote {
    font-size: clamp(24px, 2.5vw, 42px);
    line-height: 1.4;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.quote-author {
    font-size: 16px;
    color: var(--gold);
}

.about-text-container {
    color: var(--silver);
    font-weight: 300;
    line-height: 1.7;
}

.section-title-small {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.25em;
    margin-bottom: 15px;
}

.paragraph-highlight {
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.5;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 38px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--silver);
}

/* --- PORTFOLIO SECTION (HORIZONTAL GSAP SCROLL) --- */
.portfolio-section {
    position: relative;
    background-color: var(--bg-black-base);
    padding: 100px 0;
    overflow: hidden;
}

.portfolio-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.section-title {
    font-size: clamp(38px, 5vw, 68px);
    color: var(--white);
    line-height: 0.9;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.15em;
}

/* GSAP Scroll container setup */
.horizontal-scroll-wrapper {
    width: 100%;
    overflow: hidden;
}

.horizontal-scroll-container {
    display: flex;
    padding: 0 40px;
    gap: 40px;
    width: max-content;
}

/* Film Poster Cards with 3D Tilt */
.film-card {
    width: 420px;
    height: 620px;
    flex-shrink: 0;
    perspective: 1000px; /* Enable 3D space */
}

.film-poster-container {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.5s;
}

.film-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover overlay detail reveal */
.film-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transform: translateZ(50px); /* 3D pop effect */
    transition: opacity 0.4s ease-out;
    z-index: 5;
}

.film-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease-in-out;
}

.film-card:hover .film-overlay::before {
    left: 150%;
}

.film-card:hover .film-poster-container {
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.film-card:hover .film-poster {
    transform: scale(1.05);
}

.film-card:hover .film-overlay {
    opacity: 1;
}

.film-overlay-content {
    width: 100%;
}

.film-rating {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.film-rating i {
    margin-right: 4px;
}

.film-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.film-meta {
    font-size: 11px;
    color: var(--silver);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
}

.film-director {
    font-size: 14px;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 16px;
}

.badge {
    display: inline-block;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 6px 12px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* --- SERVICES SECTION ("THE CRAFT") --- */
.services-section {
    position: relative;
    padding: 150px 0;
    background-color: var(--bg-black-dark);
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-mid);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.05);
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.service-icon-wrapper {
    margin-bottom: 35px;
    width: 64px;
    height: 64px;
}

.service-icon {
    width: 100%;
    height: 100%;
    transition: var(--transition-mid);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--gold-glow));
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--white);
}

.service-desc {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.6;
    font-weight: 300;
}

/* --- SHOWREEL PREVIEW SECTION --- */
.showreel-section {
    position: relative;
    background-color: var(--bg-black-base);
    padding: 0;
    overflow: hidden;
}

.showreel-video-container {
    height: 80vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showreel-fake-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    filter: brightness(0.65) blur(1px);
    transition: transform 0.8s;
}

.showreel-video-container:hover .showreel-fake-video {
    transform: scale(1.06);
}

.showreel-overlay-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.showreel-title {
    font-size: clamp(38px, 6vw, 76px);
    margin-top: 30px;
    margin-bottom: 10px;
}

.showreel-subtitle {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 0.2em;
}

/* Play button ripple mechanics */
.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    outline: none;
}

.play-icon {
    font-size: 24px;
    color: var(--bg-black-base);
    margin-left: 6px;
    transition: transform 0.3s;
}

.play-btn:hover .play-icon {
    transform: scale(1.15);
}

.btn-ripple {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.8;
    animation: ripple 2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
    pointer-events: none;
}

.ripple-2 {
    animation-delay: 0.6s;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.7); opacity: 0; }
}

/* --- CINEMA MODAL (SOUND/SHOWREEL) --- */
.cinema-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-black-base);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.cinema-modal.open {
    opacity: 1;
    visibility: visible;
}

.cinema-screen {
    width: 80%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 100px rgba(30, 144, 255, 0.25), 0 0 80px rgba(212, 175, 55, 0.15);
    background: #000;
}

.cinema-screen iframe {
    width: 100%;
    height: 100%;
}

.close-cinema-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    border: none;
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.15em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.close-cinema-btn:hover {
    color: var(--gold);
}

.cinema-ambience {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.05) 0%, rgba(212, 175, 55, 0.03) 50%, var(--bg-black-base) 100%);
    pointer-events: none;
    z-index: 1;
}

/* --- BOOKING SECTION ("START YOUR PRODUCTION") --- */
.booking-section {
    position: relative;
    padding: 150px 0;
    background-color: var(--bg-black-dark);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
}

.booking-tagline {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 25px;
}

.booking-desc {
    color: var(--silver);
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 300;
}

.production-slates {
    display: flex;
    gap: 30px;
}

.slate-info {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bg-black-base);
    padding: 15px 25px;
    text-align: center;
    flex: 1;
}

.slate-label {
    display: block;
    font-size: 9px;
    color: var(--silver);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.slate-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
}

/* Creative narrative form styles */
.booking-form {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.form-header {
    font-size: 18px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 15px;
    color: var(--white);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.form-group label {
    font-size: 9px;
    font-weight: 600;
    color: var(--silver);
    letter-spacing: 0.12em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-black-base);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 12px 16px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Radio check layout */
.radio-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.radio-label {
    font-size: 13px;
    color: var(--silver);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400 !important;
}

.radio-label input {
    display: none;
}

.custom-radio {
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: var(--transition-fast);
}

.radio-label input:checked + .custom-radio {
    border-color: var(--gold);
}

.radio-label input:checked + .custom-radio::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Drag & Drop Script */
.upload-dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    background: var(--bg-black-base);
    padding: 30px;
    text-align: center;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.upload-dropzone.dragover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.upload-icon {
    font-size: 32px;
    color: var(--silver);
    transition: var(--transition-fast);
}

.upload-dropzone:hover .upload-icon {
    color: var(--gold);
}

.dropzone-text {
    font-size: 12px;
    color: var(--silver);
}

.highlight-gold-text {
    color: var(--gold);
    text-decoration: underline;
}

.upload-badge {
    font-size: 11px;
    color: var(--gold);
    font-weight: 600;
}

/* Form Action Submit */
.submit-booking-btn {
    width: 100%;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 18px 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    z-index: 1;
}

.submit-booking-btn:hover {
    color: var(--bg-black-base);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}

.submit-booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: var(--transition-mid);
    z-index: -1;
}

.submit-booking-btn:hover::before {
    left: 0;
}

/* --- CLAPPERBOARD SUCCESS ANIMATION OVERLAY --- */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

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

.clapperboard-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clapperboard {
    width: 280px;
    height: 220px;
    perspective: 800px;
    margin-bottom: 40px;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
}

.clapper-top {
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(
        -45deg,
        #111,
        #111 20px,
        #eee 20px,
        #eee 40px
    );
    border-bottom: 2px solid #000;
    transform-origin: left bottom;
    transition: transform 0.4s ease-out;
}

.clapper-bottom {
    width: 100%;
    height: 130px;
    background: #111;
    border: 2px solid #222;
    padding: 15px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.clapperboard.clapped .clapper-top {
    transform: rotate(0deg) !important;
}

.clapper-title {
    font-size: 16px;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-align: center;
}

.clapper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #333;
    padding-top: 10px;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-item .lbl {
    font-size: 8px;
    color: var(--silver);
}

.grid-item .val {
    font-size: 14px;
    font-weight: 800;
}

.success-message {
    opacity: 0;
    transform: translateY(30px);
    max-width: 600px;
    padding: 0 20px;
}

.success-title {
    font-size: clamp(24px, 3.5vw, 42px);
    margin-bottom: 15px;
    color: var(--gold);
}

.success-desc {
    font-size: 22px;
    font-style: italic;
    color: var(--white);
    margin-bottom: 20px;
}

.success-sub {
    font-size: 14px;
    color: var(--silver);
    line-height: 1.6;
    margin-bottom: 35px;
}

.reset-form-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.reset-form-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* --- FOOTER SECTION --- */
.main-footer {
    background-color: var(--bg-black-base);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 100px 0 45px;
    color: var(--silver);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-tag {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 30px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--silver);
    font-size: 18px;
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.15em;
    margin-bottom: 25px;
}

.footer-link {
    display: block;
    color: var(--silver);
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-loc {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-loc strong {
    color: var(--white);
}

.footer-email {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.footer-email:hover {
    color: var(--gold);
}

.footer-phone {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--silver);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* --- RESPONSIVENESS MEDIA QUERIES --- */

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .main-header {
        padding: 20px;
    }
    
    .main-header.scrolled {
        padding: 10px 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .hero-actions a {
        width: 100%;
        text-align: center;
    }
    
    .film-card {
        width: 320px;
        height: 480px;
    }
    
    .film-overlay {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    .hero-content {
        margin-top: 100px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        padding: 30px 20px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
