/**
 * Triple Green CineCapital Theme
 * Dark Theme + AI Style + Gradient Colors
 * Typography: Montserrat (Body) + Popy2k/Poppins (Headline)
 */

/* ============================================
   CSS VARIABLES - DARK THEME + AI STYLE + GRADIENTS
   ============================================ */
:root {
    /* Primary Green Colors (AI-inspired) */
    --green-primary: #89BC78;
    --green-primary-dark: #244635;
    --green-primary-light: #A8D5A0;
    --green-accent: #6BC98F;
    --green-accent-light: #8FD9A8;
    --green-glow: rgba(137, 188, 120, 0.3);
    
    /* Dark Theme Colors */
    --dark-bg-primary: #0a0a0a;
    --dark-bg-secondary: #1a1a1a;
    --dark-bg-tertiary: #242424;
    --dark-surface: #1e1e1e;
    --dark-border: rgba(255, 255, 255, 0.1);
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f5f5f5;
    --light-gray: #e0e0e0;
    --gray: #888888;
    --dark-gray: #333333;
    --black: #000000;
    
    /* Text Colors (Dark Theme) */
    --text-dark: #ffffff;
    --text-medium: rgba(255, 255, 255, 0.8);
    --text-light: rgba(255, 255, 255, 0.6);
    --text-white: #ffffff;
    --text-accent: #89BC78;
    
    /* Background Colors (Dark Theme) */
    --bg-white: var(--dark-bg-primary);
    --bg-light: var(--dark-bg-secondary);
    --bg-gray: var(--dark-bg-tertiary);
    --bg-dark: var(--dark-bg-primary);
    
    /* AI-Inspired Gradients */
    --gradient-primary: linear-gradient(135deg, #244635 0%, #1a2e24 50%, #0f1a14 100%);
    --gradient-accent: linear-gradient(135deg, #89BC78 0%, #6BC98F 50%, #4CAF7A 100%);
    --gradient-glow: linear-gradient(135deg, rgba(137, 188, 120, 0.2) 0%, rgba(107, 201, 143, 0.1) 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #242424 100%);
    --gradient-hero: linear-gradient(135deg, #2a2a2a 0%, #353535 50%, #3d3d3d 100%);
    --gradient-footer: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    --gradient-header: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    
    /* AI Glow Effects */
    --glow-green: 0 0 20px rgba(137, 188, 120, 0.4), 0 0 40px rgba(137, 188, 120, 0.2);
    --glow-accent: 0 0 15px rgba(107, 201, 143, 0.5), 0 0 30px rgba(107, 201, 143, 0.3);
    
    /* Shadows (Dark Theme) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(137, 188, 120, 0.3);
    
    /* Typography - with Vietnamese font fallback */
    --font-body: 'Montserrat', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    --font-heading: 'Poppins', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BASE STYLES - DARK THEME + TYPOGRAPHY
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--dark-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.5rem, 3vw, 2rem); }
h5 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h6 { font-size: clamp(1.1rem, 2vw, 1.25rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--green-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--green-accent-light);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html {
    background: var(--dark-bg-primary);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--dark-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--green-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--green-primary-dark);
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* ============================================
   HEADER - DARK THEME + AI STYLE
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: var(--gradient-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(137, 188, 120, 0.2);
    box-shadow: var(--shadow-md), 0 0 20px rgba(137, 188, 120, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: var(--transition);
}

.site-header.scrolled .nav-container {
    height: 70px;
}

.site-branding {
    flex-shrink: 0;
}

.site-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-primary);
    font-family: var(--font-heading);
    text-decoration: none;
    height: 100%;
}

/* Default: Logo lớn hơn khi normal, scale down khi scroll */
.site-logo img {
    max-height: 70px;
    height: auto;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    transform: scale(1);
}

.site-header.scrolled .site-logo img {
    max-height: 50px;
    transform: scale(0.85);
}

/* Đảm bảo logo fit với header container */
.site-branding {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--green-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    position: relative;
    font-family: var(--font-body);
    transition: var(--transition);
}

.site-header.scrolled .nav-menu li a {
    font-size: 0.95rem;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    box-shadow: var(--glow-green);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after,
.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--green-accent);
    text-shadow: 0 0 10px rgba(137, 188, 120, 0.5);
}

/* Elementor Header Template */
.elementor-header-template {
        position: fixed;
    top: 0;
        left: 0;
        right: 0;
    z-index: 1000;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.site-main {
    padding-top: 0; /* No padding - hero section will handle its own padding */
    transition: padding-top var(--transition);
}

/* Add padding-top inside section content (not margin) to prevent header overlay on mobile */
@media (max-width: 768px) {
    /* Mobile header height adjustment */
    .nav-container {
        height: 80px;
    }
    
    .site-header.scrolled .nav-container {
        height: 60px;
    }
    
    /* Add padding-top to container inside first section (not margin between section and header) */
    body:not(.home) .about-our-story-section .container:first-child,
    body:not(.home) .about-co-founders-section .container:first-child,
    body:not(.home) .filmmakers-section .container:first-child,
    body:not(.home) .investors-section .container:first-child,
    body:not(.home) .contact-section .container:first-child {
        padding-top: 80px; /* Padding inside container content, not margin */
    }
    
    /* Alternative: if section is first child, add padding to its container */
    body:not(.home) .site-main > section:first-child .container {
        padding-top: 80px;
    }
}


/* Hero section phải bắt đầu từ top (0) để overlay với header */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: var(--text-white);
    padding: 0;
    padding-top: 100px; /* Padding để content không bị che bởi header */
    overflow: hidden;
    margin-top: 0; /* No negative margin needed */
}

/* Adjust hero section when header is scrolled */
body:has(.site-header.scrolled) .hero-section {
    padding-top: 70px;
}

.hero-section::after {
    display: none;
}

.hero-section::before {
    display: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.1);
}

.hero-overlay::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    /* Background removed as requested */
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 3rem 2rem;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(137, 188, 120, 0.3);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1);
}

