/*
Theme Name: DiGiPiX
Theme URI: https://digipix.in
Author: DiGiPiX
Author URI: https://digipix.in
Description: Official DiGiPiX WordPress theme — Digital Cinema Redefined. Clean, modern, brand-matched to the DiGiPiX logo with blue and green color palette.
Version: 1.0.5
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: digipix
*/

/* ============================================================
   BRAND COLORS — extracted from DiGiPiX logo
   Blue:  #1E9BD7  (primary — logo lettering)
   Green: #6DC02E  (accent — logo dots & tagline)
   ============================================================ */
:root {
  --blue:         #1E9BD7;
  --blue-dark:    #1480b8;
  --blue-deeper:  #0e6a99;
  --blue-light:   #e8f6fc;
  --blue-mid:     #b8e3f5;
  --green:        #6DC02E;
  --green-dark:   #55971f;
  --green-light:  #edf7e0;
  --green-mid:    #c4e89a;

  --white:        #ffffff;
  --off-white:    #f8fafb;
  --light-gray:   #f0f4f7;
  --border:       #e2eaef;
  --border-mid:   #c8d8e2;
  --ink:          #1a2430;
  --ink-soft:     #3d5265;
  --ink-muted:    #6b8499;
  --ink-faint:    #9fb4c2;

  --font-display: 'Nunito', 'Trebuchet MS', sans-serif;
  --font-body:    'Source Sans 3', 'Segoe UI', sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --max-w:        1180px;
  --gutter:       clamp(20px, 5vw, 64px);
  --radius:       8px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 8px rgba(30,155,215,0.08);
  --shadow-md:    0 6px 24px rgba(30,155,215,0.12);
  --shadow-lg:    0 16px 48px rgba(30,155,215,0.16);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--white); color: var(--ink); font-family: var(--font-body); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   SKIP LINK & ACCESSIBILITY
   ============================================================ */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--blue); color: var(--white);
  padding: 8px 16px; font-size: 0.82rem; z-index: 999;
  transition: top 0.2s; border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 8vw, 120px); }
.section--gray { background: var(--off-white); }
.section--blue { background: var(--blue); }
.section--dark { background: var(--ink); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-dark); font-weight: 400;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--green); border-radius: 2px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--ink); }
.display-xl { font-size: clamp(2.4rem, 5.5vw, 5rem); line-height: 1.05; }
.display-lg { font-size: clamp(2rem, 4vw, 3.4rem); }
.display-md { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.display-sm { font-size: clamp(1.2rem, 1.8vw, 1.55rem); }

.lead { font-size: 1.08rem; line-height: 1.8; color: var(--ink-soft); }
.body-sm { font-size: 0.88rem; line-height: 1.75; color: var(--ink-muted); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 700;
  padding: 14px 32px; border-radius: 50px;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.22s ease; white-space: nowrap; text-decoration: none;
  letter-spacing: 0.02em;
}
.btn--primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--green { background: var(--green); color: var(--white); border-color: var(--green); }
.btn--green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(109,192,46,0.3); }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: var(--white); color: var(--blue); }
.btn--sm { padding: 10px 22px; font-size: 0.82rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #ffffff;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 16px rgba(30,155,215,0.08);
  transition: box-shadow 0.3s;
  animation: navSlideDown 0.45s ease forwards;
}
/* Ensure header bg is always pure white — no bleed from dark hero */
.site-header, .nav-inner, .mobile-nav { background-color: #ffffff; }
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(30,155,215,0.14);
}
@keyframes navSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  gap: 24px;
}

/* ── Logo ── */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  height: 70px;
  text-decoration: none;
}
.site-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  vertical-align: middle;
  background: transparent;
}
/* WordPress custom-logo wrapper fix */
.site-logo .custom-logo-link img,
.site-logo .custom-logo-link {
  height: 48px !important;
  width: auto !important;
  max-width: 200px !important;
  background: transparent !important;
  display: block !important;
}

