/* ══════════════════════════════════════════════
   CINEBUFF — Premium Home Theater Website
   Dark Luxury Theme | Gold Accents
══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --black:       #070707;
  --dark-1:      #0d0d0d;
  --dark-2:      #111111;
  --dark-3:      #181818;
  --dark-4:      #1e1e1e;
  --gold:        #C9A84C;
  --gold-light:  #E4C76B;
  --gold-dim:    #9B7B2A;
  --gold-pale:   rgba(201,168,76,0.15);
  --gold-border: rgba(201,168,76,0.25);
  --white:       #FFFFFF;
  --white-90:    rgba(255,255,255,0.90);
  --white-70:    rgba(255,255,255,0.70);
  --white-40:    rgba(255,255,255,0.40);
  --white-15:    rgba(255,255,255,0.08);
  --ff-heading:  'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', system-ui, sans-serif;
  --ff-italic:   'Cormorant Garamond', Georgia, serif;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius:      4px;
  --max-width:   1280px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white-90);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Custom Cursor ── */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, opacity 0.3s;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--gold);
}

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

/* ── Section Colors ── */
.section-dark   { background: var(--dark-1); }
.section-darker { background: var(--black); }

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--white-70);
  max-width: 560px;
  margin: 1.2rem auto 0;
  line-height: 1.8;
}
.gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--black);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background-position var(--transition), transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--gold-border);
  color: var(--white-90);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  color: var(--white);
}

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.6rem 0;
  transition: background 0.5s, padding 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--gold-border);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  cursor: none;
  flex-shrink: 0;
}

/* ── Logo image ── */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  /* The source PNG has a black bg — mix-blend-mode makes the
     black transparent so it sits cleanly on any dark surface */
  mix-blend-mode: screen;
  filter: brightness(1.05);
  transition: filter var(--transition), opacity var(--transition);
}
.logo-img:hover { filter: brightness(1.2); }

.logo-img--footer {
  height: 70px;
  margin-bottom: 1.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-70);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }
.nav-links .nav-cta {
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  color: var(--gold-light);
  transition: background var(--transition), border-color var(--transition);
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white-70);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7,7,7,0.98);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 999;
}
.nav-links.open a {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: var(--black); /* solid fallback while video loads */
}

/* ── Video background ── */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  /* Slow cinematic Ken Burns drift */
  animation: heroDrift 28s ease-in-out infinite alternate;
  /* Darken the raw footage so text is always readable */
  filter: brightness(0.60) saturate(0.90);
  will-change: transform;
}
@keyframes heroDrift {
  0%   { transform: scale(1.00) translate( 0%,    0%  ); }
  25%  { transform: scale(1.06) translate(-1.2%,  -0.6%); }
  50%  { transform: scale(1.10) translate( 0.8%,  -1.2%); }
  75%  { transform: scale(1.07) translate(-0.5%,   0.8%); }
  100% { transform: scale(1.04) translate( 1.0%,   0.4%); }
}

/* ── Overlay layers ── */
.hero-overlay-dark {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0.12);
}
.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* strong top band so nav text is always legible */
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.04) 28%,
                    rgba(0,0,0,0.04) 65%, rgba(0,0,0,0.65) 100%);
}
.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 0% 50%,   rgba(0,0,0,0.30) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 50%,  rgba(0,0,0,0.30) 0%, transparent 55%);
}

/* ── Corner frame accents ── */
.hero-corner {
  position: absolute;
  width: 56px; height: 56px;
  border-color: rgba(201,168,76,0.45);
  border-style: solid;
  z-index: 3;
}
.hero-corner.tl { top: 2.5rem; left: 2.5rem; border-width: 1px 0 0 1px; }
.hero-corner.tr { top: 2.5rem; right: 2.5rem; border-width: 1px 1px 0 0; }
.hero-corner.bl { bottom: 4.5rem; left: 2.5rem; border-width: 0 0 1px 1px; }
.hero-corner.br { bottom: 4.5rem; right: 2.5rem; border-width: 0 1px 1px 0; }

