/* =============================================
   BXPROD â€” CINEMATIC PREMIUM WEBSITE
   ============================================= */

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

:root {
  --black: #0c0b0a;
  --dark: #12100f;
  --dark2: #1b1816;
  --white: #f5f5f0;
  --white-dim: rgba(245, 245, 240, 0.6);
  --accent: #ff5722;
  --accent2: #ff9800;
  --accent-glow: rgba(255, 87, 34, 0.35);
  --neon: #ffc107;
  --gold: #ffb300;
  --font-display: 'Bebas Neue', 'Inter', sans-serif;
  --font-body: 'Space Grotesk', 'Inter', sans-serif;
  --ease-circ: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: auto;
  background: var(--black);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo), background 0.3s;
  box-shadow: 0 0 12px var(--accent-glow), 0 0 24px rgba(255, 87, 34, 0.2);
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 87, 34, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-expo), height 0.4s var(--ease-expo), border-color 0.3s, opacity 0.3s;
  background: rgba(255, 87, 34, 0.04);
}

body.cursor-hover .cursor {
  width: 8px;
  height: 8px;
  background: var(--accent);
}

body.cursor-hover .cursor-follower {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
  background: rgba(255, 87, 34, 0.07);
}

body.cursor-text .cursor {
  width: 2px;
  height: 24px;
  border-radius: 2px;
  background: var(--white);
}

/* =============================================
   NOISE OVERLAY
   ============================================= */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 8000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: noise-pan 0.5s steps(1) infinite;
}

@keyframes noise-pan {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: -40px 30px;
  }

  50% {
    background-position: 20px -20px;
  }

  75% {
    background-position: -60px 10px;
  }

  100% {
    background-position: 10px -50px;
  }
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 5%;
  transition: padding 0.4s var(--ease-expo), background 0.4s;
}

.nav.scrolled {
  padding: 18px 5%;
  background: rgba(12, 11, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: 0.05em;
  color: var(--white);
}

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

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-expo);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: none;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.nav-cta:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 30px var(--accent-glow);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 87, 34, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255, 152, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 20% 60%, rgba(255, 87, 34, 0.08) 0%, transparent 50%),
    rgba(12, 11, 10, 0.5);
  /* Overlay over video */
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 87, 34, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 87, 34, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: light-drift 8s ease-in-out infinite alternate;
}

.hero-light-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.12) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.hero-light-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.1) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: 2s;
}

.hero-light-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.07) 0%, transparent 70%);
  top: 30%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes light-drift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(40px, 30px) scale(1.1);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: absolute;
  top: 12vh;
  left: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-label {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-expo) 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0;
  animation: title-reveal 1s var(--ease-expo) 0.6s forwards;
}

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

.hero-title-accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  display: inline-block;
  position: relative;
}

.hero-title-accent::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  clip-path: inset(0 100% 0 0);
  animation: text-fill 1.5s var(--ease-expo) 1.2s forwards;
}

@keyframes text-fill {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0% 0 0);
  }
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
  max-width: 480px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-expo) 1.0s forwards;
}

.hero-subtitle em {
  color: var(--white);
  font-style: normal;
  font-weight: 600;
}

.hero-cta-wrap {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up 0.8s var(--ease-expo) 1.3s forwards;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  padding: 18px 44px;
  background: transparent;
  border: 1px solid rgba(255, 87, 34, 0.5);
  border-radius: 100px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  overflow: hidden;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.4s;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  opacity: 0;
  transition: opacity 0.4s var(--ease-expo);
  border-radius: 100px;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  border-color: transparent;
  box-shadow: 0 0 60px rgba(255, 87, 34, 0.4);
}

.btn-text,
.btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-expo);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(6px);
}

.btn-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 87, 34, 0.3), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
  animation: glow-pulse 2s ease-in-out infinite;
}

.btn-primary:hover .btn-glow {
  opacity: 1;
}

@keyframes glow-pulse {

  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
  opacity: 0;
  animation: fade-up 0.8s var(--ease-expo) 2s forwards;
}

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

@keyframes scroll-pulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.hero-scroll-indicator span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--white-dim);
}

.hero-counter-wrap {
  position: absolute;
  bottom: 48px;
  right: 5%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 2;
  opacity: 0;
  animation: fade-in 1s var(--ease-expo) 2.2s forwards;
}

.hero-counter {
  text-align: right;
}

.counter-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1;
}

