/* ==========================================================================
   PIGAXXCYBER - Official Website Stylesheet
   Brand: PIGAXXCYBER (Anti-Piracy & Digital Content Protection)
   Design Aesthetic: Dark Cinematic / Metallic Gold / Premium Guardian Cyber
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-pitch: #040608;
  --bg-deep: #06090d;
  --bg-dark: #0a0f16;
  --bg-surface: #101620;
  --bg-card: rgba(16, 23, 33, 0.72);
  --bg-card-hover: rgba(22, 32, 46, 0.85);
  --bg-glass: rgba(10, 15, 22, 0.75);

  /* Gold Palette */
  --gold-light: #fae4be;
  --gold-primary: #e5b060;
  --gold-mid: #cf9540;
  --gold-dark: #91611d;
  --gold-gradient: linear-gradient(135deg, #fbe8c5 0%, #e5b060 38%, #c58a35 72%, #8e5c18 100%);
  --gold-gradient-btn: linear-gradient(135deg, #f6d18c 0%, #e2ab56 50%, #c1852e 100%);
  --gold-border: rgba(229, 176, 96, 0.22);
  --gold-border-bright: rgba(229, 176, 96, 0.65);
  --gold-glow: rgba(229, 176, 96, 0.28);
  --gold-glow-strong: rgba(246, 209, 140, 0.55);

  /* Text Colors */
  --text-white: #ffffff;
  --text-light: #e6ebf2;
  --text-muted: #95a2b3;
  --text-dim: #647387;

  /* Typography */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Alex Brush', cursive;

  /* Spacing */
  --container-max: 1260px;
  --header-height: 84px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-deep);
  color: var(--text-light);
}

body.dark-cinematic {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(229, 176, 96, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 95% 35%, rgba(20, 30, 48, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 5% 75%, rgba(15, 25, 40, 0.35) 0%, transparent 50%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

/* --------------------------------------------------------------------------
   2. UTILITIES & REUSABLE COMPONENTS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.gold-gradient {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-text {
  color: var(--gold-primary);
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--gold-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
  margin-top: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold-gradient-btn);
  color: #06080b;
  box-shadow: 0 4px 18px rgba(229, 176, 96, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 176, 96, 0.55);
  background: linear-gradient(135deg, #fbe8c5 0%, #ebb96e 50%, #cb8f36 100%);
  color: #000;
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-outline-glass {
  background: rgba(14, 21, 30, 0.6);
  border: 1px solid var(--gold-border);
  color: var(--text-white);
  backdrop-filter: blur(8px);
}

.btn-outline-glass:hover {
  background: rgba(229, 176, 96, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-md {
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 14px 34px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   3. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: rgba(6, 9, 13, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 176, 96, 0.1);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(5, 8, 12, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(229, 176, 96, 0.18);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-list li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Base Nav Link */
.nav-list li a,
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

/* Subtle glowing accent underline indicator */
.nav-list li a::after,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), #ffffff, var(--gold-primary), transparent);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  box-shadow: 0 0 10px rgba(229, 176, 96, 0.8);
  pointer-events: none;
}

/* Hover & Focus State Highlight */
.nav-list li a:hover,
.nav-link:hover,
.nav-list li a:focus-visible,
.nav-link:focus-visible {
  color: #ffffff;
  background: rgba(229, 176, 96, 0.1);
  border-color: rgba(229, 176, 96, 0.35);
  box-shadow: 0 0 18px rgba(229, 176, 96, 0.18), inset 0 0 12px rgba(229, 176, 96, 0.06);
  text-shadow: 0 0 12px rgba(229, 176, 96, 0.5);
  transform: translateY(-1px);
}

.nav-list li a:hover::after,
.nav-link:hover::after,
.nav-list li a:focus-visible::after,
.nav-link:focus-visible::after {
  width: 65%;
  opacity: 0.9;
}

/* Active State Highlight (Current Active Page) */
.nav-list li.current-menu-item > a,
.nav-list li.current_page_item > a,
.nav-list li.current-menu-ancestor > a,
.nav-list li a.active,
.nav-link.active,
.nav-list li a[aria-current="page"] {
  color: #ffffff;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(229, 176, 96, 0.22) 0%, rgba(229, 176, 96, 0.08) 100%);
  border-color: rgba(229, 176, 96, 0.6);
  box-shadow: 0 0 22px rgba(229, 176, 96, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.25);
  text-shadow: 0 0 14px rgba(229, 176, 96, 0.7);
}

.nav-list li.current-menu-item > a::after,
.nav-list li.current_page_item > a::after,
.nav-list li.current-menu-ancestor > a::after,
.nav-list li a.active::after,
.nav-link.active::after,
.nav-list li a[aria-current="page"]::after {
  width: 80%;
  opacity: 1;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, #e5b060, #ffffff, #e5b060, transparent);
  box-shadow: 0 0 14px rgba(229, 176, 96, 0.95);
}

/* Active Item when hovered */
.nav-list li.current-menu-item > a:hover,
.nav-list li.current_page_item > a:hover,
.nav-list li.current-menu-ancestor > a:hover,
.nav-list li a.active:hover,
.nav-link.active:hover {
  background: linear-gradient(135deg, rgba(229, 176, 96, 0.28) 0%, rgba(229, 176, 96, 0.12) 100%);
  border-color: rgba(229, 176, 96, 0.8);
  box-shadow: 0 0 28px rgba(229, 176, 96, 0.42), inset 0 1px 1px rgba(255, 255, 255, 0.35);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-nav-cta {
  display: none;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(229, 176, 96, 0.08);
  border: 1px solid var(--gold-border);
}

.hamburger-btn .bar {
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION (CINEMATIC STUDIO & ANIMATED GUARDIAN EMBLEM)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 75px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #040608;
}

/* Background Layer: Cinematic Film Studio + Glowing Cyber Globe */
.hero-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.62;
  filter: brightness(0.88) contrast(1.18) saturate(1.1);
  transform: scale(1.02);
  animation: subtleKenBurns 28s ease-in-out infinite alternate;
}

@keyframes subtleKenBurns {
  0% { transform: scale(1.02) translate(0, 0); }
  50% { transform: scale(1.06) translate(-12px, -8px); }
  100% { transform: scale(1.03) translate(6px, -4px); }
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, rgba(4, 6, 8, 0.98) 0%, rgba(5, 8, 12, 0.90) 38%, rgba(6, 10, 15, 0.58) 72%, rgba(4, 6, 8, 0.88) 100%),
    linear-gradient(180deg, rgba(4, 6, 8, 0.6) 0%, transparent 35%, rgba(4, 6, 8, 0.98) 100%);
}

