/* ═══════════════════════════════════════════
   ROSHAN DESIGNS — MAIN STYLESHEET
   Palette: ultimateeditors.com inspired
   Primary: #49665f | Secondary: #C69749
   BG: #000A16 | Cards: #0E1826 | Dark: #0B0B1E
═══════════════════════════════════════════ */

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

@property --ann-height {
    syntax: '<length>';
    inherits: true;
    initial-value: 0px;
}
:root {
    --ann-height: 0px;
    --bg-primary: #091413;
    --bg-secondary: #0a1a18;
    --bg-tertiary: #112220;
    --bg-card: rgba(17,34,32,0.6);
    --bg-card-hover: rgba(17,34,32,0.85);
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.08);
    --text-primary: #f0f0f5;
    --text-secondary: rgba(240,240,245,0.65);
    --text-tertiary: rgba(240,240,245,0.35);
    --accent-1: #49665f;
    --accent-2: #C69749;
    --accent-3: #BDA6CE;
    --accent-4: #6b9e95;
    --accent-glow: rgba(73,102,95,0.35);
    --neon-glow: 0 0 25px rgba(73,102,95,0.35), 0 0 60px rgba(198,151,73,0.12);
    --neon-glow-sm: 0 0 15px rgba(73,102,95,0.25);
    --transition-smooth: cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-1) var(--bg-primary);
    overflow-x: hidden;
}
html::-webkit-scrollbar { width: 6px; }
html::-webkit-scrollbar-track { background: var(--bg-primary); }
html::-webkit-scrollbar-thumb { background: var(--accent-1); border-radius: 3px; }

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* ─── ANIMATED BACKGROUND ─── */
.bg-mesh {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 600px 600px at 15% 15%, rgba(73,102,95,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 85% 80%, rgba(189,166,206,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 50% 40%, rgba(198,151,73,0.05) 0%, transparent 70%);
}
.bg-grid {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.025;
    background-image:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 80px 80px;
}
.floating-orb {
    position: fixed; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0;
    animation: floatOrb 22s ease-in-out infinite;
}
.floating-orb.orb-1 { width: 450px; height: 450px; top: -120px; left: -120px; background: rgba(73,102,95,0.12); }
.floating-orb.orb-2 { width: 350px; height: 350px; bottom: -80px; right: -80px; background: rgba(189,166,206,0.08); animation-delay: -8s; }
.floating-orb.orb-3 { width: 280px; height: 280px; top: 45%; left: 55%; background: rgba(168,85,247,0.06); animation-delay: -15s; }
@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(60px, -40px) scale(1.06); }
    50% { transform: translate(-40px, 60px) scale(0.94); }
    75% { transform: translate(40px, 40px) scale(1.03); }
}
.cursor-glow {
    position: fixed; width: 650px; height: 650px;
    border-radius: 50%; pointer-events: none; z-index: 0;
    background: radial-gradient(circle, rgba(73,102,95,0.05), transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

/* ─── ANNOUNCEMENT BAR ─── */
.announcement-bar {
    background: var(--accent-1); color: #fff; text-align: center;
    padding: 10px 20px; font-size: 13px; font-weight: 500;
    position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.announcement-bar.dismissed {
    transform: translateY(-100%); opacity: 0; pointer-events: none;
}
.announcement-inner { display: flex; align-items: center; justify-content: center; gap: 12px; max-width: 1200px; margin: 0 auto; }
.announcement-link { color: inherit; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; white-space: nowrap; }
.announcement-link:hover { opacity: 0.85; }
.announcement-close { background: none; border: none; color: inherit; font-size: 20px; cursor: pointer; padding: 0 4px; opacity: 0.7; line-height: 1; }
.announcement-close:hover { opacity: 1; }

/* ─── THEME TOGGLE ─── */
.theme-toggle {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--glass-border);
    background: var(--glass); cursor: pointer; display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); transition: all 0.3s ease; margin-left: 8px; flex-shrink: 0;
}
.theme-toggle:hover { color: var(--accent-1); border-color: var(--accent-1); }
.theme-toggle svg { width: 18px; height: 18px; }
[data-theme="dark"] .toggle-sun { display: block; }
[data-theme="dark"] .toggle-moon { display: none; }
[data-theme="light"] .toggle-sun { display: none; }
[data-theme="light"] .toggle-moon { display: block; }

/* ─── NAVIGATION ─── */
.nav {
    position: fixed; top: var(--ann-height, 0px); left: 0; right: 0; z-index: 1000;
    padding: 16px 40px;
    transition: top 0.4s ease;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(9,20,19,0.7);
    border-bottom: 1px solid var(--glass-border);
    transition: top 0.4s ease, padding 0.5s var(--transition-smooth), background 0.5s var(--transition-smooth), box-shadow 0.5s var(--transition-smooth);
}
.nav.scrolled {
    padding: 12px 40px;
    background: rgba(9,20,19,0.92);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: var(--text-primary);
}
.nav-logo-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 18px; color: white;
    transition: all 0.4s var(--transition-bounce);
    box-shadow: var(--neon-glow-sm);
}
.nav-logo:hover .nav-logo-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--neon-glow);
}
.nav-logo-img img { height: 36px; width: auto; }
.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 700; font-size: 20px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
    position: relative; padding: 8px 18px; border-radius: 100px;
    text-decoration: none; color: var(--text-secondary);
    font-size: 14px; font-weight: 500;
    transition: all 0.3s var(--transition-smooth);
    overflow: hidden;
}
.nav-link::before {
    content: ''; position: absolute; inset: 0; border-radius: 100px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    opacity: 0; transition: opacity 0.3s ease;
}
.nav-link:hover { color: white; }
.nav-link:hover::before { opacity: 0.15; }
.nav-link span { position: relative; z-index: 1; }
.nav-cta {
    padding: 10px 24px; border-radius: 100px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: var(--nav-cta-text, white); text-decoration: none;
    font-size: 14px; font-weight: 600;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: var(--neon-glow-sm);
    position: relative; overflow: hidden;
}
.nav-cta::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-3));
    opacity: 0; transition: opacity 0.4s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--neon-glow); }
