/* ============================================
   VIDEO PRODUCTION PAGE - CINEMATIC DESIGN
   ============================================ */

/* Cinematic Hero Section */
.video-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.video-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000000 100%);
}

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

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

/* Spotlight Effects */
.spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: spotlight 8s ease-in-out infinite;
}

.spotlight-1 {
    background: radial-gradient(circle, rgba(192, 192, 192, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.spotlight-2 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: 4s;
}

@keyframes spotlight {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

/* Large Play Icon */
.play-icon-large {
    margin: 0 auto 2rem;
    animation: playPulse 3s ease-in-out infinite;
}

.play-icon-large svg {
    filter: drop-shadow(0 0 30px rgba(192, 192, 192, 0.5));
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

/* Video Hero Content */
.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
}

.video-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.title-line {
    display: block;
    text-transform: uppercase;
}

.video-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Background Video */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Dark Overlay for readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Inline Stats Badges */
.video-stats-inline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-icon {
    font-size: 1.2rem;
}

/* Video Page Buttons */
.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-video-primary {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
    color: #000000;
    box-shadow: 0 10px 40px rgba(192, 192, 192, 0.4);
}

.btn-video-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(192, 192, 192, 0.6);
}

.btn-video-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.btn-video-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Video Services Section */
.video-services {
    padding: 8rem 0;
    background: #0a0a0a;
    position: relative;
}

.section-header-video {
    text-align: center;
    margin-bottom: 5rem;
}

.clapper-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    animation: clap 2s ease-in-out infinite;
}

@keyframes clap {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.section-header-video h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header-video p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Video Services Grid */
.video-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.video-service-card {
    position: relative;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(192, 192, 192, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.video-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(192, 192, 192, 0.03) 100%);
}

/* Card Frame Decoration */
.card-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    pointer-events: none;
    transition: all 0.4s ease;
}

.video-service-card:hover .card-frame {
    border-color: rgba(192, 192, 192, 0.2);
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
}

/* Service Number */
.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    transition: all 0.4s ease;
}

.video-service-card:hover .service-number {
    color: rgba(192, 192, 192, 0.15);
    transform: scale(1.1);
}

.video-service-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.video-service-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list-video {
    list-style: none;
    padding: 0;
}

.service-list-video li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-list-video li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #c0c0c0;
}

/* Production Timeline */
.production-timeline {
    padding: 8rem 0;
    background: #000000;
}

.timeline-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.timeline-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 5rem;
}

.timeline-track {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(192, 192, 192, 0.3) 0%,
        rgba(192, 192, 192, 0.1) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;

}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(128, 128, 128, 0.1) 100%);
    border: 2px solid rgba(192, 192, 192, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-icon {
    font-size: 1.5rem;
}

.timeline-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Video Pricing Section */
.video-pricing {
    padding: 8rem 0;
    background: #0a0a0a;
}

.pricing-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.pricing-grid-video {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card-video {
    position: relative;
    padding: 3rem 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.pricing-card-video:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 192, 192, 0.3);
    box-shadow: 0 25px 70px rgba(192, 192, 192, 0.15);
}

.featured-package {
    border-color: rgba(192, 192, 192, 0.4);
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.08) 0%, rgba(128, 128, 128, 0.05) 100%);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
    color: #000000;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-price {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.package-desc {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.package-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.package-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.package-cta-featured {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
    color: #000000;
    border-color: transparent;
}

.package-cta-featured:hover {
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.4);
}

/* Video CTA Section */
.video-cta {
    padding: 8rem 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(192, 192, 192, 0.15) 0%, transparent 70%);
    filter: blur(80px);
}

.video-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.video-cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.btn-video-cta {
    background: linear-gradient(135deg, #c0c0c0 0%, #808080 100%);
    color: #000000;
    border: none;
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 15px 50px rgba(192, 192, 192, 0.4);
}

.btn-video-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.6);
}

