:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --gold-dark: #8a6820;
  --gold-gradient: linear-gradient(135deg, #f0d080 0%, #c9a84c 50%, #8a6820 100%);
  --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #f0d080 50%, #c9a84c 100%);
  --black: #050507;
  --dark: #0c0c10;
  --dark2: #12121a;
  --dark3: #1a1a25;
  --white: #f5f0e8;
  --muted: #8a8a9a;
  --red-accent: #c0392b;
  --whatsapp: #25d366;
  --whatsapp-hover: #20ba5a;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease, border-color 0.3s, background 0.3s;
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cursor-ring.hover-play {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold-light);
}
.cursor-ring.hover-play::after {
  content: 'PLAY';
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-light);
}
.cursor-ring.hover-view {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}
.cursor-ring.hover-view::after {
  content: 'VIEW';
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* METALLIC GOLD GRADIENT TEXT */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* GLASSMORPHIC NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 10px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5,5,7,0.95) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-bottom: 1px solid transparent;
  transition: padding 0.3s ease, background 0.4s, border-color 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  padding: 6px 60px;
  background: rgba(5,5,7,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 15px;
}
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}
nav.scrolled .logo-img {
  height: 60px;
}
.footer-brand .logo-img {
  height: 200px;
}
.nav-logo {
  display: flex; flex-direction: column;
}
.nav-logo .logo-top {
  font-family: 'Cinzel', serif;
  font-size: 22px; font-weight: 900;
  color: var(--gold);
  letter-spacing: 4px;
  line-height: 1;
  text-transform: uppercase;
}
.nav-logo .logo-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; letter-spacing: 6px;
  color: var(--muted); text-transform: uppercase;
  margin-top: 2px;
}
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  position: relative; transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 10px 24px !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}
.nav-cta::after { display: none !important; }

/* HERO (HOMEPAGE) */
.hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, #1a1020 0%, var(--black) 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  perspective: 800px;
  transform: rotateX(60deg) scale(2.5) translateY(20%);
  transform-origin: center bottom;
  animation: gridFloat 20s linear infinite;
}
@keyframes gridFloat {
  from { background-position: 0 0; }
  to { background-position: 0 60px; }
}
.hero-3d-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.15), transparent);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(192,57,43,0.12), transparent);
  bottom: 0; left: -80px;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* Film strip decorations */
.film-strip {
  position: absolute;
  width: 80px;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.08);
  top: 0; bottom: 0;
  display: flex; flex-direction: column; justify-content: space-around;
  padding: 20px 10px;
  z-index: 1;
}
.film-strip.left { left: 0; }
.film-strip.right { right: 0; }
.film-hole {
  width: 18px; height: 14px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 3px;
  margin: 0 auto;
}

.hero-content {
  position: relative; z-index: 5;
  text-align: center; max-width: 900px; padding: 0 20px;
}
.hero-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; letter-spacing: 8px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 900; line-height: 0.9;
  color: var(--white);
  opacity: 0; animation: fadeUp 1s 0.6s forwards;
}
.hero-title .gold-word {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  display: inline-block;
}
.hero-title .outline-text {
  -webkit-text-stroke: 1px rgba(201,168,76,0.5);
  color: transparent;
}
.hero-divider {
  width: 120px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 32px auto;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hero-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px; font-weight: 400;
  color: var(--muted); line-height: 1.7;
  max-width: 600px; margin: 0 auto 48px;
  opacity: 0; animation: fadeUp 1s 1.2s forwards;
}
.hero-btns {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.5s forwards;
}
.btn-primary {
  background: var(--gold-gradient);
  color: var(--black);
  padding: 16px 44px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; text-decoration: none;
  display: inline-block;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s; position: relative;
  box-shadow: 0 0 40px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 0 60px rgba(201,168,76,0.5);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 44px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none; display: inline-block;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.3s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 2s forwards;
}
.hero-scroll span {
  font-size: 10px; letter-spacing: 4px;
  color: var(--muted); text-transform: uppercase;
}
.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.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* SUBPAGE HEADER (For other pages) */
.page-header {
  height: 45vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #150f1d 0%, var(--black) 80%);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.page-header-content {
  position: relative;
  z-index: 5;
  text-align: center;
  margin-top: 60px;
}
.page-eyebrow {
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
}
.page-title em {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  display: inline-block;
}

