/* ========== VARIABLES ========== */
:root {
    --dark-bg: #0a0a0a;
    --dark-card: #141414;
    --dark-border: #222;
    --light-bg: #f8f7f4;
    --light-card: #fff;
    --light-border: #e8e6e1;
    --accent: #c8a24e;
    --accent-light: #dbb85e;
    --text-dark: #0a0a0a;
    --text-dark-secondary: #555;
    --text-light: #ffffff;
    --text-light-secondary: #999;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Premium additions */
    --glow-gold: 0 0 30px rgba(200, 162, 78, 0.15);
    --glow-gold-strong: 0 0 50px rgba(200, 162, 78, 0.25);
    --glass-bg: rgba(10, 10, 10, 0.75);
    --glass-border: rgba(255, 255, 255, 0.08);
    --premium-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    --gold-gradient: linear-gradient(135deg, var(--accent) 0%, #e8c96a 50%, var(--accent) 100%);
}

/* ========== RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-light-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--text-light);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    transition: background var(--transition), transform var(--transition);
}

.nav-cta:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 100px 24px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-links a {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-light);
    transition: color var(--transition);
}

.mobile-links a:hover {
    color: var(--accent);
}

.mobile-cta {
    padding: 14px 32px;
    background: var(--accent);
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 80px 0 80px;
    background: var(--dark-bg);
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 162, 78, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(200, 162, 78, 0.08);
    border: 1px solid rgba(200, 162, 78, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #e8c96a 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light-secondary);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--text-light);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
}

.btn-dark {
    background: var(--dark-bg);
    color: var(--text-light);
}

.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--text-dark);
}

.btn-accent:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 12px 24px;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-light-secondary);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* ========== SECTIONS ========== */
.section-light {
    background: var(--light-bg);
    color: var(--text-dark);
    padding: 120px 0;
}

.section-dark {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 120px 0;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(200, 162, 78, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-tag-light {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(200, 162, 78, 0.15);
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.section-title-light {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.section-title-light em {
    font-style: italic;
    font-family: var(--font-display);
    color: var(--accent);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-dark-secondary);
    margin-top: 12px;
}

.section-subtitle-light {
    font-size: 17px;
    color: var(--text-light-secondary);
    margin-top: 12px;
}

.text-accent {
    color: var(--accent);
}

/* ========== SERVICES ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-top: 3px solid transparent;
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08), var(--glow-gold);
    border-top-color: var(--accent);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(200, 162, 78, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark-secondary);
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags li {
    padding: 4px 12px;
    background: var(--light-bg);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark-secondary);
}

/* ========== PROJECTS ========== */
.project-showcase {
    margin-bottom: 64px;
}

.project-category-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light-secondary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--dark-border);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.video-placeholder {
    aspect-ratio: 9/16;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition);
}

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

.video-placeholder::after {
    content: attr(data-label);
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.play-btn {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background var(--transition), transform var(--transition);
}

.video-placeholder:hover .play-btn {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
}

.photo-card {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.photo-card-tall {
    grid-row: span 2;
}

.photo-card-wide {
    grid-column: span 2;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    position: relative;
    transition: transform var(--transition);
    cursor: pointer;
    border-radius: var(--radius-md);
}

.photo-placeholder::after {
    content: attr(data-label);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    opacity: 0;
    transition: opacity var(--transition);
}

.photo-placeholder:hover::after {
    opacity: 1;
}

.photo-placeholder:hover {
    transform: scale(1.03);
}

/* ========== PROCESS ========== */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--accent);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
    min-width: 72px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark-secondary);
    margin-bottom: 16px;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.step-tags span {
    padding: 4px 12px;
    background: rgba(200, 162, 78, 0.08);
    color: var(--accent);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

/* ========== ABOUT ========== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}

.image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--dark-border);
}

.about-photo-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1a2e, #0d1117);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-secondary);
    font-size: 16px;
}

.about-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    color: var(--text-light-secondary);
    transition: all var(--transition);
}

.social-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.about-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-light);
}

.about-title em {
    font-family: var(--font-display);
    color: var(--accent);
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light-secondary);
    margin-bottom: 16px;
}

.about-timeline {
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 16px 20px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.timeline-item:hover {
    border-color: rgba(200, 162, 78, 0.3);
}

.timeline-year {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    min-width: 48px;
}

.timeline-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
}

.timeline-info span {
    font-size: 13px;
    color: var(--text-light-secondary);
}

/* ========== CTA ========== */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    text-align: center;
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 60% 40%, rgba(200, 162, 78, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.cta-box p {
    font-size: 17px;
    color: var(--text-light-secondary);
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ========== FOOTER ========== */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--dark-border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-light-secondary);
    margin-top: 12px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    color: var(--text-light-secondary);
    transition: all var(--transition);
}

.footer-socials a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.footer-links a {
    font-size: 14px;
    color: var(--text-light-secondary);
    transition: color var(--transition);
}

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

.footer-bottom {
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-light-secondary);
    letter-spacing: 0.05em;
}

/* ========== VIDEO INTRO ========== */
.video-intro {
    background: var(--dark-bg);
    padding: 80px 0 0;
}

.video-intro-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-intro-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.video-intro-player.paused {
    opacity: 0.6;
}

.video-intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.5));
    pointer-events: none;
}

