/**
 * SYNDIWISE — Cinematic Scroll & Premium Visual System
 * Imported after main.css; adds scroll experience, hero imagery,
 * zoom sections, horizontal scroll, perspective cards, transitions.
 */

/* ═══════════════════════════════════════════════════
   0. CSS CUSTOM PROPERTIES (cinema extensions)
═══════════════════════════════════════════════════ */
:root {
  --cinema-duration: 0.75s;
  --cinema-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --glass-bg: rgba(11, 15, 24, 0.6);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --blur-glass: blur(20px);
  --perspective: 900px;
  --hero-height: 100svh;
  --section-gap: clamp(5rem, 10vw, 9rem);
}

/* ═══════════════════════════════════════════════════
   1. SCROLL PROGRESS BAR
═══════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(var(--progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, #27AA80, #34D399, #27AA80);
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  z-index: 9999;
  transform-origin: left;
  transition: width 0.05s linear;
}
@keyframes progressShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ═══════════════════════════════════════════════════
   2. PAGE TRANSITION OVERLAY
═══════════════════════════════════════════════════ */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 99999;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
  will-change: transform;
}

/* ═══════════════════════════════════════════════════
   3. HERO — Cinematic Background System
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: var(--hero-height);
  overflow: hidden;
  background: #050810;
  display: flex;
  align-items: center;
}

/* Cinematic gradient bg fallback (shows when no img set) */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(39, 170, 128, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(52, 211, 153, 0.07) 0%, transparent 50%),
    linear-gradient(160deg, #0B0F18 0%, #050810 50%, #0d1420 100%);
  z-index: 0;
}

/* Noise overlay for film-grain feel */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

/* Hero background image (set via Customizer or inline style) */
.hero__bg-img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center 30%;
  transform-origin: center;
  will-change: transform;
  z-index: 0;
  filter: brightness(0.55) saturate(1.1);
}

/* Dark gradient overlay on top of bg image */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5, 8, 16, 0.85) 0%, rgba(5, 8, 16, 0.3) 100%),
    linear-gradient(to top, rgba(5, 8, 16, 0.9) 0%, transparent 50%);
  z-index: 2;
}

/* Canvas (Three.js) stays behind content */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 5;
  will-change: transform, opacity;
}

/* Animated gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: clamp(300px, 50vw, 700px);
  height: clamp(300px, 50vw, 700px);
  background: radial-gradient(circle, rgba(39, 170, 128, 0.18) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: -2s;
}
.hero__orb--2 {
  width: clamp(200px, 35vw, 500px);
  height: clamp(200px, 35vw, 500px);
  background: radial-gradient(circle, rgba(52, 211, 153, 0.10) 0%, transparent 70%);
  bottom: 10%;
  left: 5%;
  animation-delay: -5s;
  animation-duration: 11s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-20px, 15px) scale(0.97); }
}

/* ═══════════════════════════════════════════════════
   4. HERO BADGE
═══════════════════════════════════════════════════ */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem 0.45rem 0.9rem;
  background: rgba(39, 170, 128, 0.12);
  border: 1px solid rgba(39, 170, 128, 0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-light);
  backdrop-filter: blur(12px);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(39, 170, 128, 0.6);
  animation: pulseDot 2.4s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(39, 170, 128, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(39, 170, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(39, 170, 128, 0); }
}

/* ═══════════════════════════════════════════════════
   5. HEADER — Scroll state
═══════════════════════════════════════════════════ */
.site-header,
.header {
  transition: transform 0.35s var(--cinema-ease),
              background 0.35s ease,
              box-shadow 0.35s ease,
              backdrop-filter 0.35s ease;
}
.header--scrolled {
  background: rgba(11, 15, 24, 0.88) !important;
  backdrop-filter: blur(22px) saturate(1.4) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.4) !important;
}
.header--hidden {
  transform: translateY(-110%) !important;
}

/* ═══════════════════════════════════════════════════
   6. CINEMATIC ZOOM SECTIONS
═══════════════════════════════════════════════════ */
.zoom-section {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.zoom-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  will-change: transform;
  display: block;
}
.zoom-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 8, 16, 0.85) 0%,
    rgba(5, 8, 16, 0.3) 40%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 4vw, 3rem);
}

/* ═══════════════════════════════════════════════════
   7. STORY PIN SECTIONS
═══════════════════════════════════════════════════ */
.story-pin {
  position: relative;
  min-height: 100vh;
}
.story-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity, transform;
}
.story-panel:first-child {
  position: relative;
}