.hero-spotlight-beam {
  position: absolute;
  top: -15%;
  left: 2%;
  width: 480px;
  height: 700px;
  background: radial-gradient(ellipse at top left, rgba(229, 176, 96, 0.14) 0%, rgba(229, 176, 96, 0.03) 45%, transparent 70%);
  transform: rotate(25deg);
  filter: blur(45px);
  pointer-events: none;
}

/* Floating Golden Particles Canvas */
.hero-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-ambient-glow {
  position: absolute;
  top: 20%;
  right: 12%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(229, 176, 96, 0.18) 0%, rgba(200, 140, 50, 0.06) 50%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 1;
  animation: pulseAmbient 7s ease-in-out infinite alternate;
}

@keyframes pulseAmbient {
  0% { opacity: 0.65; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1.1); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold-primary);
  margin-bottom: 18px;
}

.eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--gold-gradient);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-white);
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 14px;
}

.hero-description {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Trust Badges */
.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(229, 176, 96, 0.14);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-icon {
  width: 20px;
  height: 20px;
}

.trust-text {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}

.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(229, 176, 96, 0.2);
}

/* Hero Right Visual: 3D Interactive Animated Hanuman-Tech Shield */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.hero-emblem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 480px;
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Glowing Aura Behind Emblem */
.emblem-halo {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(229, 176, 96, 0.32) 0%, rgba(200, 140, 50, 0.12) 48%, transparent 72%);
  filter: blur(55px);
  z-index: 1;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: translateX(-50%) scale(0.92); opacity: 0.7; }
  100% { transform: translateX(-50%) scale(1.12); opacity: 1; }
}

/* Orbiting Futuristic Circuit Rings */
.cyber-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.ring-outer {
  width: 420px;
  height: 420px;
  border: 1px dashed rgba(229, 176, 96, 0.22);
  box-shadow: 0 0 20px rgba(229, 176, 96, 0.1);
  animation: orbitClockwise 32s linear infinite;
}

.ring-inner {
  width: 320px;
  height: 320px;
  border: 1px dotted rgba(246, 209, 140, 0.32);
  animation: orbitCounterClockwise 22s linear infinite;
}