.nav-cta:hover::after { opacity: 1; }
.nav-cta span { position: relative; z-index: 1; }
.nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; border-radius: 10px;
    align-items: center; justify-content: center;
    color: var(--text-primary); transition: background 0.3s ease;
}
.nav-toggle:hover { background: var(--glass); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ─── HERO SECTION ─── */
.hero {
    position: relative; z-index: 1;
    min-height: 100vh; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: calc(110px + var(--ann-height, 0px)) 40px 40px;
    text-align: center;
    transition: padding-top 0.4s ease;
}

/* Pulse dot for availability */
.hero-pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e; display: inline-block;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #22c55e; }
    50% { opacity: 0.5; box-shadow: 0 0 16px #22c55e; }
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 20px; border-radius: 100px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    margin-bottom: 16px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.1s both;
    font-size: 13px; color: #22c55e; font-weight: 500;
}
.hero-badge-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 6px 6px 16px; border-radius: 100px;
    background: var(--glass); border: 1px solid var(--glass-border);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.2s both;
}
.hero-badge-text { font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.hero-badge-secondary .hero-badge-text { color: var(--text-secondary); }
.hero-badge-tag {
    padding: 4px 12px; border-radius: 100px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: white; font-size: 12px; font-weight: 600;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(44px, 7.5vw, 88px);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 900px;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.35s both;
}
.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3), var(--accent-4));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.hero-desc {
    font-size: clamp(15px, 1.8vw, 19px);
    color: var(--text-secondary);
    max-width: 560px; margin: 24px auto 0;
    line-height: 1.7; font-weight: 400;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.5s both;
}
.hero-actions {
    display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; justify-content: center;
    animation: fadeInUp 0.8s var(--transition-smooth) 0.65s both;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: var(--btn-padding, 16px 32px); border-radius: var(--btn-radius, 100px);
    font-size: var(--btn-font-size, 15px); font-weight: 600;
    text-transform: var(--btn-text-transform, none);
    letter-spacing: var(--btn-letter-spacing, normal);
    text-decoration: none; cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    position: relative; overflow: hidden; border: none;
    font-family: var(--font-body);
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--transition-bounce); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary {
    background: var(--btn-primary-bg, linear-gradient(135deg, var(--accent-1), var(--accent-2)));
    color: var(--btn-primary-text, white); box-shadow: var(--btn-shadow, 0 4px 25px var(--accent-glow));
}
.btn-primary:hover {
    transform: var(--btn-hover-transform, translateY(-3px));
    box-shadow: var(--btn-shadow-hover, 0 8px 40px rgba(73,102,95,0.5));
}
.btn-secondary {
    background: var(--glass); border: 1px solid var(--glass-border);
    color: var(--btn-secondary-text, var(--text-primary));
}
.btn-secondary:hover {
    background: var(--bg-card-hover); border-color: rgba(255,255,255,0.15);
    transform: translateY(-3px);
}

