/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-glass: rgba(255, 255, 255, 0.05);
  --border-glass: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --accent: #2ecc71;
  --accent-light: #58d68d;
  --accent-glow: rgba(46, 204, 113, 0.4);
  --gradient-gold: linear-gradient(135deg, #1abc9c 0%, #2ecc71 50%, #27ae60 100%);
  --gradient-bg: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --shadow-glow: 0 0 40px rgba(46, 204, 113, 0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

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

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
.text-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 6px 16px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 50px;
  background: rgba(46, 204, 113, 0.08);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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

.section-desc-bold {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient-gold);
  color: #0a0a0a;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

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

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

.btn-glow {
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  color: var(--accent);
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  letter-spacing: 0.5px;
}

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

.nav-links .nav-cta {
  background: var(--gradient-gold);
  color: #0a0a0a;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}

.nav-links .nav-cta:hover {
  box-shadow: 0 4px 20px var(--accent-glow);
}

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

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

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

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

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  min-width: 120%;
  min-height: 120%;
  transform: translate(-50%, -50%) scale(1.05);
  border: none;
  pointer-events: none;
  filter: blur(3px) brightness(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: translate(-50%, -50%) scale(1.05); }
  100% { transform: translate(-50%, -50%) scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.8) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  padding: 8px 20px;
  border: 1px solid rgba(46, 204, 113, 0.3);
  border-radius: 50px;
  background: rgba(46, 204, 113, 0.08);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SECTION BASE
   ============================================ */
.section {
  position: relative;
  padding: 120px 0;
}

/* ============================================
   STOCK FOOTAGE SECTION
   ============================================ */
.stock-footage {
  background: var(--gradient-bg);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.filter-btn:hover {
  border-color: rgba(46, 204, 113, 0.4);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--gradient-gold);
  color: #0a0a0a;
  border-color: transparent;
  font-weight: 600;
}

.footage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footage-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.footage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 204, 113, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(46, 204, 113, 0.1);
}

.footage-card.hidden {
  display: none;
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.footage-card:hover .card-media img {
  transform: scale(1.08);
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.play-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  transform: scale(0.8);
  transition: var(--transition);
}

.footage-card:hover .play-icon {
  transform: scale(1);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
}

.badge-4k {
  background: var(--accent);
  color: #0a0a0a;
}

.badge-hd {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(10px);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-info {
  padding: 16px;
}

.card-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   VFX SECTION
   ============================================ */
.vfx-section {
  background: #050508;
  overflow: hidden;
}

.vfx-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100px); }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100px); }
}

.vfx-service-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3.5rem;
}

.service-tag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.2);
  color: var(--accent);
  letter-spacing: 0.5px;
}

/* VFX Video Showcase */
.vfx-video-showcase {
  max-width: 500px;
  margin: 0 auto 4rem;
}

.vfx-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.vfx-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  min-width: 140%;
  min-height: 140%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.vfx-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.2) 0%,
    rgba(10, 10, 10, 0.4) 100%
  );
  pointer-events: none;
}

/* VFX Cards Grid */
.vfx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vfx-card {
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.vfx-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 204, 113, 0.3);
  box-shadow: var(--shadow-glow);
}

.vfx-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.vfx-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

/* Glass Card */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ============================================
   BUSINESS VIDEOS SECTION
   ============================================ */
.business-section {
  background: var(--gradient-bg);
}

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

.business-card {
  overflow: hidden;
  transition: var(--transition);
}