@keyframes orbitClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbitCounterClockwise {
  from { transform: translate(-50%, -50%) rotate(360deg); }
  to { transform: translate(-50%, -50%) rotate(0deg); }
}

/* Floating Breathing Shield Animation */
.animated-floating-shield {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 440px;
  height: auto;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 45px rgba(229, 176, 96, 0.38));
  animation: floatingShield 6s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.animated-floating-shield:hover {
  filter: drop-shadow(0 20px 45px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 65px rgba(246, 209, 140, 0.65));
}

@keyframes floatingShield {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(0.8deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.hero-vertical-tag {
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-align: right;
  opacity: 0.85;
  z-index: 3;
}

/* --------------------------------------------------------------------------
   5. SERVICE STRIP
   -------------------------------------------------------------------------- */
.services-strip-section {
  position: relative;
  margin-top: -15px;
  z-index: 10;
  margin-bottom: 50px;
}

.services-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  background: linear-gradient(180deg, rgba(16, 23, 33, 0.85) 0%, rgba(9, 13, 19, 0.95) 100%);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(229, 176, 96, 0.2);
}

.service-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.service-strip-item:hover {
  transform: translateY(-2px);
}

.service-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(229, 176, 96, 0.08);
  border: 1px solid rgba(229, 176, 96, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.service-strip-item:hover .service-icon-wrap {
  background: rgba(229, 176, 96, 0.16);
  border-color: var(--gold-primary);
}

.service-icon-wrap img {
  width: 24px;
  height: 24px;
}

.service-strip-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
}

.strip-separator {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(229, 176, 96, 0.25), transparent);
}

/* --------------------------------------------------------------------------
   6. GUJARATI CINEMA SECTION
   -------------------------------------------------------------------------- */
.gujarati-cinema-section {
  padding: 70px 0;
  position: relative;
}

.section-header-cinema {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}

.cinema-header-right {
  text-align: right;
}

.gujarati-script-quote {
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1.15;
  color: var(--gold-light);
  display: flex;
  flex-direction: column;
  letter-spacing: 0.5px;
  text-shadow: 0 0 20px rgba(229, 176, 96, 0.4);
}

.gold-script {
  color: var(--gold-primary);
  font-size: 2.3rem;
}

.cinema-carousel-wrapper {
  position: relative;
  width: 100%;
}

.cinema-cards-track {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 12px;
  padding: 10px 0 20px 0;
}

.movie-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition-smooth);
}

.movie-poster-wrap {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(229, 176, 96, 0.22);
  background: #0d121a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.movie-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 6px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.protection-badge {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--gold-gradient-btn);
  color: #05080c;
  padding: 2px 6px;
  border-radius: 3px;
}

.movie-card:hover .movie-poster-wrap {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 14px 28px rgba(229, 176, 96, 0.3);
}

.movie-card:hover .movie-poster-img {
  transform: scale(1.06);
}

.movie-card:hover .poster-overlay {
  opacity: 1;
}

.movie-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 9px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.carousel-nav-btn {
  display: none; /* hidden on large desktop since all 10 are visible */
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 15, 22, 0.9);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover {
  background: var(--gold-primary);
  color: #05080c;
  border-color: var(--gold-light);
}

.prev-btn { left: -14px; }
.next-btn { right: -14px; }

/* --------------------------------------------------------------------------
   7. PLATFORM PROTECTION SECTION
   -------------------------------------------------------------------------- */
.platform-protection-section {
  padding: 65px 0;
  position: relative;
}

.platform-header-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 36px;
}

.platform-header-right .section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.platform-cards-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 10px;
  text-align: center;
  gap: 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 176, 96, 0.16);
  background: rgba(12, 17, 24, 0.7);
  min-height: 125px;
}

.platform-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  background: rgba(18, 26, 38, 0.85);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6), 0 0 20px rgba(229, 176, 96, 0.18);
}

.platform-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth);
}

.platform-icon {
  width: 42px;
  height: 42px;
}

.platform-card:hover .platform-icon-wrap {
  transform: scale(1.12);
}

.platform-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}

.platform-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-primary);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   8. HOW IT WORKS (4-STEP PROCESS)
   -------------------------------------------------------------------------- */
.how-it-works-section {
  padding: 65px 0;
  position: relative;
}

.section-center-header {
  text-align: center;
  margin-bottom: 48px;
}

.process-flow-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-badge-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 18px;
}

.step-number-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #05080c;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 22px rgba(229, 176, 96, 0.4);
  position: relative;
  z-index: 2;
  transition: transform var(--transition-smooth);
}