/* Hero thumbnails — infinite marquee approach */
.hero-visual {
    position: relative; margin-top: 64px; width: 100%;
    max-width: 1200px;
    animation: fadeInUp 1s var(--transition-smooth) 0.85s both;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.hero-glow {
    position: absolute; width: 80%; height: 80%; top: 10%; left: 10%;
    background: radial-gradient(ellipse, rgba(73,102,95,0.15), transparent 70%);
    filter: blur(60px); z-index: -1;
    animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* ═══ VIDEO CAROUSEL SYSTEM (Hero + Portfolio) ═══ */
.video-carousel-wrap {
    position: relative;
    margin-top: 48px;
    overflow: hidden;
}
.hero-video-carousel { margin-top: 40px; }
.video-carousel-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 48px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.video-carousel-track::-webkit-scrollbar { display: none; }

/* ── Hero Carousel: Infinite auto-scroll marquee (JS-driven) ── */
.hero-video-carousel .video-carousel-track {
    flex-flow: row nowrap !important;
    max-height: none !important;
    padding: 20px 0;
    gap: 16px;
    overflow: hidden !important;
    scroll-snap-type: none;
    align-items: center;
    align-content: initial;
    width: max-content;
    will-change: transform;
}
.hero-video-carousel .video-card {
    flex: 0 0 280px;
    min-width: 220px;
    max-width: none;
    width: 280px;
    scroll-snap-align: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
    opacity: 0.75;
    cursor: pointer;
}
/* Playing card — locked at center, scaled up with glow. Reduced scale so it
   doesn't bleed into the hero CTA buttons above the carousel. */
.hero-video-carousel .video-card.hero-card-playing {
    opacity: 1;
    transform: scale(1.35);
    transform-origin: center center;
    z-index: 50;
    box-shadow: 0 24px 60px rgba(0,0,0,0.6);
}
/* When a card is playing, allow it to overflow its container (no clipping) */
.hero-visual:has(.hero-card-playing),
.hero-visual.hero-is-playing { overflow: visible !important; mask-image: none !important; -webkit-mask-image: none !important; z-index: 40; position: relative; }
.hero-video-carousel.hero-playing,
.hero-video-carousel.hero-playing .video-carousel-track { overflow: visible !important; }
.hero-video-carousel.hero-playing { z-index: 45; position: relative; }

/* Dim neighbours ONLY while a video is actively playing (not by default) */
.hero-video-carousel.hero-playing.hero-clean .video-card:not(.hero-card-playing) {
    opacity: 0.2;
    filter: blur(3px) saturate(0.6);
}
.hero-video-carousel.hero-playing .video-card:not(.hero-card-playing) {
    opacity: 0.35;
}

/* Playing card thumb — rounded + clean crop */
.hero-video-carousel .video-card.hero-card-playing .video-card-thumb {
    overflow: hidden;
    border-radius: 18px;
    position: relative;
}
.hero-video-carousel .video-card.hero-card-playing .video-card-thumb iframe {
    border: 0;
    border-radius: 0;
}
/* Clean Player — crop the YouTube Shorts title bar (top) and Shorts badge (bottom)
   by scaling the iframe up and positioning it with negative offsets. */
.hero-video-carousel.hero-clean .video-card.hero-card-playing .video-card-thumb iframe {
    position: absolute !important;
    top: -14% !important;
    left: -8% !important;
    width: 116% !important;
    height: 128% !important;
}
/* (Removed top/bottom gradient overlays — the iframe crop alone hides the
   Shorts title bar + bottom badge; the gradients were showing as a visible
   line across the video.) */

/* Close (X) button — shown only on the active playing card */
.hero-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.2s ease, transform 0.2s ease;
    padding: 0;
    line-height: 1;
}
.hero-close-btn:hover { background: rgba(255,0,0,0.85); transform: scale(1.1); }
.hero-close-btn svg { width: 14px; height: 14px; }

/* ── Hero Horizontal mode: landscape 16:9 cards ── */
.hero-video-carousel.video-carousel-horizontal .video-card {
    flex: 0 0 320px;
    width: 320px;
    min-width: 240px;
}

/* ── Hero Vertical mode: portrait 9:16 reels cards ── */
.hero-video-carousel.video-carousel-vertical .video-card {
    flex: 0 0 200px;
    width: 200px;
    min-width: 160px;
}

/* ── Vertical / Reels: single row, many items (non-hero carousels) ── */
.video-carousel-vertical .video-carousel-track {
    flex-wrap: nowrap;
}
.video-carousel-vertical .video-card {
    flex: 0 0 155px;
    scroll-snap-align: start;
}

/* ── Horizontal / Landscape: 2-row column wrap (non-hero carousels ONLY) ── */
.video-carousel-horizontal:not(.hero-video-carousel) .video-carousel-track {
    flex-flow: column wrap;
    max-height: 520px;
    align-content: flex-start;
}
.video-carousel-horizontal:not(.hero-video-carousel) .video-card {
    flex: 0 0 calc(50% - 7px);
    width: 320px;
    min-width: 280px;
    max-width: 360px;
    scroll-snap-align: start;
}

/* ── Carousel Arrows ── */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card, rgba(0,0,0,0.6));
    border: 1px solid var(--glass-border, rgba(255,255,255,0.1));
    color: var(--text-primary, #fff);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(8px);
}
.video-carousel-wrap:hover .carousel-arrow { opacity: 0.8; }
.carousel-arrow:hover { opacity: 1 !important; background: var(--accent-1, #49665f); }
.carousel-arrow-left { left: 4px; }
.carousel-arrow-right { right: 4px; }

/* ── Video Card (shared for hero + portfolio) ── */
.video-card {
    background: var(--bg-card, rgba(255,255,255,0.03));
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    border: 1px solid var(--glass-border, rgba(255,255,255,0.06));
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    flex-shrink: 0;
}
.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--neon-glow, 0 0 25px rgba(73,102,95,0.35));
    border-color: var(--accent-1, #49665f);
}
.video-card-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}
/* Aspect ratio: STRICTLY enforced per layout mode — never mix */
.video-card-vertical .video-card-thumb { aspect-ratio: 9 / 16 !important; }
.video-card-horizontal .video-card-thumb { aspect-ratio: 16 / 9 !important; }
/* Portfolio grid cards scale naturally within the grid */
.portfolio-video-grid .video-card-thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.video-card-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
}
.video-card:hover .video-card-thumb img { transform: scale(1.05); }
.video-card-thumb iframe,
.video-card-thumb video {
    position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; z-index: 1;
}
.video-card-info {
    padding: 12px 14px;
}
.video-card-info h4 {
    font-family: var(--font-heading, 'Space Grotesk', sans-serif);
    font-size: 0.9rem; font-weight: 600;
    color: var(--text-primary, #fff);
    margin: 0 0 2px; line-height: 1.3;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.video-card-info p {
    font-size: 0.8rem; color: var(--text-secondary, rgba(255,255,255,0.6)); margin: 0;
}

/* ═══ PORTFOLIO VIDEO GRID (4 columns, Load More) ═══ */
.portfolio-video-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}
.video-grid-horizontal {
    grid-template-columns: repeat(4, 1fr);
}
.video-grid-vertical {
    grid-template-columns: repeat(3, 1fr);
}
.portfolio-video-grid .video-card {
    width: 100%;
}
/* Strict ratio enforcement in portfolio grid context */
.portfolio-video-grid.video-grid-vertical .video-card-thumb { aspect-ratio: 9 / 16 !important; }
.portfolio-video-grid.video-grid-horizontal .video-card-thumb { aspect-ratio: 16 / 9 !important; }
/* Strict ratio enforcement in hero carousel context */
.hero-video-carousel.video-carousel-vertical .video-card-thumb { aspect-ratio: 9 / 16 !important; }
.hero-video-carousel.video-carousel-horizontal .video-card-thumb { aspect-ratio: 16 / 9 !important; }
.portfolio-video-grid + .portfolio-video-grid {
    margin-top: 20px;
}
/* Play button */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    padding: 0;
}
.video-card:hover .video-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}
/* ── Fullscreen expand button (corner icon) ── */
.video-fs-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.25s ease, transform 0.25s ease;
    backdrop-filter: blur(6px);
    padding: 0;
}
.video-card:hover .video-fs-btn { opacity: 0.85; }
.video-fs-btn:hover { opacity: 1 !important; background: var(--accent-1, #49665f); transform: scale(1.1); }

/* ── Fullscreen overlay ── */
.video-fullscreen-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: fadeIn 0.25s ease;
}
.video-fs-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10001;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    padding: 0;
}
.video-fs-close:hover { background: rgba(255,255,255,0.2); }
.video-fs-content {
    width: 90vw;
    max-width: 1100px;
    aspect-ratio: 16 / 9 !important;
    position: relative;
}
.video-fs-content.fs-vertical {
    width: auto;
    height: 85vh;
    max-height: 85vh;
    aspect-ratio: 9 / 16 !important;
    max-width: 480px;
}
.video-fs-content iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Load More button area */
.portfolio-video-loadmore {
    padding: 10px 0 20px;
}
.portfolio-video-loadmore .btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hero-thumb-row {
    display: flex; gap: 12px; width: max-content;
    animation: heroMarquee 30s linear infinite;
    padding: 6px 0;
}
.hero-thumb-row[data-direction="reverse"] {
    animation-direction: reverse;
    animation-duration: 35s;
}
.hero-thumb-row:hover { animation-play-state: paused; }
@keyframes heroMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.hero-thumb {
    flex-shrink: 0; aspect-ratio: 16/9;
    border-radius: var(--radius-md); overflow: hidden;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
}
.hero-thumb:hover {
    border-color: rgba(73,102,95,0.4);
    box-shadow: var(--neon-glow);
    transform: scale(1.04);
}
.hero-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}
.hero-thumb:hover img { transform: scale(1.06); }

