/* 
  Imagine Technomedia & Modern Cinema UI Design System
  Custom Cursor Highlight & Cinematic Theme
  Tailored for ULTRASTREEM INTERNATIONAL PVT. LTD.
  Official Website: https://ultrastreeminternational.com/
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Syne:wght@700;800&display=swap');

:root {
  --bg: #030305;
  --bg-secondary: #08080c;
  --panel: #0d0d12;
  --panel-light: #14141d;
  --line: rgba(255, 255, 255, 0.08);
  --line-bright: rgba(255, 255, 255, 0.16);
  --text: #f5f5f7;
  --text-secondary: rgba(255, 255, 255, 0.72);
  --muted: rgba(255, 255, 255, 0.5);
  
  --accent: #e21010;
  --accent-bright: #ff2e4d;
  --accent-gold: #ffb800;
  --accent-glow: rgba(226, 16, 16, 0.45);
  --accent-subtle: rgba(226, 16, 16, 0.12);
  
  --container-max: 1360px;
  --shadow-lg: 0 30px 90px rgba(0, 0, 0, 0.75);
  --shadow-glow: 0 10px 40px rgba(226, 16, 16, 0.35);
  
  --font-display: "Outfit", "Syne", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

/* Base Reset & Global Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: #030305 !important;
  color: var(--text) !important;
  font-family: var(--font-body) !important;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Background Ambient Grid & Radial Lighting */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 95%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  top: -150px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(226, 16, 16, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
}