.counter-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes title-reveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ---- HERO CAROUSEL ---- */
.hero-carousel-wrap {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  z-index: 10;
  opacity: 0;
  animation: fade-up 1s var(--ease-expo) 0.5s forwards;
}

.carousel-btn {
  background: transparent;
  border: none;
  color: var(--white);
  padding: 15px;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
}

.carousel-btn svg {
  width: 32px;
  height: 32px;
}

.carousel-btn:hover {
  opacity: 1;
  transform: scale(1.15);
}

.carousel-track-container {
  position: relative;
  width: 480px;
  height: 280px;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item {
  position: absolute;
  width: 460px;
  height: 270px;
  border-radius: 16px;
  overflow: hidden;
  background: #ccc;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s, z-index 0s;
  will-change: transform, opacity;
}

.carousel-item:not(.active) {
  filter: brightness(0.85);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s, filter 0.6s, z-index 0s;
}

.carousel-card {
  width: 100%;
  height: 100%;
  background: #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  z-index: 0;
  transition: opacity 0.5s, filter 0.5s;
}

.carousel-item.active .carousel-img {
  opacity: 1;
}

.carousel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 1;
}

.play-btn {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
  cursor: none;
  position: relative;
  z-index: 2;
}

.play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}

.carousel-item.active .play-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.35);
  border-color: #fff;
  color: #fff;
}

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-strip {
  background: var(--accent);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.marquee-strip-rev {
  background: var(--dark2);
  border-top: 1px solid rgba(255, 87, 34, 0.2);
  border-bottom: 1px solid rgba(255, 87, 34, 0.2);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-track-rev {
  animation-direction: reverse;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.2em;
  color: var(--black);
  padding: 0 32px;
}

.marquee-strip-rev .marquee-track span {
  color: var(--white-dim);
}

.marquee-track .dot {
  padding: 0 8px;
  opacity: 0.5;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.05;
  color: var(--white);
}

.section-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   SERVICES SECTION (CINEMATIC REEL EXPERIENCE)
   ============================================= */
.services-cinema {
  position: relative;
  padding: clamp(90px, 10vw, 140px) 5% clamp(80px, 8vw, 120px);
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 87, 34, 0.16) 0%, transparent 38%),
    radial-gradient(circle at 84% 82%, rgba(255, 152, 0, 0.12) 0%, transparent 40%),
    linear-gradient(180deg, #121110 0%, #0a0909 100%);
  overflow: hidden;
}

.services-cinema::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 90px);
  mask-image: linear-gradient(180deg, transparent 0%, black 16%, black 84%, transparent 100%);
  opacity: 0.35;
  pointer-events: none;
}

.services-cinema-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
}

.services-glow-a {
  width: 520px;
  height: 520px;
  top: -180px;
  left: -120px;
  background: rgba(255, 87, 34, 0.34);
}

.services-glow-b {
  width: 420px;
  height: 420px;
  bottom: -150px;
  right: -80px;
  background: rgba(255, 193, 7, 0.3);
}

.services-gridline {
  position: absolute;
  inset: 12% 5% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
}

.services-header {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.services-header .section-heading {
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.55);
}

.services-lead {
  max-width: 740px;
  margin: 24px auto 0;
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.8;
}

.services-reel {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  height: 560px;
  align-items: stretch;
}

.reel-card {
  position: relative;
  flex: 1;
  height: 100%;
  min-width: 0;
  border-radius: 22px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--dark2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  transition:
    flex 0.6s var(--ease-expo),
    box-shadow 0.45s var(--ease-expo),
    border-color 0.45s var(--ease-expo);
}

.reel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  opacity: 0.5;
  transition: transform 0.8s var(--ease-expo), opacity 0.6s var(--ease-expo);
  z-index: -2;
}

.reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 11, 10, 0.2) 0%, rgba(12, 11, 10, 0.62) 45%, rgba(12, 11, 10, 0.94) 100%);
  z-index: -1;
}

.reel-card--drone::before {
  background-image: url('assets/images/drone.webp');
}

.reel-card--photo::before {
  background-image: url('assets/images/photography.jpg');
}

.reel-card--3d::before {
  background-image: url('assets/images/3D Animation.jpg');
}

.reel-card--podcast::before {
  background-image: url('assets/images/PODCAST.jpeg');
}

.reel-card--vfx::before {
  background-image: url('assets/images/VFX.jpg');
}

.services-reel:hover .reel-card {
  flex: 0.9;
}