/* SECTION COMMON */
section { position: relative; }
.section-label {
  font-size: 10px; letter-spacing: 6px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: ''; width: 40px; height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.section-title em {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  display: inline-block;
}

/* THEATRICAL WIDESCREEN CINEMATIC LETTERBOXING */
.cinematic-frame {
  position: relative;
  aspect-ratio: 2.39/1;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(201,168,76,0.15);
  padding: 0 !important;
}
.cinematic-frame::before, .cinematic-frame::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 8%;
  background: #000;
  z-index: 3;
}
.cinematic-frame::before {
  top: 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.cinematic-frame::after {
  bottom: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
.cinematic-frame img, .cinematic-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* FEATURED SHOWCASE (For Home) */
.featured-showcase {
  padding: 100px 60px 140px;
  max-width: 1300px;
  margin: 0 auto;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.showcase-visual {
  position: relative;
  border: 1px solid rgba(201,168,76,0.15);
  padding: 15px;
  background: var(--dark);
}
.showcase-corner {
  position: absolute; width: 20px; height: 20px;
  z-index: 4;
}
.showcase-corner.tl { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.showcase-corner.tr { top: -1px; right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.showcase-corner.bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.showcase-corner.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.showcase-img-container {
  /* Class overrides this with 2.39:1 aspect ratio */
  width: 100%;
}
.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.showcase-visual:hover .showcase-img {
  transform: scale(1.05);
}
.showcase-badge {
  position: absolute;
  top: 30px; left: 30px;
  background: rgba(5, 5, 7, 0.85);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  z-index: 4;
}
.showcase-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.showcase-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.showcase-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.showcase-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 30px;
}

/* ABOUT */
.about {
  padding: 140px 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
  max-width: 1300px; margin: 0 auto;
}
.about-visual {
  position: relative;
}
.about-frame {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: transform 0.6s, opacity 0.6s;
}
.about-frame:hover .about-img {
  transform: scale(1.05);
  opacity: 0.85;
}
.about-frame-inner {
  position: absolute; inset: 20px;
  border: 1px solid rgba(201,168,76,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 20px;
  z-index: 2;
  background: linear-gradient(to top, rgba(5,5,7,0.8) 0%, transparent 100%);
}
.camera-icon {
  width: 80px; height: 80px;
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  background: rgba(5,5,7,0.5);
  backdrop-filter: blur(2px);
  animation: cameraPulse 3s ease-in-out infinite;
}
@keyframes cameraPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.2); }
  50% { box-shadow: 0 0 0 20px rgba(201,168,76,0); }
}
.about-frame-text {
  font-family: 'Cinzel', serif;
  font-size: 16px; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; text-align: center;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.about-corner {
  position: absolute;
  width: 30px; height: 30px;
  z-index: 3;
}
.about-corner.tl { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.about-corner.tr { top: -1px; right: -1px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.about-corner.bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.about-corner.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.about-badge {
  position: absolute; bottom: -30px; right: -30px;
  width: 140px; height: 140px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(201,168,76,0.4);
  animation: spin-slow 20s linear infinite;
  z-index: 4;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.about-badge-inner {
  text-align: center;
  animation: spin-slow-reverse 20s linear infinite;
}
@keyframes spin-slow-reverse {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
.about-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 900;
  color: var(--black); line-height: 1;
}
.about-badge-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px; letter-spacing: 2px;
  color: var(--black); font-weight: 700;
  text-transform: uppercase;
}

.about-text p {
  font-size: 17px; line-height: 1.9;
  color: var(--muted); margin-bottom: 24px;
}
.about-text p strong { color: var(--white); font-weight: 600; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; margin-top: 50px;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding-top: 40px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 900;
  color: var(--gold); line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.stat-label {
  font-size: 11px; letter-spacing: 2px;
  color: var(--muted); text-transform: uppercase;
  margin-top: 6px;
}

/* ABOUT PAGE EXTENSIONS (Values, Facilities) */
.about-grid-sec {
  padding: 100px 60px;
  background: var(--dark);
}
.about-grid-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.grid-three-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}
.value-card {
  background: var(--dark2);
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.08);
  position: relative;
}
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 16px;
}
.value-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.value-num {
  font-family: 'Cinzel', serif;
  font-size: 60px;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.05);
  position: absolute;
  top: 10px; right: 20px;
  line-height: 1;
}

/* SERVICES */
.services-section {
  padding: 140px 60px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
}
.services-header {
  text-align: center; max-width: 700px;
  margin: 0 auto 80px;
}
.services-header .section-label { justify-content: center; }
.services-header .section-label::before { display: none; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
  max-width: 1300px; margin: 0 auto;
}
.service-card {
  background: var(--dark2);
  padding: 50px 40px;
  position: relative; overflow: hidden;
  transition: all 0.4s;
  border: 1px solid rgba(201,168,76,0.05);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.4s;
}
.service-card:hover { background: var(--dark3); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 100px; height: 100px;
  background: radial-gradient(circle at bottom right, rgba(201,168,76,0.06), transparent);
  transition: all 0.4s;
}
.service-card:hover::after {
  width: 200px; height: 200px;
  background: radial-gradient(circle at bottom right, rgba(201,168,76,0.1), transparent);
}
.service-icon {
  font-size: 42px; margin-bottom: 24px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.3));
}
.service-num {
  position: absolute; top: 40px; right: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 900;
  color: rgba(201,168,76,0.08);
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  line-height: 1.2;
}
.service-desc {
  font-size: 15px; line-height: 1.7;
  color: var(--muted);
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px;
}
.tag {
  font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 4px 10px;
  background: rgba(201,168,76,0.04);
}