.wrapper {
  background: transparent !important;
  max-width: 100% !important;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   CUSTOM CURSOR HIGHLIGHT & SPOTLIGHT FOLLOW EFFECT
   ========================================================================== */

/* 1. Cursor Soft Glow Spotlight (Highlight track behind cursor) */
.custom-cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(226, 16, 16, 0.12) 0%, rgba(255, 46, 77, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99990;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}

/* 2. Cursor Follower Ring & Center Dot */
.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(226, 16, 16, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
              height 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
              background 0.25s ease, 
              border-color 0.25s ease, 
              box-shadow 0.25s ease,
              border-radius 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-cursor-follower-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px rgba(255, 46, 77, 0.9);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

/* Cursor Hover States */
body.cursor-hover .custom-cursor-follower {
  width: 72px;
  height: 72px;
  background: rgba(226, 16, 16, 0.15);
  border-color: var(--accent-bright);
  box-shadow: 0 0 25px rgba(226, 16, 16, 0.5), inset 0 0 15px rgba(255, 46, 77, 0.2);
}

body.cursor-hover .custom-cursor-follower .custom-cursor-follower-text {
  opacity: 1;
}

body.cursor-hover .custom-cursor-dot {
  width: 10px;
  height: 10px;
  background: #ffffff;
  box-shadow: 0 0 14px #ffffff;
}

/* Special Button / Video Hover Cursor */
body.cursor-hover-media .custom-cursor-follower {
  width: 85px;
  height: 85px;
  background: rgba(226, 16, 16, 0.85);
  border-color: #ffffff;
  box-shadow: 0 0 35px rgba(226, 16, 16, 0.8);
}

body.cursor-hover-media .custom-cursor-dot {
  opacity: 0;
}

/* Cursor Click Ripple */
.cursor-click-ripple {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99995;
  transform: translate(-50%, -50%) scale(1);
  animation: cursorRipple 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes cursorRipple {
  0% {
    width: 20px;
    height: 20px;
    opacity: 1;
    border-width: 3px;
  }
  100% {
    width: 120px;
    height: 120px;
    opacity: 0;
    border-width: 1px;
    border-color: var(--accent-gold);
  }
}

/* Hide native cursor on desktop fine pointers */
@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  body, a, button, [role="button"], input, select, textarea, .service-card, .block-card, .btn, .hover-effect, .logo, .play-btn {
    cursor: none !important;
  }
}

@media (max-width: 991px), (hover: none) or (pointer: coarse) {
  .custom-cursor-spotlight, .custom-cursor-follower, .custom-cursor-dot {
    display: none !important;
  }
}

/* ==========================================================================
   TOP BAR & NAVIGATION HEADER
   ========================================================================== */

.top-bar {
  background: #020204;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-secondary);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-info span, .top-bar-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.25s ease;
}

.top-bar-info a:hover {
  color: var(--accent-bright);
}

.top-bar-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-subtle);
  border: 1px solid rgba(226, 16, 16, 0.3);
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.top-bar-badge i {
  width: 6px;
  height: 6px;
  background: #00ff66;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff66;
}

/* Glassmorphism Header */
.header {
  position: sticky !important;
  top: 0;
  z-index: 100;
  background: rgba(3, 3, 5, 0.92) !important;
  border-bottom: 1px solid var(--line) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 0;
  transition: padding 0.3s ease, background 0.3s ease;
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(3, 3, 5, 0.96) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.logo-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #e21010, #8c0909);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  font-family: var(--font-display);
  box-shadow: 0 0 20px rgba(226, 16, 16, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text h3 {
  font-family: var(--font-display) !important;
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-text h3 span {
  color: var(--accent-bright);
}

.logo-text small {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  position: relative;
  transition: color 0.25s ease;
  text-decoration: none !important;
  padding: 6px 0;
}

.main-nav li a:hover,
.main-nav li a.active {
  color: var(--accent-bright) !important;
  text-shadow: 0 0 12px rgba(255, 46, 77, 0.5);
}

.main-nav li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 2px;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: linear-gradient(135deg, #e21010, #ff2e4d);
  box-shadow: 0 10px 28px rgba(226, 16, 16, 0.35);
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(226, 16, 16, 0.55);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  padding: 70px 0 90px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(ellipse at 70% 30%, rgba(226, 16, 16, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 184, 0, 0.05) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 16px;
  background: var(--accent-subtle);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(226, 16, 16, 0.25);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-bright);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-bright);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.8rem, 4.8vw, 4.4rem) !important;
  font-weight: 900 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.03em !important;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 22px;
}

.hero-title .accent {
  color: var(--accent-bright);
  text-shadow: 0 0 35px rgba(226, 16, 16, 0.45);
  background: linear-gradient(90deg, #ff2e4d, #e21010, #ffb800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  background: linear-gradient(135deg, #e21010, #ff2e4d) !important;
  box-shadow: 0 14px 35px rgba(226, 16, 16, 0.35) !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  text-decoration: none !important;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(226, 16, 16, 0.55) !important;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.03) !important;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease !important;
  text-decoration: none !important;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--accent-bright) !important;
  background: rgba(226, 16, 16, 0.12) !important;
}

/* Stats Counter Strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.stat-item h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

.stat-item h4 span {
  color: var(--accent-bright);
}

.stat-item p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 4px 0 0;
  font-weight: 600;
}

/* Hero Showcase Card */
.hero-preview-card {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 20, 28, 0.8), rgba(10, 10, 15, 0.95));
  border: 1px solid var(--line-bright);
  box-shadow: var(--shadow-lg);
  border-radius: 20px;
  padding: 16px;
  backdrop-filter: blur(16px);
}

.hero-preview-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.hero-preview-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-preview-card:hover .hero-preview-img {
  transform: scale(1.05);
}

.showreel-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(12, 12, 18, 0.9);
  border: 1px solid var(--line-bright);
  border-radius: 12px;
}

.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e21010, #ff2e4d);
  display: grid;
  place-items: center;
  box-shadow: 0 0 25px rgba(226, 16, 16, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-decoration: none !important;
}

.play-btn::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid #ffffff;
}

.showreel-badge:hover .play-btn {
  transform: scale(1.12);
  box-shadow: 0 0 35px rgba(226, 16, 16, 0.9);
}

/* ==========================================================================
   SECTION HEADINGS & LAYOUT UTILITIES
   ========================================================================== */

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

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.section-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 0%, #ff4d4d 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 6s linear infinite;
  margin-bottom: 16px;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin: 0;
}

/* ==========================================================================
   SERVICES SHOWCASE CARDS (INSPIRED BY REFERENCE SITES)
   ========================================================================== */

.services-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 28px;
}

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
  z-index: 1;
  opacity: 0.55;
  filter: grayscale(20%);
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 3, 5, 0.96) 0%, rgba(3, 3, 5, 0.45) 55%, transparent 100%);
  z-index: 2;
  transition: background 0.4s ease;
}