/* ── Hero content ── */
.hero-content {
  position: relative;
  z-index: 4;
  text-align: left;
  max-width: 720px;
  padding: 0 2rem 0 max(2.5rem, 8vw);
  animation: heroFadeIn 1.4s cubic-bezier(0.25,0.46,0.45,0.94) forwards;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Location badge (replaces the busy eyebrow) ── */
.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.38rem 1.1rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  margin-bottom: 1.8rem;
}
.hlb-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ── Hero title ── */
.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(3.2rem, 7.5vw, 6.2rem);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.hero-title-line {
  display: block;
  /* Slightly warm white — pops cleanly off dark video */
  color: #f5ede0;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}
.hero-title-italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-family: var(--ff-italic);
  font-size: 0.82em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Hero body ── */
.hero-subtitle {
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 0 2.4rem;
  line-height: 1.65;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.hero-price-tag {
  display: inline-block;
  padding: 0.4rem 1.3rem;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.2rem;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
}
.hero-price-tag strong { color: var(--gold-light); font-weight: 600; }
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ── Scroll indicator ── */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  z-index: 4;
}
.hero-scroll-indicator span {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-bar {
  width: 1px; height: 46px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.scroll-progress {
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 3rem 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
}
.stat-num-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.4rem;
}
.stat-num {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-sym {
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--gold);
  margin-top: 0.2rem;
  font-weight: 600;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
}
.stat-sub {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  margin-top: 0.25rem;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--gold-border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
.about { padding: 7rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-frame {
  position: relative;
}
.about-visual-inner {
  background: var(--dark-3);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.about-visual-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(201,168,76,0.06) 0%, transparent 65%);
}
.cinema-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.cinema-screen {
  width: 260px; height: 160px;
  background: linear-gradient(135deg, #0a0a1a 0%, #0d1025 50%, #06080f 100%);
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 30px rgba(100,120,255,0.15),
    inset 0 0 30px rgba(0,0,40,0.5);
  position: relative;
  overflow: hidden;
}
.cinema-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(150,160,255,0.12) 0%, transparent 70%);
}
.screen-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}
.screen-icon {
  font-size: 2.5rem;
  color: rgba(201,168,76,0.6);
}
.screen-bars {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 24px;
}
.bar {
  width: 5px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--gold-dim), var(--gold-light));
  animation: barPulse 1.8s ease-in-out infinite;
}
.bar.b1 { height: 60%; animation-delay: 0s; }
.bar.b2 { height: 100%; animation-delay: 0.3s; }
.bar.b3 { height: 75%; animation-delay: 0.6s; }
@keyframes barPulse {
  0%, 100% { transform: scaleY(0.6); }
  50%       { transform: scaleY(1); }
}
.speaker-left, .speaker-right {
  width: 18px; height: 80px;
  background: var(--dark-4);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.speaker-left  { left: 1.5rem; }
.speaker-right { right: 1.5rem; }
.subwoofer {
  width: 80px; height: 18px;
  background: var(--dark-4);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  position: absolute;
  bottom: 1.5rem;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--black);
  padding: 1rem 1.4rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.about-badge i { font-size: 1.4rem; }
.about-badge span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1.4; }
.about-content { display: flex; flex-direction: column; gap: 1.2rem; }
.about-lead {
  font-family: var(--ff-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white-90);
  line-height: 1.6;
  font-style: italic;
}
.about-text { font-size: 0.97rem; color: var(--white-70); line-height: 1.9; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 0.5rem 0;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--white-70);
}
.about-features li i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services { padding: 7rem 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  border: 1.5px solid var(--gold-border);
  border-radius: 2px;
  overflow: hidden;
}
.service-card {
  background: var(--dark-2);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
  cursor: none;
  display: block;
  text-decoration: none;
  color: inherit;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-pale) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { background: var(--dark-3); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .service-icon-wrap i { color: var(--gold-light); }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); color: var(--gold); }
.service-icon-wrap {
  width: 52px; height: 52px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: border-color var(--transition);
}
.service-icon-wrap i {
  font-size: 1.3rem;
  color: var(--gold-dim);
  transition: color var(--transition);
}
.service-card:hover .service-icon-wrap { border-color: var(--gold); }
.service-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--white-70);
  line-height: 1.8;
}
.service-arrow {
  position: absolute;
  bottom: 2rem; right: 2rem;
  font-size: 0.8rem;
  color: var(--white-40);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition), color var(--transition);
}

