:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --pure-white: #ffffff;
    --warm-white: #f8f6f2;
    --gold-accent: #d4af37;
    --platinum: #e5e7eb;
    --cinema-red: #e50914;
    --gradient-cinema: linear-gradient(135deg, #000000 0%, #2d2d2d 50%, #000000 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    --shadow-cinema: 0 10px 40px rgba(0, 0, 0, 0.8);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-black);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Cinematic Top Navigation */
.cinema-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Animated Aperture Logo */
.aperture-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.aperture-icon.large {
    width: 60px;
    height: 60px;
}

.iris-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    animation: irisRotate 8s linear infinite;
}

.blade {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--gold-accent);
    transform-origin: center;
    transform: translateX(-50%);
}

.blade-1 { transform: translateX(-50%) rotate(0deg); }
.blade-2 { transform: translateX(-50%) rotate(51.4deg); }
.blade-3 { transform: translateX(-50%) rotate(102.8deg); }
.blade-4 { transform: translateX(-50%) rotate(154.2deg); }
.blade-5 { transform: translateX(-50%) rotate(205.6deg); }
.blade-6 { transform: translateX(-50%) rotate(257deg); }
.blade-7 { transform: translateX(-50%) rotate(308.4deg); }

.center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--pure-white);
    border-radius: 50%;
}

@keyframes irisRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.brand-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation Menu */
.main-nav {
    position: relative;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    position: relative;
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link[data-text]:before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold-accent);
    width: 0;
    overflow: hidden;
    transition: width 0.4s ease;
    white-space: nowrap;
}

.nav-link:hover[data-text]:before {
    width: 100%;
}

.nav-link.active {
    color: var(--gold-accent);
}

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-accent);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: var(--transition-smooth);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    display: block;
    color: var(--pure-white);
    text-decoration: none;
    padding: 12px 30px;
    transition: var(--transition-smooth);
}

.dropdown-content a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-accent);
    padding-left: 35px;
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition-smooth);
}

.search-toggle:hover {
    color: var(--gold-accent);
    transform: scale(1.1);
}

.btn-cinema {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--gold-accent);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    font-size: 14px;
}

.btn-cinema:hover {
    background: var(--gold-accent);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-cinema);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 2000;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px;
    border: 2px solid var(--gold-accent);
    max-width: 600px;
    width: 90%;
}

.search-container input {
    flex: 1;
    background: none;
    border: none;
    color: var(--pure-white);
    font-size: 18px;
    padding: 15px 25px;
    outline: none;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-container button {
    background: var(--gold-accent);
    border: none;
    color: var(--primary-black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.search-container button:hover {
    transform: scale(1.1);
}

/* Hero Section - Split Screen */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    position: relative;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.hero-content-left {
    display: flex;
    align-items: center;
    padding: 0 60px;
    background: var(--primary-black);
}

.content-wrapper {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(48px, 6vw, 72px);
    margin-bottom: 30px;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-actions {
    display: flex;
    gap: 30px;
}

.btn-primary-cinema {
    background: var(--gold-accent);
    color: var(--primary-black);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.btn-primary-cinema:hover {
    background: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-cinema);
}

.btn-secondary-cinema {
    background: transparent;
    color: var(--pure-white);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.btn-secondary-cinema:hover {
    background: var(--pure-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* Hero Right Side - Showreel */
.hero-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--secondary-black);
}

.floating-showreel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.showreel-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    transform: scale(0.9);
    opacity: 0.7;
}

.showreel-thumb.active {
    transform: scale(1);
    opacity: 1;
    box-shadow: var(--shadow-cinema);
}

.showreel-thumb:hover {
    transform: scale(1.05);
    opacity: 1;
}

.showreel-thumb img {
    width: 350px;
    height: 200px;
    object-fit: cover;
    display: block;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(212, 175, 55, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-black);
    transition: var(--transition-smooth);
}

.showreel-thumb:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.showreel-thumb span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--pure-white);
    padding: 30px 20px 15px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Services Filmstrip Section */
.services-filmstrip {
    padding: 120px 0;
    background: var(--warm-white);
    color: var(--primary-black);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    color: var(--primary-black);
}

.section-subtitle {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.filmstrip-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.film-frame {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.film-frame.reversed {
    direction: rtl;
}

.film-frame.reversed > * {
    direction: ltr;
}

.frame-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.frame-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.frame-image:hover img {
    transform: scale(1.05);
}

.frame-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.frame-content p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
    line-height: 1.8;
}

.frame-link {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.frame-link:hover {
    color: var(--primary-black);
    padding-left: 10px;
}

/* Clients Marquee */
.clients-marquee {
    background: var(--primary-black);
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-shrink: 0;
    padding: 0 40px;
}

.client-logo {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: var(--transition-smooth);
}

.client-logo:hover {
    color: var(--gold-accent);
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Process Flow Section */
.process-flow {
    padding: 120px 0;
    background: var(--secondary-black);
}

.flow-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
}

.node-circle {
    width: 100px;
    height: 100px;
    background: var(--primary-black);
    border: 3px solid var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.node-circle span {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-accent);
}

.node-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--pure-white);
}

.node-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 200px;
}

.flow-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
    margin: 0 20px;
    position: relative;
}

.flow-connector:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: var(--gold-accent);
    border-radius: 50%;
}

/* Cinema Footer */
.cinema-footer {
    background: var(--primary-black);
    border-top: 3px solid var(--gold-accent);
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 30px 0;
}

.social-cinema {
    display: flex;
    gap: 20px;
}

.social-cinema a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 18px;
}

.social-cinema a:hover {
    background: var(--gold-accent);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col ul li a:hover {
    color: var(--gold-accent);
    padding-left: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item i {
    color: var(--gold-accent);
    margin-top: 3px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.6);
}

.legal-links {
    display: flex;
    gap: 30px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.legal-links a:hover {
    color: var(--gold-accent);
}

.footer-badge {
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
    }
    
    .hero-content-right {
        padding: 40px;
    }
    
    .floating-showreel {
        flex-direction: row;
        overflow-x: auto;
    }
    
    .showreel-thumb {
        flex-shrink: 0;
    }
    
    .showreel-thumb img {
        width: 250px;
        height: 150px;
    }
    
    .film-frame {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content-left {
        padding: 0 30px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .flow-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .flow-connector {
        width: 2px;
        height: 40px;
        background: linear-gradient(180deg, var(--gold-accent), transparent);
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 15px;
    }
    
    .legal-links {
        justify-content: center;
    }
}