.service-card-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.25);
  z-index: 3;
  transition: color 0.3s ease;
}

.service-card:hover .service-card-num {
  color: var(--accent-bright);
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
  opacity: 0.8;
  filter: grayscale(0%);
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(3, 3, 5, 0.98) 0%, rgba(226, 16, 16, 0.25) 60%, transparent 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-bright);
  box-shadow: 0 0 35px rgba(226, 16, 16, 0.35), 0 25px 60px rgba(0, 0, 0, 0.8);
}

.service-card-content {
  position: relative;
  z-index: 3;
}

.service-card-content h3 {
  font-family: var(--font-display) !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 12px;
  transition: color 0.3s ease;
}

.service-card:hover .service-card-content h3 {
  color: var(--accent-bright);
}

.service-card-content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 18px;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  text-decoration: none !important;
  transition: gap 0.25s ease;
}

.service-card-link:hover {
  gap: 10px;
  color: #ffffff;
}

/* ==========================================================================
   PROJECT FILMOGRAPHY GALLERY (FILTERABLE TABS & MODALS)
   ========================================================================== */

.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, #e21010, #ff2e4d);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(226, 16, 16, 0.4);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.project-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-bright);
  box-shadow: 0 20px 50px rgba(226, 16, 16, 0.25);
}

.project-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.project-card:hover .project-thumb img {
  transform: scale(1.08);
}

.project-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(3, 3, 5, 0.85);
  border: 1px solid var(--line-bright);
  color: var(--accent-bright);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.project-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 5, 0.45);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.project-info {
  padding: 22px;
}

.project-info h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.project-info p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* ==========================================================================
   PRODUCTION TIMELINE / WORKFLOW ("SCRIPT TO SCREEN")
   ========================================================================== */

.workflow-section {
  background: #040407;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.workflow-step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.workflow-step:hover {
  transform: translateY(-5px);
  border-color: var(--accent-bright);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-bright);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.workflow-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.workflow-step p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   INDOOR & OUTDOOR SHOWCASE
   ========================================================================== */

.facility-card {
  background: var(--panel-light);
  border: 1px solid var(--line-bright);
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-bright);
}

.facility-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}

.facility-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.facility-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.facility-card li {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.facility-card li::before {
  content: "✓";
  color: var(--accent-bright);
  font-weight: 900;
}

/* ==========================================================================
   CONTACT & BOOKING FORM
   ========================================================================== */

.contact-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--line);
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--line-bright);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.contact-info-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}

.contact-info-block h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-bright);
  margin: 0 0 8px;
  text-transform: uppercase;
}

.contact-info-block p {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.form-control-custom {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-bright);
  border-radius: 8px;
  padding: 14px 18px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 15px rgba(226, 16, 16, 0.3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: #020203 !important;
  border-top: 1px solid var(--line) !important;
  padding: 60px 0 30px !important;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.25s ease;
}

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

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

.copyright a {
  color: var(--accent-bright);
  text-decoration: none;
  font-weight: 700;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .main-nav {
    display: none;
  }

  .top-bar-info {
    font-size: 11px;
    gap: 12px;
  }
}

/* ==========================================================================
   IMAGINE-TECHNOMEDIA STYLE VIDEO GRAPHICS HERO BANNER FOR FILM PRODUCTION
   ========================================================================== */

.hero-video-banner {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 80px;
  background: #030307;
}

/* Video Backdrop & Overlay */
.hero-bg-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: brightness(0.85) contrast(1.2) saturate(1.1);
  transform: scale(1.05);
  transition: transform 10s ease;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 75% 30%, rgba(226, 16, 16, 0.22) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(3, 3, 7, 0.8) 0%, rgba(3, 3, 7, 0.4) 50%, rgba(3, 3, 7, 0.95) 100%),
    linear-gradient(to right, rgba(3, 3, 7, 0.9) 0%, rgba(3, 3, 7, 0.2) 50%, rgba(3, 3, 7, 0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Camera HUD Viewfinder Overlay Graphics */
.camera-hud-overlay {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 2;
  border-radius: 12px;
}

.hud-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(255, 46, 77, 0.7);
  border-style: solid;
}
.hud-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.hud-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.hud-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.hud-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.hud-status-bar {
  position: absolute;
  top: 16px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.hud-rec-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #ff2e4d;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 10px #ff2e4d;
  animation: recBlink 1.2s infinite ease-in-out;
}

@keyframes recBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

.hud-specs-badge {
  background: rgba(20, 20, 29, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  color: var(--accent-gold);
}

/* Scanning Laser Line */
.scanning-laser-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 46, 77, 0.8) 50%, transparent 100%);
  box-shadow: 0 0 15px rgba(255, 46, 77, 0.9);
  pointer-events: none;
  z-index: 2;
  animation: laserScan 6s infinite ease-in-out;
}