/* ── Nav links ── */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}
.primary-nav li { margin: 0; padding: 0; }
.primary-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.22s, background 0.22s, border-color 0.22s, box-shadow 0.22s;
  white-space: nowrap;
  position: relative;
  border: 1.5px solid transparent;
}
.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.22s ease, background 0.22s;
}
/* Alternate blue/green on hover per item */
.primary-nav li:nth-child(odd)  a:hover { color: var(--blue);  background: var(--blue-light);  border-color: var(--blue);  box-shadow: 0 0 8px rgba(30,155,215,0.25); }
.primary-nav li:nth-child(even) a:hover { color: var(--green-dark); background: var(--green-light); border-color: var(--green); box-shadow: 0 0 8px rgba(109,192,46,0.25); }
.primary-nav li:nth-child(odd)  a:hover::after { transform: scaleX(1); background: var(--blue); }
.primary-nav li:nth-child(even) a:hover::after { transform: scaleX(1); background: var(--green); }
.primary-nav a.active { color: var(--blue); border-color: rgba(30,155,215,0.3); }
.primary-nav a.active::after { transform: scaleX(1); }

/* ── Right side phone + hamburger ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.nav-phone:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.nav-phone svg { flex-shrink: 0; }

/* ── Hamburger ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav dropdown ── */
.mobile-nav {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 12px var(--gutter) 16px;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover { background: var(--blue-light); color: var(--blue); }

/* ============================================================
   HERO — poster roller version
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #0d2137 0%, #123354 50%, #0e2a44 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 50%, rgba(30,155,215,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 35% 40% at 15% 75%, rgba(109,192,46,0.08) 0%, transparent 55%);
  pointer-events: none;
}
/* scan line removed */

.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(30,155,215,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,155,215,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridDrift 22s linear infinite;
}
@keyframes gridDrift { from{background-position:0 0} to{background-position:48px 48px} }

.hero-orb { position:absolute; border-radius:50%; pointer-events:none; filter:blur(70px); }
.hero-orb-1 { width:380px;height:380px;right:-60px;top:-60px;background:rgba(30,155,215,0.12); animation:orbFloat 9s ease-in-out infinite; }
.hero-orb-2 { width:260px;height:260px;left:4%;bottom:-50px;background:rgba(109,192,46,0.08); animation:orbFloat 11s ease-in-out infinite reverse; }
@keyframes orbFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-28px) scale(1.04)} }

.hero-center {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: clamp(64px, 7vw, 100px);
  padding-bottom: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero headline centered */
.hero-headline { animation: heroFadeUp 0.7s ease forwards 0.05s; opacity: 0; text-align: center; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}


.hero-headline {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 4.4rem);
  font-weight: 800; line-height: 1.06; color: var(--white);
  margin-bottom: 20px; letter-spacing: -0.025em;
  text-align: center;
}
.hero-headline .blue  { color: var(--blue); }
.hero-headline .green { color: var(--green); }

 50%{opacity:0} }

/* Tagline — glowing border only */
.hero-tagline-wrap {
  margin-top: 28px;
  margin-bottom: 0;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius);
  background: transparent !important;
  opacity: 1 !important;
  display: block;
  border: 2px solid #1E9BD7;
  box-shadow: 0 0 8px rgba(30,155,215,0.5), 0 0 18px rgba(30,155,215,0.2);
  animation: taglineGlow 3s ease-in-out infinite !important;
}
@keyframes taglineGlow {
  0%,100% {
    border-color: #1E9BD7;
    box-shadow: 0 0 8px rgba(30,155,215,0.6), 0 0 18px rgba(30,155,215,0.25);
  }
  50% {
    border-color: #6DC02E;
    box-shadow: 0 0 8px rgba(109,192,46,0.6), 0 0 18px rgba(109,192,46,0.25);
  }
}


.hero-tagline {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin: 0;
}
.ht-item { font-family:var(--font-display); font-size:0.82rem; font-weight:700; color:rgba(255,255,255,0.9); }
.ht-divider { color:var(--blue); font-weight:300; font-size:1rem; flex-shrink:0; }