/* ============================================
           VIDEO PORTFOLIO SHOWCASE
        ============================================ */
        .video-portfolio {
            padding: 8rem 0;
            background: #050505;
        }

        /* Category block */
        .vp-category {
            margin-bottom: 6rem;
        }

        .vp-category-label {
            display: flex;
            align-items: center;
            gap: 0.9rem;
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 2.5rem;
            letter-spacing: -0.5px;
        }

        .vp-label-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #c0c0c0 0%, #606060 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.65rem;
            color: #000;
            flex-shrink: 0;
        }

        .vp-format-pill {
            display: inline-block;
            padding: 0.25rem 0.85rem;
            background: rgba(192, 192, 192, 0.1);
            border: 1px solid rgba(192, 192, 192, 0.25);
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            color: rgba(192, 192, 192, 0.8);
            letter-spacing: 1px;
            margin-left: 0.25rem;
        }

        .vp-pill-blue {
            background: rgba(77, 150, 255, 0.1);
            border-color: rgba(77, 150, 255, 0.3);
            color: rgba(130, 185, 255, 0.9);
        }

        /* ── 16:9 Grid ── */
        .vp-grid-landscape {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1.25rem;
        }

        /* First item spans more columns = hero feel */
        .vp-grid-landscape .vp-item:nth-child(1) { grid-column: span 7; }
        .vp-grid-landscape .vp-item:nth-child(2) { grid-column: span 5; }
        .vp-grid-landscape .vp-item:nth-child(3) { grid-column: span 5; }
        .vp-grid-landscape .vp-item:nth-child(4) { grid-column: span 7; }

        @media (max-width: 900px) {
            .vp-grid-landscape .vp-item { grid-column: span 12 !important; }
        }

        /* ── 9:16 Grid ── */
        .vp-grid-portrait {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.25rem;
        }

        @media (max-width: 1100px) {
            .vp-grid-portrait { grid-template-columns: repeat(3, 1fr); }
            .vp-grid-portrait .vp-item:nth-child(n+4) { display: none; }
        }
        @media (max-width: 640px) {
            .vp-grid-portrait { grid-template-columns: repeat(2, 1fr); }
            .vp-grid-portrait .vp-item:nth-child(n+3) { display: none; }
        }

        /* ── Shared item styles ── */
        .vp-item {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        /* Ratio wrappers */
        .vp-video-wrap {
            position: relative;
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            background: #111;
            border: 1px solid rgba(255, 255, 255, 0.07);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .vp-item:hover .vp-video-wrap {
            border-color: rgba(192, 192, 192, 0.25);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
        }

        .vp-ratio-169 { aspect-ratio: 16 / 9; }
        .vp-ratio-916 { aspect-ratio: 9 / 16; }

        .vp-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Custom play overlay — hides when video is playing */
        .vp-play-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.35);
            transition: opacity 0.25s ease;
            pointer-events: none;
        }

        /* Hide overlay once user has interacted */
        .vp-video-wrap.playing .vp-play-overlay {
            opacity: 0;
        }

        .vp-play-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .vp-item:hover .vp-play-btn {
            transform: scale(1.1);
            background: rgba(255, 255, 255, 0.22);
        }

        /* 9:16 smaller play button */
        .vp-ratio-916 .vp-play-btn {
            width: 44px;
            height: 44px;
        }

        /* Info row below video */
        .vp-info {
            display: flex;
            flex-direction: column;
            gap: 0.2rem;
            padding: 0 0.25rem;
        }

        .vp-type {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(192, 192, 192, 0.5);
        }

        .vp-title {
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
        }

        /* 9:16 items — smaller text */
        .vp-grid-portrait .vp-type { font-size: 0.65rem; }
        .vp-grid-portrait .vp-title { font-size: 0.82rem; }

/* Responsive Design */
@media (max-width: 768px) {
    .video-stats-inline {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-video {
        width: 100%;
        justify-content: center;
    }
    
    .video-services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-video {
        grid-template-columns: 1fr;
    }
    
    .timeline-track::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
    }
}