.video-intro-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.video-intro.scrolled-past .video-intro-content {
    opacity: 0.4;
}

.video-intro-logo {
    height: 52px;
    width: auto;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}

.video-intro-tagline {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Scroll Down Hint */
.scroll-down-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    animation: hintBounce 2s infinite;
    transition: opacity 0.4s ease;
}

.video-intro.scrolled-past .scroll-down-hint {
    opacity: 0;
}

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

/* ========== NAV LOGO IMAGE ========== */
.nav-logo-img {
    height: 28px;
    width: auto;
}

.footer-logo-img {
    height: 36px;
    width: auto;
}

/* ========== VIEWS SECTION ========== */
.views-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.views-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition);
}

.views-card:hover {
    transform: translateY(-4px);
}

.views-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 9/16;
    border-radius: var(--radius-md);
}

/* ========== REAL PHOTO GRID ========== */
.project-category-title-light {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-dark-secondary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--light-border);
}

.photo-grid-real {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

.photo-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.photo-item-tall {
    grid-row: span 2;
}

.photo-item-wide {
    grid-column: span 2;
}

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

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity var(--transition);
}

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

.photo-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* ========== ABOUT PHOTO ========== */
.about-photo {
    width: 100%;
    height: auto;
    display: block;
}

.image-frame-light {
    border: 1px solid var(--light-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* ========== DARK PROCESS STEPS ========== */
.process-step-dark {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
}

.process-step-dark:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    border-color: rgba(200,162,78,0.2);
}

.process-step-dark .step-content h3 {
    color: var(--text-light);
}

.process-step-dark .step-content p {
    color: var(--text-light-secondary);
}

/* ========== LIGHT ABOUT VARIANTS ========== */
.about-title-dark {
    color: var(--text-dark);
}

.about-title-dark em {
    color: var(--accent);
    font-family: var(--font-display);
}

.about-desc-dark {
    color: var(--text-dark-secondary);
}

.social-link-light {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    color: var(--text-dark-secondary);
}

.social-link-light:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.timeline-item-light {
    background: var(--light-card);
    border: 1px solid var(--light-border);
}

.timeline-item-light:hover {
    border-color: rgba(200,162,78,0.4);
}

.timeline-item-light .timeline-info strong {
    color: var(--text-dark);
}

.timeline-item-light .timeline-info span {
    color: var(--text-dark-secondary);
}

/* ========== VIDEO PORTFOLIO GRID ========== */
.video-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.video-portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.video-thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.video-portfolio-item .video-thumb {
    aspect-ratio: 16/9;
}

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

.video-thumb:hover img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform var(--transition), opacity var(--transition);
    opacity: 0.85;
}

.video-thumb:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
}

.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0,0,0,0.4));
    pointer-events: none;
    transition: opacity var(--transition);
}

.video-thumb:hover::after {
    opacity: 0.6;
}

