/* ==========================================================================
   PID VFX - SPIDERATION-INSPIRED MODERN STUDIO STYLESHEET
   Style: Cinematic Dark Theme, 3-Column Portfolio Grid, Glassmorphic Nav
   ========================================================================== */

:root {
    --bg-main: #070708;
    --bg-secondary: #0f1012;
    --bg-card: #151619;
    --bg-card-hover: #1c1d22;
    --text-primary: #ffffff;
    --text-secondary: #a0a5ad;
    --text-muted: #646872;
    --accent-red: #e50914;
    --accent-glow: rgba(229, 9, 20, 0.4);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.25);
    --nav-height: 80px;
    --font-heading: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Typography */
html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: #fff;
    text-decoration: none;
}

/* ==========================================================================
   NAVIGATION BAR (Spideration Style: Minimalist, Logo+Tagline Left, Uppercase Menu Right)
   ========================================================================== */
.studio-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom 0.4s ease, height 0.3s ease;
    display: flex;
    align-items: center;
}

.studio-navbar.scrolled {
    background: rgba(7, 7, 8, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    height: 70px;
}

.studio-navbar .nav-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand & Tagline */
.brand-group {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-group:hover .brand-logo {
    transform: scale(1.04);
}

.brand-tagline {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 14px;
    line-height: 1.2;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 36px;
}

.nav-menu li a {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #cfd3da;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #ffffff;
}

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

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

/* Mobile Nav Toggle */
.mobile-toggle-btn {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

/* ==========================================================================
   HERO SECTION (Fullscreen Video Background + Centered Hero Typography)
   ========================================================================== */
.hero-showreel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(7, 7, 8, 0.45) 0%,
        rgba(7, 7, 8, 0.25) 50%,
        rgba(7, 7, 8, 0.9) 95%,
        #070708 100%
    );
}

/* Particles Canvas Layer */
.hero-particles,
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-particles canvas,
#particles-js canvas,
#home canvas.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 3;
    pointer-events: auto;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    pointer-events: none;
}

.hero-content a,
.hero-content button {
    pointer-events: auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #e0e0e0;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin: 0 0 16px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 40%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(16px, 2.2vw, 22px);
    font-weight: 400;
    color: #c5cbd5;
    margin: 0 auto 36px;
    max-width: 650px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.hero-cta:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.studio-section {
    padding: 120px 0;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    scroll-margin-top: 80px;
}

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

.section-title {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 16px;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--accent-red);
    margin: 14px auto 0;
    border-radius: 2px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   OUR WORK (3-Column Responsive Grid Like Spideration)
   ========================================================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.project-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.project-card:hover .project-thumbnail img {
    transform: scale(1.06);
    filter: brightness(1.08);
}

/* Play Button Overlay */
.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.project-card:hover .play-overlay {
    background: rgba(0, 0, 0, 0.1);
}

.play-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(15, 16, 18, 0.85);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.play-circle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.project-card:hover .play-circle {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.15);
    box-shadow: 0 0 24px var(--accent-glow);
}

.project-card:hover .play-circle svg {
    transform: scale(1.08);
}

/* Project Info Caption */
.project-info {
    padding: 18px 20px;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.project-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-red);
}

.project-name {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.project-card:hover .project-name {
    color: #ffffff;
}

/* ==========================================================================
   ABOUT US SECTION (Premium Cinematic Studio Presentation)
   ========================================================================== */
.about-showcase-container {
    max-width: 1080px;
    margin: 0 auto 64px;
}

.about-studio-card {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.75) 0%, rgba(12, 12, 16, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-top: 2px solid var(--accent-red);
    border-radius: 12px;
    padding: 44px 40px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 35px rgba(229, 9, 20, 0.05);
    position: relative;
    overflow: hidden;
}

.about-studio-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-quote-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 20px;
    padding: 5px 14px;
    background: rgba(229, 9, 20, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.25);
    border-radius: 30px;
}

.about-headline-quote {
    font-size: clamp(20px, 2.5vw, 27px);
    font-weight: 600;
    line-height: 1.55;
    color: #ffffff;
    margin: 0 0 18px 0;
    letter-spacing: -0.01em;
}

.about-headline-quote span.accent-text {
    color: #f87171;
    font-weight: 700;
}

.about-subtext {
    font-size: clamp(16px, 1.8vw, 18px);
    color: #e2e8f0;
    line-height: 1.85;
    margin: 0 0 32px 0;
}

/* Studio 3 Capabilities Grid */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-pillar-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 8px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 17px;
}

.about-pillar-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.about-pillar-text p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   FEATURED MOVIES POSTER SLIDER
   ========================================================================== */
.movie-slider-section {
    margin-bottom: 80px;
    position: relative;
}

.movie-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 4px;
}

.movie-slider-title {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.movie-slider-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background: var(--accent-red);
    border-radius: 2px;
}

.movie-slider-nav {
    display: flex;
    gap: 12px;
}

.slider-arrow-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-arrow-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
    transform: scale(1.08);
}

