/* ========================================
   MEDIAJOS PRODUCTIONS - COMPLETE STYLESHEET
   Your Image Our Focus
   ======================================== */

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

:root {
    /* Colors */
    --primary-dark: #1a1a1a;
    --primary-black: #0a0a0a;
    --primary-gold: #D4AF37;
    --primary-purple: #4A2C5F;
    --accent-gold-light: #F5D742;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gray-overlay: rgba(255,255,255,0.05);
    --film-strip-color: rgba(255,255,255,0.15);
    
    /* Transitions */
    --transition-shutter: 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    --transition-smooth: 0.3s ease;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 0;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--primary-black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ----- FILM STRIP BORDERS (Animated) ----- */
.film-strip-top {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        var(--film-strip-color) 20px,
        var(--film-strip-color) 25px
    );
    z-index: 1000;
    animation: filmMove 20s linear infinite;
    pointer-events: none;
}

.film-strip-section {
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 15px,
        var(--film-strip-color) 15px,
        var(--film-strip-color) 20px
    );
    margin: 20px 0;
    animation: filmMove 15s linear infinite;
}

.film-strip-section.bottom {
    margin-top: 40px;
}

.film-strip-footer {
    width: 100%;
    height: 15px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 15px,
        rgba(212, 175, 55, 0.2) 15px,
        rgba(212, 175, 55, 0.2) 20px
    );
    margin-bottom: 30px;
    animation: filmMove 15s linear infinite;
}

.film-strip-footer.bottom {
    margin-top: 30px;
    margin-bottom: 0;
}

@keyframes filmMove {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}

/* ----- FILM GRAIN OVERLAY ----- */
.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wNCIgLz48L3N2Zz4=');
    opacity: 0.15;
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: overlay;
}

/* ----- CONTAINER ----- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ----- NAVIGATION ----- */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.nav-camera-icon img {
    height: 30px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: lensPulse 3s ease-in-out infinite;
}

@keyframes lensPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* ----- HERO SECTION ----- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #1a1a1a, #4A2C5F);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-video.ready {
    opacity: 1;
}

.hero-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.hero-video.ready + .hero-poster {
    opacity: 0;
}

.video-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 3;
}

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

.hero-badge {
    position: absolute;
    top: 100px;
    right: 40px;
    z-index: 10;
    animation: shutterAppear 1s ease-out;
}

@keyframes shutterAppear {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
        clip-path: circle(0% at 50% 50%);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
        clip-path: circle(100% at 50% 50%);
    }
}

.badge-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: irisOpen 1.5s ease-out;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

@keyframes irisOpen {
    0% {
        clip-path: circle(0% at 50% 50%);
        opacity: 0;
    }
    100% {
        clip-path: circle(150% at 50% 50%);
        opacity: 1;
    }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeUp 1s ease-out 0.5s both;
}

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

/* ----- BUTTONS ----- */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
}

.shutter-click {
    position: relative;
    transition: all 0.3s ease;
}

.shutter-click:active {
    transform: scale(0.95);
}

.shutter-click::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.shutter-click:active::before {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* ========================================
   ABOUT US SECTION
   ======================================== */
.about-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    position: relative;
}

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

.about-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
}

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

.service-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-gold);
    transition: height 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.service-item:hover::before {
    height: 100%;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--primary-gold));
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    filter: brightness(0) invert(0.8) sepia(1) hue-rotate(5deg) saturate(5);
}

/* Service Icons */
.corporate-icon {
    background: radial-gradient(circle at 30% 30%, white, transparent 70%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

.documentary-icon {
    background: linear-gradient(45deg, white 50%, transparent 50%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 0% 100%);
}

.photography-icon {
    background: radial-gradient(circle at 50% 50%, white 30%, transparent 40%);
    clip-path: circle(50% at 50% 50%);
    border-radius: 50%;
}

.wedding-icon {
    background: linear-gradient(135deg, white 25%, transparent 25%) -10px 0,
                linear-gradient(225deg, white 25%, transparent 25%) -10px 0,
                linear-gradient(315deg, white 25%, transparent 25%),
                linear-gradient(45deg, white 25%, transparent 25%);
    background-size: 20px 20px;
    background-color: transparent;
}

.editing-icon {
    clip-path: polygon(0% 15%, 15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%);
    background: repeating-linear-gradient(45deg, white 0px, white 5px, transparent 5px, transparent 10px);
}

.video-icon {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 50%);
    background: linear-gradient(90deg, white 50%, transparent 50%);
}

.podcast-icon {
    clip-path: circle(40% at 50% 50%);
    background: radial-gradient(circle at 30% 30%, white 10%, transparent 60%);
    position: relative;
}

.podcast-icon::after {
    content: '◉◉';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-gold);
    font-size: 20px;
}