.btn-primary svg {
    color: var(--text-white);
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-size: 1.15rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

.btn-secondary:hover::after {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1);
}

.btn-secondary svg {
    color: var(--text-white);
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translateX(3px);
}

/* ============================================
   WHAT WE OFFER SECTION - CREATIVE DARK THEME + AI STYLE
   ============================================ */
/* Section Divider with Gradient */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(137, 188, 120, 0.4) 20%,
        rgba(107, 201, 143, 0.6) 50%,
        rgba(137, 188, 120, 0.4) 80%,
        transparent 100%
    );
    margin: 0;
}

.what-we-offer-section {
    padding: var(--spacing-lg) 0 var(--spacing-xxl);
    background: var(--dark-bg-primary);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated gradient background - Reduced brightness */
.what-we-offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(137, 188, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 201, 143, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(76, 175, 122, 0.04) 0%, transparent 60%);
    animation: gradientShift 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(5%, 5%) rotate(120deg);
    }
    66% {
        transform: translate(-5%, -5%) rotate(240deg);
    }
}

/* Grid pattern overlay - Reduced brightness */
.what-we-offer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(137, 188, 120, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(137, 188, 120, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        #89BC78 0%,
        #6BC98F 30%,
        #8FD9A8 60%,
        #89BC78 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientText 5s ease infinite;
    text-shadow: 0 0 40px rgba(137, 188, 120, 0.4);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(137, 188, 120, 0.6);
    animation: titleUnderline 3s ease infinite;
}

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

@keyframes titleUnderline {
    0%, 100% {
        width: 100px;
    opacity: 1;
    }
    50% {
        width: 150px;
        opacity: 0.8;
    }
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

@media (max-width: 1200px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.offer-item {
    padding: var(--spacing-md);
    background: linear-gradient(135deg, 
        rgba(20, 30, 25, 0.7) 0%,
        rgba(15, 25, 20, 0.6) 50%,
        rgba(10, 20, 15, 0.7) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(137, 188, 120, 0.2);
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(137, 188, 120, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

/* Animated border gradient */
.offer-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(137, 188, 120, 0.5) 0%,
        rgba(107, 201, 143, 0.3) 50%,
        rgba(137, 188, 120, 0.5) 100%
    );
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 3s ease infinite;
}

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

/* Shine effect */
.offer-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    opacity: 0;
}

.offer-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(137, 188, 120, 0.3),
        0 0 80px rgba(107, 201, 143, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(137, 188, 120, 0.5);
    background: linear-gradient(135deg, 
        rgba(25, 35, 30, 0.8) 0%,
        rgba(20, 30, 25, 0.7) 50%,
        rgba(15, 25, 20, 0.8) 100%
    );
}

.offer-item:hover::before {
    opacity: 1;
}

.offer-item:hover::after {
    transform: rotate(45deg) translate(50%, 50%);
    opacity: 1;
    transition: transform 0.6s ease, opacity 0.3s ease;
}

.offer-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(137, 188, 120, 0.2) 0%,
        rgba(107, 201, 143, 0.15) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(137, 188, 120, 0.3);
    color: var(--green-accent);
    box-shadow: 
        0 6px 20px rgba(137, 188, 120, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.offer-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(137, 188, 120, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.offer-item:hover .offer-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 
        0 12px 40px rgba(137, 188, 120, 0.4),
        0 0 60px rgba(107, 201, 143, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(137, 188, 120, 0.6);
    background: linear-gradient(135deg, 
        rgba(137, 188, 120, 0.3) 0%,
        rgba(107, 201, 143, 0.25) 100%
    );
}

.offer-item:hover .offer-icon::before {
    width: 200px;
    height: 200px;
}

.offer-icon svg {
    width: 28px;
    height: 28px;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-white);
    background: linear-gradient(135deg, 
        #ffffff 0%,
        #89BC78 50%,
        #ffffff 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 4s ease infinite;
    letter-spacing: -0.01em;
    position: relative;
    line-height: 1.3;
    height: 2.6em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    word-break: break-word;
    overflow: hidden;
}

.offer-title-line1,
.offer-title-line2 {
    display: block;
    width: 100%;
}

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

.offer-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.offer-features li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    position: relative;
    padding-left: 1.75rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: var(--transition);
}

.offer-features li:hover {
    color: var(--text-white);
    padding-left: 2.5rem;
}

.offer-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 8px;
    height: 8px;
    background: var(--gradient-accent);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 0 8px rgba(137, 188, 120, 0.5);
}

.offer-features li:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(137, 188, 120, 0.8);
}

/* ============================================
   FOOTER - MODERN DESIGN
   ============================================ */
.site-footer {
    background: var(--gradient-footer);
    color: var(--text-white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    border-top: 1px solid rgba(137, 188, 120, 0.15);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(137, 188, 120, 0.5), transparent);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    margin-bottom: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 0;
}

.footer-section {
    margin-bottom: 0;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-img {
    max-height: 50px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-accent);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
        margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--green-accent);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(137, 188, 120, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Footer Links Section */
.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-menu a::before {
    content: '→';
    position: absolute;
    left: -1rem;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--green-accent);
}

.footer-menu a:hover {
    color: var(--green-accent);
    padding-left: 1rem;
}

.footer-menu a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Contact Section */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--green-accent);
    width: 18px;
    height: 18px;
}

