/* ============================================
   VASHU BHAGNANI — CINEMATIC DESIGN SYSTEM
   "Lights. Camera. Legacy."
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #8a8a8a;
  --off-white: #e8e4dc;
  --white: #f5f2ed;
  --gold: #c9a84c;
  --gold-light: #e0c872;
  --gold-dark: #a08030;
  --red: #8b1a1a;
  --red-accent: #c62828;
  --red-glow: #ff1744;
  --glass-bg: rgba(20, 20, 20, 0.65);
  --glass-border: rgba(201, 168, 76, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 20px;
  --radius-lg: 30px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--charcoal);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 4px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Film Grain Overlay */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.5;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--gold); transition: var(--transition); }
a:hover { color: var(--gold-light); }

/* --- PASSWORD SCREEN --- */
#password-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transition: opacity 1s ease, transform 1.2s ease;
}

#password-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('image/Vashu Bhagnani (1).jpeg') center/cover no-repeat;
  filter: blur(20px) brightness(0.25);
  transform: scale(1.1);
}

#password-screen::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: spotlightPulse 4s ease-in-out infinite;
}

@keyframes spotlightPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.password-panel {
  position: relative;
  z-index: 2;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  max-width: 460px;
  width: 90%;
  box-shadow: var(--glass-shadow), 0 0 80px rgba(201,168,76,0.08);
}

.password-panel .film-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.password-panel h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 8px;
}

.password-panel .subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--light-gray);
  font-style: italic;
  margin-bottom: 35px;
}

.password-input-wrap {
  position: relative;
  margin-bottom: 25px;
}

.password-input-wrap input {
  width: 100%;
  padding: 16px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 3px;
  outline: none;
  transition: var(--transition);
}

.password-input-wrap input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(201,168,76,0.15);
}

.password-input-wrap input.error {
  border-color: var(--red-glow);
  animation: shakeInput 0.5s ease;
  box-shadow: 0 0 20px rgba(255,23,68,0.2);
}

@keyframes shakeInput {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}

.password-panel button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: 14px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.password-panel button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.password-error-msg {
  color: var(--red-glow);
  font-size: 0.85rem;
  margin-top: 12px;
  min-height: 20px;
  opacity: 0;
  transition: var(--transition);
}

.password-error-msg.visible { opacity: 1; }

#password-screen.unlocked {
  opacity: 0;
  transform: scale(1.15);
  pointer-events: none;
}

/* --- NAVIGATION --- */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.main-nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  padding: 14px 50px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 5px;
  color: var(--gold);
}

.nav-logo span { color: var(--white); }

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

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

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

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

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 12px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.5px;
}

.dropdown-menu a:hover {
  background: rgba(201,168,76,0.08);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 9001;
}

.nav-toggle span {
  width: 28px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) contrast(1.1);
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.7) 60%, var(--black) 100%);
}

.hero-spotlight {
  position: absolute;
  top: 20%; left: 50%;
  width: 800px; height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 80px;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 8px;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.5s forwards;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 0.8s forwards;
}

.hero-title .gold { color: var(--gold); }

.hero-desc {
  font-size: 1.15rem;
  color: var(--light-gray);
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 1.1s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s 1.4s forwards;
  transition: var(--transition);
}

.hero-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 40px rgba(201,168,76,0.3);
  color: var(--black);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeUp 1s 1.8s forwards;
  opacity: 0;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-gray);
}

.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* --- SECTION BASE --- */
.section {
  padding: 120px 80px;
  position: relative;
}

.section-dark { background: var(--black); }
.section-charcoal { background: var(--charcoal); }

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

.section-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title .gold { color: var(--gold); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--light-gray);
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
}

.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
}

/* --- GLASSMORPHISM CARD --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 40px;
  transition: var(--transition);
  box-shadow: var(--glass-shadow);
}

.glass-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}

/* --- FILM STRIP DIVIDER --- */
.film-strip-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 40px 0;
}

.film-strip-divider .frame {
  width: 40px; height: 30px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  background: rgba(201,168,76,0.03);
}

/* --- FILMOGRAPHY GRID --- */
.films-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.film-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 2/3;
  background: var(--dark-gray);
}

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

.film-card:hover img { transform: scale(1.08); filter: brightness(0.5); }

.film-card .film-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.film-card:hover .film-info { transform: translateY(0); opacity: 1; }

.film-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.film-info .year { color: var(--gold); font-weight: 600; font-size: 0.9rem; }

/* --- TIMELINE --- */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row-reverse; }

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--black);
  z-index: 2;
  box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.timeline-content {
  width: 44%;
  padding: 30px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.7;
}

/* --- QUOTE BLOCK --- */
.cinematic-quote {
  position: relative;
  padding: 80px;
  text-align: center;
  background: var(--charcoal);
  overflow: hidden;
}

