/* JK Clips - Premium Video Production Website
   Luxe Gold & Black Design
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #111111;
    --bg-card: #0d0d0d;
    --gold-primary: #d4af37;
    --gold-light: #f5d67b;
    --gold-bright: #ffd700;
    --gold-dark: #9a7b2c;
    --gold-gradient: linear-gradient(135deg, #9a7b2c 0%, #d4af37 25%, #f5d67b 50%, #d4af37 75%, #9a7b2c 100%);
    --gold-gradient-text: linear-gradient(90deg, #d4af37 0%, #f5d67b 30%, #fff5cc 50%, #f5d67b 70%, #d4af37 100%);
    --gold-glow: 0 0 40px rgba(212, 175, 55, 0.4);
    --gold-glow-intense: 0 0 60px rgba(212, 175, 55, 0.6), 0 0 100px rgba(212, 175, 55, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --text-muted: #666666;
    --border-color: rgba(212, 175, 55, 0.2);
    --border-gold: rgba(212, 175, 55, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Remove default blue link colors */
a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition);
}

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

a:visited {
    color: var(--gold-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.gold-text {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: goldShimmer 3s ease-in-out infinite;
}

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

/* Gold Decorative Line */
.gold-line {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 1rem auto;
    border-radius: 2px;
    box-shadow: var(--gold-glow);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 50%, transparent 100%);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 5%;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(20px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
    font-family: 'Playfair Display', serif;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

.logo-text span {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    box-shadow: var(--gold-glow);
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-cta {
    padding: 0.875rem 2rem;
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    transition: var(--transition);
    z-index: -1;
}

.nav-cta:hover {
    color: var(--bg-primary);
}

.nav-cta:hover::before {
    left: 0;
}

/* Mobile Menu - Camera Style */
.mobile-toggle {
    display: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    padding: 10px;
    position: relative;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    transition: var(--transition);
}

.mobile-toggle:hover {
    box-shadow: var(--gold-glow);
}

/* Camera lens rings */
.mobile-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    opacity: 0.6;
}

.mobile-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--gold-gradient);
    border-radius: 50%;
    transition: var(--transition);
}

/* Camera shutter animation on toggle */
.mobile-toggle.active::after {
    animation: cameraShutter 0.5s ease-out;
}

@keyframes cameraShutter {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

/* Hamburger lines inside camera */
.mobile-toggle span {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 2px;
    background: var(--bg-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    z-index: 1;
}

.mobile-toggle span:nth-child(1) {
    top: calc(50% - 5px);
}

.mobile-toggle span:nth-child(2) {
    top: 50%;
}

.mobile-toggle span:nth-child(3) {
    top: calc(50% + 5px);
}

.mobile-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-100%);
}

.mobile-toggle.active span:nth-child(3) {
    top: 50%;
    transform: translateX(-50%) rotate(-45deg);
}

/* Mobile Navigation Slide-in with Camera Lens Effect */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(0,0,0,0.98);
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(circle, transparent 30%, rgba(212,175,55,0.1) 70%, transparent 100%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }

    .nav-links.active::before {
        width: 150vmax;
        height: 150vmax;
    }

    /* Camera aperture blades effect */
    .nav-links::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        transform: translate(-50%, -50%);
        background:
            conic-gradient(from 0deg, transparent 0deg, transparent 45deg, rgba(212,175,55,0.05) 45deg, rgba(212,175,55,0.05) 90deg, transparent 90deg, transparent 135deg, rgba(212,175,55,0.05) 135deg, rgba(212,175,55,0.05) 180deg, transparent 180deg, transparent 225deg, rgba(212,175,55,0.05) 225deg, rgba(212,175,55,0.05) 270deg, transparent 270deg, transparent 315deg, rgba(212,175,55,0.05) 315deg, rgba(212,175,55,0.05) 360deg);
        opacity: 0;
        transition: var(--transition-slow);
        pointer-events: none;
    }

    .nav-links.active::after {
        opacity: 1;
        animation: apertureRotate 20s linear infinite;
    }

    @keyframes apertureRotate {
        from { transform: translate(-50%, -50%) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--text-primary);
        opacity: 0;
        transform: translateY(30px);
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active a:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active a:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active a:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active a:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active a:nth-child(6) { transition-delay: 0.35s; }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-cta {
        display: none;
    }
}

/* Hero Section with Video Background */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.4) 60%,
        rgba(0,0,0,0.9) 100%
    );
}