/* Embedded video state */
.video-portfolio-item.playing .video-thumb::after,
.video-portfolio-item.playing .video-play-btn,
.shorts-item.playing .video-thumb::after,
.shorts-item.playing .video-play-btn,
.shorts-item.playing .shorts-badge {
    display: none;
}

.video-portfolio-item .video-embed,
.shorts-item .video-embed {
    display: none;
}

.video-portfolio-item.playing .video-thumb img,
.shorts-item.playing .video-thumb img {
    display: none;
}

.video-portfolio-item.playing .video-embed,
.shorts-item.playing .video-embed {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.video-portfolio-item.playing .video-thumb,
.shorts-item.playing .video-thumb {
    background: #000;
}

/* ========== SHORTS GRID ========== */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.shorts-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.shorts-item .video-thumb {
    aspect-ratio: 9/16;
}

.shorts-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 0, 0, 0.85);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ========== VIDEO LIGHTBOX ========== */
.video-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.lightbox-content.lightbox-short {
    max-width: 400px;
}

.lightbox-content iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    border-radius: var(--radius-md);
}

.lightbox-content.lightbox-short iframe {
    aspect-ratio: 9/16;
}

.lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* ========== CTA ACCENT BOX ========== */
.cta-box-accent {
    background: linear-gradient(135deg, #1a1510 0%, #0a0a0a 100%);
    border: 1px solid rgba(200,162,78,0.15);
}

/* ========== CONTACT SECTION ========== */
.kontakt-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-md);
    transition: border-color var(--transition);
}

.kontakt-card:hover {
    border-color: rgba(200,162,78,0.3);
}

.kontakt-icon {
    width: 48px;
    height: 48px;
    background: rgba(200,162,78,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.kontakt-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}

.kontakt-card a,
.kontakt-card span {
    font-size: 14px;
    color: var(--text-light-secondary);
    transition: color var(--transition);
}

.kontakt-card a:hover {
    color: var(--accent);
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 15px;
    font-family: var(--font-main);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light-secondary);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200,162,78,0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group select option {
    background: var(--dark-card);
    color: var(--text-light);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    font-size: 16px;
}

/* ========== SHORTS GRID 5 COLUMNS ========== */
@media (min-width: 769px) {
    .shorts-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* ========== PHOTO MARQUEE ========== */
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.marquee-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--light-bg), transparent);
}

.marquee-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--light-bg), transparent);
}

.marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
    animation: marquee-scroll var(--marquee-duration, 30s) linear infinite;
}

.marquee-track[data-direction="right"] {
    animation-name: marquee-scroll-right;
}

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

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.marquee-item {
    flex-shrink: 0;
    width: 340px;
    height: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

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

.marquee-item:hover img {
    transform: scale(1.08);
}

.marquee-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    pointer-events: none;
    border-radius: var(--radius-md);
}

.marquee-item:hover::after {
    background: rgba(0,0,0,0.15);
}

/* ========== PHOTO LIGHTBOX ========== */
.photo-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.photo-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.photo-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.photo-lightbox-img-wrap {
    position: relative;
    z-index: 1;
    max-width: 85vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-lightbox-img-wrap img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: opacity 0.25s ease;
}

.photo-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.photo-lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.photo-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
}

.photo-lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

.photo-lightbox-prev { left: 24px; }
.photo-lightbox-next { right: 24px; }

.photo-lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    font-weight: 500;
}

/* ========== SPORT PHOTO GRID ========== */
.photo-grid-sport {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 12px;
}

.photo-grid-sport .photo-item-wide {
    grid-column: span 2;
}

.photo-grid-sport .photo-item:nth-child(4) {
    grid-column: span 2;
}

.photo-grid-sport .photo-item:nth-child(5) {
    grid-column: span 2;
}

/* ========== SCROLL CARD MAT (Apple-style) ========== */
.scroll-card-section {
    height: 350vh;
    background: #000;
    position: relative;
}