/* ══════════════════════════════════════════════
   EXPERT — RATHEESH
══════════════════════════════════════════════ */
.expert {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.expert-ambient {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.expert-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 5rem;
  align-items: center;
}
.expert-frame {
  position: relative;
}
.expert-photo-placeholder {
  position: relative;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark-3);
}
.expert-photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7,7,7,0.55) 100%);
  pointer-events: none;
}
.expert-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.expert-years-badge {
  position: absolute;
  top: -1.2rem; right: -1.2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dim) 100%);
  color: var(--black);
  padding: 1rem 1.2rem;
  border-radius: 2px;
  text-align: center;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.years-num {
  display: block;
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 800;
}
.years-txt {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.4;
}
.expert-gold-accent-bar {
  position: absolute;
  bottom: -8px; left: 2rem;
  width: 60px; height: 3px;
  background: var(--gold);
}
.expert-name {
  font-family: var(--ff-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.expert-title-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.expert-divider {
  width: 50px; height: 1px;
  background: var(--gold-border);
  margin: 1.5rem 0;
}
.expert-bio {
  font-size: 0.97rem;
  color: var(--white-70);
  line-height: 1.9;
  margin-bottom: 0.8rem;
}
.expert-bio strong { color: var(--white-90); font-weight: 600; }
.expert-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  color: var(--white-70);
}
.credential-item i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }

.expert-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.expert-more-link:hover { color: var(--gold); }
.expert-more-link i { font-size: 0.75rem; transition: transform 0.2s; }
.expert-more-link:hover i { transform: translateX(3px); }

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.process { padding: 7rem 0; }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
}
.step-number {
  font-family: var(--ff-heading);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: -0.5rem;
}
.step-body {
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), background var(--transition);
  cursor: none;
}
.step-body:hover {
  border-color: var(--gold);
  background: var(--dark-3);
}
.step-icon {
  width: 54px; height: 54px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}
.step-icon i { font-size: 1.2rem; color: var(--gold); }
.step-body h3 {
  font-family: var(--ff-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.8rem;
}
.step-body p { font-size: 0.85rem; color: var(--white-70); line-height: 1.8; }
.step-connector {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-border), transparent);
  margin-top: 5.5rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   PORTFOLIO