.process-step-item:hover .step-number-circle {
  transform: scale(1.12);
}

.step-connector {
  position: absolute;
  top: 50%;
  left: 60%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, rgba(229, 176, 96, 0.5) 0%, rgba(229, 176, 96, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 1;
}

.chevron-arrow {
  width: 16px;
  height: 16px;
  color: var(--gold-primary);
  transform: translateY(-1px);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 220px;
}

/* --------------------------------------------------------------------------
   9. RESULTS / TRUST STATS STRIP
   -------------------------------------------------------------------------- */
.stats-strip-section {
  padding: 25px 0 55px 0;
  position: relative;
}

.stats-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold-border);
  background: linear-gradient(180deg, rgba(14, 20, 28, 0.85) 0%, rgba(8, 12, 17, 0.95) 100%);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: center;
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(229, 176, 96, 0.08);
  border: 1px solid rgba(229, 176, 96, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon-wrap img {
  width: 28px;
  height: 28px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(229, 176, 96, 0.2);
}

/* --------------------------------------------------------------------------
   10. FOUNDER / BRAND STORY SECTION
   -------------------------------------------------------------------------- */
.founder-section {
  padding: 50px 0 75px 0;
  position: relative;
}

.founder-grid-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  background: linear-gradient(135deg, rgba(16, 23, 33, 0.85) 0%, rgba(9, 13, 19, 0.95) 100%);
  position: relative;
}

/* Left: Camera Backdrop */
.founder-visual-column {
  height: 100%;
  min-height: 380px;
  position: relative;
}

.camera-backdrop-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.camera-backdrop-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68) contrast(1.25);
}

.camera-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(5, 8, 12, 0.1) 0%, rgba(6, 9, 13, 0.85) 100%);
}

.camera-text-stencil {
  position: absolute;
  bottom: 25px;
  left: 25px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 2px;
  color: var(--text-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.gold-stencil {
  color: var(--gold-primary);
}

/* Center: Brand Story */
.founder-content-column {
  padding: 40px 36px;
}

.founder-body-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 18px 0 28px 0;
}

/* Right: Founder Profile Card */
.founder-profile-column {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-profile-card {
  width: 100%;
  max-width: 270px;
  background: rgba(10, 15, 22, 0.85);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
  position: relative;
}

.founder-avatar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.avatar-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gold-gradient);
  box-shadow: 0 0 20px rgba(229, 176, 96, 0.35);
}

.founder-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #0d121a;
}

.founder-role-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}

.founder-quote {
  font-size: 0.86rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.5;
  border-top: 1px solid rgba(229, 176, 96, 0.15);
  padding-top: 12px;
}

/* --------------------------------------------------------------------------
   11. CONTACT / FOOTER SECTION
   -------------------------------------------------------------------------- */
.site-footer {
  position: relative;
  background: #040609;
  border-top: 1px solid rgba(229, 176, 96, 0.25);
  padding: 80px 0 32px 0;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  max-width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(229, 176, 96, 0.85), transparent);
  box-shadow: 0 0 24px rgba(229, 176, 96, 0.7);
  pointer-events: none;
  z-index: 2;
}

.footer-particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 3;
}

