/* ============ ROOT & VARIABLES ============ */
:root {
    --primary-color: #3D7C3F;
    --secondary-color: #5BA76B;
    --dark-bg: #F5F1E8;
    --dark-secondary: #E8E3D8;
    --dark-tertiary: #D9D3C6;
    --text-primary: #2D3436;
    --text-secondary: #5A5A5A;
    --accent-gold: #2D5016;
    --accent-cyan: #8FBC8F;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============ GLOBAL STYLES ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: auto;
}

/* ============ CUSTOM CURSOR STYLING ============ */
.cursor-core {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #FFD700, #FFA500);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8), inset 0 0 4px rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: fixed;
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.cursor-ring.active {
    border-color: rgba(255, 215, 0, 1);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.cursor-ring.play {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

.cursor-text {
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    font-weight: 700;
    font-size: 10px;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    letter-spacing: 1px;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cursor-text.show {
    opacity: 1;
}

.cursor-trail {
    position: fixed;
    pointer-events: none;
    z-index: 99996;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6), transparent);
    filter: blur(2px);
}

/* Cursor glow effect */
.cursor-glow {
    position: fixed;
    pointer-events: none;
    z-index: 99995;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3), transparent);
    filter: blur(8px);
    animation: cursorGlowPulse 1.5s ease-in-out infinite;
}

@keyframes cursorGlowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    }
}

/* Ripple effect on dark backgrounds */
.cursor-ripple {
    position: fixed;
    pointer-events: none;
    z-index: 99994;
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    animation: rippleExpand 1s ease-out forwards;
}

@keyframes rippleExpand {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Cursor interaction states */
body.cursor-click .cursor-core {
    animation: cursorClick 0.6s ease-out;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(245, 241, 232, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(61, 124, 63, 0.2);
    box-shadow: 0 2px 20px rgba(61, 124, 63, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5016;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

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

/* Keep section anchors visible below fixed navbar */
section {
    scroll-margin-top: 90px;
}

.nav-link {
    color: #2D3436;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: calc(100dvh - 60px);
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
    overflow: hidden;
}

@supports not (height: 100dvh) {
    .hero {
        min-height: calc(100vh - 60px);
    }
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #333333;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

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

/* ============ BUTTONS ============ */
.btn {
    padding: 12px 32px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 23, 68, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* ============ ABOUT SECTION ============ */
.about {
    padding: 6rem 0;
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255, 23, 68, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-founder {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 23, 68, 0.05);
    border: 1px solid rgba(255, 23, 68, 0.2);
    border-radius: 8px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 23, 68, 0.1);
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============ SECTION TITLES ============ */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* ============ OUR WORK SECTION ============ */
.work {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.work-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(255, 23, 68, 0.1);
}

.work-card:hover {
    transform: scale(1.02);
    border-color: rgba(255, 23, 68, 0.3);
}

.work-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-card:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.views-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2D3436;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.watch-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.work-info {
    padding: 1.5rem;
    background: var(--dark-secondary);
}

.work-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.work-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.project-platform {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem !important;
}

/* ============ FEATURED PROJECTS SECTION ============ */
.featured {
    padding: 6rem 0;
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255, 23, 68, 0.1);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.featured-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 23, 68, 0.15);
}

.featured-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 23, 68, 0.3);
    box-shadow: 0 20px 40px rgba(255, 23, 68, 0.15);
}

.featured-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.featured-card:hover .featured-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button:hover {
    background: var(--secondary-color);
    transform: scale(1.15);
}

.featured-content {
    padding: 2rem;
    background: var(--dark-bg);
}

.featured-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.featured-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ SHOWREEL SECTION ============ */
.showreel {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.showreel-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 23, 68, 0.2);
    box-shadow: 0 20px 60px rgba(255, 23, 68, 0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============ BTS (BEHIND THE SCENES) SECTION ============ */
.bts {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.bts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bts-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
    border: 1px solid rgba(255, 23, 68, 0.1);
}

.bts-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.bts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.8), rgba(0, 184, 255, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.bts-card:hover .bts-overlay {
    opacity: 1;
}

.bts-overlay h4 {
    font-size: 1.3rem;
    color: white;
    text-align: center;
    font-weight: 600;
}

/* ============ CLIENTS SECTION ============ */
.clients {
    padding: 6rem 0;
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255, 23, 68, 0.1);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.client-card {
    padding: 2rem;
    background: rgba(255, 23, 68, 0.05);
    border: 1px solid rgba(255, 23, 68, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.client-card:hover {
    background: rgba(255, 23, 68, 0.1);
    border-color: rgba(255, 23, 68, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 23, 68, 0.15);
}

.client-image {
    margin-bottom: 1.5rem;
}

.client-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: var(--transition);
}

.client-card:hover .client-image img {
    transform: scale(1.1);
}

.client-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.client-company {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.client-testimonial {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.client-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.client-stars i {
    color: var(--accent-gold);
    font-size: 1rem;
}

/* ============ TRUSTED BY SECTION ============ */
.trusted-by {
    position: relative;
    padding: 5rem 0 6rem;
    background: #0f0f0f;
    color: #f3f3f3;
    overflow: hidden;
}

.trusted-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.08), rgba(0, 0, 0, 0.95) 60%);
    pointer-events: none;
    z-index: 1;
}

.trusted-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.1;
    pointer-events: none;
    animation: particleDrift 25s linear infinite;
}

@keyframes particleDrift {
    0% { transform: translate(0,0); }
    100% { transform: translate(-20px,-15px); }
}

.trusted-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.trusted-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 800;
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
    color: #f6e9c8;
    opacity: 0;
    transform: translateY(20px);
}

.trusted-subtext {
    color: #c9c8c3;
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    margin-bottom: 2rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
}

.trusted-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 18px;
    background: rgba(12, 12, 12, 0.54);
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.1), 0 20px 50px rgba(0, 0, 0, 0.6);
}