/* Service highlights list */
.hero-service-list { display:flex; flex-direction:column; gap:10px; margin-top:20px; }
.hero-svc-item {
  display:flex; align-items:flex-start; gap:12px; padding:12px 16px;
  background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.07);
  border-radius:var(--radius); transition:background 0.2s, border-color 0.2s;
}
.hero-svc-item:hover { background:rgba(30,155,215,0.08); border-color:rgba(30,155,215,0.25); }
.hero-svc-icon { color:var(--green); font-size:0.6rem; flex-shrink:0; margin-top:4px; }
.hero-svc-item div { display:flex; flex-direction:column; gap:2px; }
.hero-svc-item strong { font-family:var(--font-display); font-size:0.86rem; font-weight:700; color:rgba(255,255,255,0.9); }
.hero-svc-item span { font-size:0.76rem; color:rgba(255,255,255,0.45); line-height:1.5; }


/* Stats row — glowing border only */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0;
  border-radius: var(--radius);
  overflow: visible;
  background: transparent !important;
  opacity: 1 !important;
  border: 2px solid #6DC02E;
  box-shadow: 0 0 8px rgba(109,192,46,0.5), 0 0 18px rgba(109,192,46,0.2);
  animation: statsGlow 3s ease-in-out infinite !important;
}
@keyframes statsGlow {
  0%,100% {
    border-color: #6DC02E;
    box-shadow: 0 0 8px rgba(109,192,46,0.6), 0 0 18px rgba(109,192,46,0.25);
  }
  50% {
    border-color: #1E9BD7;
    box-shadow: 0 0 8px rgba(30,155,215,0.6), 0 0 18px rgba(30,155,215,0.25);
  }
}


.hstat { display:flex; flex-direction:column; align-items:center; justify-content:center; flex:1; padding:16px 8px; text-align:center; }
.hstat-num { font-family:var(--font-display); font-size:1.5rem; font-weight:800; color:var(--white); line-height:1; }
.hstat-label { font-family:var(--font-mono); font-size:0.5rem; letter-spacing:0.08em; color:rgba(255,255,255,0.5); margin-top:4px; text-align:center; text-transform:uppercase; }
.hstat-sep { width:1px; align-self:stretch; background:rgba(255,255,255,0.15); flex-shrink:0; }


/* ── POSTER ROLLER ── */
.poster-roller-wrap {
  position: relative;
  height: 580px;
  opacity: 0; transform: translateX(28px);
  animation: heroSlideRight 0.9s ease forwards 0.3s;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
@keyframes heroSlideRight { to{opacity:1;transform:translateX(0)} }

.poster-roller-label {
  position: absolute; top: -28px; left: 0; right: 0;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.pr-dot { width:6px;height:6px;border-radius:50%;background:var(--green);animation:pulse 2s infinite; }

.poster-roller {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.poster-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: posterScroll 28s linear infinite;
  will-change: transform;
}
.poster-track--clone { margin-top: 12px; }
.poster-roller:hover .poster-track { animation-play-state: paused; }

@keyframes posterScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.poster-slide {
  width: 100%; aspect-ratio: 2/3;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}
.poster-slide:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(30,155,215,0.3);
  border-color: rgba(30,155,215,0.4);
  z-index: 2;
}
.poster-slide img { width:100%; height:100%; object-fit:cover; display:block; }

/* Placeholder poster slots */
.poster-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: #0e2235;
}
.poster-ph-inner {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.poster-ph-inner span {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}

/* Fade gradients top & bottom */
.poster-fade {
  position: absolute; left:0; right:0; height: 100px; pointer-events: none; z-index: 2;
}
.poster-fade--top    { top:0;    background: linear-gradient(to bottom, var(--ink), transparent); }
.poster-fade--bottom { bottom:0; background: linear-gradient(to top,   var(--ink), transparent); }

/* ============================================================
   ABOUT
   ============================================================ */

/* Center heading */
.about-heading {
  text-align: center;
  margin-bottom: 56px;
}
.about-heading .eyebrow {
  justify-content: center;
  margin-bottom: 12px;
}
.about-main-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  line-height: 1.1;
}

/* Two column layout */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Left — body text */
.about-col-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-col-left p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--ink-soft);
  text-align: justify;
}