/* Hero animation variants */
.hero-anim-grid .hero-thumb-row { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
.hero-anim-float .hero-thumb { animation: floatCard 6s ease-in-out infinite; }
.hero-anim-float .hero-thumb:nth-child(2n) { animation-delay: -2s; }
.hero-anim-float .hero-thumb:nth-child(3n) { animation-delay: -4s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ─── CLIENTS MARQUEE ─── */
.clients-section {
    position: relative; z-index: 1;
    padding: 56px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}
.clients-label {
    text-align: center; font-size: 13px; font-weight: 500;
    color: var(--text-tertiary); text-transform: uppercase;
    letter-spacing: 0.15em; margin-bottom: 28px;
}
.marquee-track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track.marquee-reverse { animation-direction: reverse; }
.marquee-wrapper { overflow: visible; padding: 20px 0; margin: -20px 0; clip-path: inset(-20px 0); }
.marquee-wrapper + .marquee-wrapper { margin-top: 8px; }
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
.marquee-track { padding: 10px 0; }
.client-item {
    flex-shrink: 0; margin: 0 14px;
    width: 82px; height: 82px; border-radius: 50%;
    overflow: visible; cursor: pointer; position: relative;
    transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s ease;
    z-index: 1;
}
.client-item:hover { z-index: 10; }
.client-item-nolink { cursor: default; }
.client-item-inner {
    width: 100%; height: 100%; border-radius: 50%;
    overflow: hidden; border: 2px solid var(--glass-border);
    position: relative; z-index: 1;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    background: var(--bg-primary);
}
.client-item::after {
    content: ''; position: absolute; inset: -3px; border-radius: 50%;
    background: conic-gradient(var(--accent-1), var(--accent-2), var(--accent-3), var(--accent-1));
    z-index: 0; opacity: 0; transition: opacity 0.4s ease;
    animation: spinSlow 4s linear infinite paused;
}
.client-item:hover { transform: scale(1.25) translateY(-8px); }
.client-item:hover .client-item-inner { border-color: transparent; box-shadow: var(--neon-glow); }
.client-item:hover::after { opacity: 1; animation-play-state: running; }
.client-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── SECTIONS ─── */
.section { position: relative; z-index: 1; padding: 120px 40px; }
.section-alt { background: var(--bg-secondary); }
.section-inner { max-width: 1200px; margin: 0 auto; }
/* Page & single post top spacing — accounts for fixed nav + announcement bar */
.page-content-wrap { padding-top: calc(160px + var(--ann-height, 0px)); transition: padding-top 0.4s ease; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--accent-3);
    margin-bottom: 16px;
}
.section-label .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-1);
    box-shadow: 0 0 10px var(--accent-1);
    animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4.5vw, 52px);
    font-weight: 700; line-height: 1.1;
    letter-spacing: -0.02em; margin-bottom: 20px;
}
.section-desc {
    font-size: 17px; color: var(--text-secondary);
    max-width: 540px; line-height: 1.7;
}
/* Centered section headers — used by most sections */
.section-header-center {
    text-align: center;
}
.section-header-center .section-label { justify-content: center; }
.section-header-center .section-desc { margin-left: auto; margin-right: auto; }
.section-header-center .section-title { text-align: center; }

/* ─── PORTFOLIO ─── */
.portfolio-grid {
    display: grid; gap: 20px; margin-top: 56px;
}
.layout-grid-3 { grid-template-columns: repeat(3, 1fr); }
.layout-grid-2 { grid-template-columns: repeat(2, 1fr); }
.layout-masonry { grid-template-columns: repeat(3, 1fr); }
.portfolio-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    cursor: pointer; transition: all 0.5s var(--transition-smooth);
}
.portfolio-card:hover {
    transform: translateY(-8px); border-color: rgba(73,102,95,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--neon-glow);
}
.portfolio-card-img { aspect-ratio: 16/9; overflow: hidden; }
.portfolio-card-img img { width: 100%; height: 100%; object-fit: cover; transition: all 0.7s var(--transition-smooth); }
.portfolio-card:hover .portfolio-card-img img { transform: scale(1.06); }
.view-btn {
    padding: 10px 24px; border-radius: 100px;
    background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white; font-size: 13px; font-weight: 600;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    transform: translateY(20px); transition: all 0.4s var(--transition-smooth) 0.1s;
    cursor: pointer;
}
.portfolio-card:hover .view-btn { transform: translateY(0); }
.view-btn svg { width: 14px; height: 14px; }
.portfolio-card-info { padding: 16px 20px; }
.portfolio-card-info h3 { font-size: 15px; font-weight: 600; font-family: var(--font-heading); margin-bottom: 6px; }
.portfolio-cat {
    display: inline-block; margin-top: 6px;
    font-size: 12px; color: var(--accent-2); font-weight: 500;
    padding: 2px 10px; border-radius: 100px;
    background: rgba(198,151,73,0.1); border: 1px solid rgba(198,151,73,0.15);
}
.portfolio-more { display: flex; justify-content: center; margin-top: 48px; }

/* Thumbnail Showcase — Image-only 3-col grid */
.thumbnail-showcase {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-top: 48px; width: 100%;
    align-items: start;
}
.showcase-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition-smooth);
    display: block; text-decoration: none; color: inherit;
}
.showcase-item:hover { transform: translateY(-4px); border-color: var(--accent-1); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.showcase-item img { width: 100%; height: auto; object-fit: cover; display: block; transition: transform 0.6s var(--transition-smooth); }
.showcase-item:hover img { transform: scale(1.05); }

/* Latest Work — Cards with full details */
.latest-work-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 48px;
}
.latest-work-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition-smooth);
}
.latest-work-card:hover { transform: translateY(-6px); border-color: rgba(73,102,95,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.latest-work-img { aspect-ratio: 16/9; overflow: hidden; }
.latest-work-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition-smooth); }
.latest-work-card:hover .latest-work-img img { transform: scale(1.05); }
.latest-work-info { padding: 20px; }
.latest-work-info h3 { font-size: 15px; font-weight: 600; font-family: var(--font-heading); margin-bottom: 10px; color: var(--text-primary); }
.latest-work-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 12px; }
.lw-creator, .lw-views { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-tertiary); }
.lw-creator svg, .lw-views svg { opacity: 0.6; }
.lw-creator { color: var(--accent-2); font-weight: 500; }
.lw-category {
    display: inline-block; font-size: 11px; font-weight: 500;
    color: var(--accent-3); padding: 2px 10px; border-radius: 100px;
    background: rgba(189,166,206,0.1); border: 1px solid rgba(189,166,206,0.15);
}
.lw-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: #ff0000;
    text-decoration: none; transition: opacity 0.3s;
}
.lw-link:hover { opacity: 0.8; }

/* Blog card author info */
.blog-card-meta {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 10px;
}
.blog-author-info {
    display: flex; align-items: center; gap: 8px;
}
.blog-author-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1.5px solid var(--glass-border); object-fit: cover;
}
.blog-author-name { font-size: 13px; font-weight: 600; color: var(--text-primary); }