.trusted-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 3;
}

.trusted-gradient.left {
    left: 0;
    background: linear-gradient(to right, rgba(15, 15, 15, 1), rgba(15, 15, 15, 0));
}

.trusted-gradient.right {
    right: 0;
    background: linear-gradient(to left, rgba(15, 15, 15, 1), rgba(15, 15, 15, 0));
}

.trusted-slider {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    padding: 1.2rem 0.2rem;
    animation: marquee 40s linear infinite;
    will-change: transform;
    transform: translateX(0);
}

.trusted-logo {
    min-width: 180px;
    padding: 0.6rem 1.5rem;
    color: #e6e6e6;
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    background: rgba(255,255,255,0.08);
    transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-logo.desaturated {
    filter: grayscale(0.2) brightness(0.9);
}

.trusted-logo.highlight {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.35);
}

/* Per-logo vibrant colors cycling every 5 items */
.trusted-logo:nth-child(5n+1) {
    background: rgba(255, 90, 30, 0.14);
    border-color: rgba(255, 90, 30, 0.5);
    color: #ff7040;
    box-shadow: 0 0 12px rgba(255, 90, 30, 0.15);
}

.trusted-logo:nth-child(5n+2) {
    background: rgba(150, 50, 255, 0.14);
    border-color: rgba(150, 50, 255, 0.5);
    color: #a050ff;
    box-shadow: 0 0 12px rgba(150, 50, 255, 0.15);
}

.trusted-logo:nth-child(5n+3) {
    background: rgba(30, 140, 255, 0.14);
    border-color: rgba(30, 140, 255, 0.5);
    color: #3399ff;
    box-shadow: 0 0 12px rgba(30, 140, 255, 0.15);
}

.trusted-logo:nth-child(5n+4) {
    background: rgba(30, 210, 120, 0.14);
    border-color: rgba(30, 210, 120, 0.5);
    color: #20d080;
    box-shadow: 0 0 12px rgba(30, 210, 120, 0.15);
}

.trusted-logo:nth-child(5n) {
    background: rgba(255, 50, 180, 0.14);
    border-color: rgba(255, 50, 180, 0.5);
    color: #ff40c0;
    box-shadow: 0 0 12px rgba(255, 50, 180, 0.15);
}

.trusted-logo img {
    max-height: 45px;
    width: auto;
    border-radius: 10px;
    filter: brightness(1) saturate(1.2);
    transition: transform 0.35s ease, filter 0.35s ease;
}

/* Remove white background from logo images using multiply blend mode */
.trusted-logo.has-logo {
    background: #ffffff;
    padding: 0.5rem 1rem;
}

.trusted-logo.has-logo img {
    mix-blend-mode: multiply;
    filter: saturate(1.3) contrast(1.05);
}

.trusted-logo.logo-large img {
    max-height: 62px;
}