.profile-icon {
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: linear-gradient(135deg, white 40%, transparent 60%);
}

.livestream-icon {
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 80% 40%, 100% 60%, 80% 80%, 100% 100%, 0% 100%, 20% 80%, 0% 60%, 20% 40%, 0% 20%);
    background: radial-gradient(circle at 50% 50%, white 20%, transparent 70%);
}

.service-title {
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-description {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 5px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: scale(1.05);
}

.service-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-link:hover {
    transform: translateX(10px);
    color: var(--accent-gold-light);
}

/* ========================================
   CATEGORY SECTIONS (Portfolio)
   ======================================== */
.category-section {
    padding: 100px 0;
    background: var(--primary-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    scroll-margin-top: 80px;
    position: relative;
}

.category-section:nth-child(even) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 100%);
}

.category-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    line-height: 1.8;
}

.category-hero-video {
    margin: 40px 0;
    width: 100%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 10px;
    background: rgba(0,0,0,0.3);
}

.category-hero-video video {
    width: 100%;
    height: auto;
    display: block;
}

.category-hero-image {
    margin: 40px 0;
    width: 100%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: 10px;
    background: rgba(0,0,0,0.3);
}

.category-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.video-caption, .image-caption {
    text-align: center;
    margin-top: 10px;
    color: var(--primary-gold);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-title {
    font-size: 28px;
    color: var(--primary-gold);
    margin: 40px 0 20px;
    text-align: center;
    position: relative;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-gold);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: var(--primary-gold);
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover::after {
    opacity: 1;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.video-item {
    text-align: center;
}

.video-item video {
    width: 100%;
    height: auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 10px;
}

.video-item p {
    color: var(--primary-gold);
    font-size: 14px;
    letter-spacing: 1px;
}

/* ========================================
   MOBILE VIDEO STYLES (Vertical Videos)
   ======================================== */
.mobile-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.mobile-video-item {
    text-align: center;
    background: rgba(0,0,0,0.3);
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.mobile-video-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.mobile-video {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    margin: 0 auto;
    display: block;
}

.video-label {
    margin-top: 15px;
    color: var(--primary-gold);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   EDITING REELS SECTION
   ======================================== */
.reels-gallery {
    margin: 40px 0;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.reel-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.reel-item:hover {
    transform: translateY(-10px);
}

.reel-video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    transition: border-color 0.3s ease;
}

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

.reel-label {
    margin-top: 10px;
    color: var(--primary-gold);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   PARTNERS SECTION - Infinite Scroll (Like CSA.org)
   ======================================== */
.partners-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    overflow: hidden;
    position: relative;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.02) 0%, transparent 70%);
    pointer-events: none;
}

.partners-row {
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.partners-row::before,
.partners-row::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-row::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a, transparent);
}

.partners-row::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a, transparent);
}

.partners-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: scrollPartners 40s linear infinite;
    padding: 10px 0;
}