/* Portfolio card metadata */
.portfolio-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.portfolio-creator {
    font-size: 13px; color: var(--accent-2); font-weight: 500;
}
.portfolio-views {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; color: var(--text-tertiary); font-weight: 400;
}
.portfolio-views svg { opacity: 0.6; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.portfolio-tag {
    display: inline-block; font-size: 11px; font-weight: 500;
    color: var(--accent-3); padding: 2px 10px; border-radius: 100px;
    background: rgba(189,166,206,0.1); border: 1px solid rgba(189,166,206,0.15);
    transition: all 0.3s ease;
}
.portfolio-tag:hover {
    background: rgba(189,166,206,0.18); border-color: rgba(189,166,206,0.3);
}

/* Creator group heading */
.portfolio-creator-group { grid-column: 1 / -1; margin-top: 32px; }
.portfolio-creator-group:first-child { margin-top: 0; }
.creator-heading {
    font-family: var(--font-heading); font-size: 22px; font-weight: 700;
    color: var(--text-primary); padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 8px;
}
.creator-heading::before {
    content: ''; display: inline-block;
    width: 4px; height: 20px; border-radius: 2px; margin-right: 12px;
    background: linear-gradient(180deg, var(--accent-1), var(--accent-3));
    vertical-align: middle;
}

/* Portfolio tag filter */
.portfolio-filters {
    display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
    margin-top: 32px;
}
.filter-btn {
    padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 500;
    background: var(--glass); border: 1px solid var(--glass-border);
    color: var(--text-secondary); cursor: pointer;
    transition: all 0.3s ease; font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-color: transparent; color: white;
}

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 56px; align-items: center; }
.about-grid.layout-centered { grid-template-columns: 1fr; text-align: center; }
.about-grid.layout-centered .about-text { max-width: 700px; margin: 0 auto; }
.about-visual {
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    border: 1px solid var(--glass-border); background: var(--glass); padding: 4px;
}
.about-visual-inner {
    border-radius: 20px; overflow: hidden;
    position: relative; aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    display: flex; align-items: center; justify-content: center;
}
.about-photo-img { width: 100%; height: 100%; object-fit: cover; }
.about-avatar-ring {
    width: 200px; height: 200px; border-radius: 50%;
    background: conic-gradient(var(--accent-1), var(--accent-2), var(--accent-3), var(--accent-4), var(--accent-1));
    display: flex; align-items: center; justify-content: center;
    animation: spinSlow 8s linear infinite; padding: 4px;
}
.about-avatar {
    width: 100%; height: 100%; border-radius: 50%;
    background: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 64px; font-weight: 800;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: spinSlow 8s linear infinite reverse;
}
.about-text { font-size: 17px; color: var(--text-secondary); line-height: 1.8; }
.about-text p + p { margin-top: 16px; }
.about-text strong { color: var(--text-primary); font-weight: 600; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.stat-card {
    padding: 28px 24px; border-radius: var(--radius-md);
    background: var(--glass); border: 1px solid var(--glass-border);
    text-align: center; transition: all 0.4s var(--transition-smooth);
}
.stat-card:hover {
    background: var(--bg-card-hover); border-color: rgba(73,102,95,0.2);
    transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.stat-number {
    font-family: var(--font-heading); font-size: 36px; font-weight: 800;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-4));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 13px; color: var(--text-tertiary); margin-top: 4px; font-weight: 500; }

/* ─── SERVICES ─── */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px; margin-top: 48px;
}
.service-card {
    padding: 36px 28px; border-radius: var(--radius-lg);
    background: var(--glass); border: 1px solid var(--glass-border);
    transition: all 0.5s var(--transition-smooth);
    cursor: pointer; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-4));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.5s var(--transition-smooth);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    background: var(--bg-card-hover); border-color: rgba(73,102,95,0.2);
    transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.service-icon {
    width: 56px; height: 56px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(73,102,95,0.12), rgba(198,151,73,0.12));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; transition: all 0.4s var(--transition-bounce);
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(73,102,95,0.2), rgba(198,151,73,0.2));
    box-shadow: var(--neon-glow);
}
.service-icon svg { width: 28px; height: 28px; color: var(--accent-3); transition: color 0.4s ease; }
.service-card:hover .service-icon svg { color: var(--accent-4); }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; font-family: var(--font-heading); }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ─── DIFFERENCE SECTION ─── */
.difference-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; align-items: start; }
.difference-content { font-size: 16px; color: var(--text-secondary); line-height: 1.8; }
.video-embed { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; background: var(--bg-tertiary); }
.video-embed iframe { width: 100%; height: 100%; border: none; }
.difference-quote {
    margin-top: 48px; text-align: center;
}
.difference-quote blockquote {
    padding: 40px; border-radius: var(--radius-lg);
    background: var(--glass); border: 1px solid var(--glass-border);
    border-left: 3px solid var(--accent-1);
    max-width: 700px; margin: 0 auto;
}
.difference-quote .quote-icon { width: 32px; height: 32px; color: var(--accent-1); opacity: 0.5; margin-bottom: 16px; }
.difference-quote p { font-size: 18px; color: var(--text-primary); font-style: italic; line-height: 1.7; }
.difference-quote cite { display: block; margin-top: 16px; font-size: 14px; color: var(--accent-3); font-style: normal; font-weight: 600; }

/* ─── TESTIMONIALS ─── */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px; margin-top: 48px;
    align-items: start;
}
.video-testimonial-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition-smooth);
}
.video-testimonial-card:hover { transform: translateY(-4px); border-color: rgba(73,102,95,0.2); }
.video-testimonial-card .video-embed { position: relative; }
.video-testimonial-card .video-embed iframe {
    width: 100%; display: block; border: none;
}
.video-test-name { padding: 12px 16px; font-size: 14px; font-weight: 600; }

/* Clean YouTube embed (no UI overlay) */
.video-embed-clean {
    position: relative; aspect-ratio: 16/9; overflow: hidden;
    border-radius: 0; cursor: pointer;
    background: var(--bg-tertiary); width: 100%;
}
.video-embed-clean.video-embed-short { aspect-ratio: 9/16; }
.video-embed-clean.playing { cursor: default; }
.video-embed-clean .video-thumb {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s var(--transition-smooth);
}
.video-embed-clean:hover .video-thumb { transform: scale(1.05); filter: brightness(0.7); }
.video-embed-clean .video-play-btn {
    opacity: 0.35;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
    transition: all 0.3s var(--transition-bounce);
}
.video-embed-clean:hover .video-play-btn { opacity: 0.7; transform: translate(-50%, -50%) scale(1.15); }
.video-embed-clean iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; border: none; z-index: 1;
}

.testimonials-track {
    display: flex; gap: 20px; margin-top: 48px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 20px; scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex-shrink: 0; width: 380px;
    padding: 32px; border-radius: var(--radius-lg);
    background: var(--glass); border: 1px solid var(--glass-border);
    scroll-snap-align: start;
    transition: all 0.4s var(--transition-smooth);
}
.testimonial-card:hover { background: var(--bg-card-hover); border-color: rgba(73,102,95,0.2); transform: translateY(-4px); }
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 2px solid var(--glass-border); flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff; font-weight: 800; font-size: 15px;
    font-family: var(--font-heading, inherit);
    letter-spacing: 0.5px; text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    user-select: none;
}
.testimonial-name { font-weight: 700; font-size: 15px; font-family: var(--font-heading); }
.testimonial-role { font-size: 12px; color: var(--text-tertiary); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testimonial-stars svg { width: 16px; height: 16px; color: #fbbf24; fill: #fbbf24; }
.testimonial-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-style: italic; }
.testimonial-text::before { content: '\201C'; font-size: 24px; color: var(--accent-1); font-style: normal; }
.testimonial-nav { display: flex; gap: 12px; margin-top: 32px; justify-content: center; }
.testimonial-nav-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--glass); border: 1px solid var(--glass-border);
    color: var(--text-primary); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--transition-smooth);
}
.testimonial-nav-btn:hover {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-color: transparent; transform: scale(1.1); box-shadow: var(--neon-glow);
}
.testimonial-nav-btn svg { width: 20px; height: 20px; }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    border-radius: var(--radius-md); background: var(--glass);
    border: 1px solid var(--glass-border); overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover { border-color: rgba(73,102,95,0.15); }