.trusted-logo:hover {
    filter: brightness(1.25);
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(255, 255, 255, 0.2), 0 6px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.trusted-logo:hover img {
    filter: brightness(1.3) saturate(1.4);
    transform: scale(1.06);
}

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

.scroll-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .trusted-slider {
        gap: 1.4rem;
        animation-duration: 55s;
    }

    .trusted-logo {
        min-width: 150px;
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .trusted-slider {
        gap: 1rem;
        animation-duration: 70s;
    }

    .trusted-logo {
        min-width: 120px;
        padding: 0.45rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* ============ MICRO DRAMAS SECTION ============ */
.trailers {
    padding: 6rem 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 23, 68, 0.12);
}

.trailers-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    margin-top: -1.2rem;
    margin-bottom: 3rem;
    letter-spacing: 0.3px;
}

.trailers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trailer-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.trailer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(255, 23, 68, 0.2);
    border-color: rgba(255, 23, 68, 0.4);
}

.trailer-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.trailer-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.trailer-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.trailer-card:hover .trailer-thumb img {
    transform: scale(1.06);
}

.trailer-card:hover .trailer-thumb video {
    transform: scale(1.06);
}

.trailer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trailer-card:hover .trailer-overlay {
    opacity: 1;
}

.trailer-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 23, 68, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
    padding-left: 4px;
}

.trailer-play-btn:hover {
    transform: scale(1.12);
    background: #ff1744;
}

.trailer-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 23, 68, 0.9);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 20px;
}

.trailer-badge.episode {
    background: rgba(100, 60, 220, 0.92);
}

.trailer-info {
    padding: 1.2rem 1.4rem 1.5rem;
}

.trailer-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #f0f0f0;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.trailer-meta {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.5rem;
}