.site-footer .container {
  position: relative;
  z-index: 3;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-lockup {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 105px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 6px 22px rgba(229, 176, 96, 0.35));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.footer-logo-img:hover {
  transform: scale(1.06) translateY(-2px);
  filter: drop-shadow(0 10px 30px rgba(229, 176, 96, 0.6));
}

.footer-mission {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-tagline-quote {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  position: relative;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.footer-links-list a:hover {
  color: var(--gold-primary);
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(229, 176, 96, 0.08);
  border: 1px solid rgba(229, 176, 96, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-info-item a:hover {
  color: var(--gold-primary);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-legal-tag {
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* --------------------------------------------------------------------------
   12. LEAD & CONTACT MODAL
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 6, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  width: 100%;
  max-width: 540px;
  background: #090e15;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition-smooth);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-muted);
  line-height: 1;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--gold-primary);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 0.86rem;
  color: var(--gold-primary);
  margin-top: 6px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(16, 23, 33, 0.8);
  border: 1px solid rgba(229, 176, 96, 0.25);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  border-color: var(--gold-primary);
  outline: none;
  box-shadow: 0 0 10px rgba(229, 176, 96, 0.3);
}

/* --------------------------------------------------------------------------
   13. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1120px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-strip {
    justify-content: center;
  }

  .hero-vertical-tag {
    display: none;
  }

  .services-panel {
    flex-wrap: wrap;
    gap: 20px;
  }

  .strip-separator {
    display: none;
  }

  /* Switch cinema track to horizontal scroll on <= 1120px */
  .cinema-cards-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) rgba(10, 15, 22, 0.8);
    -webkit-overflow-scrolling: touch;
  }

  .movie-card {
    flex: 0 0 150px;
  }

  .carousel-nav-btn {
    display: flex;
  }

  /* Platform cards grid becomes 4 columns */
  .platform-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .founder-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .founder-visual-column {
    min-height: 260px;
  }

  .founder-profile-column {
    padding: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 868px) {
  .platform-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-flow-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .step-connector {
    display: none;
  }

  .stats-panel {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }

  .stat-divider {
    display: none;
  }

  .section-header-cinema {
    flex-direction: column;
    align-items: flex-start;
  }

  .cinema-header-right {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(5, 8, 12, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid var(--gold-border);
    padding: 30px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list li a,
  .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 18px;
    font-size: 1.05rem;
    border-radius: 8px;
  }

  .nav-list li.current-menu-item > a,
  .nav-list li.current_page_item > a,
  .nav-list li.current-menu-ancestor > a,
  .nav-list li a.active,
  .nav-link.active,
  .nav-list li a[aria-current="page"] {
    border-left: 4px solid var(--gold-primary);
    background: linear-gradient(90deg, rgba(229, 176, 96, 0.2) 0%, rgba(229, 176, 96, 0.05) 100%);
    padding-left: 18px;
  }

  .mobile-nav-cta {
    display: block;
    width: 100%;
    margin-top: 10px;
  }

  .mobile-nav-cta .btn {
    width: 100%;
  }

  .platform-header-grid {
    grid-template-columns: 1fr;
  }

  .platform-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .carousel-nav-btn {
    display: none;
  }
}


/* ==========================================================================
   REDESIGNED GUJARATI CINEMA & PREVIEW VAULT STYLES
   ========================================================================== */
.cinema-cards-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 15px 0 30px 0;
}

@media (max-width: 1200px) {
  .cinema-cards-grid-redesigned {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .cinema-cards-grid-redesigned {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .cinema-cards-grid-redesigned {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.movie-card-premium {
  display: flex;
  flex-direction: column;
  background: rgba(12, 17, 26, 0.75);
  border-radius: 12px;
  border: 1px solid rgba(229, 176, 96, 0.18);
  overflow: hidden;
  position: relative;
  transition: all var(--transition-smooth);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.movie-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 176, 96, 0.6);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.75), 0 0 25px rgba(229, 176, 96, 0.22);
  background: rgba(18, 25, 38, 0.9);
}

.movie-card-premium .movie-poster-wrap {
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  position: relative;
  border: none;
  border-radius: 0;
  background: #080c12;
}

.movie-card-premium .movie-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.movie-card-premium:hover .movie-poster-img {
  transform: scale(1.08);
}

/* Protected By Badge floating on posters */
.protected-by-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(5, 8, 14, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(229, 176, 96, 0.45);
  border-radius: 6px;
  padding: 5px 8px;
  z-index: 6;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.movie-card-premium:hover .protected-by-badge {
  border-color: var(--gold-primary);
  background: rgba(4, 7, 12, 0.95);
}

.badge-emblem-icon {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain !important;
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(229, 176, 96, 0.6));
}

.badge-text {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  color: #fae4be;
  letter-spacing: 0.4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge-brand {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.6px;
}

.poster-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 40%, rgba(5, 8, 14, 0.85) 100%);
  pointer-events: none;
  z-index: 3;
}

.poster-bottom-meta {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 4;
}

.meta-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gold-light);
  background: rgba(10, 15, 24, 0.85);
  backdrop-filter: blur(6px);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(229, 176, 96, 0.3);
}

.movie-info-block {
  padding: 13px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(229, 176, 96, 0.15);
  background: rgba(8, 12, 18, 0.95);
}

.movie-name {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  text-align: center;
}

.movie-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #55e69e;
  letter-spacing: 0.3px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseStatus 2s infinite ease-in-out;
}

@keyframes pulseStatus {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ==========================================================================
   TERABOX & HIGHLIGHTED PLATFORM STYLES
   ========================================================================== */
.platform-highlight-card {
  position: relative;
  border-color: rgba(229, 176, 96, 0.45) !important;
  background: linear-gradient(180deg, rgba(22, 32, 48, 0.85) 0%, rgba(10, 16, 26, 0.9) 100%) !important;
  box-shadow: 0 8px 24px rgba(229, 176, 96, 0.12);
}

.platform-highlight-card:hover {
  border-color: var(--gold-primary) !important;
  box-shadow: 0 14px 32px rgba(229, 176, 96, 0.25) !important;
}

.platform-badge-new {
  position: absolute;
  top: -9px;
  background: var(--gold-gradient-btn);
  color: #05080c;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.platform-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-top: 2px;
}

/* ==========================================================================
   SUB-PAGES COMMON ARCHITECTURE & LAYOUT
   ========================================================================== */
.page-hero-section {
  padding: 130px 0 60px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 20, 30, 0.8) 0%, rgba(6, 9, 13, 0.95) 100%);
  border-bottom: 1px solid var(--gold-border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 10%, rgba(229, 176, 96, 0.14) 0%, transparent 60%);
  pointer-events: none;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.breadcrumb-nav a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb-nav a:hover {
  color: var(--gold-primary);
}

.breadcrumb-separator {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--gold-light);
  font-weight: 600;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.page-hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 750px;
  line-height: 1.65;
}