.footer-address,
.footer-email {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.footer-email a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email a:hover {
    color: var(--green-accent);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
    text-align: center;
}

/* Elementor Footer Template */
.elementor-footer-template {
    background-color: var(--bg-dark);
    color: var(--text-white);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
    display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
    opacity: 0;
        visibility: hidden;
    transition: var(--transition);
}

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }

/* WordPress Admin Bar Compatibility */
html.admin-bar .site-header,
html.admin-bar .elementor-header-template {
    top: 32px;
}

@media screen and (max-width: 782px) {
    html.admin-bar .site-header,
    html.admin-bar .elementor-header-template {
        top: 46px;
    }
}

#wpadminbar {
    z-index: 999999 !important;
}

/* ============================================
   ABOUT US PAGE
   ============================================ */

.about-our-story-section,
.about-co-founders-section,
.filmmakers-section,
.investors-section,
.contact-section {
    padding: var(--spacing-xxl) 0;
    background: var(--dark-bg-primary);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated gradient background - Same as What We Offer */
.about-our-story-section::before,
.about-co-founders-section::before,
.filmmakers-section::before,
.investors-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(137, 188, 120, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 201, 143, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(76, 175, 122, 0.04) 0%, transparent 60%);
    animation: gradientShift 20s ease infinite;
    pointer-events: none;
    z-index: 0;
}