══════════════════════════════════════════════ */
.portfolio { padding: 7rem 0; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 8px;
  margin-bottom: 3rem;
}
.port-item {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: none;
}
.port-item.port-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.port-visual {
  width: 100%; height: 100%;
  position: relative;
  transition: transform 0.6s ease;
}
.port-item:hover .port-visual { transform: scale(1.04); }
/* Theater room CSS art */
.pv-1 { background: linear-gradient(160deg, #08091a 0%, #0d1030 40%, #06080f 100%); }
.pv-2 { background: linear-gradient(140deg, #120810 0%, #1a0a18 50%, #0a0508 100%); }
.pv-3 { background: linear-gradient(150deg, #060e10 0%, #082020 50%, #040a0a 100%); }
.pv-4 { background: linear-gradient(160deg, #100808 0%, #200a0a 50%, #100505 100%); }
.pv-5 { background: linear-gradient(140deg, #060810 0%, #0a0c1e 50%, #030408 100%); }

/* Fake screen glow inside each */
.pv-screen {
  position: absolute;
  top: 18%; left: 50%;
  transform: translateX(-50%);
  width: 65%; height: 38%;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.06);
}
.pv-1 .pv-screen {
  width: 70%; height: 40%; top: 12%;
  background: radial-gradient(ellipse, rgba(100,120,255,0.2) 0%, transparent 70%);
  box-shadow: 0 0 40px rgba(80,100,255,0.2), 0 0 80px rgba(60,80,200,0.1);
}
.pv-2 .pv-screen {
  background: radial-gradient(ellipse, rgba(200,100,200,0.18) 0%, transparent 70%);
  box-shadow: 0 0 40px rgba(180,80,200,0.2);
}
.pv-3 .pv-screen {
  background: radial-gradient(ellipse, rgba(100,200,200,0.15) 0%, transparent 70%);
  box-shadow: 0 0 40px rgba(80,180,180,0.2);
}
.pv-4 .pv-screen {
  background: radial-gradient(ellipse, rgba(255,100,80,0.15) 0%, transparent 70%);
  box-shadow: 0 0 40px rgba(220,80,60,0.2);
}
.pv-5 .pv-screen {
  background: radial-gradient(ellipse, rgba(201,168,76,0.18) 0%, transparent 70%);
  box-shadow: 0 0 40px rgba(201,168,76,0.2);
}
.pv-seats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(0deg,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.4) 60%,
    transparent 100%);
}
.pv-seats::before, .pv-seats::after {
  content: '';
  position: absolute;
  bottom: 15%; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}
.pv-seats::before { width: 70%; height: 8px; bottom: 30%; }
.pv-seats::after  { width: 50%; height: 8px; bottom: 10%; }
.pv-speakers {
  position: absolute;
  top: 50%; left: 5%;
  transform: translateY(-50%);
  width: 6%; height: 40%;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.05);
}
.pv-speakers::after {
  content: '';
  position: absolute;
  top: 50%; right: -400%;
  transform: translateY(-50%);
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.04);
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.05);
}
.port-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(0deg, rgba(7,7,7,0.95) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.port-item:hover .port-overlay { transform: translateY(0); }
.port-overlay h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.port-overlay p { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.05em; }
.portfolio-social-cta {
  text-align: center;
}
.portfolio-social-cta p {
  font-size: 0.82rem;
  color: var(--white-40);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.port-social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.port-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.6rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--white-70);
  transition: all var(--transition);
}
.port-social-btn:hover { border-color: var(--gold); color: var(--white); background: var(--gold-pale); }
.port-social-btn.yt:hover { border-color: #ff4444; color: #ff6666; background: rgba(255,68,68,0.08); }
.port-social-btn i { font-size: 1rem; }

/* ══════════════════════════════════════════════
   PACKAGES
══════════════════════════════════════════════ */
.packages { padding: 7rem 0; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-bottom: 2rem;
  position: relative;
}
.pkg-card {
  background: var(--dark-2);
  padding: 3rem 2.2rem;
  position: relative;
  border: 1px solid var(--gold-border);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: none;
}
.pkg-card:hover {
  background: var(--dark-3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 1;
}
.pkg-card.featured {
  background: linear-gradient(160deg, var(--dark-3) 0%, #151209 100%);
  border-color: var(--gold);
  z-index: 1;
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--gold);
}
.pkg-card.featured:hover { transform: translateY(-14px); }
.pkg-popular-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 0.3rem 1rem;
  border-radius: 0 0 4px 4px;
}
.pkg-tier-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.pkg-name {
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.pkg-price { margin-bottom: 2rem; }
.price-from {
  display: block;
  font-size: 0.72rem;
  color: var(--white-40);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}
.price-val {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}
.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}
.pkg-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
  color: var(--white-70);
}
.pkg-features li i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
.pkg-btn {
  display: block;
  text-align: center;
  padding: 0.85rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-70);
  transition: all var(--transition);
}
.pkg-btn:hover { border-color: var(--gold); color: var(--white); background: var(--gold-pale); }
.pkg-btn.featured-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-color: transparent;
  color: var(--black);
  font-weight: 700;
}
.pkg-btn.featured-btn:hover {
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
  transform: none;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--black);
}
.packages-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--white-40);
  margin-top: 1rem;
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials { padding: 7rem 0; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: none;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.testi-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.testi-card:hover::before { opacity: 1; }
.testi-quote-icon {
  font-size: 1.8rem;
  color: rgba(201,168,76,0.2);
  margin-bottom: 1.2rem;
  line-height: 1;
}
.testi-text {
  font-size: 0.93rem;
  color: var(--white-70);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-style: italic;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.testi-author-info { flex: 1; }
.testi-author-info h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 0.1rem; }
.testi-author-info p { font-size: 0.75rem; color: var(--white-40); }
.testi-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 2px; }