/* ═══════════════════════════════════════════════════
   8. HORIZONTAL SCROLL — Property Showcase
═══════════════════════════════════════════════════ */
.h-scroll {
  overflow: hidden;
  position: relative;
}
.h-scroll__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 2rem 5vw;
  will-change: transform;
}
.h-scroll__card {
  width: min(80vw, 440px);
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-glass);
  box-shadow: var(--glass-shadow);
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease;
}
.h-scroll__card:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(39,170,128,0.2);
}
.h-scroll__card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.h-scroll__card-body {
  padding: 1.4rem 1.6rem 1.6rem;
}
.h-scroll__card-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.4rem;
}
.h-scroll__card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.h-scroll__card-loc {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ═══════════════════════════════════════════════════
   9. PERSPECTIVE / 3D CARDS
═══════════════════════════════════════════════════ */
.perspective-card,
.prop-card,
.service-card,
.feature-card {
  transform-style: preserve-3d;
  perspective: var(--perspective);
  will-change: transform;
}

/* ═══════════════════════════════════════════════════
   10. CLIP-PATH TEXT REVEAL
═══════════════════════════════════════════════════ */
.reveal-clip {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
}

/* ═══════════════════════════════════════════════════
   11. SPLIT WORD REVEAL
═══════════════════════════════════════════════════ */
.split-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.15;
}
.split-word {
  display: inline-block;
}

/* ═══════════════════════════════════════════════════
   12. GLASSMORPHISM PANELS
═══════════════════════════════════════════════════ */
.glass-panel {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  box-shadow: var(--glass-shadow);
  border-radius: 20px;
}
.glass-panel--light {
  background: rgba(255, 255, 255, 0.04);
}
.glass-panel--green {
  background: rgba(39, 170, 128, 0.08);
  border-color: rgba(39, 170, 128, 0.2);
}

/* ═══════════════════════════════════════════════════
   13. FLOATING STAT CARDS (hero + sections)
═══════════════════════════════════════════════════ */
.float-card {
  position: absolute;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-glass);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  pointer-events: none;
  z-index: 10;
}
.float-card__value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
}
.float-card__label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.float-card--tl { top: 12%;  left: 5%; }
.float-card--tr { top: 20%;  right: 5%; }
.float-card--bl { bottom: 18%; left: 8%; }
.float-card--br { bottom: 22%; right: 6%; }

/* ═══════════════════════════════════════════════════
   14. SECTION BACKGROUNDS
═══════════════════════════════════════════════════ */

/* Full-bleed cinematic section with bg image */
.section-cinema {
  position: relative;
  overflow: hidden;
  padding: var(--section-gap) 0;
}
.section-cinema__bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.8);
  will-change: transform;
}
.section-cinema__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 8, 16, 0.97) 0%,
    rgba(11, 15, 24, 0.85) 50%,
    rgba(31, 41, 55, 0.8) 100%
  );
}
.section-cinema__content {
  position: relative;
  z-index: 5;
}

/* Alternate dark sections */
.section--alt {
  background:
    radial-gradient(ellipse 70% 50% at 0% 50%, rgba(39,170,128,0.05) 0%, transparent 60%),
    #0D111C;
}

/* ═══════════════════════════════════════════════════
   15. PROPERTY CARD — Enhanced
═══════════════════════════════════════════════════ */
.prop-card {
  border-radius: 20px;
  overflow: hidden;
  background: #111827;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  position: relative;
}
.prop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,170,128,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
  border-radius: inherit;
}
.prop-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(39,170,128,0.25);
  border-color: rgba(39,170,128,0.2);
}
.prop-card:hover::before {
  opacity: 1;
}

.prop-card__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.prop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--cinema-ease);
}
.prop-card:hover .prop-card__img {
  transform: scale(1.08);
}
.prop-card__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.prop-card__badge--sale    { background: var(--primary); color: #fff; }
.prop-card__badge--rent    { background: #3B82F6; color: #fff; }
.prop-card__badge--new     { background: #F59E0B; color: #000; }
.prop-card__badge--sold    { background: rgba(0,0,0,0.6); color: #9CA3AF; }

.prop-card__body {
  padding: 1.25rem 1.4rem 1.4rem;
  position: relative;
  z-index: 2;
}
.prop-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 0.3rem;
}
.prop-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #F9FAFB;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.prop-card__loc {
  font-size: 0.8rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}
.prop-card__specs {
  display: flex;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: #9CA3AF;
}
.prop-card__spec {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.prop-card__spec svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   16. SERVICES — Cinematic layout
═══════════════════════════════════════════════════ */
.services-cinema {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services-cinema { grid-template-columns: 1fr; }
}
.services-cinema__item {
  background: #0B0F18;
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
}
.services-cinema__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(39,170,128,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services-cinema__item:hover {
  background: #0d1420;
}
.services-cinema__item:hover::before {
  opacity: 1;
}
.services-cinema__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(39,170,128,0.12);
  border: 1px solid rgba(39,170,128,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: background 0.3s ease, transform 0.3s ease;
}
.services-cinema__item:hover .services-cinema__icon {
  background: rgba(39,170,128,0.22);
  transform: scale(1.08) rotate(-3deg);
}
.services-cinema__title {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 0.6rem;
}
.services-cinema__desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.7;
}
.services-cinema__arrow {
  margin-top: 1.5rem;
  color: var(--primary);
  font-size: 1.2rem;
  display: inline-block;
  transition: transform 0.3s ease;
}
.services-cinema__item:hover .services-cinema__arrow {
  transform: translateX(6px);
}

/* ═══════════════════════════════════════════════════
   17. CTA BANNER — Cinematic
═══════════════════════════════════════════════════ */
.cta-cinema {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, #0f1e16 0%, #1a2d22 50%, #0f1e16 100%);
  border: 1px solid rgba(39,170,128,0.2);
}
.cta-cinema::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(39,170,128,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(52,211,153,0.08) 0%, transparent 50%);
  animation: ctaGlow 5s ease-in-out infinite alternate;
}
@keyframes ctaGlow {
  0%   { opacity: 0.8; }
  100% { opacity: 1.2; }
}
.cta-cinema::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,170,128,0.12) 0%, transparent 70%);
  filter: blur(30px);
}