.partners-track.reverse {
    animation-direction: reverse;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 auto;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.partner-logo.dark-bg {
    background: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.partner-logo.light-bg {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.partner-logo:hover {
    transform: scale(1.05);
    border-color: var(--primary-gold);
}

.partner-logo.dark-bg:hover {
    background: #1a1a1a;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.partner-logo.light-bg:hover {
    background: #f8f8f8;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.partner-logo:hover img {
    transform: scale(1.05);
}

/* Light bg images - ensure they're crisp */
.partner-logo.light-bg img {
    filter: none;
}

/* Dark bg images - already on dark background */
.partner-logo.dark-bg img {
    filter: none;
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   SOCIAL INVITATION SECTION
   ======================================== */
.social-invite {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    text-align: center;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.social-invite::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.03) 0%, transparent 70%);
    animation: rotateSlow 60s linear infinite;
}

.invite-camera-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: shutterClick 2s infinite;
}

@keyframes shutterClick {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.invite-content h3 {
    font-size: 36px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.invite-tagline {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 50px;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.invite-tagline::before,
.invite-tagline::after {
    content: '"';
    color: var(--primary-gold);
    font-size: 36px;
    opacity: 0.5;
    margin: 0 10px;
}

.social-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.social-showcase-item {
    text-decoration: none;
    padding: 25px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.social-showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.social-showcase-item.instagram:hover { background: rgba(225, 48, 108, 0.1); border-color: #E4405F; }
.social-showcase-item.tiktok:hover { background: rgba(0, 0, 0, 0.2); border-color: #000000; }
.social-showcase-item.facebook:hover { background: rgba(66, 103, 178, 0.1); border-color: #1877F2; }
.social-showcase-item.youtube:hover { background: rgba(255, 0, 0, 0.1); border-color: #FF0000; }

.social-showcase-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.social-showcase-item:hover .social-showcase-icon {
    transform: scale(1.1);
}

.social-showcase-name {
    display: block;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.social-showcase-handle {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
}

.invite-footer {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    letter-spacing: 1px;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */
.why-choose-us {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 100%);
    position: relative;
    overflow: hidden;
}

.aperture-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: repeating-radial-gradient(
        circle at 50% 50%,
        transparent 0,
        transparent 20px,
        rgba(212, 175, 55, 0.03) 20px,
        rgba(212, 175, 55, 0.03) 40px
    );
    animation: rotateSlow 60s linear infinite;
    z-index: 1;
}

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

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 60px 0;
    position: relative;
    z-index: 5;
}

.why-choose-item {
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    position: relative;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.why-choose-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.why-choose-item:hover .why-choose-image img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(10,10,10,0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-item:hover .image-overlay {
    opacity: 1;
}

/* Small icons for overlay */
.aperture-icon-small,
.film-icon-small,
.lens-icon-small,
.clapper-icon-small {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.aperture-icon-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-black);
    border-radius: 50%;
}

.aperture-icon-small::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-black);
    border-radius: 50%;
}

.film-icon-small::before {
    content: '▬▬';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-black);
    font-size: 20px;
    letter-spacing: 3px;
}

.lens-icon-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-black);
    border-radius: 50%;
}

.lens-icon-small::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, var(--primary-black), transparent);
    border-radius: 50%;
}

.clapper-icon-small::before {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 15px;
    background: var(--primary-black);
    clip-path: polygon(0% 0%, 100% 0%, 80% 100%, 20% 100%);
}

.why-choose-content {
    padding: 25px;
    text-align: center;
}

.why-choose-content h3 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-choose-content p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.8;
}

/* ========================================
   TEAM VIBES SECTION
   ======================================== */
.team-vibes {
    margin: 60px 0;
    position: relative;
    z-index: 5;
}

.vibes-showcase {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.vibes-video-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.vibes-video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 20px;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.vibes-video:hover {
    transform: scale(1.02);
}

.vibes-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 10;
}

.vibes-emoji {
    font-size: 18px;
    animation: bounce 2s infinite;
}

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

.vibes-quote {
    font-size: 18px;
    font-style: italic;
    color: var(--primary-gold);
    margin-top: 20px;
    position: relative;
    padding: 0 20px;
}

/* ========================================
   QUOTE CONTAINER
   ======================================== */
.quote-container {
    text-align: center;
    margin: 80px 0;
    padding: 40px;
    position: relative;
    border-left: 4px solid var(--primary-gold);
    border-right: 4px solid var(--primary-gold);
    background: rgba(0,0,0,0.3);
    z-index: 5;
}

.quote-mark {
    font-size: 120px;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: serif;
}

.quote-text {
    font-size: 32px;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.quote-author {
    font-size: 18px;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shutter-reveal {
    animation: shutterReveal 1.5s ease-out forwards;
    opacity: 0;
    transform-origin: center;
}

@keyframes shutterReveal {
    0% {
        opacity: 0;
        clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    }
    100% {
        opacity: 1;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.contact-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.contact-card h3 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-link-large {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-link-large:hover {
    color: var(--primary-gold);
}

.contact-address {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-note {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    margin-top: 15px;
    font-style: italic;
}

.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.contact-social-item {
    padding: 8px 5px;
    border-radius: 4px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.contact-social-item.instagram { background: rgba(225, 48, 108, 0.2); }
.contact-social-item.facebook { background: rgba(66, 103, 178, 0.2); }
.contact-social-item.tiktok { background: rgba(0, 0, 0, 0.3); }
.contact-social-item.youtube { background: rgba(255, 0, 0, 0.2); }

.contact-social-item:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer {
    background: #111;
    padding: 60px 0 20px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-tagline {
    font-size: 12px;
    color: var(--primary-gold);
    letter-spacing: 2px;
    margin-top: 5px;
    text-transform: uppercase;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

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

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

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.footer-contact .contact-item:hover {
    transform: translateX(5px);
    color: var(--primary-gold);
}

.footer-contact .contact-icon {
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3));
    min-width: 25px;
}

.footer-contact .contact-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-link:hover {
    color: var(--primary-gold);
}

.footer-contact .contact-text {
    line-height: 1.4;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
}

.social-icon-img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.instagram:hover { background: rgba(225, 48, 108, 0.2); }
.social-icon.facebook:hover { background: rgba(66, 103, 178, 0.2); }
.social-icon.tiktok:hover { background: rgba(0, 0, 0, 0.3); }
.social-icon.youtube:hover { background: rgba(255, 0, 0, 0.2); }

.social-handle {
    font-size: 12px;
    color: var(--primary-gold);
}

.social-cta {
    margin-top: 15px;
    color: var(--primary-gold);
    font-size: 14px;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    letter-spacing: 1px;
}

/* ========================================
   SHUTTER OVERLAY
   ======================================== */
.shutter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

.shutter-overlay.active {
    display: block;
}

.shutter-left,
.shutter-right,
.shutter-top,
.shutter-bottom {
    position: absolute;
    background: var(--primary-black);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.shutter-left {
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    transform: translateX(-100%);
}

.shutter-right {
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    transform: translateX(100%);
}

.shutter-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    transform: translateY(-100%);
}

.shutter-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    transform: translateY(100%);
}

.shutter-overlay.active .shutter-left,
.shutter-overlay.active .shutter-right {
    transform: translateX(0);
}

.shutter-overlay.active .shutter-top,
.shutter-overlay.active .shutter-bottom {
    transform: translateY(0);
}

.aperture-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--primary-gold), transparent);
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 10000;
}

.shutter-overlay.active .aperture-overlay {
    width: 200vw;
    height: 200vw;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

/* ========================================
   LOADING ANIMATION
   ======================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--primary-black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-logo-svg {
    animation: drawLogo 2.5s ease-out forwards;
}

.loading-text {
    color: var(--primary-gold);
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 5px;
    opacity: 0;
    animation: fadeInText 1s ease-out 2s forwards;
}

@keyframes drawLogo {
    0% {
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes fadeInText {
    to { opacity: 1; }
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: var(--primary-black);
    padding: 10px 30px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 10000;
    animation: toastFade 2s ease forwards;
}

@keyframes toastFade {
    0% { opacity: 0; transform: translate(-50%, 20px); }
    20% { opacity: 1; transform: translate(-50%, 0); }
    80% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, -20px); }
}

/* ========================================
   VIDEO FALLBACK
   ======================================== */
video:error {
    display: none;
}

video:error + .video-fallback {
    display: block;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #4A2C5F);
    z-index: -1;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-badge {
        top: 80px;
        right: 20px;
    }
    
    .badge-logo {
        width: 80px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        justify-content: center;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-choose-content {
        padding: 20px;
    }
    
    .why-choose-content h3 {
        font-size: 18px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
    }
    
    .footer-social .social-icons {
        justify-content: center;
    }
    
    .partners-row::before,
    .partners-row::after {
        width: 50px;
    }
    
    .partner-logo {
        width: 140px;
        height: 80px;
        padding: 10px;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
    
    .social-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .invite-content h3 {
        font-size: 24px;
    }
    
    .invite-tagline {
        font-size: 18px;
    }
    
    .category-section {
        padding: 60px 0;
    }
    
    .quote-text {
        font-size: 24px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-title {
        font-size: 24px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-video-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-video {
        max-width: 320px;
    }
    
    .reels-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-badge {
        top: 70px;
        right: 10px;
    }
    
    .badge-logo {
        width: 60px;
    }
    
    .footer-contact .contact-item {
        font-size: 13px;
    }
    
    .partner-logo {
        width: 120px;
        height: 70px;
    }
    
    .partner-logo img {
        max-height: 40px;
    }
    
    .vibes-video {
        max-width: 300px;
    }
    
    .vibes-badge {
        padding: 5px 10px;
        font-size: 12px;
    }
    
    .vibes-quote {
        font-size: 16px;
    }
    
    .reel-video {
        max-width: 200px;
        margin: 0 auto;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-gold {
    color: var(--primary-gold);
}

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

.hidden {
    display: none;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