/* General Content Section */
.page-section {
  padding: 80px 0;
  position: relative;
}

.page-section.alt-bg {
  background: rgba(10, 15, 23, 0.6);
  border-top: 1px solid rgba(229, 176, 96, 0.08);
  border-bottom: 1px solid rgba(229, 176, 96, 0.08);
}

/* Features Grid */
.features-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.features-2col-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 992px) {
  .features-3col-grid,
  .features-2col-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.feature-detail-card {
  padding: 36px 30px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(229, 176, 96, 0.16);
  background: rgba(12, 17, 26, 0.7);
  transition: all var(--transition-smooth);
}

.feature-detail-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border-bright);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 24px rgba(229, 176, 96, 0.15);
  background: rgba(18, 25, 38, 0.85);
}

.feature-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(229, 176, 96, 0.1);
  border: 1px solid rgba(229, 176, 96, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.feature-card-icon img {
  width: 30px;
  height: 30px;
}

.feature-card-title {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-white);
}

.feature-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-checklist {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-checklist li {
  font-size: 0.88rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-checklist li::before {
  content: '✓';
  color: var(--gold-primary);
  font-weight: 900;
  font-size: 0.95rem;
}

/* Detailed Founder / Leadership Grid */
.founder-full-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 868px) {
  .founder-full-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.founder-large-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gold-border-bright);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 176, 96, 0.2);
}

.founder-large-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-portrait-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(6, 9, 14, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Case Study Showcase */
.case-study-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  background: rgba(12, 17, 26, 0.8);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transition: all var(--transition-smooth);
}

@media (max-width: 900px) {
  .case-study-card {
    grid-template-columns: 1fr;
  }
}

.case-study-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.case-study-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.case-study-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metrics-row {
  display: flex;
  gap: 24px;
  margin-top: 14px;
  border-top: 1px solid rgba(229, 176, 96, 0.15);
  padding-top: 18px;
}

.metric-box-sub {
  display: flex;
  flex-direction: column;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-light);
}

.metric-sub-lbl {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Contact Page Grid & Form */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

@media (max-width: 868px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }
}

.contact-direct-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  background: rgba(12, 17, 26, 0.8);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-method-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(229, 176, 96, 0.1);
  border: 1px solid rgba(229, 176, 96, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-primary);
}

.contact-method-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text-white);
  margin-bottom: 4px;
}

.contact-method-info p, 
.contact-method-info a {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-method-info a:hover {
  color: var(--gold-primary);
}

/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 176, 96, 0.2);
  background: rgba(12, 17, 26, 0.7);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text-white);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-icon-cross {
  font-size: 1.4rem;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.faq-card.open .faq-icon-cross {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 22px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}

.faq-card.open .faq-answer {
  display: block;
}


/* ==========================================================================
   DEDICATED JOJO OTT EXCLUSIVE PROTECTION SECTION
   ========================================================================== */
.jojo-ott-section {
  padding: 50px 0 70px 0;
  position: relative;
  overflow: hidden;
}

.jojo-ott-card {
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 107, 0, 0.35);
  background: linear-gradient(135deg, rgba(16, 22, 32, 0.92) 0%, rgba(10, 14, 22, 0.96) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 107, 0, 0.12);
}