/* ═══════════════════════════════════════════════════
   18. STATS ROW — Enhanced
═══════════════════════════════════════════════════ */
.stats-cinema {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  margin: 3rem 0;
}
.stats-cinema__item {
  background: rgba(11,15,24,0.9);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stats-cinema__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease, width 0.4s ease;
}
.stats-cinema__item:hover::after {
  opacity: 1;
  width: 70%;
}
.stats-cinema__value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--primary-light);
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
}
.stats-cinema__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: #6B7280;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.4rem;
  display: block;
}

/* ═══════════════════════════════════════════════════
   19. TIMELINE — Process steps
═══════════════════════════════════════════════════ */
.timeline {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), rgba(39,170,128,0.1));
}
.timeline-item {
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.55rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(39,170,128,0.15);
}
.timeline-item__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.timeline-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #F9FAFB;
  margin-bottom: 0.4rem;
}
.timeline-item__desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════
   20. TESTIMONIAL — Cinematic
═══════════════════════════════════════════════════ */
.testimonial-cinema {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--blur-glass);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.testimonial-cinema::before {
  content: '"';
  position: absolute;
  top: -0.2rem;
  left: 1.2rem;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(39,170,128,0.12);
  line-height: 1;
  pointer-events: none;
  font-family: Georgia, serif;
}
.testimonial-cinema__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #D1D5DB;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-cinema__author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.testimonial-cinema__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-cinema__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #F9FAFB;
}
.testimonial-cinema__role {
  font-size: 0.75rem;
  color: #6B7280;
  margin-top: 0.15rem;
}
.testimonial-cinema__stars {
  margin-left: auto;
  color: #FBBF24;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════
   21. MAGNETIC BUTTON ENHANCEMENT
═══════════════════════════════════════════════════ */
.btn--primary,
.btn--outline,
.btn--magnetic {
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.btn--primary::after,
.btn--outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.btn--primary:hover::after,
.btn--outline:hover::after {
  opacity: 1;
}

/* Ripple effect */
.btn--primary .btn-ripple,
.btn--outline .btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.2);
  animation: ripple 0.6s linear;
}
@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ═══════════════════════════════════════════════════
   22. SECTION TRANSITIONS
═══════════════════════════════════════════════════ */
.section-overlap {
  will-change: transform, opacity;
}

/* ═══════════════════════════════════════════════════
   23. DECORATIVE ELEMENTS
═══════════════════════════════════════════════════ */

/* Grid dot pattern bg */
.bg-dots {
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Gradient line separator */
.grad-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39,170,128,0.4), transparent);
  border: none;
  margin: 4rem 0;
}

/* ═══════════════════════════════════════════════════
   23b. SCROLL HINT INDICATOR
═══════════════════════════════════════════════════ */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__scroll-mouse {
  width: 22px;
  height: 35px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll-wheel {
  width: 3px;
  height: 7px;
  background: rgba(39, 170, 128, 0.8);
  border-radius: 99px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ═══════════════════════════════════════════════════
   24. MOBILE RESPONSIVE CINEMA
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --hero-height: 100svh;
    --section-gap: 4rem;
  }
  .float-card { display: none; }
  .h-scroll__card { width: min(88vw, 340px); }
  .services-cinema { grid-template-columns: 1fr; }
  .stats-cinema { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__orb,
  .hero__badge-dot,
  .cta-cinema::before,
  .scroll-progress { animation: none; }
  * { transition-duration: 0.01ms !important; }
}