/* Gold particles effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(212,175,55,0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(212,175,55,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 40%, rgba(212,175,55,0.5) 0%, transparent 100%),
        radial-gradient(2px 2px at 70% 90%, rgba(212,175,55,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 50%, rgba(212,175,55,0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 20%, rgba(212,175,55,0.3) 0%, transparent 100%);
    animation: sparkle 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(-10px); }
}

.hero-content {
    max-width: 1000px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero h1 .line {
    display: block;
}

.hero h1 .emphasis {
    font-style: italic;
    color: var(--gold-primary);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
}

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

.btn {
    padding: 1.25rem 2.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    box-shadow: var(--gold-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow-intense);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gold-primary);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Showreel Section */
.showreel {
    padding: 8rem 5%;
    background: var(--bg-secondary);
    position: relative;
}

.showreel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.showreel-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showreel-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.showreel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

.showreel-item {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
}

.showreel-item:hover {
    border-color: var(--gold-primary);
    transform: scale(1.02);
    box-shadow: var(--gold-glow);
}

.showreel-item video,
.showreel-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showreel-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    opacity: 0;
    transition: var(--transition);
}

.showreel-item:hover .overlay {
    opacity: 1;
}

.showreel-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--gold-glow);
}

.showreel-item:hover .play-icon {
    opacity: 1;
}

.showreel-item .play-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-primary);
    margin-left: 3px;
}

/* Stats Section */
.stats {
    padding: 6rem 5%;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 2rem;
}

.stat-item h3 {
    font-size: 4rem;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Section Styling */
section {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header .overline {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Portfolio / Video Grid */
.portfolio {
    background: var(--bg-primary);
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.875rem 2rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.video-card {
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

.video-card:hover::before {
    transform: scaleX(1);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--gold-glow);
}

.play-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--bg-primary);
    margin-left: 5px;
}

.video-card:hover .play-btn {
    transform: scale(1.1);
    box-shadow: var(--gold-glow-intense);
}

.video-info {
    padding: 1.75rem;
}

.video-category {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.video-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-family: 'Playfair Display', serif;
}

.video-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
}

/* YouTube Embeds Section */
.youtube-section {
    padding: 8rem 5%;
    background: var(--bg-secondary);
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.youtube-embed {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.youtube-embed:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

.youtube-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Services Section */
.services {
    background: var(--bg-secondary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: translateX(-100%);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold-gradient);
    box-shadow: var(--gold-glow);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold-primary);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    stroke: var(--bg-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* About Section */
.about {
    background: var(--bg-primary);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.about-image {
    position: relative;
}

.about-image-main {
    width: 100%;
    border: 1px solid var(--border-color);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-primary);
    z-index: -1;
    box-shadow: var(--gold-glow);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 120px;
    height: 120px;
    background: var(--gold-gradient);
    z-index: -2;
}

.about-text .overline {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-color);
}

.about-feature svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

.about-feature span {
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info .overline {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--gold-primary);
}

.contact-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold-primary);
}

.contact-item span {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

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

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 6rem 5% 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin: 1.5rem 0;
    max-width: 320px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-gradient);
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover svg {
    fill: var(--bg-primary);
}

.footer-column h4 {
    color: var(--gold-primary);
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: 'Inter', sans-serif;
}

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

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 1100px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 1.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gold-gradient);
    color: var(--bg-primary);
}

.modal-video {
    width: 100%;
    aspect-ratio: 16/9;
    border: 1px solid var(--border-color);
    background: var(--bg-tertiary);
}

.modal-info {
    padding: 2rem 0;
}

.modal-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
}

.modal-info p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .showreel-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }
}

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

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

    .showreel-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-image::before,
    .about-image::after {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .youtube-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-brand,
    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}

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

/* Loading State */
.loading {
    display: flex;
    justify-content: center;
    padding: 4rem;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top-color: var(--gold-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-secondary);
}