@keyframes laserScan {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Dynamic Sound Wave Equalizer Bars */
.sound-wave-eq {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
}

.sound-wave-eq span {
  width: 3px;
  background: var(--accent-bright);
  border-radius: 3px;
  animation: soundEq 1s infinite ease-in-out alternate;
}
.sound-wave-eq span:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.sound-wave-eq span:nth-child(2) { height: 90%; animation-delay: 0.3s; }
.sound-wave-eq span:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.sound-wave-eq span:nth-child(4) { height: 100%; animation-delay: 0.4s; }
.sound-wave-eq span:nth-child(5) { height: 50%; animation-delay: 0.15s; }

@keyframes soundEq {
  0% { height: 20%; }
  100% { height: 100%; }
}

/* High Tech Interactive Video Showcase Card */
.video-card-frame {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(255, 46, 77, 0.4) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 184, 0, 0.3) 100%);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(226, 16, 16, 0.25);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
  z-index: 3;
}

.video-card-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 46, 77, 0.4);
}

.video-card-inner {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.video-card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.6s ease;
}

.video-card-frame:hover .video-card-media {
  transform: scale(1.08);
}

/* Floating Cinema Badges */
.floating-video-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(13, 13, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 4;
}

.video-play-btn-large {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #ff2e4d 0%, #e21010 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 46, 77, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.video-play-btn-large:hover {
  transform: scale(1.12);
  box-shadow: 0 0 30px rgba(255, 46, 77, 1);
  color: #fff;
}