.faq-item.open { border-color: rgba(73,102,95,0.3); background: var(--bg-card-hover); }
.faq-question {
    width: 100%; padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    background: none; border: none; color: var(--text-primary);
    font-size: 16px; font-weight: 600; font-family: var(--font-body);
    cursor: pointer; text-align: left;
    transition: color 0.3s ease;
}
.faq-question:hover { color: var(--accent-3); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.4s var(--transition-smooth); color: var(--accent-3); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--transition-smooth); }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.faq-answer-inner p + p { margin-top: 12px; }

/* ─── BLOG ─── */
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px; margin-top: 48px;
}
.blog-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--bg-card); border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition-smooth);
    display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); border-color: rgba(73,102,95,0.2); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.blog-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition-smooth); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-date { font-size: 12px; color: var(--accent-3); font-weight: 500; }
.blog-title { font-size: 18px; font-weight: 700; margin-top: 8px; font-family: var(--font-heading); }
.blog-title a { color: var(--text-primary); text-decoration: none; transition: color 0.3s ease; }
.blog-title a:hover { color: var(--accent-3); }
.blog-excerpt { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-top: 8px; }
.blog-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: auto; padding-top: 16px; font-size: 14px; font-weight: 600;
    color: var(--accent-3); text-decoration: none;
    transition: color 0.3s ease;
}
.blog-read-more svg { width: 16px; height: 16px; transition: transform 0.3s var(--transition-bounce); }
.blog-read-more:hover svg { transform: translateX(4px); }

/* Pagination — Elegant & Compact */
.blog-pagination, .portfolio-pagination {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; margin-top: 56px;
}
.blog-pagination a, .blog-pagination span,
.portfolio-pagination a, .portfolio-pagination span {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 40px; padding: 0 12px;
    border-radius: 10px; font-size: 14px; font-weight: 500;
    text-decoration: none; background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary); transition: all 0.3s ease;
}
.blog-pagination a:hover, .portfolio-pagination a:hover {
    color: var(--text-primary); border-color: var(--accent-1);
    background: rgba(73,102,95,0.12); transform: translateY(-2px);
}
.blog-pagination .current, .portfolio-pagination .current {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #fff; border-color: transparent; font-weight: 700;
}
.blog-pagination .dots, .portfolio-pagination .dots { border: none; background: none; color: var(--text-tertiary); }
.blog-pagination svg, .portfolio-pagination svg { width: 16px; height: 16px; }

/* Blog Featured Card responsive */
@media (max-width: 768px) {
    .blog-featured > div > div { grid-template-columns: 1fr !important; }
    .blog-featured div[style*="padding:24px 32px"] { padding: 20px !important; }
}

/* ─── CONTACT ─── */
.contact-section { position: relative; z-index: 1; padding: 120px 40px 80px; }
.contact-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.contact-inner > .reveal { text-align: center; }
.contact-inner .section-label { display: inline-flex; align-items: center; }
.contact-inner .section-title { text-align: center; }
.contact-inner .section-desc {
    margin-left: auto; margin-right: auto;
    text-align: center; max-width: 620px;
}
.contact-card {
    margin-top: 48px; padding: 56px 44px;
    border-radius: var(--radius-xl); background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px); position: relative; overflow: hidden;
}
.contact-card::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(73,102,95,0.08), transparent);
    pointer-events: none;
}
.contact-form-notice {
    padding: 14px 18px; border-radius: var(--radius-sm);
    font-size: 14px; font-weight: 500; text-align: left;
    border: 1px solid var(--glass-border); background: var(--glass);
    color: var(--text-primary); line-height: 1.5;
    position: relative; z-index: 1; margin-bottom: 4px;
    animation: fadeInError 0.3s ease;
}
.contact-form-notice[hidden] { display: none !important; }
.contact-form-notice.is-success {
    background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(6,182,212,0.12));
    border-color: rgba(16,185,129,0.5); color: #6ee7b7;
    box-shadow: 0 0 24px rgba(16,185,129,0.15);
}
.contact-form-notice.is-error {
    background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(220,38,38,0.12));
    border-color: rgba(239,68,68,0.5); color: #fca5a5;
    box-shadow: 0 0 24px rgba(239,68,68,0.15);
}
.contact-form-notice.is-info {
    background: linear-gradient(135deg, rgba(73,102,95,0.14), rgba(198,151,73,0.10));
    border-color: rgba(73,102,95,0.5); color: var(--text-primary);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; text-align: left; position: relative; z-index: 1; }
.form-row, .form-row-dynamic { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-dynamic { grid-template-columns: repeat(2, 1fr); }
.form-full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; }
.form-input, .form-textarea {
    padding: 14px 18px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
    color: var(--text-primary); font-size: 15px; font-family: var(--font-body);
    transition: all 0.3s ease; outline: none;
}
.form-input:focus, .form-textarea:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(73,102,95,0.12), 0 0 20px rgba(73,102,95,0.08);
    background: rgba(255,255,255,0.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-tertiary); }