.empty-state svg {
    width: 100px;
    height: 100px;
    stroke: var(--border-color);
    margin-bottom: 2rem;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 0;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Selection */
::selection {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Camera Lens Page Transition Overlay */
.camera-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    overflow: hidden;
}

.camera-transition .aperture-blade {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vmax;
    height: 200vmax;
    background: #000;
    transform-origin: center;
    clip-path: polygon(50% 50%, 50% 0%, 100% 0%, 100% 50%);
}

.camera-transition .aperture-blade:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.camera-transition .aperture-blade:nth-child(2) { transform: translate(-50%, -50%) rotate(45deg); }
.camera-transition .aperture-blade:nth-child(3) { transform: translate(-50%, -50%) rotate(90deg); }
.camera-transition .aperture-blade:nth-child(4) { transform: translate(-50%, -50%) rotate(135deg); }
.camera-transition .aperture-blade:nth-child(5) { transform: translate(-50%, -50%) rotate(180deg); }
.camera-transition .aperture-blade:nth-child(6) { transform: translate(-50%, -50%) rotate(225deg); }
.camera-transition .aperture-blade:nth-child(7) { transform: translate(-50%, -50%) rotate(270deg); }
.camera-transition .aperture-blade:nth-child(8) { transform: translate(-50%, -50%) rotate(315deg); }

/* Camera Lens Focus Ring */
.camera-lens-ring {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border: 3px solid var(--gold-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    box-shadow:
        inset 0 0 30px rgba(212,175,55,0.2),
        0 0 30px rgba(212,175,55,0.3);
}

.camera-lens-ring.active {
    animation: lensExpand 1.5s ease-out forwards;
}

@keyframes lensExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
        border-width: 3px;
    }
    100% {
        width: 150vmax;
        height: 150vmax;
        opacity: 0;
        border-width: 1px;
    }
}

/* Page Loader - Camera Style */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* Camera body */
.loader-camera {
    position: relative;
    width: 120px;
    height: 90px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 12px;
    border: 2px solid #333;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Camera lens */
.loader-lens {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border: 3px solid var(--gold-primary);
    box-shadow:
        var(--gold-glow),
        inset 0 0 20px rgba(0,0,0,0.8);
    overflow: hidden;
}

/* Lens inner rings */
.loader-lens::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212,175,55,0.5);
    border-radius: 50%;
}

.loader-lens::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gold-gradient);
    border-radius: 50%;
    animation: lensPulse 1.5s ease-in-out infinite;
}

@keyframes lensPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.6;
    }
}

/* Camera aperture blades */
.loader-aperture {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.loader-aperture span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    transform-origin: left center;
    animation: apertureSpin 2s linear infinite;
}

.loader-aperture span:nth-child(1) { transform: translate(0, -50%) rotate(0deg); animation-delay: 0s; }
.loader-aperture span:nth-child(2) { transform: translate(0, -50%) rotate(45deg); animation-delay: 0.25s; }
.loader-aperture span:nth-child(3) { transform: translate(0, -50%) rotate(90deg); animation-delay: 0.5s; }
.loader-aperture span:nth-child(4) { transform: translate(0, -50%) rotate(135deg); animation-delay: 0.75s; }
.loader-aperture span:nth-child(5) { transform: translate(0, -50%) rotate(180deg); animation-delay: 1s; }
.loader-aperture span:nth-child(6) { transform: translate(0, -50%) rotate(225deg); animation-delay: 1.25s; }
.loader-aperture span:nth-child(7) { transform: translate(0, -50%) rotate(270deg); animation-delay: 1.5s; }
.loader-aperture span:nth-child(8) { transform: translate(0, -50%) rotate(315deg); animation-delay: 1.75s; }

@keyframes apertureSpin {
    0%, 100% {
        opacity: 0.3;
        width: 25px;
    }
    50% {
        opacity: 1;
        width: 20px;
    }
}

/* Camera flash */
.loader-flash {
    position: absolute;
    top: 8px;
    right: 15px;
    width: 20px;
    height: 12px;
    background: linear-gradient(145deg, #333, #222);
    border-radius: 3px;
    border: 1px solid #444;
}

.loader-flash::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 6px;
    background: rgba(212,175,55,0.3);
    border-radius: 2px;
    animation: flashBlink 2s ease-in-out infinite;
}

@keyframes flashBlink {
    0%, 90%, 100% {
        background: rgba(212,175,55,0.3);
        box-shadow: none;
    }
    95% {
        background: var(--gold-bright);
        box-shadow: 0 0 20px var(--gold-primary);
    }
}