.scroll-card-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.card-canvas {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 360px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 28px;
    }

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

    .views-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .views-grid .views-card:nth-child(4),
    .views-grid .views-card:nth-child(5) {
        display: none;
    }

    .photo-grid-real {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .photo-item-wide {
        grid-column: span 1;
    }

    .photo-item-tall {
        grid-row: span 1;
    }

    .process-step {
        flex-direction: column;
        gap: 16px;
        padding: 28px;
    }

    .step-number {
        font-size: 36px;
    }

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

    .about-image {
        max-width: 360px;
        margin: 0 auto;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .section-light, .section-dark {
        padding: 80px 0;
    }

    .video-intro {
        padding: 70px 12px 0;
    }

    .video-intro-wrapper {
        border-radius: var(--radius-md);
    }

    .video-intro-logo {
        height: 36px;
    }

    .video-intro-tagline {
        font-size: 11px;
    }

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

    .shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .kontakt-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .lightbox-content {
        width: 95%;
    }

    .lightbox-content.lightbox-short {
        max-width: 85%;
    }

    .marquee-item {
        width: 260px;
        height: 200px;
    }

    .marquee-fade {
        width: 60px;
    }

    .photo-lightbox-prev { left: 12px; }
    .photo-lightbox-next { right: 12px; }

    .photo-lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .photo-grid-sport .photo-item-wide,
    .photo-grid-sport .photo-item:nth-child(4),
    .photo-grid-sport .photo-item:nth-child(5) {
        grid-column: span 1;
    }

    .photo-grid-sport .photo-item:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 8px;
    }

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

/* ========== LANGUAGE SWITCHER ========== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 3px;
}

.lang-btn {
    padding: 5px 12px;
    background: none;
    border: none;
    color: var(--text-light-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    border-radius: 100px;
    transition: all var(--transition);
    font-family: var(--font-main);
}

.lang-btn.active {
    background: var(--accent);
    color: var(--text-dark);
}

.lang-btn:hover:not(.active) {
    color: var(--text-light);
}

.mobile-lang-switcher {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 3px;
    margin-top: 8px;
}

.mobile-lang-switcher .lang-btn {
    padding: 8px 20px;
    font-size: 14px;
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    opacity: 0.3;
}

.section-divider-dark {
    background: var(--gold-gradient);
    opacity: 0.2;
}

/* ========== FEATURED SHOWREEL ========== */
.showreel-section {
    padding: 0 0 40px;
    background: var(--dark-bg);
}

.showreel-card {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--premium-shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.showreel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--premium-shadow), var(--glow-gold);
}

.showreel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showreel-card:hover img {
    transform: scale(1.03);
}

.showreel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: background var(--transition);
}

.showreel-card:hover .showreel-overlay {
    background: linear-gradient(transparent 20%, rgba(0, 0, 0, 0.6));
}

.showreel-play {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.showreel-card:hover .showreel-play {
    background: rgba(200, 162, 78, 0.3);
    border-color: var(--accent);
    transform: scale(1.1);
}

.showreel-play svg {
    margin-left: 4px;
}

.showreel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.showreel-title {
    color: var(--text-light);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ========== VIDEO FILTER TABS ========== */
.video-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-tab {
    padding: 10px 24px;
    background: none;
    border: 1px solid var(--light-border);
    border-radius: 100px;
    color: var(--text-dark-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-main);
}

.filter-tab:hover {
    border-color: var(--accent);
    color: var(--text-dark);
}

.filter-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--text-dark);
    font-weight: 600;
}

/* ========== VIDEO SHOWCASE GRID ========== */
.video-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.video-showcase-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: var(--light-card);
    border: 1px solid var(--light-border);
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-showcase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1), var(--glow-gold);
}

.video-showcase-card[data-category].hidden {
    display: none;
}

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

.video-showcase-card[data-format="vertical"] .video-showcase-thumb {
    aspect-ratio: 9/16;
}

.video-showcase-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-showcase-card:hover .video-showcase-thumb img {
    transform: scale(1.05);
}

.video-showcase-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.5));
    pointer-events: none;
    transition: opacity var(--transition);
}

.video-showcase-card:hover .video-showcase-thumb::after {
    opacity: 0.7;
}

.video-showcase-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 52px;
    height: 52px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all var(--transition);
}

.video-showcase-card:hover .video-showcase-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-showcase-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 100px;
    z-index: 3;
}

.video-showcase-info {
    padding: 16px 20px;
}