.form-textarea { resize: vertical; min-height: 120px; }
select.form-input {
    -webkit-appearance: none; 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='%23a855f7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    padding-right: 40px;
}
/* Form validation styles */
.form-input.field-error, .form-textarea.field-error { border-color: #ef4444 !important; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }
.form-input.field-error:focus, .form-textarea.field-error:focus { box-shadow: 0 0 0 3px rgba(239,68,68,0.25); }
.form-error { display: block; color: #ef4444; font-size: 12px; margin-top: 4px; animation: fadeInError 0.3s ease; }
@keyframes fadeInError { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
.form-submit.error { background: linear-gradient(135deg, #dc2626, #ef4444); }
.form-submit.success { background: linear-gradient(135deg, #059669, #10b981); }
.form-submit {
    align-self: flex-start;
    padding: 16px 40px; border-radius: 100px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: white; font-size: 15px; font-weight: 700; border: none; cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: 0 4px 20px var(--accent-glow);
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body);
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 40px rgba(73,102,95,0.5); }
.form-submit svg { width: 18px; height: 18px; }
.form-submit .btn-arrow { transition: transform 0.4s var(--transition-bounce); }
.form-submit:hover .btn-arrow { transform: translateX(4px); }
.form-submit.success { background: linear-gradient(135deg, #10b981, #06b6d4); }

.social-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 44px; }
.social-link {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--glass); border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary); text-decoration: none;
    transition: all 0.4s var(--transition-bounce); flex-shrink: 0;
}
.social-link:hover {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    border-color: transparent; color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--neon-glow);
}
.social-link svg { width: 20px; height: 20px; }

/* ─── FOOTER ─── */
.footer {
    position: relative; z-index: 1;
    border-top: 1px solid var(--glass-border);
    padding: 64px 40px 0;
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-heading {
    font-size: 14px; font-weight: 700; color: var(--text-primary);
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em;
    font-family: var(--font-heading);
}
.footer-brand .footer-text { font-size: 14px; color: var(--text-tertiary); margin-top: 16px; line-height: 1.6; }
.footer-brand .footer-text a { color: var(--accent-3); text-decoration: none; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
    font-size: 14px; color: var(--text-secondary); text-decoration: none;
    transition: color 0.3s ease; display: inline-block;
}
.footer-link:hover { color: var(--text-primary); transform: translateX(4px); }
.footer-social-col .social-links { justify-content: flex-start; margin-top: 0; }
.footer-bottom {
    max-width: 1200px; margin: 48px auto 0;
    padding: 24px 0; border-top: 1px solid var(--glass-border);
    text-align: center;
}
.footer-bottom p { font-size: 13px; color: var(--text-tertiary); }

/* ─── WHATSAPP FLOATING BUTTON ─── */
.floating-whatsapp {
    position: fixed; bottom: 28px; right: 28px; z-index: 9999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    text-decoration: none;
    transition: transform 0.4s var(--transition-bounce), box-shadow 0.4s var(--transition-bounce);
    animation: waPulse 3.5s ease-in-out infinite;
}
.floating-whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 30px rgba(37,211,102,0.6);
    animation-play-state: paused;
}
.floating-whatsapp svg { width: 30px; height: 30px; }
.wa-tooltip {
    position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
    background: var(--bg-tertiary); color: var(--text-primary);
    padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 500;
    white-space: nowrap; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid var(--glass-border);
}
.floating-whatsapp:hover .wa-tooltip { opacity: 1; }
@keyframes waPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { transform: scale(1.06); box-shadow: 0 4px 28px rgba(37,211,102,0.6), 0 0 40px rgba(37,211,102,0.15); }
}

/* ─── LIGHT MODE (data-theme) ─── */
[data-theme="light"] {
    --bg-primary: #f5f5f0; --bg-secondary: #eaeae2; --bg-tertiary: #e8e8e0;
    --bg-card: rgba(255,255,255,0.7); --bg-card-hover: rgba(255,255,255,0.9);
    --glass: rgba(0,0,0,0.04); --glass-border: rgba(0,0,0,0.08);
    --text-primary: #1a1a1a; --text-secondary: rgba(26,26,26,0.6); --text-tertiary: rgba(26,26,26,0.35);
}
[data-theme="light"] body { background: var(--bg-primary); }
[data-theme="light"] .bg-mesh { opacity: 0.3; }
[data-theme="light"] .bg-grid { opacity: 0.015; background-image: linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px); }
[data-theme="light"] .floating-orb { opacity: 0.4; }
[data-theme="light"] .cursor-glow { background: radial-gradient(circle, rgba(0,0,0,0.02), transparent 70%); }
[data-theme="light"] .nav { background: rgba(255,255,255,0.7); }
[data-theme="light"] .nav.scrolled { background: rgba(255,255,255,0.92); box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
[data-theme="light"] .nav-links.open { background: rgba(255,255,255,0.97); }
[data-theme="light"] .section-alt { background: var(--bg-secondary); }
[data-theme="light"] .video-testimonial-card:hover { border-color: rgba(0,0,0,0.12); }
[data-theme="light"] .testimonial-card:hover { background: rgba(0,0,0,0.04); }
[data-theme="light"] .blog-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
[data-theme="light"] html::-webkit-scrollbar-track { background: var(--bg-primary); }
[data-theme="light"] html::-webkit-scrollbar-thumb { background: var(--accent-1); }
[data-theme="light"] .hero-badge { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.1); }
[data-theme="light"] .hero-badge-secondary { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .stat-card { background: var(--bg-card); border-color: var(--glass-border); }
[data-theme="light"] .service-card { background: var(--bg-card); border-color: var(--glass-border); }
[data-theme="light"] .service-card:hover { background: var(--bg-card-hover); border-color: rgba(0,0,0,0.15); }
[data-theme="light"] .faq-item { background: var(--bg-card); border-color: var(--glass-border); }
[data-theme="light"] .faq-item.active { border-color: var(--accent-1); }
[data-theme="light"] .faq-question { color: var(--text-primary); }
[data-theme="light"] .faq-answer { color: var(--text-secondary); }
[data-theme="light"] .contact-card { background: var(--bg-card); border-color: var(--glass-border); }
[data-theme="light"] .form-input, [data-theme="light"] .form-textarea, [data-theme="light"] .form-select { background: rgba(0,0,0,0.03); border-color: rgba(0,0,0,0.12); color: var(--text-primary); }
[data-theme="light"] .form-input:focus, [data-theme="light"] .form-textarea:focus, [data-theme="light"] .form-select:focus { border-color: var(--accent-1); background: rgba(0,0,0,0.01); }
[data-theme="light"] .form-input::placeholder, [data-theme="light"] .form-textarea::placeholder { color: rgba(0,0,0,0.35); }
[data-theme="light"] .footer { background: var(--bg-secondary); border-top: 1px solid var(--glass-border); }
[data-theme="light"] .footer-bottom { border-top-color: var(--glass-border); }
[data-theme="light"] .social-link { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .social-link:hover { background: var(--accent-1); border-color: var(--accent-1); color: #fff; }
[data-theme="light"] .portfolio-card { border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .portfolio-card:hover { border-color: rgba(0,0,0,0.15); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
[data-theme="light"] .latest-work-card { background: var(--bg-card); border-color: var(--glass-border); }
[data-theme="light"] .announcement-bar { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

/* ─── LIGHTBOX ─── */
.lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.92); backdrop-filter: blur(20px);
    display: none; align-items: center; justify-content: center;
    padding: 40px; cursor: zoom-out; opacity: 0; transition: opacity 0.4s ease;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius-lg); box-shadow: 0 20px 80px rgba(0,0,0,0.5); cursor: default; }
.lightbox-close, .lightbox-nav {
    position: absolute; width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }
.lightbox-nav { top: 50%; }
.lightbox-nav.prev { left: 24px; transform: translateY(-50%); }
.lightbox-nav.next { right: 24px; transform: translateY(-50%); }
.lightbox-nav:hover { transform: translateY(-50%) scale(1.1); }
.lightbox-nav svg, .lightbox-close svg { width: 24px; height: 24px; }

/* ─── SCROLL ANIMATIONS ─── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s var(--transition-smooth); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .difference-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid-horizontal { grid-template-columns: repeat(2, 1fr); }
    .thumbnail-showcase { grid-template-columns: repeat(3, 1fr); }

    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 834px) {
    .nav { padding: 12px 16px; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(9,20,19,0.97); backdrop-filter: blur(24px);
        padding: 16px 20px 24px; gap: 4px;
        border-bottom: 1px solid var(--glass-border);
        animation: fadeInDown 0.3s ease;
    }
    @keyframes fadeInDown { from { opacity:0; transform:translateY(-10px); } to { opacity:1; transform:translateY(0); } }
    .nav-links.open .nav-link { padding: 14px 16px; border-radius: 12px; font-size: 15px; width: 100%; }
    .nav-links.open .nav-cta { text-align: center; display: block; width: 100%; padding: 14px 24px; margin-top: 8px; border-radius: 14px; box-sizing: border-box; }
    .nav-toggle { display: flex; }
    .nav-links.open .theme-toggle { width: 100%; border-radius: 12px; height: 44px; margin-left: 0; margin-top: 4px; }

    .announcement-bar { padding: 10px 12px; font-size: 12px; line-height: 1.4; }
    .announcement-inner { gap: 6px; flex-wrap: nowrap; }
    .announcement-text { flex: 1; min-width: 0; }
    .announcement-link { white-space: nowrap; }
    .announcement-close { flex-shrink: 0; font-size: 18px; padding: 2px 6px; min-width: 28px; min-height: 28px; display: flex; align-items: center; justify-content: center; }

    .hero { padding: calc(110px + var(--ann-height, 0px)) 20px 50px; min-height: auto; }
    .hero-title { font-size: clamp(30px, 9vw, 48px); }
    .hero-desc { font-size: 15px; margin-top: 16px; }
    .hero-actions { margin-top: 28px; gap: 12px; flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
    .hero-visual { margin-top: 24px; }
    .hero-thumb { width: 242px !important; }
    .clients-section { padding: 40px 0; }
    .client-item { width: 66px; height: 66px; margin: 0 10px; }
    .client-item:hover { transform: scale(1.2) translateY(-5px); }

    .section { padding: 72px 20px; }
    .section-title { font-size: clamp(24px, 7vw, 36px); }

    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .thumbnail-showcase { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    /* Portfolio video grid mobile */
    .video-grid-horizontal { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .video-grid-vertical { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .portfolio-video-grid { margin-top: 28px; }
    /* Hero carousel tablet/mobile — infinite marquee */
    .hero-video-carousel { margin-top: 20px; }
    .hero-video-carousel .video-carousel-track { padding: 12px 0; gap: 12px; }
    .hero-video-carousel.video-carousel-horizontal .video-card {
        flex: 0 0 240px; width: 240px; min-width: 180px;
    }
    .hero-video-carousel.video-carousel-vertical .video-card {
        flex: 0 0 150px; width: 150px; min-width: 120px;
    }
    /* Video carousel mobile */
    .video-carousel-track { padding: 8px 20px; gap: 10px; }
    .video-carousel-horizontal:not(.hero-video-carousel) .video-carousel-track { max-height: none; flex-flow: row nowrap; }
    .video-carousel-horizontal:not(.hero-video-carousel) .video-card { flex: 0 0 75vw; width: auto; min-width: 0; max-width: none; }
    .video-carousel-vertical .video-card { flex: 0 0 120px; }
    .carousel-arrow { width: 36px; height: 36px; }
    .carousel-arrow svg { width: 22px; height: 22px; }
    .video-card-info { padding: 8px 10px; }
    .video-card-info h4 { font-size: 0.82rem; }
    .latest-work-grid { grid-template-columns: 1fr; }

    .video-testimonials-grid { grid-template-columns: 1fr; }
    .video-testimonial-card { max-width: 100%; width: 100%; }
    .video-play-btn svg { width: 50px; height: 50px; }
    .stats-row { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .stat-card { padding: 20px 12px; }
    .stat-number { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonial-card { width: 290px; padding: 24px 20px; }
    .faq-question { font-size: 15px; padding: 16px 20px; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-inner { max-width: 100%; padding: 0; }
    .hero-visual { max-width: 100%; overflow: hidden; margin-left: -8px; margin-right: -8px; width: calc(100% + 16px); }
    .marquee-wrapper { padding: 0 10px; margin: 0; }

    .contact-section { padding: 72px 20px 50px; }
    .contact-card { padding: 32px 20px; }
    .form-row, .form-row-dynamic { grid-template-columns: 1fr; }
    .form-submit { width: 100%; justify-content: center; }

    .footer { padding: 48px 20px 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-brand .nav-logo { justify-content: center; }
    .footer-brand .footer-text { text-align: center; }
    .footer-social-col .social-links { justify-content: center; gap: 8px; }
    .social-link { width: 38px; height: 38px; border-radius: 10px; }
    .social-link svg { width: 18px; height: 18px; }
    .footer-links { align-items: center; }
    .footer-heading { text-align: center; }
    .footer-bottom { padding: 20px 0; }

    .floating-whatsapp { bottom: 16px; right: 16px; width: 52px; height: 52px; z-index: 9999; }
    .floating-whatsapp svg { width: 26px; height: 26px; }
    .wa-tooltip { display: none; }
}
@media (max-width: 480px) {
    .announcement-bar { padding: 8px 10px; font-size: 11px; }
    .announcement-inner { gap: 4px; }
    .announcement-link { font-size: 11px; }
    .hero { padding: calc(100px + var(--ann-height, 0px)) 16px 40px; }
    .hero-title { font-size: clamp(26px, 8.5vw, 36px); }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .thumbnail-showcase { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .video-grid-horizontal { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .video-grid-vertical { grid-template-columns: repeat(2, 1fr); gap: 8px; }

    .footer-inner { grid-template-columns: 1fr; }
    .stat-number { font-size: 22px; }
    .stat-label { font-size: 10px; }
    .hero-thumb { width: 200px !important; }
    .testimonial-card { width: 260px; }
    .section { padding: 56px 16px; }
    .section-title { font-size: clamp(20px, 6vw, 30px); }
    .showcase-item { border-radius: 8px; }
    .video-play-btn svg { width: 44px; height: 44px; }
    .video-testimonial-card { max-width: 100%; }
    .difference-grid { gap: 24px; }
    .contact-card { padding: 24px 16px; }
    .marquee-wrapper { padding: 0; }
}