/* Right — feature points */
.about-col-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.about-feat:last-child { border-bottom: none; }
.about-feat:hover {
  background: var(--blue-light);
  box-shadow: 0 0 0 2px rgba(30,155,215,0.2), 0 0 12px rgba(30,155,215,0.1);
}
.about-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.about-feat:hover .about-feat-icon { background: var(--blue); }
.about-feat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  transition: stroke 0.2s;
}
.about-feat:hover .about-feat-icon svg { stroke: var(--white); }
.about-feat div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about-feat strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.about-feat span {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .about-two-col { grid-template-columns: 1fr; gap: 40px; }
}



.about-image-placeholder span {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--ink-muted); letter-spacing: 0.1em;
}





.about-title { margin-bottom: 20px; }
.about-body { margin-bottom: 28px; }




.about-feature-text strong { color: var(--ink); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-header { text-align: center; margin-bottom: 60px; }
.services-header .eyebrow { justify-content: center; margin-bottom: 16px; }
.services-header h2 { margin-bottom: 16px; }
.services-header .lead { max-width: 560px; margin-inline: auto; }

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

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,155,215,0.12), var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; transition: background 0.3s;
}
.service-card:hover .service-icon-wrap { background: var(--blue); }
.service-icon-wrap svg { width: 24px; height: 24px; color: var(--blue); transition: color 0.3s; }
.service-card:hover .service-icon-wrap svg { color: var(--white); }


.service-name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  color: var(--ink); margin-bottom: 12px; line-height: 1.3;
}
.service-desc { font-size: 0.85rem; line-height: 1.75; color: var(--ink-muted); margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.06em;
  color: var(--blue-deeper); background: var(--blue-light);
  padding: 3px 10px; border-radius: 20px; border: 1px solid var(--blue-mid);
}


/* ── Section header centered (theatre / contact style) ── */
.section-header-center {
  text-align: center;
  margin-bottom: 56px;
}
.section-header-center .eyebrow {
  justify-content: center;
  margin-bottom: 14px;
}

/* ── Theatre description text ── */
.theatre-desc {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 28px;
}

/* ── Theatre spec boxes — hover glow ── */
.theatre-spec {
  padding: 22px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: default;
}
.theatre-spec:hover {
  animation: specGlow 2s ease-in-out infinite;
}
@keyframes specGlow {
  0%,100% { border-color: var(--blue);  box-shadow: 0 0 10px rgba(30,155,215,0.3); }
  50%      { border-color: var(--green); box-shadow: 0 0 10px rgba(109,192,46,0.3); }
}
.theatre-spec-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 6px;
}
.theatre-spec-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
}
/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deeper) 100%);
  padding-block: clamp(48px, 6vw, 80px);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-card {
  text-align: center; padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-card:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 800;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.stat-num sup { font-size: 1.2rem; color: var(--green); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; }

/* ============================================================
   THEATRE
   ============================================================ */

/* Centered heading — matches contact style */
.theatre-heading {
  text-align: center;
  margin-bottom: 56px;
}
.theatre-main-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
}
.theatre-tagline {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--ink-muted);
  font-style: italic;
}

.theatre-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start;
}
.theatre-content { background: var(--white); }
.theatre-content .eyebrow { margin-bottom: 16px; }
.theatre-title { margin-bottom: 20px; font-size: clamp(0.95rem,1.5vw,1.1rem); font-family: var(--font-body); font-weight: 400; color: var(--ink-soft); line-height: 1.7; }
.theatre-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.theatre-spec {
  padding: 16px; background: var(--off-white); border-radius: var(--radius);
  border: 1.5px solid var(--border);
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: default;
}
.theatre-spec:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,155,215,0.12), 0 0 12px rgba(30,155,215,0.15);
}
.theatre-spec-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.theatre-spec-val { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--blue); }