/* ══════════════════════════════════════════════
   CONTACT / INQUIRY FORM
══════════════════════════════════════════════ */
.contact {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.contact-ambient {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.3;
}
.contact-info > p {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-detail-item { display: flex; align-items: center; gap: 1rem; }
.cdi-icon {
  width: 46px; height: 46px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}
.cdi-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 0.2rem;
}
.cdi-value {
  font-size: 0.97rem;
  color: var(--white-90);
  font-weight: 500;
}
a.cdi-value:hover { color: var(--gold); }
.contact-social-icons {
  display: flex;
  gap: 0.8rem;
}
.csi-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white-40);
  transition: all var(--transition);
}
.csi-icon:hover { color: var(--white); transform: translateY(-3px); }
.csi-icon.instagram:hover { background: linear-gradient(135deg,#405de6,#5851db,#833ab4,#c13584,#e1306c,#fd1d1d); border-color: transparent; }
.csi-icon.youtube:hover  { background: #ff0000; border-color: transparent; }
.csi-icon.facebook:hover { background: #1877f2; border-color: transparent; }
.csi-icon.whatsapp:hover { background: #25D366; border-color: transparent; }

/* Form */
.form-wrapper {
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 3rem;
  position: relative;
}
.form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.inquiry-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-70);
}
.req { color: var(--gold); }
.optional { color: var(--white-40); font-weight: 400; text-transform: none; letter-spacing: 0; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  color: var(--white-90);
  font-size: 0.92rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--white-40); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  background: var(--dark-4);
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: none;
}
.form-group select option { background: var(--dark-3); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: none;
  transition: background-position var(--transition), transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.3);
  margin-top: 0.5rem;
}
.form-submit-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}
.form-privacy {
  text-align: center;
  font-size: 0.72rem;
  color: var(--white-40);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.form-privacy i { color: var(--gold-dim); }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
}
.form-success.visible { display: block; }
.success-icon { font-size: 3.5rem; color: var(--gold); margin-bottom: 1.2rem; }
.form-success h3 {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.form-success p { font-size: 0.95rem; color: var(--white-70); line-height: 1.8; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { border-top: 1px solid var(--gold-border); }
.footer-top {
  background: var(--dark-1);
  padding: 5rem 0 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  display: block;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--white-40);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--white-40);
  transition: all var(--transition);
}
.footer-social a:hover { color: var(--gold); border-color: var(--gold); background: var(--gold-pale); }
.footer-col h4 {
  font-family: var(--ff-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--gold-border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--white-40);
  transition: color var(--transition), padding var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.fci {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.83rem;
  color: var(--white-40);
}
.fci i { color: var(--gold-dim); width: 16px; flex-shrink: 0; }
.fci a { color: var(--white-40); transition: color var(--transition); }
.fci a:hover { color: var(--gold); }
.footer-quote-btn {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all var(--transition);
}
.footer-quote-btn:hover { background: var(--gold-pale); border-color: var(--gold); }
.footer-bottom {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 1.4rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.75rem; color: var(--white-40); }
.footer-velytron-link { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.15); transition: color 0.2s, border-color 0.2s; }
.footer-velytron-link:hover { color: var(--gold); border-color: var(--gold); }