.cinematic-quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 20rem;
  color: rgba(201,168,76,0.05);
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.cinematic-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.cinematic-quote cite {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: normal;
}

/* --- STATS COUNTER --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 80px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- HORIZONTAL SCROLL FILMSTRIP --- */
.filmstrip-scroll {
  overflow-x: auto;
  display: flex;
  gap: 20px;
  padding: 40px 80px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.filmstrip-scroll::-webkit-scrollbar { display: none; }

.filmstrip-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--dark-gray);
}

.filmstrip-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* --- GALLERY GRID --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.6); }

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(0,0,0,0.8));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

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

/* --- CONTENT BLOCKS --- */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-two-col.reverse { direction: rtl; }
.content-two-col.reverse > * { direction: ltr; }

.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

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

.content-image:hover img { transform: scale(1.03); }

.content-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  pointer-events: none;
}

.content-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.content-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.content-text p {
  font-size: 1rem;
  color: var(--light-gray);
  margin-bottom: 18px;
  line-height: 1.8;
}

.content-text .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* --- CASE STUDY CARD --- */
.case-study {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  padding: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  align-items: start;
}

.case-study-poster {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 2/3;
}

.case-study-poster img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.case-study-body h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.case-study-body .meta {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 20px;
}

.case-study-body p {
  color: var(--off-white);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 0.98rem;
}

/* --- MEGA FOOTER --- */
.mega-footer {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.mega-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 0%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 80px;
  position: relative;
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--light-gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  color: var(--light-gray);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul a:hover { color: var(--gold); padding-left: 5px; }

.footer-newsletter {
  margin-top: 20px;
}

.footer-newsletter input {
  width: 100%;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 10px;
  outline: none;
}

.footer-newsletter input:focus { border-color: var(--gold); }

.footer-newsletter button {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  border: none;
  border-radius: 10px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter button:hover { background: var(--gold-light); }

.footer-contact-info p {
  color: var(--light-gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 24px 80px;
  border-top: 1px solid rgba(201,168,76,0.1);
  font-size: 0.82rem;
  color: var(--light-gray);
  position: relative;
}

.footer-bottom a { color: var(--gold); }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 50px; height: 50px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 8000;
}

.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--black); }

/* --- CONTACT FORM --- */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.1);
}

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

.form-submit {
  padding: 16px 50px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border: none;
  border-radius: 50px;
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.3);
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- PAGE HERO (Internal Pages) --- */
.page-hero {
  height: 60vh;
  min-height: 450px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 60px 80px;
}

.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero .hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.25); }
.page-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, var(--black) 100%);
}

.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .section-label { margin-bottom: 12px; }
.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero-content p {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 600px;
}

/* --- MAP EMBED --- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 350px;
}

.map-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.8) brightness(0.7) contrast(1.2);
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
  .section { padding: 80px 40px; }
  .footer-main { padding: 60px 40px; grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); padding: 60px 40px; }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 9000;
  }
  .nav-links.active a { font-size: 1.2rem; }
  .nav-dropdown .dropdown-menu {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    padding: 0;
    min-width: auto;
  }
  .content-two-col { grid-template-columns: 1fr; gap: 40px; }
  .case-study { grid-template-columns: 1fr; }
  .case-study-poster { max-width: 350px; }
  .hero-content { padding: 0 40px; }
  .timeline::before { left: 20px; }
  .timeline-dot { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(odd) { flex-direction: column; padding-left: 50px; }
  .timeline-content { width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 60px 24px; }
  .hero-content { padding: 0 24px; }
  .hero-tagline { font-size: 0.9rem; letter-spacing: 4px; }
  .page-hero { padding: 40px 24px; min-height: 350px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .stats-row { grid-template-columns: 1fr; padding: 40px 24px; }
  .main-nav { padding: 16px 24px; }
  .footer-main { grid-template-columns: 1fr; padding: 40px 24px; gap: 30px; }
  .footer-bottom { padding: 20px 24px; }
  .cinematic-quote { padding: 60px 24px; }
  .password-panel { padding: 40px 30px; }
  .filmstrip-scroll { padding: 20px 24px; }
  .films-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .films-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .hero-title { font-size: 2.5rem; }
  .stat-number { font-size: 2.5rem; }
  .password-panel h2 { font-size: 1.8rem; }
}

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(201,168,76,0.15);
}

.lightbox-close {
  position: absolute;
  top: 30px; right: 30px;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  background: var(--glass-bg);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
}

/* Hidden */
.main-site { display: none; }
.main-site.visible { display: block; }

/* Page Sections */
.page-section { display: none; }
.page-section.active { display: block; }