.movie-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    padding: 10px 4px 20px;
    cursor: grab;
}

.movie-carousel-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.movie-carousel-wrapper:active {
    cursor: grabbing;
}

.movie-carousel-track {
    display: flex;
    gap: 22px;
    width: max-content;
    align-items: stretch;
}

.movie-poster-card {
    width: 210px;
    flex-shrink: 0;
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.movie-poster-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7);
}

.movie-poster-img-wrap {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #000;
    position: relative;
}

.movie-poster-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.movie-poster-card:hover .movie-poster-img-wrap img {
    transform: scale(1.06);
}

.movie-poster-info {
    padding: 14px 14px;
    background: var(--bg-card);
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.movie-poster-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: #e5e7eb;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.02em;
    width: 100%;
    transition: color 0.3s ease;
}

.movie-poster-card:hover .movie-poster-name {
    color: #ffffff;
}

.service-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 36px 28px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card:hover {
    background: var(--bg-card);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 22px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.service-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Partners Showcase (Like Spideration Our Partner) */
.partners-wrapper {
    background: linear-gradient(180deg, rgba(15, 16, 18, 0.6) 0%, rgba(7, 7, 8, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 50px 40px;
}

.partners-bar-header {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
}

.partner-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 20px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80px;
    transition: var(--transition-smooth);
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9da3af;
    transition: color 0.3s ease;
}

.partner-item:hover .partner-name {
    color: #ffffff;
}

/* ==========================================================================
   CONTACT SECTION (Details, Action Cards & Social Channels)
   ========================================================================== */
.contact-showcase-container {
    max-width: 920px;
    margin: 0 auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 44px;
}

.contact-action-card {
    background: linear-gradient(145deg, rgba(22, 22, 28, 0.75) 0%, rgba(12, 12, 16, 0.88) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-action-card:hover {
    border-color: rgba(229, 9, 20, 0.45);
    background: linear-gradient(145deg, rgba(28, 22, 24, 0.85) 0%, rgba(16, 12, 14, 0.95) 100%);
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(229, 9, 20, 0.12);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-action-card:hover .contact-card-icon {
    background: var(--accent-red);
    color: #ffffff;
    transform: scale(1.05);
}

.contact-card-icon.youtube-icon-accent {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.12);
    border-color: rgba(255, 0, 0, 0.3);
}

.contact-action-card:hover .contact-card-icon.youtube-icon-accent {
    background: #ff0000;
    color: #ffffff;
}

.contact-card-details {
    flex-grow: 1;
}

.contact-card-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 5px;
    display: block;
}

.contact-card-label.youtube-label-accent {
    color: #ff5555;
}

.contact-card-value {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    word-break: break-word;
}

.contact-card-arrow {
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-action-card:hover .contact-card-arrow {
    color: #ffffff;
    transform: translateX(4px);
}

/* Social Channels Bar */
.social-channels-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 10px;
}

.social-bar-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #6b7280;
}

.social-bar-items {
    display: flex;
    gap: 16px;
}

.social-circle-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    font-size: 18px;
    transition: var(--transition-smooth);
}

.social-circle-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px var(--accent-glow);
}

/* Google Maps Container */
.map-embed-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    filter: invert(90%) hue-rotate(180deg) contrast(90%);
    transition: filter 0.4s ease;
}

.map-embed-wrapper:hover {
    filter: none;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ==========================================================================
   FOOTER (Clean & Minimalist)
   ========================================================================== */
.studio-footer {
    background: #030304;
    border-top: 1px solid var(--border-color);
    padding: 30px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.footer-back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-back-to-top:hover {
    color: #fff;
}

/* ==========================================================================
   VIDEO LIGHTBOX MODAL (Fullscreen Player, Prev/Next Arrows, Close X)
   ========================================================================== */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(3, 3, 4, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.video-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content-box {
    position: relative;
    width: 90%;
    max-width: 1120px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10001;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0;
}

.lightbox-counter {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.lightbox-player-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-player-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Lightbox Controls: Close, Prev, Next */
.lightbox-close-btn {
    position: fixed;
    top: 30px;
    right: 36px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    transition: var(--transition-smooth);
}

.lightbox-close-btn:hover {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.1);
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    transition: var(--transition-smooth);
}

.lightbox-arrow:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .brand-tagline {
        display: none;
    }

    .mobile-toggle-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: rgba(7, 7, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 24px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.4s;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .lightbox-arrow {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    .lightbox-prev {
        left: 12px;
    }
    .lightbox-next {
        right: 12px;
    }
}

@media (max-width: 768px) {
    .studio-section {
        padding: 80px 20px;
    }

    .studio-navbar .nav-container {
        padding: 0 20px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .partners-wrapper {
        padding: 36px 20px;
    }

    .contact-meta-list {
        flex-direction: column;
        gap: 16px;
    }

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

    .lightbox-content-box {
        width: 95%;
    }

    .lightbox-close-btn {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .about-pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-studio-card {
        padding: 32px 20px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lightbox-arrow {
        display: none; /* Mobile navigation via close or swipe */
    }
}