.video-showcase-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.video-showcase-info span {
    font-size: 13px;
    color: var(--text-dark-secondary);
}

/* ========== PORTFOLIO INLINE CTA ========== */
.portfolio-cta {
    text-align: center;
    padding: 48px 0 0;
}

/* ========== PREMIUM MICRO-INTERACTIONS ========== */
.btn:active {
    transform: translateY(0) scale(0.98);
}

/* ========== REELS CAROUSEL - Apple Glass Style ========== */
.reels-carousel-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.video-showcase-grid.reels-carousel-mode {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 20px 4px 20px;
    margin-bottom: 32px;
    scrollbar-width: none;
}

.video-showcase-grid.reels-carousel-mode::-webkit-scrollbar {
    display: none;
}

.video-showcase-grid.reels-carousel-mode .video-showcase-card {
    flex: 0 0 260px;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    overflow: hidden;
}

.video-showcase-grid.reels-carousel-mode .video-showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 40px rgba(212, 175, 55, 0.1);
}

.video-showcase-grid.reels-carousel-mode .video-showcase-card .video-showcase-thumb {
    aspect-ratio: 9/16;
    border-radius: 20px 20px 0 0;
}

.video-showcase-grid.reels-carousel-mode .video-showcase-card .video-showcase-info {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.02);
}

.video-showcase-grid.reels-carousel-mode .video-showcase-card .video-showcase-info h4 {
    font-size: 14px;
}

.video-showcase-grid.reels-carousel-mode .video-showcase-card .video-showcase-info span {
    font-size: 12px;
}

.reels-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: var(--dark-text, #1a1a1a);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.reels-nav:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.reels-nav-prev {
    left: -24px;
}

.reels-nav-next {
    right: -24px;
}

@media (max-width: 768px) {
    .video-showcase-grid.reels-carousel-mode .video-showcase-card {
        flex: 0 0 200px;
    }
    .reels-nav {
        width: 40px;
        height: 40px;
    }
    .reels-nav-prev { left: -8px; }
    .reels-nav-next { right: -8px; }
}

@media (max-width: 480px) {
    .video-showcase-grid.reels-carousel-mode .video-showcase-card {
        flex: 0 0 180px;
    }
    .reels-nav-prev { left: 4px; }
    .reels-nav-next { right: 4px; }
}

.img-lazy-fade {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.img-lazy-fade.loaded {
    opacity: 1;
}

/* ========== RESPONSIVE - NEW COMPONENTS ========== */
@media (max-width: 1024px) {
    .video-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showreel-card {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    .lang-switcher {
        display: none;
    }

    .video-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .video-filter-tabs {
        gap: 8px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .showreel-card {
        aspect-ratio: 16/9;
        border-radius: var(--radius-lg);
    }

    .showreel-play {
        width: 56px;
        height: 56px;
    }

    .showreel-badge {
        font-size: 10px;
        padding: 4px 12px;
        top: 12px;
        left: 12px;
    }

    .showreel-title {
        font-size: 14px;
    }

    .showreel-section {
        padding: 0 12px 24px;
    }
}

@media (max-width: 480px) {
    .video-showcase-grid {
        gap: 16px;
    }

    .video-filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }

    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
}


/* ========== REELS CAROUSEL ========== */
.reels-section {
    margin-top: 60px;
    padding-top: 20px;
}

.reels-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.reels-section-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.reels-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.reels-carousel-track {
    display: flex;
    gap: 20px;
    animation: reelsScroll 30s linear infinite;
    width: max-content;
    will-change: transform;
}

.reels-carousel-track:hover,
.reels-carousel-track.paused {
    animation-play-state: paused;
}

.reels-carousel-track .video-showcase-card {
    flex: 0 0 280px;
    width: 280px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.reels-carousel-track .video-showcase-card:hover {
    transform: scale(1.03);
}

.reels-carousel-track .video-showcase-card .video-showcase-thumb {
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
}

.reels-carousel-track .video-showcase-card .video-showcase-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

@media (max-width: 768px) {
    .reels-carousel-track .video-showcase-card {
        flex: 0 0 220px;
        width: 220px;
    }
    .reels-section {
        margin-top: 40px;
    }
}