/* Grid pattern overlay - Same as What We Offer */
.about-our-story-section::after,
.about-co-founders-section::after,
.filmmakers-section::after,
.investors-section::after,
.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(137, 188, 120, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(137, 188, 120, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.about-our-story-section .container,
.about-co-founders-section .container,
.filmmakers-section .container,
.investors-section .container,
.contact-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-our-story-section .section-title,
.about-co-founders-section .section-title,
.filmmakers-section .section-title,
.investors-section .section-title,
.contact-section .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    color: var(--text-white);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.our-story-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-our-story-section .container,
.about-co-founders-section .container {
    text-align: center;
}

.our-story-content p {
    margin-bottom: var(--spacing-md);
}

/* ============================================
   FOR FILMMAKERS PAGE STYLES
   ============================================ */
.filmmakers-hero {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.filmmakers-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filmmakers-subheadline {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    line-height: 1.6;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.filmmakers-content {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.filmmakers-content-card {
    background: linear-gradient(135deg, 
        rgba(20, 30, 25, 0.7) 0%,
        rgba(15, 25, 20, 0.6) 50%,
        rgba(10, 20, 15, 0.7) 100%
    );
    border: 1px solid rgba(137, 188, 120, 0.2);
    border-radius: 16px;
    padding: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(137, 188, 120, 0.1);
    transition: all var(--transition);
}

.filmmakers-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0.8;
}

.filmmakers-content-card:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 188, 120, 0.4);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(137, 188, 120, 0.2);
}

.content-icon-wrapper {
    width: 48px;
    height: 48px;
    background: rgba(137, 188, 120, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(137, 188, 120, 0.25);
}

.content-icon {
    color: var(--green-accent);
    width: 24px;
    height: 24px;
}

.filmmakers-content .content-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--green-accent);
    text-align: left;
}

.filmmakers-content .content-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-medium);
    text-align: left;
}

.filmmakers-content .content-text p {
    margin-bottom: var(--spacing-md);
}

.filmmakers-content .content-text .highlight-email {
    color: #3b82f6;
    font-weight: 500;
    padding: 2px 2px;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.filmmakers-content .content-text .highlight-email:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(37, 99, 235, 0.25) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.filmmakers-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.filmmakers-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ============================================
   FOR INVESTORS PAGE STYLES
   ============================================ */
.investors-hero {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.investors-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.investors-content {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.investors-details-card {
    background: linear-gradient(135deg, 
        rgba(20, 30, 25, 0.7) 0%,
        rgba(15, 25, 20, 0.6) 50%,
        rgba(10, 20, 15, 0.7) 100%
    );
    border: 1px solid rgba(137, 188, 120, 0.2);
    border-radius: 16px;
    padding: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(137, 188, 120, 0.1);
    transition: all var(--transition);
}

.investors-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0.8;
}

.investors-details-card:hover {
    transform: translateY(-4px);
    border-color: rgba(137, 188, 120, 0.4);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(137, 188, 120, 0.2);
}

.investors-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.investors-detail-item {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-medium);
    padding: var(--spacing-sm) var(--spacing-xs);
    border-bottom: 1px solid rgba(137, 188, 120, 0.1);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    transition: all var(--transition);
    border-radius: 6px;
    margin-bottom: 4px;
}

.investors-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.investors-detail-item:hover {
    background: rgba(137, 188, 120, 0.05);
    color: var(--text-white);
    padding-left: var(--spacing-md);
}

.investors-detail-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--green-accent);
    margin-top: 2px;
    transition: all var(--transition);
}