/* Filmmaking Interactive Stage Selector Strip */
.film-stage-strip {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.film-stage-btn {
  background: rgba(20, 20, 29, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.film-stage-btn:hover, .film-stage-btn.active {
  background: rgba(226, 16, 16, 0.25);
  border-color: #ff2e4d;
  color: #ffffff;
  box-shadow: 0 0 15px rgba(255, 46, 77, 0.4);
}

.film-stage-btn .stage-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.film-stage-btn.active .stage-dot {
  background: #ff2e4d;
  box-shadow: 0 0 8px #ff2e4d;
}

.bg-slide-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 8s ease-out;
  transform: scale(1.02);
}

.bg-slide-item.active {
  opacity: 0.42;
  transform: scale(1.08);
}

/* ==========================================================================
   DITTO HEADER, MENUBAR & HERO BANNER SECTION STYLES (UltraNew Integration)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;900&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #07080c;
  --bg-card: rgba(18, 20, 29, 0.7);
  --bg-card-hover: rgba(26, 30, 44, 0.85);
  --border-color: rgba(229, 169, 60, 0.15);
  --border-bright: rgba(229, 169, 60, 0.4);
  
  --gold-primary: #e5a93c;
  --gold-glow: #ffc857;
  --gold-gradient: linear-gradient(135deg, #f7d070 0%, #e5a93c 50%, #996515 100%);
  --crimson-accent: #ff3344;
  --crimson-glow: rgba(255, 51, 68, 0.4);
  
  --text-main: #f0f2f8;
  --text-muted: #9aa1b4;
  --text-dim: #5a6275;
  
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --header-height: 90px;
  --topbar-height: 42px;
  
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Top Utility Bar */
.top-bar {
  background: rgba(7, 8, 12, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: var(--topbar-height, 42px);
  font-size: 0.85rem;
  color: var(--text-muted, #9aa1b4);
  position: relative;
  z-index: 100;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-info a, .top-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted, #9aa1b4);
  text-decoration: none;
  transition: color var(--transition-fast, 0.25s cubic-bezier(0.16, 1, 0.3, 1));
}

.top-info a:hover {
  color: var(--gold-primary, #e5a93c);
}

/* Header & Sticky Navigation */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height, 90px);
  background: rgba(10, 11, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color, rgba(229, 169, 60, 0.15));
  z-index: 99;
  transition: all var(--transition-fast, 0.25s cubic-bezier(0.16, 1, 0.3, 1));
}

.header.scrolled {
  height: 75px;
  background: rgba(7, 8, 12, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,169,60,0.3) 0%, rgba(10,11,16,0.9) 80%);
  border: 1px solid var(--gold-primary, #e5a93c);
  box-shadow: 0 0 15px rgba(229, 169, 60, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif, 'Cinzel', serif);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gold-primary, #e5a93c);
}

.brand-logo img {
  height: 54px;
  width: auto;
  max-width: 200px;
  border-radius: 8px;
  border: 1px solid var(--border-bright, rgba(229, 169, 60, 0.4));
  box-shadow: 0 0 20px rgba(229, 169, 60, 0.3);
  object-fit: contain;
  background: #000;
  padding: 3px 8px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif, 'Cinzel', serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main, #f0f2f8);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.brand-sub {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--gold-primary, #e5a93c);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-main, #f0f2f8);
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast, 0.25s cubic-bezier(0.16, 1, 0.3, 1));
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient, linear-gradient(135deg, #f7d070 0%, #e5a93c 50%, #996515 100%));
  transition: width var(--transition-fast, 0.25s cubic-bezier(0.16, 1, 0.3, 1));
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-glow, #ffc857);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 45px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition-fast, 0.25s cubic-bezier(0.16, 1, 0.3, 1));
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient, linear-gradient(135deg, #f7d070 0%, #e5a93c 50%, #996515 100%));
  color: #07080c !important;
  border: none;
  box-shadow: 0 4px 20px rgba(229, 169, 60, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229, 169, 60, 0.5);
  color: #000 !important;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main, #f0f2f8);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section & Video Banner */
.hero {
  position: relative;
  width: 100%;
  background: #07080c;
  overflow: hidden;
  padding: 0;
}

.hero-video-alone {
  width: 100%;
  height: auto;
  min-height: 500px;
  max-height: 85vh;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border-bright, rgba(229, 169, 60, 0.4));
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

/* Brand Title Overlay */
.hero-title-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(7, 8, 12, 0.35) 0%, rgba(7, 8, 12, 0.7) 100%);
  z-index: 10;
  pointer-events: none;
  text-align: center;
  padding: 20px;
}

.hero-brand-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-aperture-mark {
  color: var(--gold-primary, #e5a93c);
  font-size: 1.6rem;
  margin-bottom: 12px;
  opacity: 0.85;
  animation: rotateAperture 25s linear infinite;
}

@keyframes rotateAperture {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-brand-main {
  font-family: var(--font-serif, 'Cinzel', serif);
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.95), 0 0 25px rgba(229, 169, 60, 0.4);
}

.hero-brand-divider {
  width: 160px;
  height: 3px;
  background: var(--gold-gradient, linear-gradient(135deg, #f7d070 0%, #e5a93c 50%, #996515 100%));
  margin: 16px 0 18px;
  box-shadow: 0 0 12px rgba(229, 169, 60, 0.8);
  border-radius: 2px;
}

.hero-brand-sub {
  font-family: var(--font-sans, 'Outfit', sans-serif);
  font-size: clamp(1rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--gold-glow, #ffc857);
  letter-spacing: 6px;
  text-transform: uppercase;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .nav-menu {
    position: fixed;
    top: var(--header-height, 90px);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height, 90px));
    background: #07080c;
    flex-direction: column;
    padding: 40px;
    transition: left var(--transition-fast, 0.25s cubic-bezier(0.16, 1, 0.3, 1));
  }
  .nav-menu.active {
    left: 0;
  }
  .mobile-toggle {
    display: block;
  }
}