.theatre-gallery {
  display: flex; flex-direction: column; gap: 16px;
}
.theatre-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  aspect-ratio: 16/9;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--light-gray);
}
.theatre-img-box:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,155,215,0.15);
}
.theatre-img-box img { width:100%; height:100%; object-fit:cover; display:block; }
.theatre-img-placeholder {
  width:100%; height:100%; min-height:160px;
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
}
.theatre-img-placeholder span { font-family:var(--font-display); font-weight:700; font-size:0.85rem; color:var(--ink-muted); }
.theatre-img-placeholder small { font-family:var(--font-mono); font-size:0.6rem; color:var(--ink-faint); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-top { text-align:center; margin-bottom:48px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-map-wrap {
  height: 480px; border-radius: var(--radius-lg);
  overflow: hidden; border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-map-wrap:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,155,215,0.15), var(--shadow-md);
}

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm);
}
.contact-form-title {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
  color: var(--ink); margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 2px solid var(--blue-light);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.half { margin-bottom: 0; }
label {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  color: var(--ink-soft); letter-spacing: 0.02em;
}
input, select, textarea {
  font-family: var(--font-body); font-size: 0.9rem; color: var(--ink);
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,155,215,0.12);
  background: var(--white);
}
textarea { min-height: 110px; resize: vertical; }
.form-submit {
  width: 100%; justify-content: center; font-size: 0.95rem;
  padding: 16px; margin-top: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deeper));
  border: none; border-radius: 50px; color: var(--white);
  font-family: var(--font-display); font-weight: 700;
  cursor: pointer; transition: all 0.25s; letter-spacing: 0.02em;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.contact-info-wrap { padding-top: 8px; }