.investors-detail-item:hover .investors-detail-icon {
    color: var(--green-primary);
    transform: scale(1.1);
}

.investors-detail-item span {
    flex: 1;
}

.investors-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.investors-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-hero {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.contact-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subheadline {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    line-height: 1.6;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.contact-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.contact-info {
    display: contents;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(20, 30, 25, 0.7) 0%,
        rgba(15, 25, 20, 0.6) 50%,
        rgba(10, 20, 15, 0.7) 100%
    );
    border: 1px solid rgba(137, 188, 120, 0.2);
    border-radius: 16px;
    padding: var(--spacing-lg);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(137, 188, 120, 0.1);
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0.8;
}

.contact-info-item:hover {
    background: linear-gradient(135deg, 
        rgba(25, 35, 30, 0.8) 0%,
        rgba(20, 30, 25, 0.7) 50%,
        rgba(15, 25, 20, 0.8) 100%
    );
    border-color: rgba(137, 188, 120, 0.4);
    transform: translateY(-6px);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(137, 188, 120, 0.2);
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(137, 188, 120, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-accent);
    border: 1px solid rgba(137, 188, 120, 0.25);
    transition: all var(--transition);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-item:hover .contact-icon {
    background: rgba(137, 188, 120, 0.25);
    border-color: var(--green-accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 20px rgba(137, 188, 120, 0.4);
}

.contact-info-content {
    flex: 1;
    text-align: center;
    width: 100%;
}

.contact-info-title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-white);
}

.contact-info-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

.contact-info-text a {
    color: var(--green-accent);
    text-decoration: none;
    transition: all var(--transition);
}

.contact-info-text a:hover {
    color: var(--green-primary);
    text-decoration: underline;
}


.co-founders-grid {
    display: grid;
        grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xxl);
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 1;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0;
}

.co-founder-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: var(--spacing-xl);
    transition: all var(--transition);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.co-founder-avatar-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(137, 188, 120, 0.8);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    margin: 0 auto var(--spacing-sm) auto;
}

.co-founder-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.co-founder-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition);
}

.co-founder-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(137, 188, 120, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(137, 188, 120, 0.1);
}

.co-founder-item:hover::before {
    opacity: 1;
}

.co-founder-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(137, 188, 120, 0.2);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.co-founder-name-wrapper {
    flex: 1;
    min-width: 200px;
}

.co-founder-name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    color: var(--text-white);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.co-founder-title {
    font-size: clamp(0.95rem, 1.3vw, 1.1rem);
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

.co-founder-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: rgba(137, 188, 120, 0.1);
    color: var(--green-accent);
    text-decoration: none;
    border: 1px solid rgba(137, 188, 120, 0.25);
    border-radius: 6px;
    font-weight: 500;
    font-size: clamp(0.75rem, 0.9vw, 0.85rem);
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.co-founder-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(137, 188, 120, 0.15), transparent);
    transition: left 0.4s ease;
}