/* Camera viewfinder */
.loader-viewfinder {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 8px;
    background: linear-gradient(145deg, #222, #111);
    border-radius: 2px;
    border: 1px solid #333;
}

/* Camera grip */
.loader-grip {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 50px;
    background: linear-gradient(90deg, #1a1a1a, #0d0d0d);
    border-radius: 0 5px 5px 0;
    border: 1px solid #333;
    border-left: none;
}

/* Loading text */
.loader-text {
    margin-top: 40px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold-primary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.loader-text span {
    display: inline-block;
    animation: textWave 1.5s ease-in-out infinite;
}

.loader-text span:nth-child(1) { animation-delay: 0s; }
.loader-text span:nth-child(2) { animation-delay: 0.1s; }
.loader-text span:nth-child(3) { animation-delay: 0.2s; }
.loader-text span:nth-child(4) { animation-delay: 0.3s; }
.loader-text span:nth-child(5) { animation-delay: 0.4s; }
.loader-text span:nth-child(6) { animation-delay: 0.5s; }
.loader-text span:nth-child(7) { animation-delay: 0.6s; }

@keyframes textWave {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

/* Loading progress bar */
.loader-progress {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: rgba(212,175,55,0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: var(--gold-gradient);
    width: 0%;
    animation: progressLoad 2s ease-out forwards;
    box-shadow: var(--gold-glow);
}

@keyframes progressLoad {
    0% { width: 0%; }
    20% { width: 20%; }
    40% { width: 45%; }
    60% { width: 70%; }
    80% { width: 85%; }
    100% { width: 100%; }
}

/* Film reel decoration */
.loader-film {
    position: absolute;
    bottom: 120px;
    display: flex;
    gap: 8px;
}

.loader-film span {
    width: 30px;
    height: 20px;
    background: #111;
    border: 1px solid #333;
    border-radius: 2px;
    animation: filmSlide 0.5s linear infinite;
}

.loader-film span:nth-child(odd) {
    animation-delay: 0.25s;
}

@keyframes filmSlide {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Shutter closing effect when loaded */
.page-loader.closing {
    animation: shutterClose 0.8s ease-in-out forwards;
}

@keyframes shutterClose {
    0% {
        clip-path: circle(100% at 50% 50%);
    }
    100% {
        clip-path: circle(0% at 50% 50%);
    }
}

/* Camera Viewfinder Corners */
.viewfinder-corners {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.viewfinder-corners.visible {
    opacity: 1;
}

.viewfinder-corners::before,
.viewfinder-corners::after,
.viewfinder-corners .corner-bl,
.viewfinder-corners .corner-br {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold-primary);
    opacity: 0.6;
}

.viewfinder-corners::before {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.viewfinder-corners::after {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.viewfinder-corners .corner-bl {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.viewfinder-corners .corner-br {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {
    /* Better touch targets */
    .btn {
        padding: 1rem 2rem;
        min-height: 48px;
    }

    .filter-btn {
        padding: 0.75rem 1.5rem;
        min-height: 44px;
    }

    /* Improved hero on mobile */
    .hero {
        min-height: 100svh; /* Safe viewport height for mobile browsers */
        padding-top: 80px;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1.5rem;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Navbar improvements */
    .navbar {
        padding: 0.75rem 4%;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Section spacing */
    section {
        padding: 4rem 4%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Stats improvements */
    .stats {
        padding: 3rem 4%;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    /* Showreel improvements */
    .showreel {
        padding: 4rem 4%;
    }

    .showreel-header h2 {
        font-size: 2rem;
    }

    .showreel-item {
        border-radius: 12px;
    }

    /* Service cards stacking */
    .service-card {
        padding: 2rem;
    }

    /* Contact form improvements */
    .contact-form {
        padding: 2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Footer mobile */
    .footer {
        padding: 3rem 4% 2rem;
    }

    .footer-brand p {
        max-width: 100%;
    }

    /* Video cards */
    .video-info {
        padding: 1.25rem;
    }

    .video-info h3 {
        font-size: 1.1rem;
    }
}

/* Small phones */
@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .navbar {
        padding: 0.5rem 3%;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .stat-item h3 {
        font-size: 1.75rem;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 5% 60px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Camera Film Strip Decoration */
.film-strip {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25px;
    background: repeating-linear-gradient(
        to bottom,
        #1a1a1a 0px,
        #1a1a1a 20px,
        #000 20px,
        #000 25px,
        #1a1a1a 25px,
        #1a1a1a 45px
    );
    border-right: 2px solid rgba(212,175,55,0.3);
    z-index: 40;
    pointer-events: none;
    opacity: 0.5;
    display: none;
}

@media (min-width: 1400px) {
    .film-strip {
        display: block;
    }

    .film-strip::after {
        content: '';
        position: absolute;
        right: -2px;
        top: 0;
        bottom: 0;
        width: 25px;
        right: -27px;
        background: repeating-linear-gradient(
            to bottom,
            transparent 0px,
            transparent 10px,
            rgba(212,175,55,0.1) 10px,
            rgba(212,175,55,0.1) 15px,
            transparent 15px,
            transparent 45px
        );
    }
}

/* Smooth scroll with offset for fixed navbar */
html {
    scroll-padding-top: 100px;
}

/* Better focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 3px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --gold-primary: #ffd700;
        --border-color: rgba(255, 215, 0, 0.5);
    }
}
