/* ============================================================
   HOME PAGE — Styles (V3 Redesign)
   ============================================================ */

/* ---------- Hero ---------- */
.home-hero { min-height: 100vh; position: relative; }
.home-hero .hero-bg img { transform: scale(1.05); transition: transform 8s ease; filter: brightness(0.5); }
.home-hero .hero-content { padding-bottom: 40px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-10); border: 1px solid var(--gold-20);
  border-radius: 100px; padding: 8px 20px; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.06em; color: var(--gold);
  margin-bottom: 28px; backdrop-filter: blur(10px);
}
.hero-badge .badge-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulseGlow 2s infinite; }
.hero-subtitle { font-size: clamp(1.1rem, 1.5vw, 1.3rem) !important; color: var(--text-secondary) !important; line-height: 1.8 !important; }
.hero-stats { display: flex; gap: 48px; margin-top: 50px; padding-top: 40px; border-top: 1px solid var(--border-subtle); }
.hero-stat { text-align: left; }
.hero-stat .stat-number { font-family: var(--font-heading); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.hero-stat .stat-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================================================
   SERVICES OVERVIEW — Warm Dark + Bento Grid
   Same warm amber as the Benefits section (NOT blue!)
   ============================================================ */
.services-overview {
  background: linear-gradient(160deg, #0f0d08 0%, #151008 40%, #110e06 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Orbs — warm gold tones */
.services-bg-effects { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4; animation: orbDrift 12s ease-in-out infinite alternate; }
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(212,175,55,0.2), transparent 70%); top: -10%; right: -5%; animation-duration: 14s; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(180,130,40,0.15), transparent 70%); bottom: -15%; left: -5%; animation-duration: 18s; animation-delay: -4s; }

@keyframes orbDrift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212,175,55,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridPulse 6s ease-in-out infinite;
}
@keyframes gridPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.7; } }

.floating-rings { position: absolute; inset: 0; pointer-events: none; }
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(212,175,55,0.06); }
.ring-1 { width: 600px; height: 600px; top: -200px; right: -200px; animation: ringFloat 20s linear infinite; }
.ring-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation: ringFloat 15s linear infinite reverse; }
@keyframes ringFloat { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.services-overview .container { position: relative; z-index: 1; }

/* --- Bento Grid Layout --- */
.bento-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 20px;
}

.bento-card {
  position: relative;
  background: rgba(20, 16, 8, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(212,175,55,0.03), transparent 40%, rgba(212,175,55,0.02));
  pointer-events: none;
}

.bento-card:hover {
  border-color: rgba(212,175,55,0.25);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(212,175,55,0.06);
}

/* Shine sweep on hover */
.bento-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.06), transparent);
  transition: left 0.8s ease;
  z-index: 1;
  pointer-events: none;
}
.bento-card:hover .bento-shine { left: 100%; }

.bento-inner {
  position: relative; z-index: 2;
  padding: 48px 36px;
}

.bento-number {
  font-family: var(--font-heading);
  font-size: 5rem; font-weight: 800; line-height: 1;
  color: rgba(212,175,55,0.04);
  position: absolute; top: 20px; right: 28px;
  transition: color 0.5s ease;
}
.bento-card:hover .bento-number { color: rgba(212,175,55,0.1); }

.bento-icon-ring {
  width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.04));
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 18px; color: var(--gold);
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-icon-ring svg { width: 30px; height: 30px; }
.bento-card:hover .bento-icon-ring {
  background: var(--gold); color: #0f0d08; border-color: var(--gold);
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 30px rgba(212,175,55,0.3);
}

.bento-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 14px; }
.bento-card p { font-size: 0.92rem; line-height: 1.7; color: rgba(200,190,170,0.75); }

.bento-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: 0.82rem; font-weight: 600;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.bento-link span { display: inline-block; transition: transform 0.3s ease; }
.bento-card:hover .bento-link span { transform: translateX(6px); }

/* Featured card spans full height of right column */
.bento-featured { grid-row: 1 / 3; }
.bento-featured .bento-inner { padding: 56px 44px; }
.bento-featured h3 { font-size: 1.8rem; }
.bento-featured p { font-size: 1rem; }

/* Wide bottom card spans full width */
.bento-wide { grid-column: 1 / -1; }
.bento-wide .bento-inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 32px;
}
.bento-wide .bento-icon-ring { margin-bottom: 0; }
.bento-wide h3 { margin-bottom: 6px; }

/* Background pattern for featured + wide cards */
.bento-bg-pattern {
  position: absolute; bottom: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(circle at center, rgba(212,175,55,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* ============================================================
   TRAINING OPTIONS — Cinematic Cards with Video BG
   ============================================================ */
.training-options {
  position: relative;
  overflow: hidden;
}

.training-bg-video {
  position: absolute; inset: 0; z-index: 0;
}
.training-bg-video video {
  width: 100%; height: 100%; object-fit: cover;
}
.training-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.88) 0%, rgba(10,10,10,0.82) 50%, rgba(0,0,0,0.9) 100%);
}

.training-options .container { position: relative; z-index: 1; }

.cinema-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cinema-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.1);
  background: rgba(15,15,15,0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cinema-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 50px rgba(212,175,55,0.05);
}

.cinema-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.cinema-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}
.cinema-card:hover .cinema-img img { transform: scale(1.1); filter: brightness(0.7); }

.cinema-img-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.8) 100%);
}