/* ── Shared page footer (portfolio / service / expert) ── */
.pp-footer {
  padding: 3rem 0;
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.08);
}
.pp-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.pp-footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}
.pp-footer-credit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.15);
}
.pp-footer-social {
  display: flex;
  gap: 1.4rem;
  margin-top: 0.4rem;
}
.pp-footer-social a {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s, transform 0.25s;
  display: inline-block;
}
.pp-footer-social a:hover { color: var(--gold); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waFloat 3s ease-in-out infinite;
  cursor: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  color: var(--white-90);
  font-size: 0.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .expert-grid { grid-template-columns: 320px 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 900px) {
  .nav-links:not(.open) { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 400px; margin: 0 auto; }

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

  .expert-grid { grid-template-columns: 1fr; gap: 3rem; }
  .expert-image-col { max-width: 340px; margin: 0 auto; }

  .process-steps {
    flex-direction: column;
    gap: 1rem;
  }
  .step-connector { display: none; }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 240px);
  }
  .port-item.port-large {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .pkg-card.featured { transform: none; }
  .pkg-card:hover { transform: none; }

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

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .hero-corner { display: none; }
  .stat-divider { display: none; }
  .stats-grid { flex-wrap: wrap; gap: 2rem; }
  .stat-item { min-width: 40%; }
}
@media (max-width: 600px) {
  .container { padding: 0 1.2rem; }
  .section-header { margin-bottom: 2.5rem; }

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

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .port-item { height: 220px; }
  .port-item.port-large { height: 280px; grid-column: auto; grid-row: auto; }
  .port-overlay { transform: translateY(0); }

  .form-row { grid-template-columns: 1fr; }
  .form-wrapper { padding: 2rem 1.5rem; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 0.4rem; text-align: center; }

  .about-features { grid-template-columns: 1fr; }
  .expert-credentials { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .process-steps { gap: 1rem; }

  .stats-grid { gap: 1.5rem; }
  .stat-item { min-width: 100%; }
  .stat-divider { display: none; }

  .port-social-links { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════
   HERO — PLAY REEL LINK
══════════════════════════════════════════════ */
.hero-play-reel {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  cursor: none;
  text-decoration: none;
}
.hpr-btn {
  position: relative;
  z-index: 1;
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.12);
  border: 1.5px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  padding-left: 3px;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.hpr-ring {
  position: absolute;
  width: 52px; height: 52px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  animation: ringSpin 3s linear infinite;
  pointer-events: none;
}
@keyframes ringSpin {
  0%   { transform: rotate(0deg) scale(1);    opacity: 0.7; }
  50%  { transform: rotate(180deg) scale(1.3); opacity: 0.3; }
  100% { transform: rotate(360deg) scale(1);  opacity: 0.7; }
}
.hpr-label {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-40);
  transition: color var(--transition);
}
.hero-play-reel:hover .hpr-btn {
  background: rgba(201,168,76,0.22);
  border-color: var(--gold);
}
.hero-play-reel:hover .hpr-label { color: var(--gold-light); }

/* ── Portfolio view-all CTA ── */
.portfolio-view-all {
  text-align: center;
  margin-top: 3rem;
}

/* ══════════════════════════════════════════════
   VIDEO GRID
══════════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 230px;
  gap: 6px;
  margin-bottom: 0;
}
.vid-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--dark-3);
  cursor: none;
  border: 1px solid rgba(255,255,255,0.04);
}
.vid-card.vid-large {
  grid-row: 1 / 3;
  grid-column: 1;
}
.vid-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.vid-card:hover video { transform: scale(1.04); }

.vid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.15) 45%,
    rgba(0,0,0,0.82) 100%
  );
  transition: background var(--transition);
}
.vid-card:hover .vid-overlay {
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.72) 100%
  );
}
.vid-play-btn {
  width: 62px; height: 62px;
  background: rgba(201,168,76,0.88);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.1rem;
  padding-left: 3px; /* optical center for play icon */
  cursor: none;
  flex-shrink: 0;
  margin-bottom: auto;
  margin-top: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform var(--transition), opacity var(--transition), background var(--transition);
}
.vid-card:hover .vid-play-btn {
  transform: scale(1.12);
  opacity: 0.9;
  background: rgba(201,168,76,1);
}
.vid-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.4rem 1.2rem;
  transform: translateY(6px);
  transition: transform var(--transition);
}
.vid-card:hover .vid-meta { transform: translateY(0); }
.vid-meta h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.vid-card.vid-large .vid-meta h4 { font-size: 1.3rem; }
.vid-meta p {
  font-size: 0.74rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

/* ── VIDEO LIGHTBOX ── */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.video-lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(14px);
  cursor: none;
}
.lightbox-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  transform: scale(0.94) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.video-lightbox.open .lightbox-inner {
  transform: scale(1) translateY(0);
}
.lightbox-close {
  position: absolute;
  top: -46px; right: 0;
  width: 38px; height: 38px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
  font-size: 0.88rem;
  background: var(--dark-2);
  cursor: none;
  transition: all var(--transition);
}
.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--white);
  background: var(--dark-3);
  transform: rotate(90deg);
}
#lightboxVideo {
  width: 100%;
  max-height: 72vh;
  border-radius: 2px;
  background: #000;
  display: block;
  border: 1px solid var(--gold-border);
}
.lightbox-meta {
  padding: 1rem 0.2rem 0;
}
.lightbox-meta h4 {
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.lightbox-meta p { font-size: 0.8rem; color: var(--gold); }

/* ══════════════════════════════════════════════
   YOUTUBE & INSTAGRAM SHOWCASES
══════════════════════════════════════════════ */
.yt-showcase,
.ig-showcase {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gold-border);
}
.showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}
.showcase-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-70);
}
.showcase-label i { font-size: 1.15rem; }
.yt-showcase  .showcase-label i { color: #ff4444; }
.ig-showcase  .showcase-label i { color: #e1306c; }
.showcase-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}
.showcase-view-all:hover { gap: 0.9rem; color: var(--gold-light); }
.showcase-view-all i { font-size: 0.65rem; }
.ig-view-all { color: #e1306c; }
.ig-view-all:hover { color: #f56040; }

/* ── YouTube grid ── */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.yt-frame-wrap {
  aspect-ratio: 16 / 9;
  background: var(--dark-3);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: none;
  transition: border-color var(--transition), transform var(--transition);
}
.yt-frame-wrap:hover {
  border-color: rgba(255,68,68,0.5);
  transform: translateY(-3px);
}
.yt-frame-wrap iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
.yt-frame-wrap.loaded .yt-placeholder { display: none; }
.yt-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1rem;
}
.yt-ph-inner i {
  font-size: 2.8rem;
  color: rgba(255,68,68,0.25);
}
.yt-ph-inner span {
  font-size: 0.7rem;
  color: var(--white-40);
  letter-spacing: 0.08em;
  line-height: 1.6;
}

/* ── Instagram reel slider ── */
.ig-slider {
  position: relative;
  margin-top: 0.5rem;
}
.ig-slider-viewport {
  overflow: hidden;
}
.ig-slider-track {
  display: flex;
  gap: 12px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.ig-reel-tile {
  flex: 0 0 calc(33.333% - 8px);
  height: 460px;
  overflow: hidden;
  position: relative;
  border-radius: 3px;
  border: 1px solid rgba(201,168,76,0.1);
  text-decoration: none;
  background: var(--dark-2);
  display: block;
  transition: border-color 0.25s;
}
.ig-reel-tile:hover { border-color: rgba(201,168,76,0.32); }
.ig-reel-tile iframe {
  position: absolute;
  top: -68px;
  left: 0;
  width: 100%;
  height: 660px;
  border: 0;
  pointer-events: none;
}
.ig-reel-tile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--dark-1));
  pointer-events: none;
  z-index: 2;
}
/* Arrow buttons */
.ig-arr {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(7,7,7,0.88);
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  backdrop-filter: blur(6px);
}
.ig-arr-prev { left: -22px; }
.ig-arr-next { right: -22px; }
.ig-arr:hover:not(:disabled) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.ig-arr:disabled { opacity: 0.2; cursor: default; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 210px 210px;
  }
  .vid-card.vid-large {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .yt-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .ig-reel-tile { flex-basis: calc(50% - 6px); height: 380px; }
  .showcase-header { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
}
@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
  .vid-card         { height: 220px; }
  .vid-card.vid-large { height: 270px; grid-column: auto; grid-row: auto; }
  .vid-meta         { transform: translateY(0) !important; }
  .vid-play-btn     { width: 52px; height: 52px; font-size: 1rem; }
  .yt-grid          { grid-template-columns: 1fr; }
  .ig-reel-tile     { flex-basis: 100%; height: 340px; }
  .ig-arr-prev      { left: 8px; }
  .ig-arr-next      { right: 8px; }
}

/* ── Hide custom cursor on touch / mobile devices ── */
@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring { display: none !important; }

  body,
  a, button, input, select, textarea,
  .service-card, .pkg-card, .testi-card,
  .port-item, .step-body, .vid-card,
  .hero-play-reel, .lightbox-close,
  .whatsapp-float, .nav-logo {
    cursor: auto !important;
  }
}
