/* ============================================
   JT CINE — Premium Design System
   Dark Mode + Glassmorphism + Cinematic
   ============================================ */

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

/* ─── CSS Custom Properties ─── */
:root {
  /* Brand Colors */
  --brand-primary: #2DE6C8;
  --brand-primary-rgb: 45, 230, 200;
  --brand-primary-dark: #1fb89e;
  --brand-primary-light: #5aefd8;
  --brand-secondary: #1a1a2e;

  /* Dark Theme */
  --bg-deepest: #050508;
  --bg-deep: #0a0a0f;
  --bg-dark: #0f0f18;
  --bg-card: #12121e;
  --bg-card-hover: #1a1a2e;
  --bg-elevated: #16162a;
  --bg-surface: rgba(18, 18, 30, 0.6);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --text-accent: var(--brand-primary);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --border-glow: rgba(var(--brand-primary-rgb), 0.3);

  /* Glassmorphism */
  --glass-bg: rgba(15, 15, 25, 0.65);
  --glass-bg-light: rgba(20, 20, 35, 0.55);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-blur: 20px;

  /* Glow */
  --glow-sm: 0 0 15px rgba(var(--brand-primary-rgb), 0.15);
  --glow-md: 0 0 30px rgba(var(--brand-primary-rgb), 0.2);
  --glow-lg: 0 0 60px rgba(var(--brand-primary-rgb), 0.25);
  --glow-btn: 0 0 20px rgba(var(--brand-primary-rgb), 0.4), 0 0 60px rgba(var(--brand-primary-rgb), 0.15);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1280px;
  --container-padding: 0 clamp(20px, 5vw, 60px);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ─── Reset & Base ─── */
*, *::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-primary);
  background: var(--bg-deepest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--brand-primary-light);
}

img {
  max-width: 100%;
  height: auto;
}

/* ─── Container ─── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ─── Section Base ─── */
.section {
  padding: var(--section-padding);
  position: relative;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--brand-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* ─── Glass Card ─── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(var(--brand-primary-rgb), 0.2);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: var(--bg-deepest);
  box-shadow: var(--glow-btn);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(var(--brand-primary-rgb), 0.5), 0 0 80px rgba(var(--brand-primary-rgb), 0.2);
  color: var(--bg-deepest);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

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

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

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(var(--brand-primary-rgb), 0.3));
}

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

.navbar-menu a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  position: relative;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width var(--transition-smooth);
  box-shadow: var(--glow-sm);
}

.navbar-menu a:hover {
  color: var(--brand-primary);
}

.navbar-menu a:hover::after {
  width: 100%;
}

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

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

/* ─── NAVBAR LOGIN BUTTON ─── */
.btn-navbar-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(var(--brand-primary-rgb), 0.08);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.2);
  border-radius: var(--radius-full);
  color: var(--brand-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
  margin-left: 12px;
}

.btn-navbar-login svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand-primary);
  transition: all var(--transition-fast);
}

.btn-navbar-login:hover {
  background: rgba(var(--brand-primary-rgb), 0.15);
  border-color: rgba(var(--brand-primary-rgb), 0.4);
  box-shadow: var(--glow-sm);
  transform: translateY(-1px);
}

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

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5, 5, 8, 0.4) 0%,
    rgba(5, 5, 8, 0.6) 40%,
    rgba(5, 5, 8, 0.95) 100%
  );
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(var(--brand-primary-rgb), 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(var(--brand-primary-rgb), 0.05) 0%, transparent 60%);
  z-index: 2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    #050508 0%,
    #0a1628 25%,
    #0d1f2d 50%,
    #0a1628 75%,
    #050508 100%
  );
  animation: heroGradient 15s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(var(--brand-primary-rgb), 0.1);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--brand-primary);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--brand-primary), transparent);
}

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

/* Decorative animated particles */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s linear infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--brand-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-label {
  display: inline-block;
  color: var(--brand-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-visual {
  position: relative;
}

.about-visual-box {
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-subtle);
}

.about-visual-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(var(--brand-primary-rgb), 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(var(--brand-primary-rgb), 0.1) 0%, transparent 50%);
  z-index: 1;
}

.about-visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.about-stat {
  text-align: center;
  padding: 20px;
  background: var(--glass-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-primary);
}

.about-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

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

.service-card {
  padding: 40px 32px;
  text-align: center;
  cursor: default;
}

.service-card:hover {
  background: rgba(var(--brand-primary-rgb), 0.05);
  border-color: rgba(var(--brand-primary-rgb), 0.25);
  box-shadow: var(--glow-md);
  transform: translateY(-6px);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--brand-primary-rgb), 0.1);
  border-radius: var(--radius-md);
  font-size: 28px;
  color: var(--brand-primary);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.15);
}

.service-card:hover .service-icon {
  box-shadow: var(--glow-md);
  transform: scale(1.1);
  background: rgba(var(--brand-primary-rgb), 0.15);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── BRANDS GRID ─── */
.brands-section {
  padding: 100px 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-smooth);
}

.brand-item:hover {
  border-color: rgba(var(--brand-primary-rgb), 0.25);
  box-shadow: var(--glow-sm);
  transform: scale(1.06);
}

.brand-item img {
  max-height: 60px;
  max-width: 120px;
  object-fit: contain;
}

.brand-item-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ─── CINEMA GALLERY (Film Strip) ─── */
.cinema-gallery-section {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.cinema-gallery-section::before,
.cinema-gallery-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.cinema-gallery-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-deepest), transparent);
}

.cinema-gallery-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-deepest), transparent);
}