.cinema-tag {
  position: absolute; top: 16px; left: 16px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 6px 16px; border-radius: 6px;
  box-shadow: 0 4px 16px rgba(212,175,55,0.3);
}

.cinema-body {
  padding: 28px 24px 32px;
}
.cinema-body h3 { font-size: 1.3rem; color: #fff; margin-bottom: 12px; }
.cinema-body p { font-size: 0.88rem; color: rgba(200,200,200,0.75); line-height: 1.65; margin-bottom: 18px; }

.cinema-features {
  display: flex; flex-wrap: wrap; gap: 8px 16px;
  margin-bottom: 20px;
}
.cinema-features span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 500; color: rgba(212,175,55,0.9);
}
.cinema-features svg { width: 14px; height: 14px; }

.cinema-link {
  font-size: 0.82rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
.cinema-link:hover { letter-spacing: 0.14em; }

/* ============================================================
   BENEFITS — Warm Dark Amber Ambiance
   ============================================================ */
.benefits-section {
  background: linear-gradient(160deg, #0f0d08 0%, #151008 40%, #110e06 100%);
  position: relative; overflow: hidden;
}
.benefits-ambient { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.ambient-glow { position: absolute; border-radius: 50%; filter: blur(120px); }
.ambient-glow-1 { width: 500px; height: 500px; background: rgba(212,175,55,0.06); top: -100px; left: -100px; animation: ambientPulse 8s ease-in-out infinite; }
.ambient-glow-2 { width: 400px; height: 400px; background: rgba(180,130,40,0.05); bottom: -100px; right: -100px; animation: ambientPulse 10s ease-in-out infinite; animation-delay: -3s; }
@keyframes ambientPulse { 0%, 100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.1); } }

.benefits-section .container { position: relative; z-index: 1; }
.benefits-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.benefits-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.benefits-image img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; }
.benefits-image::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); border: 1px solid var(--gold-20); pointer-events: none; }
.benefits-image-accent { position: absolute; bottom: -20px; right: -20px; width: 200px; height: 200px; border: 2px solid rgba(212,175,55,0.12); border-radius: var(--radius-lg); pointer-events: none; z-index: -1; }

.benefits-list { display: flex; flex-direction: column; gap: 20px; }
.benefit-item { display: flex; gap: 20px; align-items: flex-start; padding: 22px; border-radius: 14px; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid transparent; }
.benefit-item:hover { background: rgba(212,175,55,0.04); border-color: rgba(212,175,55,0.1); transform: translateX(8px); }
.benefit-icon { width: 48px; height: 48px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(212,175,55,0.15), rgba(212,175,55,0.05)); border: 1px solid rgba(212,175,55,0.2); border-radius: 12px; color: var(--gold); transition: all 0.4s ease; }
.benefit-item:hover .benefit-icon { background: var(--gold); color: #0f0d08; box-shadow: 0 6px 24px rgba(212,175,55,0.3); }
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-item h4 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; color: #fff; }
.benefit-item p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.55; }

/* ============================================================
   TRANSFORMATIONS — Auto-Scrolling Marquee (CSS only)
   ============================================================ */
.transformations {
  background: linear-gradient(180deg, #0a0a0a 0%, #111 50%, #0e0e0e 100%);
  overflow: hidden;
  padding-bottom: var(--section-padding);
}
.transformations-header { text-align: center; margin-bottom: 60px; }
.transformations-header p { margin: 0 auto; text-align: center; }

/* Marquee container - full viewport width */
.transform-marquee {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-card {
  position: relative;
  flex-shrink: 0;
  width: 380px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: scale(1.04);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,175,55,0.08);
  z-index: 2;
}

.marquee-img {
  width: 100%; height: 100%;
}
.marquee-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.marquee-card:hover .marquee-img img { transform: scale(1.08); }

.marquee-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  display: flex; align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.marquee-card:hover .marquee-overlay { opacity: 1; }

.marquee-label {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600; color: var(--gold);
  padding: 8px 20px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
}

/* ============================================================
   CLOSING CTA — Video Background
   ============================================================ */
.home-cta {
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.cta-video-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-video-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.cta-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(0,0,0,0.82) 0%,
    rgba(10,10,10,0.7) 40%,
    rgba(0,0,0,0.85) 100%
  );
}

.home-cta .container {
  position: relative;
  z-index: 1;
}

.home-cta h2 {
  max-width: 650px;
  margin: 0 auto 24px;
}

.home-cta p {
  margin: 0 auto 40px;
  text-align: center;
}

.cta-pulse-btn {
  animation: pulseGlow 3s ease-in-out infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-featured { grid-row: auto; }
  .bento-wide .bento-inner { grid-template-columns: auto 1fr; }
  .bento-wide .bento-link { grid-column: 1 / -1; }

  .cinema-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .benefits-layout { grid-template-columns: 1fr; gap: 40px; }
  .benefits-image { max-width: 500px; }

  .hero-stats { gap: 32px; }

  .marquee-card { width: 300px; height: 400px; }
}

@media (max-width: 768px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide .bento-inner { grid-template-columns: 1fr; text-align: center; }
  .bento-wide .bento-icon-ring { margin: 0 auto 16px; }

  .cinema-cards { max-width: 100%; }
  .cinema-img { height: 220px; }

  .hero-stats { flex-direction: column; gap: 20px; }

  .marquee-card { width: 260px; height: 340px; }
}