.co-founder-cta-btn:hover {
    background: rgba(137, 188, 120, 0.2);
    border-color: var(--green-accent);
    color: var(--green-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(137, 188, 120, 0.25);
}

.co-founder-cta-btn:hover::before {
    left: 100%;
}

.co-founder-cta-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.co-founder-cta-btn:hover svg {
    transform: translate(2px, -2px);
}

.co-founder-bio {
    margin-bottom: var(--spacing-md);
    flex-shrink: 0;
}


.bio-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-accent);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bio-label::before {
    content: '';
    width: 3px;
    height: 12px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.bio-content {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    line-height: 1.7;
    color: var(--text-medium);
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
    text-align: justify;
}

.bio-content p {
    margin-bottom: 10px;
    text-align: justify;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

.co-founder-filmography {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--dark-border);
    width: 100%;
    overflow: visible !important;
}

.co-founder-filmography::-webkit-scrollbar {
    width: 6px;
}

.co-founder-filmography::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.co-founder-filmography::-webkit-scrollbar-thumb {
    background: var(--green-accent);
    border-radius: 3px;
}

.co-founder-filmography::-webkit-scrollbar-thumb:hover {
    background: var(--green-primary);
}

.filmography-title {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-white);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filmography-content {
    position: relative;
    min-height: 200px;
    margin-top: var(--spacing-md);
    text-align: left;
}

/* Filmography Tabs - horizontal row (all tabs visible in one line) */
.filmography-tabs {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px;
    margin-bottom: var(--spacing-lg);
    padding-bottom: 0;
    position: relative;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: visible;
    overflow-y: visible;
    min-height: auto !important;
    height: auto !important;
    min-width: 0 !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    border-bottom: 2px solid rgba(137, 188, 120, 0.15);
}

.filmography-tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(137, 188, 120, 0.15);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    min-width: 120px;
    flex: 1 1 0%;
    width: auto;
    max-width: none;
    flex-grow: 1;
    text-align: left;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    flex-shrink: 1;
}

.filmography-tab-btn::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px 2px 0 0;
}

.filmography-tab-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -2px;
    background: rgba(137, 188, 120, 0.05);
    border-radius: 8px 8px 0 0;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.filmography-tab-btn .tab-title {
    font-size: clamp(0.475rem, 0.8vw, 0.625rem);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.05px;
    word-break: break-word;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    width: 100%;
}

.filmography-tab-btn .tab-subtitle {
    font-size: clamp(0.7rem, 0.9vw, 0.85rem);
    font-weight: 700;
    color: var(--green-accent);
    opacity: 0.9;
    line-height: 1.2;
    letter-spacing: 0.06px;
    margin-top: 2px;
}

.filmography-tab-btn:hover {
    color: var(--text-white);
}

.filmography-tab-btn:hover::after {
    opacity: 1;
}

.filmography-tab-btn:hover .tab-subtitle {
    opacity: 1;
    color: var(--green-primary);
}

.filmography-tab-btn.active {
    color: var(--text-white);
}

.filmography-tab-btn.active .tab-title {
    font-weight: 600;
}

.filmography-tab-btn.active .tab-subtitle {
    opacity: 1;
    color: var(--green-primary);
    font-weight: 500;
}

.filmography-tab-btn.active::before {
    opacity: 1;
}

.filmography-tab-btn.active::after {
    opacity: 1;
    background: rgba(137, 188, 120, 0.12);
}

/* Tab Content */
.filmography-tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.filmography-tab-content.active {
    display: block;
}

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

/* New Filmography Style - Compact */
.filmography-section-new {
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(137, 188, 120, 0.15);
}

.filmography-section-new:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filmography-section-title-new {
    font-family: var(--font-heading);
    font-size: clamp(0.8rem, 1.1vw, 0.9rem);
    font-weight: 600;
    color: var(--green-accent);
    margin-bottom: 6px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(137, 188, 120, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.filmography-section-title-new svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--green-accent);
    opacity: 0.9;
}

.filmography-section-title-new span {
    flex: 1;
}

.filmography-items {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: left;
}