/* DETAILED SERVICES PAGE EXTENSIONS */
.service-details-grid {
  padding: 100px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.service-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.service-detail-row:last-child {
  border-bottom: none;
}
.service-detail-row.reverse {
  direction: rtl;
}
.service-detail-row.reverse .service-detail-text {
  direction: ltr;
}
.service-detail-img-box {
  position: relative;
  /* Class overrides this with cinematic 2.39:1 aspect ratio */
  border: 1px solid rgba(201,168,76,0.15);
  background: var(--dark);
  padding: 10px;
  width: 100%;
}
.service-detail-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 20px;
}
.service-detail-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.service-detail-list {
  list-style: none;
}
.service-detail-list li {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-detail-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
}

/* PORTFOLIO / WORK PAGE */
.portfolio-section {
  padding: 100px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.portfolio-tab {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--muted);
  padding: 12px 30px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.portfolio-tab:hover, .portfolio-tab.active {
  background: var(--gold-gradient);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
.portfolio-item {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
}
.portfolio-item:hover {
  transform: translateY(-5px);
}
.portfolio-item-media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.portfolio-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-item-media img {
  transform: scale(1.05);
}
.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,7,0.95) 0%, rgba(5,5,7,0.4) 60%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  z-index: 2;
}
.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}
.portfolio-item-cat {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.portfolio-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.portfolio-item-btn {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.portfolio-item-btn::after {
  content: '→';
  transition: transform 0.3s;
}
.portfolio-item:hover .portfolio-item-btn::after {
  transform: translateX(5px);
}
.play-btn-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 60px; height: 60px;
  background: rgba(201, 168, 76, 0.9);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}
.portfolio-item:hover .play-btn-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* LIGHTBOX MODAL */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,5,7,0.98);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active {
  display: flex;
}
.lightbox-close {
  position: absolute;
  top: 40px; right: 40px;
  font-size: 36px;
  color: var(--gold);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10002;
  transition: transform 0.3s;
}
.lightbox-close:hover {
  transform: rotate(90deg);
}
.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  position: relative;
  z-index: 10001;
}
.lightbox-content img, .lightbox-content video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.lightbox-caption {
  position: absolute;
  bottom: -40px; left: 0; right: 0;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 1px;
}

/* PROCESS */
.process-section {
  padding: 140px 60px;
  max-width: 1300px; margin: 0 auto;
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; margin-top: 80px;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.process-step { text-align: center; padding: 0 30px; position: relative; }
.process-num {
  width: 96px; height: 96px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 30px;
  background: var(--dark2);
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 900;
  color: var(--gold);
  transition: all 0.4s;
  box-shadow: 0 0 0 6px rgba(201,168,76,0.03);
  background: var(--gold-gradient);
  color: var(--black);
  border: none;
}
.process-step:hover .process-num {
  background: var(--gold-gradient-hover);
  box-shadow: 0 0 40px rgba(201,168,76,0.4);
}
.process-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 12px;
}
.process-desc {
  font-size: 14px; line-height: 1.7;
  color: var(--muted);
}

/* WHY US */
.why-section {
  padding: 140px 60px;
  background: var(--dark);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.05) 0%, transparent 60%);
}
.why-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.why-list { margin-top: 50px; }
.why-item {
  display: flex; gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: all 0.3s;
}
.why-item:hover { padding-left: 10px; }
.why-item-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  background: rgba(201,168,76,0.04);
}
.why-item-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 1px;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 6px;
}
.why-item-desc { font-size: 14px; line-height: 1.7; color: var(--muted); }

.why-visual {
  position: relative;
}
.why-big-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 900; line-height: 0.85;
  -webkit-text-stroke: 1px rgba(201,168,76,0.15);
  color: transparent;
  text-align: right;
  user-select: none;
}
.why-big-text span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  display: inline-block;
}
.why-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-style: italic;
  color: var(--white); line-height: 1.5;
  margin-top: 30px; text-align: right;
}