.reel-card.is-active,
.services-reel .reel-card:hover,
.services-reel .reel-card:focus-within {
  flex: 3;
  border-color: rgba(255, 152, 0, 0.65);
  box-shadow: inset 0 0 45px rgba(255, 87, 34, 0.18), 0 8px 32px rgba(0, 0, 0, 0.45);
}

.reel-card.is-active::before,
.services-reel .reel-card:hover::before,
.services-reel .reel-card:focus-within::before {
  transform: scale(1.08);
  opacity: 0.65;
}

.reel-perf {
  position: absolute;
  top: 16px;
  bottom: 16px;
  width: 8px;
  border-radius: 999px;
  pointer-events: none;
  background:
    repeating-linear-gradient(180deg,
      rgba(2, 2, 2, 0.78) 0,
      rgba(2, 2, 2, 0.78) 8px,
      rgba(255, 255, 255, 0.1) 8px,
      rgba(255, 255, 255, 0.1) 14px);
  opacity: 0.6;
}

.reel-perf-left {
  left: 10px;
}

.reel-perf-right {
  right: 10px;
}

.reel-card-top {
  display: grid;
  gap: 14px;
}

.reel-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.reel-index {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  line-height: 1;
  color: var(--white);
}

.reel-chip {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(12, 11, 10, 0.44);
}

.reel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(12, 11, 10, 0.35);
  color: var(--white);
}

.reel-icon svg {
  width: 24px;
  height: 24px;
}

.reel-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.25vw, 2.55rem);
  line-height: 1;
  color: var(--white);
  max-width: 14ch;
}

.reel-card-body {
  display: grid;
  gap: 14px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s var(--ease-expo), transform 0.4s var(--ease-expo);
}

.reel-card.is-active .reel-card-body,
.reel-card:hover .reel-card-body,
.reel-card:focus-within .reel-card-body {
  opacity: 1;
  transform: translateY(0);
}

.reel-desc {
  color: var(--white-dim);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 32ch;
}

.reel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.reel-tags span {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(12, 11, 10, 0.45);
}

.reel-cta {
  align-self: flex-start;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 87, 34, 0.7);
  background: rgba(255, 87, 34, 0.16);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: none;
  transition: background 0.3s var(--ease-expo), transform 0.3s var(--ease-expo), border-color 0.3s var(--ease-expo);
}

.reel-cta:hover {
  background: rgba(255, 87, 34, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.services-flow {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.flow-step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -14px;
  top: 50%;
  width: 14px;
  height: 1px;
  background: rgba(255, 152, 0, 0.65);
}

.flow-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1;
  color: var(--accent2);
}

.flow-label {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

/* =============================================
   ABOUT â€” STATEMENT (BOLD MANIFESTO)
   ============================================= */
.about-statement {
  background: var(--black);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Diagonal split background */
.about-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 50%, var(--black) 50%);
  z-index: 0;
}

.statement-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .statement-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}



.manifesto-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.manifesto-tag::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.manifesto-heading {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 0;
}