.filmography-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    position: relative;
    transition: all var(--transition);
    border-radius: 6px;
    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    text-align: left;
}

.filmography-item:hover {
    background: rgba(137, 188, 120, 0.05);
    padding-left: 12px;
}

.filmography-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: var(--green-accent);
    margin-top: 2px;
    transition: all var(--transition);
    opacity: 0.8;
}

/* Icon styles for different section types */
.filmography-icon-film {
    color: var(--green-accent);
}

.filmography-icon-trophy {
    color: #FFD700;
    opacity: 0.9;
}

.filmography-icon-director {
    color: #6BC98F;
}

.filmography-item:hover .filmography-icon {
    opacity: 1;
    transform: scale(1.1);
}

.filmography-item:hover .filmography-icon-film {
    color: var(--green-primary);
}

.filmography-item:hover .filmography-icon-trophy {
    color: #FFED4E;
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

.filmography-item:hover .filmography-icon-director {
    color: var(--green-primary);
}

.filmography-item-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    line-height: 1.5;
    color: var(--text-light);
    flex: 1;
    text-align: left;
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.003em;
}

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

/* Old styles - keep for backward compatibility */
.filmography-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(137, 188, 120, 0.1);
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all var(--transition);
}

.filmography-section:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(137, 188, 120, 0.2);
}

.filmography-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 700;
    color: var(--green-accent);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid rgba(137, 188, 120, 0.2);
}

.filmography-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.filmography-list li {
    position: relative;
    padding-left: var(--spacing-md);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
    font-size: clamp(0.95rem, 1.3vw, 1.05rem);
    line-height: 1.8;
    color: var(--text-light);
    transition: color var(--transition);
    font-feature-settings: "liga" 1, "kern" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
    margin-bottom: var(--spacing-xs);
}

.filmography-list li:hover {
    color: var(--text-medium);
}

.filmography-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: bold;
    font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .co-founder-cta-wrapper {
        justify-content: center;
    }
    
    .co-founder-cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .co-founder-cta-btn {
        width: 100%;
        justify-content: center;
        margin-top: var(--spacing-xs);
    }
    
}

@media (max-width: 1200px) {
    .co-founders-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .about-co-founders-section .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Tablet: Ensure all tabs are visible */
    .co-founder-item {
        overflow: visible !important;
    }
    
    .co-founder-filmography {
        overflow: visible !important;
        width: 100% !important;
    }
    
    .filmography-tabs {
        overflow-x: visible !important;
        overflow-y: visible !important;
        min-width: 0 !important;
    }
    
    .filmography-tab-btn {
        width: auto !important;
        max-width: none !important;
        min-width: 120px !important;
        flex-shrink: 1 !important;
    }
}