.jojo-ott-ambient-glow {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.18) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.jojo-ott-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .jojo-ott-card {
    padding: 32px 24px;
  }
  .jojo-ott-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* Left Visual Column */
.jojo-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jojo-mockup-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.jojo-poster-container {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 107, 0, 0.5);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 30px rgba(255, 107, 0, 0.25);
  background: #080c14;
}

.jojo-poster-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.jojo-mockup-frame:hover .jojo-poster-main {
  transform: scale(1.05);
}

.jojo-badge {
  border-color: rgba(255, 107, 0, 0.6) !important;
  background: rgba(6, 9, 14, 0.92) !important;
}

.jojo-stream-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 12, 0.95) 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
}

.jojo-hud-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #ff944d;
  letter-spacing: 0.8px;
  font-family: var(--font-display);
}

.hud-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b00;
  box-shadow: 0 0 10px #ff6b00;
  animation: pulseOrange 1.8s infinite ease-in-out;
}

@keyframes pulseOrange {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}

.chip-icon {
  font-size: 0.95rem;
}

.chip-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Right Content Column */
.jojo-brand-tag {
  background: #ff6b00;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.65rem;
  padding: 2px 7px;
  border-radius: 4px;
  margin-right: 6px;
  letter-spacing: 0.5px;
}

.orange-gold-gradient {
  background: linear-gradient(135deg, #ff944d 0%, #ff6b00 35%, #e5b060 75%, #fae4be 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.jojo-title {
  margin: 12px 0 16px 0;
  line-height: 1.18;
}

.jojo-lead-text {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

/* 4 Security Pillars Grid */
.jojo-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

@media (max-width: 680px) {
  .jojo-features-grid {
    grid-template-columns: 1fr;
  }
}

.jojo-feature-pill {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(12, 17, 26, 0.7);
  border: 1px solid rgba(229, 176, 96, 0.15);
  transition: all var(--transition-fast);
}

.jojo-feature-pill:hover {
  border-color: rgba(255, 107, 0, 0.45);
  background: rgba(18, 25, 38, 0.85);
  transform: translateY(-2px);
}

.jojo-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jojo-feature-icon svg {
  width: 18px;
  height: 18px;
  color: #ff944d;
}

.jojo-feature-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 3px;
}

.jojo-feature-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.45;
}

/* Footer Action & Stats */
.jojo-footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 107, 0, 0.2);
}

@media (max-width: 768px) {
  .jojo-footer-action {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .jojo-cta-btn {
    width: 100%;
  }
  .jojo-cta-btn .btn {
    width: 100%;
    justify-content: center;
  }
}

.jojo-stats-strip {
  display: flex;
  align-items: center;
  gap: 20px;
}

.jojo-stat {
  display: flex;
  flex-direction: column;
}

.jojo-stat-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-light);
}

.jojo-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.jojo-stat-divider {
  width: 1px;
  height: 28px;
  background: rgba(229, 176, 96, 0.25);
}


/* ==========================================================================
   PLATFORM GRID REDESIGN (BALANCED 5x2 GRID)
   ========================================================================== */
.platform-cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .platform-cards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 868px) {
  .platform-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 580px) {
  .platform-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.platform-card {
  padding: 22px 14px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(229, 176, 96, 0.16);
  background: rgba(12, 17, 26, 0.75);
  transition: all var(--transition-smooth);
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 176, 96, 0.6);
  background: rgba(18, 26, 38, 0.9);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7), 0 0 22px rgba(229, 176, 96, 0.2);
}

.platform-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}

.platform-sub {
  font-size: 0.68rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   INNER HERO BANNER WITH BESPOKE GENERATED IMAGE
   ========================================================================== */
.page-hero-section {
  padding: 135px 0 65px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(6, 9, 14, 0.78) 0%, rgba(6, 9, 14, 0.94) 100%),
              url('../images/inner-hero-bg.jpg') center center / cover no-repeat;
  border-bottom: 1px solid var(--gold-border);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 25%, rgba(229, 176, 96, 0.14) 0%, transparent 65%);
  pointer-events: none;
}