.contact-info-header { margin-bottom: 32px; }
.contact-info-header h3 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-info-header p { color: var(--ink-muted); font-size: 0.9rem; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.2s;
}
.contact-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,155,215,0.12), var(--shadow-sm);
  animation: cardGlow 2s ease-in-out infinite;
}
@keyframes cardGlow {
  0%,100% { border-color: var(--blue);  box-shadow: 0 0 8px rgba(30,155,215,0.3); }
  50%      { border-color: var(--green); box-shadow: 0 0 8px rgba(109,192,46,0.3); }
}
.contact-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--blue-light); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-card-label { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.contact-card-value { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.contact-card-value a { color: var(--blue); }
.contact-card-value a:hover { text-decoration: underline; }

.hours-card {
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border: 1px solid var(--green-mid); border-radius: var(--radius);
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
}
.hours-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: pulse 2s infinite; }
.hours-text { font-size: 0.88rem; color: var(--ink-soft); }
.hours-text strong { color: var(--green-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: var(--white); }
.footer-top {
  max-width: var(--max-w); margin-inline: auto;
  padding: 72px var(--gutter) 56px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo { margin-bottom: 16px; }
.footer-brand-logo img { height: 44px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.85; }
.footer-brand-tagline strong { color: var(--blue); font-weight: 600; }

.footer-col-title {
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--green); margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.55); transition: color 0.18s; }
.footer-links a:hover { color: var(--blue); }

.footer-bottom {
  max-width: var(--max-w); margin-inline: auto;
  padding: 24px var(--gutter);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-legal { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.06em; color: rgba(255,255,255,0.25); line-height: 1.8; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-family: var(--font-mono); font-size: 0.6rem; color: rgba(255,255,255,0.25); transition: color 0.18s; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.6); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.2)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.anim { opacity:0; animation: fadeUp 0.7s ease forwards; }
.anim-d1 { animation-delay: 0.1s; }
.anim-d2 { animation-delay: 0.25s; }
.anim-d3 { animation-delay: 0.4s; }
.anim-d4 { animation-delay: 0.55s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .poster-roller-wrap { height: 260px; }
  .poster-roller { overflow: hidden; }
  .poster-track { flex-direction: row !important; animation: posterScrollH 24s linear infinite !important; }
  .poster-track--clone { margin-top: 0 !important; margin-left: 12px; flex-direction: row !important; }
  .poster-slide { width: 120px !important; height: 180px !important; aspect-ratio: unset !important; flex-shrink: 0; }
  @keyframes posterScrollH { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
  .poster-fade--top    { top:0; left:0; width:60px; height:100%; background:linear-gradient(to right, #0a1a2e, transparent); }
  .poster-fade--bottom { bottom:0; right:0; left:auto; width:60px; height:100%; background:linear-gradient(to left, #0a1a2e, transparent); }
  
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .theatre-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 780px) {
  .primary-nav { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-phone span { display: none; }
}
@media (max-width: 640px) {
  .hero-stats-row { gap: 12px; padding: 12px 14px; }
  .hstat-num { font-size: 1.3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .theatre-specs { grid-template-columns: 1fr 1fr; }
}

/* ── Hero Horizontal 3D Carousel — reference style ── */
.hero-carousel-wrap {
  position: relative;
  width: 100%;
  padding-bottom: clamp(56px, 7vw, 90px);
  z-index: 1;
  overflow: visible;
}

.carousel-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d;
}

/* Each card: landscape ratio with white/light bg + title bar at bottom */
.carousel-card {
  position: absolute;
  width: 280px;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity   0.65s ease,
              box-shadow 0.65s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  flex-shrink: 0;
  backface-visibility: hidden;
  background: #1a1a2e;
}
.carousel-card img {
  width: 100%;
  height: calc(100% - 56px);
  object-fit: cover;
  display: block;
}
/* Title bar at bottom — like reference */
.carousel-card-bar {
  height: 56px;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}
.carousel-card-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 700; color: #fff;
  letter-spacing: 0.05em;
}
.carousel-card-info { display: flex; flex-direction: column; gap: 1px; }
.carousel-card-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.carousel-card-lang {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* Placeholder when no real posters */
.carousel-poster-ph {
  width: 100%;
  height: calc(100% - 56px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.carousel-poster-ph span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 0 12px;
}

/* Nav buttons — circle arrows like reference */
.carousel-btn {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 20;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.08);
}
.carousel-btn--prev { left: clamp(12px, 3vw, 48px); }
.carousel-btn--next { right: clamp(12px, 3vw, 48px); }

@media (max-width: 900px) {
  .carousel-stage { height: 320px; }
  .carousel-card  { width: 220px; height: 280px; }
  .carousel-card img { height: calc(100% - 52px); }
  .carousel-poster-ph { height: calc(100% - 52px); }
  .carousel-card-bar  { height: 52px; }
}
@media (max-width: 600px) {
  .carousel-stage { height: 260px; }
  .carousel-card  { width: 160px; height: 220px; }
  .carousel-card img { height: calc(100% - 44px); }
  .carousel-poster-ph { height: calc(100% - 44px); }
  .carousel-card-bar  { height: 44px; }
  .carousel-card-title { font-size: 0.68rem; max-width: 110px; }
}


/* ── Global text: all body text dark/black, no grey ── */
body { color: var(--ink); }
p, li, span, td, th, label { color: var(--ink); }
.lead, .body-sm, .t-body-lg, .t-body { color: var(--ink); }

/* Muted text overrides — make readable */
.ink-muted, [class*="muted"], .service-desc, .about-col-left p,
.contact-card-value, .about-feat span, .theatre-desc,
.footer-tagline, .footer-links a, .footer-legal,
.contact-info-header p, .hours-text {
  color: var(--ink-soft) !important;
}

/* ── Box hover: bold + brighter text ── */
.service-card:hover .service-name,
.service-card:hover .service-desc,
.service-card:hover .service-tag,
.about-feat:hover strong,
.about-feat:hover span,
.theatre-spec:hover .theatre-spec-val,
.theatre-spec:hover .theatre-spec-label,
.contact-card:hover .contact-card-label,
.contact-card:hover .contact-card-value,
.contact-card:hover .contact-card-value a,
.theatre-img-box:hover,
.about-feat:hover div {
  color: var(--ink) !important;
  font-weight: 700 !important;
  filter: brightness(1.1);
}
.service-card:hover .service-name { color: var(--blue) !important; font-weight: 800 !important; }
.service-card:hover .service-desc { color: var(--ink) !important; font-weight: 600 !important; }
.about-feat:hover strong { color: var(--blue) !important; }
.theatre-spec:hover .theatre-spec-val { color: var(--blue-dark) !important; font-weight: 800 !important; }
.contact-card:hover .contact-card-label { color: var(--blue) !important; font-weight: 700 !important; letter-spacing: 0.14em; }
.contact-card:hover .contact-card-value { color: var(--ink) !important; font-weight: 700 !important; }
.contact-card:hover .contact-card-value a { color: var(--blue) !important; font-weight: 700 !important; }


/* Updated Fonts */
h1, h2, h3, h4, h5, h6 { font-family: 'Roboto', sans-serif !important; }
body, p, span, li, a { font-family: 'Open Sans', sans-serif !important; }