.trailer-info p:last-child {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

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

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

/* ============ SERVICES SECTION ============ */
.services {
    padding: 6rem 0;
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255, 23, 68, 0.1);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background: rgba(255, 23, 68, 0.05);
    border: 1px solid rgba(255, 23, 68, 0.1);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 23, 68, 0.1);
    border-color: rgba(255, 23, 68, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 23, 68, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* ============ CONTACT SECTION ============ */
.contact {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

.form-group {
    display: flex;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 23, 68, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 23, 68, 0.05);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    padding: 10px;
    border-radius: 8px;
}

.contact-method:hover {
    color: var(--primary-color);
    background: rgba(255, 23, 68, 0.05);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-info h4 {
    font-size: 1.2rem;
    margin: 2rem 0 1rem 0;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid rgba(255, 23, 68, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255, 23, 68, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content p {
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ============ TRAILER MODAL PLAYER ============ */
.trailer-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 1rem;
}

.trailer-modal.open {
    display: flex;
}

.trailer-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.trailer-modal-content {
    position: relative;
    width: min(980px, 100%);
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.trailer-modal-content video {
    width: 100%;
    max-height: 80vh;
    display: block;
    background: #000;
}

.trailer-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.trailer-modal-close:hover {
    background: rgba(255, 23, 68, 0.9);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ============ RESPONSIVE DESIGN ============ */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.1rem;
    }

    .nav-link {
        font-size: 0.82rem;
    }
}

@media (max-width: 1100px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background-color: var(--dark-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        max-height: calc(100dvh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.25rem;
    }

    .work-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .contact-content {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background-color: var(--dark-secondary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
        max-height: calc(100dvh - 60px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        min-height: calc(100dvh - 60px);
        height: auto;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .container {
        padding: 0 16px;
    }

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

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

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

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

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

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

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

    .hero-title {
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .nav-logo a {
        font-size: 1.2rem;
    }

    .hero {
        margin-top: 50px;
    }
}

/* ============ CINEMATIC SHOWCASE SECTION ============ */
.showcase {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow: hidden;
    border-top: 1px solid rgba(229, 9, 20, 0.2);
    border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.showcase-header .section-title {
    color: #ffffff;
    background: linear-gradient(135deg, #e50914 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
}

.showcase-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 1rem;
    text-transform: uppercase;
}

.showcase-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    perspective: 1000px;
}

/* Horizontal scrolling wrapper */
.showcase-scroll-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 450px;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* Marquee container for infinite scrolling */
.showcase-marquee {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    animation: marqueeScroll 60s linear infinite;
    will-change: transform;
}

.showcase-marquee:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* Individual showcase card */
.showcase-card {
    flex: 0 0 320px;
    height: 400px;
    position: relative;
}

/* Thumbnail wrapper with 16:9 aspect ratio */
.showcase-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    transform-style: preserve-3d;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(229, 9, 20, 0.3);
}

.showcase-card:hover .showcase-thumbnail-wrapper {
    transform: scale(1.08) translateZ(0);
    box-shadow: 0 30px 80px rgba(229, 9, 20, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(229, 9, 20, 0.8);
}

/* Thumbnail image */
.showcase-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) contrast(1);
}

.showcase-card:hover .showcase-thumbnail {
    transform: scale(1.15) translateZ(0);
    filter: brightness(0.6) contrast(1.1);
}

/* Overlay with glassmorphism effect */
.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease-out;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.showcase-card:hover .showcase-overlay {
    opacity: 1;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Film info inside overlay */
.showcase-info {
    color: white;
    animation: slideUpInfo 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.showcase-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5px;
}

.showcase-year {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Watch Now button with glassmorphism */
.showcase-btn {
    align-self: flex-start;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: slideUpButton 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s backwards;
    box-shadow: 0 8px 32px rgba(229, 9, 20, 0.3);
}

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

.showcase-btn:hover {
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.8), rgba(255, 107, 107, 0.8));
    border-color: rgba(229, 9, 20, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(229, 9, 20, 0.5);
    color: white;
}

.showcase-btn i {
    transition: transform 0.3s ease-out;
}

.showcase-btn:hover i {
    transform: scale(1.2);
}

/* Gradient fades for cinematic edge effect */
.showcase-fade {
    position: absolute;
    top: 0;
    height: 100%;
    width: 250px;
    pointer-events: none;
    z-index: 100;
}

.showcase-fade-left {
    left: 0;
    background: linear-gradient(to right, 
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0.5) 70%,
        transparent 100%);
}

.showcase-fade-right {
    right: 0;
    background: linear-gradient(to left, 
        rgba(10, 10, 10, 1) 0%,
        rgba(10, 10, 10, 0.5) 70%,
        transparent 100%);
}

/* Scroll indicator */
.showcase-indicator {
    text-align: center;
    margin-top: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    animation: pulse-indicator 2s ease-in-out infinite;
}

@keyframes pulse-indicator {
    0%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-3px);
    }
}

.showcase-indicator i {
    margin: 0 0.5rem;
    display: inline-block;
    animation: float-arrow 1.5s ease-in-out infinite;
}

.showcase-indicator i:first-child {
    animation-delay: -0.5s;
}

.showcase-indicator i:last-child {
    animation-delay: 0s;
}

@keyframes float-arrow {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.3;
    }
    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

/* ============ RESPONSIVE SHOWCASE ============ */
@media (max-width: 1024px) {
    .showcase-card {
        flex: 0 0 280px;
        height: 360px;
    }

    .showcase-title {
        font-size: 1.3rem;
    }

    .showcase-scroll-wrapper {
        height: 400px;
    }

    .showcase-header .section-title {
        font-size: 2.2rem;
    }
}

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

    .showcase-header {
        margin-bottom: 3rem;
    }

    .showcase-header .section-title {
        font-size: 1.8rem;
    }

    .showcase-card {
        flex: 0 0 240px;
        height: 300px;
    }

    .showcase-scroll-wrapper {
        height: 350px;
    }

    @keyframes marqueeScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 0.8rem));
        }
    }

    .showcase-marquee {
        gap: 1.2rem;
    }

    .showcase-title {
        font-size: 1.1rem;
    }

    .showcase-year {
        font-size: 0.75rem;
    }

    .showcase-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .showcase-fade {
        width: 150px;
    }

    .showcase-indicator {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .showcase {
        padding: 3rem 0;
    }

    .showcase-header {
        margin-bottom: 2rem;
    }

    .showcase-header .section-title {
        font-size: 1.5rem;
    }

    .showcase-subtitle {
        font-size: 0.85rem;
    }

    .showcase-card {
        flex: 0 0 200px;
        height: 250px;
    }

    .showcase-scroll-wrapper {
        height: 300px;
    }

    .showcase-thumbnail-wrapper {
        border-radius: 12px;
    }

    .showcase-title {
        font-size: 0.95rem;
    }

    .showcase-year {
        font-size: 0.7rem;
    }

    .showcase-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        gap: 4px;
    }

    .showcase-fade {
        width: 80px;
        background: linear-gradient(to right, rgba(10, 10, 10, 1) 0%, transparent 100%);
    }

    .showcase-fade-right {
        background: linear-gradient(to left, rgba(10, 10, 10, 1) 0%, transparent 100%);
    }

    .showcase-indicator {
        display: none;
    }
}