.film-strip-wrapper {
  position: relative;
  padding: 20px 0;
}

/* Film strip perforations at top and bottom */
.film-strip-wrapper::before,
.film-strip-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    rgba(var(--brand-primary-rgb), 0.25) 0px,
    rgba(var(--brand-primary-rgb), 0.25) 12px,
    transparent 12px,
    transparent 32px
  );
  z-index: 1;
}

.film-strip-wrapper::before { top: 0; }
.film-strip-wrapper::after { bottom: 0; }

.film-strip-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: filmStripScroll var(--gallery-speed, 30s) linear infinite;
  padding: 24px 0;
}

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

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

/* Reverse scroll direction (for strip 2) */
.film-strip-track-reverse {
  animation-name: filmStripScrollReverse;
}

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

.film-strip-gap {
  margin-top: 8px;
}

.film-frame {
  flex-shrink: 0;
  width: 320px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 2px solid rgba(var(--brand-primary-rgb), 0.15);
  transition: all var(--transition-smooth);
}

.film-frame:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--glow-md);
  transform: scale(1.04);
}

.film-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.film-frame:hover img {
  transform: scale(1.08);
}

.film-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.film-frame:hover .film-frame-overlay {
  opacity: 1;
}

.film-frame-caption {
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Gallery Lightbox */
.gallery-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;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  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;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  z-index: 10;
}

.gallery-lightbox-close:hover {
  background: rgba(255,50,50,0.3);
  border-color: rgba(255,50,50,0.5);
}

/* ─── WHY CHOOSE (Cards with Photos) ─── */
.why-items-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-smooth);
  min-height: 240px;
}

.why-card:hover {
  border-color: rgba(var(--brand-primary-rgb), 0.25);
  box-shadow: var(--glow-md);
  transform: translateY(-4px);
}

.why-card-content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-card-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--brand-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.why-card-image {
  width: 100%;
  height: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  overflow: hidden;
  position: relative;
}

.why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.why-card:hover .why-card-image img {
  transform: scale(1.05);
}

.why-card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--brand-primary-rgb),0.05), rgba(var(--brand-primary-rgb),0.02));
}

.why-card-image-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--brand-primary);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .why-card {
    grid-template-columns: 1fr;
  }
  .why-card-image {
    min-height: 180px;
    order: -1;
  }
  .why-card-content {
    padding: 32px 24px;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .film-frame {
    width: 260px;
    height: 180px;
  }
}

/* ─── PORTFOLIO ─── */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.portfolio-filter {
  padding: 8px 24px;
  border-radius: var(--radius-full);
  background: transparent;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-primary);
}

.portfolio-filter:hover,
.portfolio-filter.active {
  background: rgba(var(--brand-primary-rgb), 0.1);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.portfolio-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
}

.portfolio-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 5, 8, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

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

.portfolio-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 64px;
  height: 64px;
  background: rgba(var(--brand-primary-rgb), 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all var(--transition-smooth);
  box-shadow: var(--glow-lg);
}

.portfolio-item:hover .portfolio-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-play svg {
  width: 24px;
  height: 24px;
  fill: var(--bg-deepest);
  margin-left: 3px;
}

.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.portfolio-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.portfolio-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(var(--brand-primary-rgb), 0.15);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ─── VIDEO MODAL ─── */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.video-modal.active {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--glow-lg);
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.video-modal-close:hover {
  background: var(--brand-primary);
  color: var(--bg-deepest);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 40px;
}

.testimonial-quote {
  font-size: 2rem;
  color: var(--brand-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  font-family: serif;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(var(--brand-primary-rgb), 0.3);
}

.testimonial-photo-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--bg-deepest);
  font-size: 1.2rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-company {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--brand-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--brand-primary-rgb), 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 1.2rem;
  border: 1px solid rgba(var(--brand-primary-rgb), 0.15);
  flex-shrink: 0;
}

.contact-detail-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-form-wrapper {
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-primary);
  transition: all var(--transition-fast);
  outline: none;
}

.form-input:focus {
  border-color: var(--brand-primary);
  box-shadow: var(--glow-sm), 0 0 0 3px rgba(var(--brand-primary-rgb), 0.1);
  background: rgba(var(--brand-primary-rgb), 0.03);
}

.form-input::placeholder {
  color: var(--text-muted);
}

textarea.form-input {
  resize: vertical;
  min-height: 140px;
}

.form-success {
  display: none;
  padding: 16px;
  background: rgba(var(--brand-primary-rgb), 0.1);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.3);
  border-radius: var(--radius-md);
  color: var(--brand-primary);
  text-align: center;
  font-weight: 500;
}

.form-success.show {
  display: block;
}

/* ─── FOOTER ─── */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-deepest);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(var(--brand-primary-rgb), 0.3));
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-primary);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(var(--brand-primary-rgb), 0.1);
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  box-shadow: var(--glow-sm);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Loading Skeleton ─── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

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

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

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

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right var(--transition-smooth);
    border-left: 1px solid var(--border-subtle);
  }

  .navbar-menu.open {
    right: 0;
  }

  .navbar-toggle {
    display: flex;
    z-index: 1001;
  }

  .btn-navbar-login span {
    display: none;
  }

  .btn-navbar-login {
    padding: 8px 10px;
    margin-left: 8px;
  }

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

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .why-carousel {
    aspect-ratio: 16/12;
  }

  .why-slide-overlay {
    padding: 30px;
  }

  .why-slide-number {
    font-size: 2.5rem;
  }

  .why-slide-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

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