@media (max-width: 768px) {
    /* Scale down spacing variables */
    :root {
        --spacing-xs: 0.5rem;
        --spacing-sm: 0.75rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.25rem;
        --spacing-xl: 1.5rem;
        --spacing-xxl: 2rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding-top: 80px;
        min-height: 90vh;
    }
    
    /* Hero Background Pattern - Larger size on mobile (less repeat) */
    .hero-background {
        background-size: 80% auto !important;
    }
    
    .hero-headline {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: clamp(0.95rem, 2.5vw, 1.15rem) !important;
        margin-bottom: 2rem;
    }
    
    .hero-cta-buttons {
        gap: 0.75rem;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    margin: 0 auto;
    }
    
    .btn {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* What We Offer Section */
    .what-we-offer-section {
        padding: var(--spacing-xl) 0;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
        margin-bottom: var(--spacing-lg);
    }
    
    .offer-item {
        padding: var(--spacing-md);
    }
    
    .offer-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
    }
    
    .offer-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .offer-title {
        font-size: clamp(1rem, 2.5vw, 1.15rem) !important;
    margin-bottom: 0.75rem;
}

    .offer-features {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
    
    /* About Us Section */
    .about-our-story-section,
    .about-co-founders-section,
    .filmmakers-section,
    .investors-section,
    .contact-section {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .our-story-content {
        font-size: clamp(0.9rem, 2.2vw, 1rem);
        line-height: 1.6;
    }
    
    /* Co-Founders */
    .co-founder-item {
        padding: var(--spacing-lg);
    }
    
    .co-founder-avatar-wrapper {
        width: 170px;
        height: 170px;
        margin: 0 auto var(--spacing-sm) auto;
    }
    
    .co-founder-name {
        font-size: clamp(1.25rem, 4vw, 1.5rem) !important;
    }
    
    .co-founder-title {
        font-size: clamp(0.85rem, 2vw, 0.95rem) !important;
    }
    
    .co-founder-cta-btn {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .co-founder-cta-btn svg {
        width: 12px;
        height: 12px;
    }
    
    .bio-content {
        font-size: clamp(0.85rem, 2vw, 0.95rem) !important;
        line-height: 1.6;
    }
    
    .bio-label {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }
    
    /* Filmography */
    .filmography-title {
        font-size: clamp(0.9rem, 2.2vw, 1rem);
    }
    
    /* Ensure tabs container is visible - horizontal scroll on mobile */
    .co-founder-item {
        overflow: visible !important;
    }
    
    .co-founder-filmography {
        overflow: visible !important;
        width: 100% !important;
    }
    
    .filmography-tabs {
        display: flex !important;
        flex-direction: row !important;
        gap: 4px !important;
        width: 100% !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        flex-wrap: nowrap !important;
        min-width: 0 !important;
    }
    
    .filmography-tab-btn {
        padding: 10px 12px !important;
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        display: flex !important;
        flex: 1 1 0% !important;
        min-width: 100px !important;
        width: auto !important;
        max-width: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        flex-shrink: 1 !important;
        flex-grow: 1 !important;
    }
    
    .tab-title {
        font-size: clamp(0.525rem, 1.8vw, 0.675rem) !important;
        font-weight: 600 !important;
        line-height: 1.5 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important;
        line-clamp: 3 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    .tab-subtitle {
        font-size: clamp(0.65rem, 1.8vw, 0.8rem) !important;
        font-weight: 700 !important;
        display: block !important;
    }
    
    .filmography-item-text {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    
    /* Filmmakers & Investors Pages */
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-md);
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto var(--spacing-sm);
    }
    
    .contact-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .contact-info-title {
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    }
    
    .contact-info-text {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
    
    .contact-headline {
        font-size: clamp(1.4rem, 5vw, 2rem) !important;
    }
    
    .contact-subheadline {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
    }
    
    .filmmakers-content-card,
    .investors-details-card {
        padding: var(--spacing-md);
    }
    
    .content-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: var(--spacing-sm);
    }
    
    .content-icon {
        width: 20px;
        height: 20px;
    }
    
    .filmmakers-headline,
    .investors-headline {
        font-size: clamp(1.4rem, 5vw, 2rem) !important;
    }
    
    .filmmakers-subheadline {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
    }
    
    .filmmakers-content .content-title {
        font-size: clamp(1rem, 2.5vw, 1.2rem) !important;
    }
    
    .filmmakers-content .content-text {
        font-size: clamp(0.85rem, 2vw, 0.95rem) !important;
    }
    
    .investors-detail-item {
        font-size: clamp(0.85rem, 2vw, 0.95rem) !important;
        padding: var(--spacing-xs) var(--spacing-xs);
    }
    
    .investors-detail-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Footer */
    .site-footer {
        padding: var(--spacing-lg) 0;
    }
    
    .footer-content {
        gap: var(--spacing-md);
    }
    
    .footer-brand h3,
    .footer-menu h4,
    .footer-contact h4 {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    .footer-menu a,
    .footer-contact p {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }
    
    /* Section Divider */
    .section-divider {
        margin: var(--spacing-lg) 0;
    }
}