/* ==========================================================================
   POLISHED CONTACT FORM DESIGN
   ========================================================================== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  background: rgba(10, 15, 24, 0.85);
  border: 1px solid rgba(229, 176, 96, 0.25);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(149, 162, 179, 0.6);
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: rgba(14, 20, 32, 0.95);
  border-color: var(--gold-primary);
  box-shadow: 0 0 16px rgba(229, 176, 96, 0.3);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23e5b060' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group select option {
  background: #080c14;
  color: #ffffff;
  padding: 10px;
}


/* Responsive Industry Pride Block & Metrics */
.industry-pride-card {
  padding: 44px;
  border-radius: 20px;
  border: 1px solid var(--gold-border-bright);
  margin-bottom: 50px;
  background: linear-gradient(135deg, rgba(16,23,33,0.9) 0%, rgba(8,12,18,0.95) 100%);
}

.industry-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.industry-metric-box {
  background: rgba(8,12,18,0.85);
  padding: 18px 16px;
  border-radius: 12px;
  border: 1px solid rgba(229,176,96,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-metric-box .metric-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 6px;
  word-break: break-word;
}

.industry-metric-box .metric-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .industry-pride-card {
    padding: 24px 16px;
    border-radius: 16px;
    margin-bottom: 35px;
  }
  .industry-metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .industry-metric-box {
    padding: 14px 10px;
  }
  .industry-metric-box .metric-num {
    font-size: 1.25rem;
  }
  .industry-metric-box .metric-lbl {
    font-size: 0.75rem;
  }
}

@media (max-width: 540px) {
  .industry-metrics-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .metrics-row {
    flex-direction: column;
    gap: 14px;
  }
}


/* Footer Logo Realignment */
.footer-brand-lockup {
  display: block;
  margin-bottom: 20px;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 16px rgba(229, 176, 96, 0.3));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}
.footer-logo-img:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 6px 22px rgba(229, 176, 96, 0.5));
}
.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.footer-mission {
  font-size: 0.92rem;
  color: var(--text-muted, #94a3b8);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 320px;
}

/* --------------------------------------------------------------------------
   INDUSTRY PRIDE CARD WITH ANIMATED HERO SHIELD
   -------------------------------------------------------------------------- */
.industry-pride-top-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 36px;
}

.industry-shield-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.industry-hero-visual {
  width: 100%;
  max-width: 360px;
  min-height: 310px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.industry-emblem-card {
  max-width: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.industry-emblem-halo {
  width: 250px;
  height: 250px;
}

.industry-ring-outer {
  width: 280px;
  height: 280px;
}

.industry-ring-inner {
  width: 210px;
  height: 210px;
}

.industry-shield-img {
  max-width: 260px;
  height: auto;
}

.industry-metrics-bottom-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(229, 176, 96, 0.16);
}

@media (max-width: 992px) {
  .industry-pride-top-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .industry-metrics-bottom-strip {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .industry-metrics-bottom-strip {
    grid-template-columns: 1fr !important;
  }
  .industry-ring-outer {
    width: 220px;
    height: 220px;
  }
  .industry-ring-inner {
    width: 170px;
    height: 170px;
  }
  .industry-shield-img {
    max-width: 200px;
  }
}

/* --------------------------------------------------------------------------
   CONTACT FORM 7 STYLING & VALIDATION OVERRIDES
   -------------------------------------------------------------------------- */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  position: relative;
}

.wpcf7 form .form-group {
  margin-bottom: 16px;
}

.wpcf7 form input[type="text"],
.wpcf7 form input[type="tel"],
.wpcf7 form input[type="email"],
.wpcf7 form select,
.wpcf7 form textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(16, 23, 33, 0.85);
  border: 1px solid rgba(229, 176, 96, 0.28);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  box-sizing: border-box;
}

.wpcf7 form select option {
  background: #090e15;
  color: #fff;
}

.wpcf7 form input:focus,
.wpcf7 form select:focus,
.wpcf7 form textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(229, 176, 96, 0.35);
}

.wpcf7-response-output {
  margin: 18px 0 0 0 !important;
  padding: 14px 18px !important;
  border-radius: 10px !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid #22c55e !important;
  background: rgba(34, 197, 94, 0.15) !important;
  color: #86efac !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border: 1px solid #ef4444 !important;
  background: rgba(239, 68, 68, 0.15) !important;
  color: #fca5a5 !important;
}

.wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #f87171;
  margin-top: 5px;
  display: block;
}

.wpcf7 .ajax-loader {
  display: none !important;
}

.wpcf7-spinner {
  visibility: hidden;
  display: inline-block;
  background-color: var(--gold-primary);
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

.wpcf7 form.submitting .wpcf7-spinner {
  visibility: visible;
}