.manifesto-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.statement-right {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.statement-body {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.9;
  color: var(--white-dim);
  font-weight: 300;
  border-left: 2px solid var(--accent);
  padding-left: 28px;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
  color: var(--white);
  background: linear-gradient(135deg, var(--white) 0%, var(--accent2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* =============================================
   PROCESS RIBBON (NEW horizontal scroll strip)
   ============================================= */
.process-ribbon {
  background: var(--accent);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.process-track {
  display: flex;
  align-items: stretch;
  animation: marquee-left 20s linear infinite;
  width: max-content;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 48px;
  border-right: 1px solid rgba(12, 11, 10, 0.2);
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--black);
}

.process-num {
  font-size: 0.7rem;
  opacity: 0.5;
  letter-spacing: 0.15em;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =============================================
   FAQ â€” CINEMATIC ACCORDION
   ============================================= */
.faq-section {
  background: var(--dark);
  padding: clamp(80px, 10vw, 140px) 5%;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: 'FAQ';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 22rem);
  color: rgba(255, 87, 34, 0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 64px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  padding: 28px 0;
  cursor: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.3s;
}

.faq-btn:hover {
  color: var(--accent);
}

.faq-q {
  flex: 1;
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-expo), border-color 0.3s, background 0.3s;
  color: var(--white);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  border-color: var(--accent);
  background: var(--accent);
  color: var(--black);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-expo);
}

.faq-inner {
  padding: 0 0 32px 0;
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 700px;
}

/* =============================================
   FINAL CTA â€” FULL BLEED ORANGE EXPLOSION
   ============================================= */
.final-cta {
  background: var(--black);
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(255, 87, 34, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(255, 152, 0, 0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
}

.cta-bg-elements {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-particles {
  position: absolute;
  inset: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
}

.cta-eyebrow-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  border: 1px solid rgba(255, 87, 34, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 12rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.cta-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-large {
  padding: 22px 60px;
  font-size: 1.1rem;
}

/* =============================================
   FOOTER â€” EDITORIAL DARK
   ============================================= */
.footer {
  background: var(--dark2);
  padding: 80px 5% 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: 'BXPROD';
  position: absolute;
  bottom: -4%;
  left: -1%;
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 20rem);
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: start;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-brand .nav-logo {
  font-size: 3rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}

.footer-email {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-decoration: none;
  text-transform: lowercase;
  transition: opacity 0.3s;
}

.footer-email:hover {
  opacity: 0.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 600px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 8px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.08em;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--white-dim);
}

.footer-social {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* =============================================
   CONTACT POPUP â€” GLASSMORPHISM OVERLAY
   ============================================= */
.contact-popup {
  position: fixed;
  inset: 0;
  background: rgba(12, 11, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-expo);
  overflow: hidden;
}

.contact-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-box {
  background: rgba(27, 24, 22, 0.95);
  border: 1px solid rgba(255, 87, 34, 0.2);
  padding: 28px 40px 32px;
  border-radius: 16px;
  width: 90%;
  max-width: 460px;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  position: relative;
  margin: auto;
  transform: translateY(50px) scale(0.95);
  transition: transform 0.4s var(--ease-expo);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(255, 87, 34, 0.08);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.contact-popup.active .popup-box {
  transform: translateY(0) scale(1);
}

/* Modal responsive pour écrans à faible hauteur — tout tient sans scroll */
@media (max-height: 700px) {
  .contact-popup {
    padding: 12px 16px;
  }
  .popup-box {
    padding: 20px 32px 24px;
  }
  .popup-header {
    margin-bottom: 12px;
  }
  .popup-header h3 {
    font-size: 1.75rem;
    margin-bottom: 2px;
  }
  .popup-header p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  .popup-form {
    gap: 8px;
  }
  .popup-box .input-group textarea {
    height: 70px;
    min-height: 70px;
    max-height: 70px;
    resize: none;
  }
  .popup-box .input-group input,
  .popup-box .input-group textarea,
  .popup-box .input-group select {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  .popup-box .input-group label {
    top: 10px;
    left: 14px;
  }
}

@media (max-height: 500px) {
  .contact-popup {
    padding: 8px 12px;
  }
  .popup-box {
    padding: 16px 24px 20px;
  }
  .popup-header h3 {
    font-size: 1.4rem;
  }
  .popup-header p {
    font-size: 0.75rem;
  }
  .popup-form {
    gap: 6px;
  }
  .popup-box .input-group textarea {
    height: 56px;
    min-height: 56px;
    max-height: 56px;
  }
  .popup-box .input-group input,
  .popup-box .input-group textarea,
  .popup-box .input-group select {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  .popup-box .input-group label {
    top: 8px;
    left: 12px;
  }
  .popup-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white-dim);
  font-size: 1rem;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, background 0.3s, transform 0.3s;
}

.popup-close:hover {
  color: var(--accent);
  background: rgba(255, 87, 34, 0.1);
  border-color: var(--accent);
  transform: rotate(90deg);
}

.popup-header {
  margin-bottom: 18px;
  flex-shrink: 0;
}

.popup-header h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.popup-header p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.45;
  font-weight: 300;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.popup-box .input-group textarea {
  height: 78px;
  min-height: 78px;
  max-height: 78px;
  resize: none;
}

.popup-box .input-group input,
.popup-box .input-group textarea,
.popup-box .input-group select {
  padding: 14px 16px;
  font-size: 0.92rem;
}

.popup-box .input-group label {
  top: 14px;
  left: 16px;
}

.input-group {
  position: relative;
}

.input-group input,
.input-group textarea,
.input-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 20px;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  cursor: none;
  outline: none;
  appearance: none;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
  border-color: var(--accent);
  background: rgba(255, 87, 34, 0.05);
}

.input-group label {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 0.9rem;
  color: var(--white-dim);
  transition: all 0.3s var(--ease-expo);
  pointer-events: none;
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
  top: -10px;
  left: 14px;
  font-size: 0.7rem;
  color: var(--accent);
  background: var(--dark2);
  padding: 0 6px;
  letter-spacing: 0.08em;
}

.input-group select:focus ~ label,
.input-group select:valid ~ label {
  top: -10px;
  left: 14px;
  font-size: 0.7rem;
  color: var(--accent);
  background: var(--dark2);
  padding: 0 6px;
  letter-spacing: 0.08em;
}

.input-group select option {
  background: var(--dark2);
  color: var(--white);
}

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

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

/* =============================================
   MAGNETIC BUTTON
   ============================================= */
.magnetic {
  transition: transform 0.4s var(--ease-circ);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-counter-wrap {
    display: none;
  }

  .services-cinema {
    padding: 92px 5% 84px;
  }

  .services-header {
    text-align: left;
    margin-bottom: 34px;
  }

  .services-lead {
    margin-left: 0;
    margin-right: 0;
  }

  .services-reel {
    flex-direction: column;
    height: auto;
    gap: 18px;
  }

  .services-reel:hover .reel-card,
  .services-reel .reel-card:hover,
  .services-reel .reel-card:focus-within,
  .reel-card,
  .reel-card.is-active {
    flex: 1;
  }

  .reel-card {
    height: auto;
    min-height: 320px;
    padding: 20px;
  }

  .reel-card-body {
    opacity: 1;
    transform: none;
  }

  .reel-title {
    max-width: none;
  }

  .services-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .carousel-track-container {
    width: 320px;
    height: 200px;
  }

  .carousel-item {
    width: 300px;
    height: 190px;
  }

  .hero-carousel-wrap {
    gap: 20px;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .services-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reel-card {
    height: auto;
    min-height: 340px;
  }

  .statement-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-btn {
    font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(4rem, 20vw, 8rem);
  }

  .popup-box {
    padding: 40px 24px;
  }

  .footer-top {
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .play-btn {
    width: 48px;
    height: 48px;
  }

  .play-btn svg {
    width: 20px;
    height: 20px;
  }

  .carousel-track-container {
    width: 260px;
    height: 170px;
  }

  .carousel-item {
    width: 240px;
    height: 160px;
  }

  .carousel-btn svg {
    width: 24px;
    height: 24px;
  }

  .services-cinema {
    padding: 80px 5% 74px;
  }

  .services-header .section-heading {
    font-size: clamp(2.35rem, 11vw, 3.2rem);
  }

  .reel-card {
    min-height: 300px;
    border-radius: 18px;
    padding: 18px;
  }

  .reel-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .reel-icon {
    width: 44px;
    height: 44px;
  }

  .reel-icon svg {
    width: 20px;
    height: 20px;
  }

  .reel-title {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .reel-desc {
    font-size: 0.88rem;
  }

  .reel-tags span {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .services-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .faq-btn {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    padding: 20px 0;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }

  .section-heading {
    font-size: clamp(2.5rem, 6vw, 4rem);
  }

  .contact-section {
    padding: 80px 5% 0;
  }
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--dark);
  padding: 120px 5% 0;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 87, 34, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  padding-bottom: 80px;
}

.contact-left .section-heading {
  margin-bottom: 24px;
}

.contact-desc {
  color: var(--white-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 380px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white-dim);
  font-size: 0.95rem;
}

.cd-icon {
  font-size: 1.1rem;
  width: 32px;
  text-align: center;
  flex-shrink: 0;
}

.contact-detail-item a {
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-detail-item a:hover {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-success {
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 87, 34, 0.1);
  border: 1px solid rgba(255, 87, 34, 0.3);
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 8px;
}

.form-error {
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.3);
  color: #ff3b30;
  font-size: 0.9rem;
  margin-top: 8px;
}

.contact-map {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  filter: grayscale(100%) invert(92%) contrast(90%) brightness(80%);
  opacity: 0.7;
  transition: filter 0.5s, opacity 0.5s;
}

.contact-map iframe:hover {
  filter: grayscale(80%) invert(0%) contrast(100%) brightness(85%);
  opacity: 0.9;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 9000;
  transition: transform 0.3s var(--ease-expo), box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-btn svg {
  width: 32px;
  height: 32px;
}

.whatsapp-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2s ease-in-out infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* =============================================
   POPUP CLOSE BUTTON UPGRADE
   ============================================= */
.popup-close svg {
  width: 20px;
  height: 20px;
}