.business-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 204, 113, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.business-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.business-card:hover .business-card-media img {
  transform: scale(1.05);
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.business-card:hover .play-btn-overlay {
  opacity: 1;
}

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

.business-card:hover .play-btn-circle,
.commercial-card:hover .play-btn-circle {
  transform: scale(1);
}

.play-btn-circle svg {
  margin-left: 3px;
}

.business-card-content {
  padding: 24px;
}

.business-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.client-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.industry-tag {
  font-size: 0.65rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.business-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.business-card-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   COMMERCIALS SECTION
   ============================================ */
.commercials-section {
  background: #080810;
  overflow: hidden;
}

.commercials-bg-glow {
  position: absolute;
  top: 0;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.commercials-scroll-wrapper {
  overflow-x: auto;
  margin: 0 -24px;
  padding: 0 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.commercials-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

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

.commercial-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.commercial-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(46, 204, 113, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(46, 204, 113, 0.15);
}

.commercial-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.commercial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.commercial-duration {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.commercial-info {
  padding: 20px;
}

.brand-name {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.commercial-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 160px 0;
  text-align: center;
  overflow: hidden;
}

.cta-gradient-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(46, 204, 113, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(46, 204, 113, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0d10 50%, #0a0a0a 100%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 3rem;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

/* Stagger children */
.footage-grid [data-animate]:nth-child(1) { transition-delay: 0s; }
.footage-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.footage-grid [data-animate]:nth-child(3) { transition-delay: 0.15s; }
.footage-grid [data-animate]:nth-child(4) { transition-delay: 0.2s; }
.footage-grid [data-animate]:nth-child(5) { transition-delay: 0.25s; }
.footage-grid [data-animate]:nth-child(6) { transition-delay: 0.3s; }
.footage-grid [data-animate]:nth-child(7) { transition-delay: 0.35s; }
.footage-grid [data-animate]:nth-child(8) { transition-delay: 0.4s; }

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

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

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

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

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 28px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border-glass);
  }

  .nav-links.open {
    right: 0;
  }

  .mobile-toggle {
    display: flex;
  }

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

  .vfx-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

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

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

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

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .cta-section {
    padding: 100px 0;
  }
}

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

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

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

  .filter-tabs {
    gap: 6px;
  }

  .filter-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .btn-large {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

/* ============================================
   FABULOUS VISUAL REFRESH
   ============================================ */
:root {
  --bg-primary: #050708;
  --bg-secondary: #0b1113;
  --bg-card: rgba(14, 22, 21, 0.72);
  --bg-glass: rgba(16, 26, 24, 0.58);
  --border-glass: rgba(184, 238, 206, 0.18);
  --text-primary: #f4f8f6;
  --text-secondary: rgba(220, 234, 227, 0.82);
  --text-muted: rgba(171, 195, 184, 0.66);
  --accent: #7de7b2;
  --accent-light: #9cf1c8;
  --accent-glow: rgba(125, 231, 178, 0.35);
  --gradient-gold: linear-gradient(135deg, #63dda4 0%, #8ce6b6 52%, #3fbf8e 100%);
  --gradient-bg: radial-gradient(circle at 8% 14%, rgba(127, 229, 185, 0.07) 0%, transparent 45%),
                 radial-gradient(circle at 88% 86%, rgba(125, 231, 178, 0.08) 0%, transparent 42%),
                 linear-gradient(180deg, #050708 0%, #0a1010 45%, #060808 100%);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-accent: "Bebas Neue", Impact, sans-serif;
  --shadow-luxe: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 38px rgba(125, 231, 178, 0.14);
}

body {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 12%, rgba(125, 231, 178, 0.09), transparent 34%),
    radial-gradient(circle at 84% 0%, rgba(125, 231, 178, 0.08), transparent 35%),
    linear-gradient(160deg, #040506 0%, #070d0e 45%, #050708 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("assets/img/noise.svg");
  background-size: 210px 210px;
  opacity: 0.09;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: -15%;
  background:
    radial-gradient(circle, rgba(138, 228, 193, 0.16) 0%, transparent 55%),
    radial-gradient(circle at 75% 20%, rgba(125, 231, 178, 0.12) 0%, transparent 44%);
  filter: blur(90px);
  pointer-events: none;
  z-index: -3;
}

.text-gradient {
  background-size: 220% 220%;
  animation: shimmerGradient 8s ease infinite;
}

@keyframes shimmerGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.navbar {
  padding: 22px 0;
}

.navbar.scrolled {
  background: rgba(5, 10, 10, 0.8);
  border-bottom: 1px solid rgba(164, 219, 188, 0.16);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.32);
}

.nav-logo {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  letter-spacing: 1.8px;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(125, 231, 178, 0.45));
}

.brand-text {
  display: inline-block;
  line-height: 1;
}

.logo-icon {
  color: var(--accent-light);
  filter: drop-shadow(0 0 6px rgba(125, 231, 178, 0.5));
}

.nav-links a {
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 0.72rem;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, transparent, var(--accent-light), transparent);
  transition: transform 0.35s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta {
  background: linear-gradient(135deg, rgba(125, 231, 178, 0.95), rgba(122, 224, 181, 0.96));
  color: #06120c;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(125, 231, 178, 0.25);
}

.hero {
  min-height: 760px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(122, 231, 181, 0.2), transparent 40%),
    radial-gradient(circle at 84% 72%, rgba(125, 231, 178, 0.17), transparent 43%);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 8, 10, 0.48) 0%, rgba(6, 10, 10, 0.76) 58%, rgba(5, 7, 8, 0.95) 100%),
    linear-gradient(95deg, rgba(8, 11, 11, 0.92) 0%, rgba(11, 17, 16, 0.36) 52%, rgba(6, 8, 8, 0.92) 100%);
}

.hero-content {
  max-width: 980px;
  padding: 2.25rem 2rem;
  border-radius: 30px;
  border: 1px solid rgba(190, 240, 212, 0.16);
  background: linear-gradient(160deg, rgba(10, 15, 15, 0.62) 0%, rgba(14, 21, 20, 0.42) 100%);
  box-shadow: var(--shadow-luxe);
}

.hero-badge {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 2.4px;
  color: var(--accent-light);
  border: 1px solid rgba(125, 231, 178, 0.4);
  background: rgba(125, 231, 178, 0.12);
}

.hero-title {
  font-size: clamp(2.8rem, 6.6vw, 5.4rem);
  text-wrap: balance;
  line-height: 1.02;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  text-transform: uppercase;
  font-size: clamp(0.92rem, 1.6vw, 1.1rem);
  letter-spacing: 2.8px;
  font-weight: 600;
  color: rgba(233, 241, 236, 0.86);
}

.hero-scroll-indicator {
  bottom: 34px;
}

.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn > span,
.btn > svg {
  position: relative;
  z-index: 2;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(100deg, transparent 32%, rgba(255, 255, 255, 0.4) 50%, transparent 68%);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 0.6s ease;
}

.btn:hover::after {
  transform: translateX(130%) skewX(-18deg);
}

.btn-primary {
  color: #051109;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 34px rgba(125, 231, 178, 0.22);
}

.btn-outline {
  border-color: rgba(198, 238, 214, 0.34);
  background: rgba(15, 25, 24, 0.5);
}

.hero-stats {
  margin: 2rem auto 0;
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stat {
  padding: 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(191, 241, 212, 0.18);
  background: linear-gradient(145deg, rgba(10, 16, 16, 0.64), rgba(12, 20, 18, 0.38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-stat-value {
  display: block;
  font-family: var(--font-accent);
  letter-spacing: 1px;
  font-size: 2rem;
  line-height: 1;
  color: var(--text-primary);
}

.hero-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.68rem;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(215, 229, 221, 0.86);
}

.section-tag {
  color: var(--accent-light);
  border-color: rgba(125, 231, 178, 0.42);
  background: rgba(125, 231, 178, 0.1);
}

.section-title {
  font-size: clamp(2.1rem, 5.2vw, 3.9rem);
}

.section-desc {
  color: rgba(218, 231, 224, 0.86);
}

.stock-footage,
.business-section,
.commercials-section,
.vfx-section {
  background: var(--gradient-bg);
}

.filter-tabs {
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(171, 232, 201, 0.16);
  background: rgba(10, 16, 15, 0.48);
  width: fit-content;
  margin: 0 auto 3rem;
}

.filter-btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  border-color: transparent;
  color: rgba(213, 232, 223, 0.88);
}

.filter-btn.active {
  box-shadow: 0 10px 24px rgba(125, 231, 178, 0.3);
}

.glass-card,
.footage-card,
.business-card,
.commercial-card,
.vfx-video-wrapper {
  border-color: rgba(183, 238, 204, 0.16);
  background: linear-gradient(160deg, rgba(15, 24, 23, 0.7), rgba(10, 14, 16, 0.48));
}

.footage-card,
.business-card,
.commercial-card,
.vfx-card {
  position: relative;
  overflow: hidden;
}

.footage-card::before,
.business-card::before,
.commercial-card::before,
.vfx-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 231, 178, 0.8), transparent);
  opacity: 0.75;
}

.footage-card:hover,
.business-card:hover,
.commercial-card:hover,
.vfx-card:hover {
  transform: translateY(-10px);
  border-color: rgba(125, 231, 178, 0.35);
  box-shadow: var(--shadow-luxe);
}

.card-hover-overlay,
.play-btn-overlay,
.commercial-overlay {
  background: linear-gradient(180deg, rgba(5, 8, 8, 0.18) 0%, rgba(5, 8, 8, 0.76) 100%);
}

.play-btn-circle,
.play-icon {
  background: rgba(14, 22, 21, 0.45);
  border: 1px solid rgba(125, 231, 178, 0.52);
  color: #eafff3;
}

.vfx-card-icon {
  color: var(--accent-light);
  background: rgba(125, 231, 178, 0.12);
  border-color: rgba(125, 231, 178, 0.34);
}

.service-tag,
.industry-tag,
.brand-name,
.card-badge {
  letter-spacing: 1.05px;
}

.cta-section {
  padding: 170px 0;
}

.cta-gradient-bg {
  background:
    radial-gradient(circle at 50% 15%, rgba(125, 231, 178, 0.2), transparent 46%),
    radial-gradient(circle at 50% 85%, rgba(125, 231, 178, 0.16), transparent 50%),
    linear-gradient(180deg, #050708 0%, #0a0f0f 54%, #050708 100%);
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.4rem 3rem;
  border-radius: 30px;
  border: 1px solid rgba(190, 240, 212, 0.2);
  background: linear-gradient(150deg, rgba(10, 16, 15, 0.66), rgba(14, 22, 20, 0.38));
  box-shadow: var(--shadow-luxe);
}

.cta-title {
  font-size: clamp(2.4rem, 5.7vw, 4.1rem);
}

.footer {
  background: rgba(5, 10, 10, 0.64);
  border-top-color: rgba(178, 232, 201, 0.16);
}

.footer-brand {
  font-family: var(--font-accent);
  letter-spacing: 1.7px;
  font-size: 1.35rem;
  gap: 10px;
}

.footer-brand .logo-img {
  height: 34px;
}

.footer-brand .brand-text {
  font-size: 1rem;
  letter-spacing: 1.3px;
}

@media (max-width: 1024px) {
  .hero-content {
    max-width: 860px;
    padding: 1.8rem 1.6rem;
  }

  .hero-subtitle {
    letter-spacing: 2px;
  }
}

@media (max-width: 768px) {
  .nav-logo {
    font-size: 1.3rem;
  }

  .logo-img {
    height: 34px;
  }

  .footer-brand .logo-img {
    height: 30px;
  }

  .hero {
    min-height: 700px;
    padding-top: 60px;
  }

  .hero-content {
    border-radius: 24px;
    padding: 1.5rem 1.1rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 10px;
  }

  .hero-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 11px 14px;
  }

  .hero-stat-label {
    margin-top: 0;
    text-align: right;
    max-width: 120px;
  }

  .filter-tabs {
    width: 100%;
    border-radius: 16px;
  }

  .cta-content {
    padding: 2.2rem 1.4rem;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .nav-logo .brand-text {
    font-size: 0.96rem;
  }

  .hero-title {
    font-size: clamp(2.1rem, 9.3vw, 3rem);
  }

  .hero-badge {
    font-size: 0.78rem;
    letter-spacing: 1.8px;
  }

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

  .hero-stat-value {
    font-size: 1.45rem;
  }

  .section-tag {
    letter-spacing: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .text-gradient,
  .hero-video,
  .btn::after,
  .scroll-line,
  .particle {
    animation: none !important;
    transition: none !important;
  }
}