/* SPECIALTIES */
.specialties-section {
  padding: 140px 60px;
  max-width: 1300px; margin: 0 auto;
}
.specialties-header { max-width: 600px; margin-bottom: 60px; }
.specialties-scroll {
  display: flex; gap: 20px; overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) transparent;
}
.specialty-pill {
  flex-shrink: 0;
  padding: 16px 28px;
  border: 1px solid rgba(201,168,76,0.2);
  background: var(--dark2);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.specialty-pill::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.specialty-pill:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.specialty-pill:hover::before { opacity: 1; }

/* CLIENTS / MARQUEE */
.marquee-section {
  padding: 60px 0;
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.08);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-size: 10px; letter-spacing: 6px;
  color: var(--muted); text-transform: uppercase;
  margin-bottom: 30px;
}
.marquee-track {
  display: flex; gap: 60px; align-items: center;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Cinzel', serif;
  font-size: 13px; letter-spacing: 3px;
  color: rgba(201,168,76,0.3);
  white-space: nowrap;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 0 30px;
  border-left: 1px solid rgba(201,168,76,0.1);
}
.marquee-item:hover { color: var(--gold); }

/* CONTACT */
.contact-section {
  padding: 140px 60px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  position: relative; overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.contact-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.contact-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900; line-height: 1;
  color: var(--white); margin-top: 24px;
}
.contact-big em {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  display: inline-block;
}
.contact-info { margin-top: 50px; }
.contact-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid rgba(201,168,76,0.08);
}
.contact-item-icon {
  font-size: 22px; color: var(--gold); flex-shrink: 0;
  margin-top: 2px;
}
.contact-item-label {
  font-size: 10px; letter-spacing: 3px;
  color: var(--muted); text-transform: uppercase; margin-bottom: 4px;
}
.contact-item-value {
  font-size: 16px; color: var(--white);
  font-weight: 500;
}
.contact-item-value a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-item-value a:hover {
  color: var(--gold);
}

.contact-form { margin-top: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 14px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  outline: none; transition: border-color 0.3s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.08);
}
.form-group select option { background: var(--dark2); }
.form-submit {
  width: 100%;
  background: var(--gold-gradient);
  color: var(--black);
  padding: 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.form-submit:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 0 40px rgba(201,168,76,0.4);
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 0 0px rgba(37,211,102,0.5);
  z-index: 9999;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  background: var(--whatsapp-hover);
}
@keyframes pulse-wa {
  0% {
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 0 0px rgba(37,211,102,0.6);
  }
  70% {
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 0 15px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), 0 0 0 0px rgba(37,211,102,0);
  }
}

/* FOOTER */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.08);
  padding: 60px;
}
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand .logo-top {
  font-family: 'Cinzel', serif;
  font-size: 20px; font-weight: 900;
  color: var(--gold); letter-spacing: 4px;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 14px; line-height: 1.8;
  color: var(--muted); margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px; color: var(--muted);
  text-decoration: none; transition: color 0.3s, transform 0.3s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--gold); transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.08);
  padding-top: 30px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-social { display: flex; gap: 16px; }
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 16px;
  transition: all 0.3s;
}
.social-btn:hover {
  background: var(--gold-gradient);
  border-color: var(--gold);
  color: var(--black);
}

/* MOBILE MENU */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold); display: block;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 999;
  background: rgba(5,5,7,0.98);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 30px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 24px; color: var(--white);
  text-decoration: none; letter-spacing: 4px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 30px; right: 40px;
  font-size: 32px; color: var(--gold);
  cursor: pointer; background: none; border: none;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.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; }

/* 3D CARD EFFECT */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.1s;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { padding: 20px 30px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about { grid-template-columns: 1fr; gap: 60px; padding: 80px 30px; }
  .about-visual { max-width: 400px; margin: 0 auto; }
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-section { padding: 80px 30px; }
  .service-details-grid { padding: 60px 30px; }
  .service-detail-row { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .service-detail-row.reverse { direction: ltr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-grid::before { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .why-big-text { text-align: left; }
  .why-tagline { text-align: left; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .specialties-section { padding: 80px 30px; }
  .process-section { padding: 80px 30px; }
  .why-section { padding: 80px 30px; }
  .contact-section { padding: 80px 30px; }
  .portfolio-section { padding: 60px 30px; }
  footer { padding: 60px 30px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 46px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: 1fr; gap: 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-badge { right: -10px; bottom: -10px; width: 100px; height: 100px; }
  .about-badge-num { font-size: 26px; }
  .about-badge-text { font-size: 8px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

.logo-white {
  color: var(--white) !important;
}

/* Hero Floating Logo */
.hero-logo-img {
  height: 130px;
  width: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 25px rgba(201, 168, 76, 0.4));
  animation: logoFloat 6s ease-in-out infinite;
  opacity: 0;
  animation: fadeUp 1s 0.1s forwards, logoFloat 6s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Poster Frame (Uncropped full-image rendering for movie posters) */
.poster-frame {
  position: relative;
  width: 100%;
  border: 1px solid rgba(201, 168, 76, 0.15);
  background: #000;
  overflow: hidden;
  padding: 0 !important;
}
.poster-frame .showcase-img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}
