/* ================================================================
   Ballooniacs JO — Redesign v2
   Aurora UI + Glassmorphism | Fredoka + Nunito
================================================================ */

/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: #07090A;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── CSS Variables — matched to hero video palette ────────────── */
:root {
  /* Brand palette — extracted from hero video balloons */
  --gold:      #E8960A;   /* golden amber balloon */
  --gold-lt:   #F5B830;   /* lighter gold highlight */
  --gold-dk:   #C07A00;   /* deep gold shadow */
  --green:     #5A9E57;   /* sage green balloon */
  --green-lt:  #7DC47A;   /* lighter sage */
  --green-dk:  #3D7A3B;   /* deep sage */
  --silver:    #BCC8D0;   /* silver foil balloon */
  --cream:     #FFF8EE;   /* warm white from video bg */

  /* Backgrounds — very dark with warm amber-green tint */
  --black:     #07090A;
  --dark:      #0D1209;
  --white:     #FFFFFF;

  /* Text */
  --text:      #FFFFFF;
  --text-sub:  rgba(255,255,255,0.84);
  --muted:     rgba(255,255,255,0.62);
  --muted-dim: rgba(255,255,255,0.38);

  /* Gradients — Gold → Sage Green (the two balloon colors) */
  --grad:      linear-gradient(135deg, #E8960A 0%, #7DC47A 55%, #5A9E57 100%);
  --grad-90:   linear-gradient(90deg,  #E8960A, #F5B830, #7DC47A, #5A9E57);
  --grad-gold: linear-gradient(90deg,  #E8960A, #F5B830, #E8960A);
  --grad-green:linear-gradient(90deg,  #5A9E57, #7DC47A, #5A9E57);

  /* Glass */
  --glass:     rgba(255,255,255,0.04);
  --glass-mid: rgba(255,255,255,0.08);
  --glass-hi:  rgba(255,255,255,0.14);
  --border:    rgba(255,255,255,0.10);
  --border-hi: rgba(255,255,255,0.22);

  /* Misc */
  --blur:      blur(24px);
  --font-d:    'Fredoka', sans-serif;
  --font-b:    'Nunito', sans-serif;
  --r:         20px;
  --r-sm:      12px;
  --r-lg:      32px;
  --shadow:    0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.55);
  --wrap:      min(1200px, 100% - 40px);
}

/* ── Aurora — gold + sage green matching the hero video ──────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 55% at 10% 15%, rgba(232,150,10,0.20)  0%, transparent 55%),
    radial-gradient(ellipse 65% 55% at 85% 80%, rgba(90,158,87,0.18)   0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(125,196,122,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 75% 10%, rgba(245,184,48,0.10)  0%, transparent 50%),
    #07090A;
  animation: aurora 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes aurora {
  0%   { transform: translate(0,    0)    scale(1);    }
  50%  { transform: translate(-3%,  2%)   scale(1.04); }
  100% { transform: translate( 3%, -2%)   scale(1.02); }
}

/* ── Utility ──────────────────────────────────────────────────── */
.wrap         { width: var(--wrap); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grad-90);
  border-radius: 2px;
}

.display {
  font-family: var(--font-d);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 40px;
}

.grad-text {
  background: var(--grad-90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAVBAR ───────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 28px));
  z-index: 1000;
  transition: all 0.4s ease;
}
/* Glowing gold-green gradient border on scroll */
#navbar::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 60px;
  background: linear-gradient(90deg, rgba(232,150,10,0.7), rgba(90,158,87,0.5), rgba(232,150,10,0.7));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
#navbar.scrolled::before { opacity: 1; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px 10px 18px;
  background: rgba(7,9,10,0.55);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(232,150,10,0.22);
  border-radius: 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.35), inset 0 1px 0 rgba(245,184,48,0.08);
  transition: all 0.4s ease;
}
#navbar.scrolled .nav-inner {
  background: rgba(7,9,10,0.90);
  border-color: rgba(232,150,10,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(245,184,48,0.14);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-icon {
  width: 32px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 7px rgba(232,150,10,0.55));
  transition: filter 0.3s;
}
.nav-logo:hover .nav-logo-icon { filter: drop-shadow(0 0 14px rgba(232,150,10,0.85)); }
.nav-logo-icon svg { width: 100%; height: 100%; }

.nav-logo-text {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.logo-brand {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.2px;
  line-height: 1;
}
.logo-jo {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 600;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2px;
  margin: 0 auto;
}
.nav-links a {
  font-family: var(--font-b);
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  padding: 7px 15px;
  border-radius: 40px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--gold-lt);
  background: rgba(232,150,10,0.10);
}

/* CTA */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 800;
  color: #1a0a00;
  padding: 10px 20px;
  border-radius: 40px;
  background: var(--grad-gold);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 22px rgba(232,150,10,0.45), inset 0 1px 0 rgba(255,255,255,0.28);
}
.nav-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 36px rgba(232,150,10,0.7), inset 0 1px 0 rgba(255,255,255,0.35);
}

/* ── CINEMATIC SCROLL EXPERIENCE ─────────────────────────────── */
#cinematic-container {
  height: 600vh;
  position: relative;
}
#cinematic-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}
#cinematic-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Overlay container — centered text on top of canvas */
#cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

/* Individual scene text block */
.ct {
  position: absolute;
  bottom: 10vh;
  left: max(48px, calc((100% - 1200px) / 2 + 48px));
  max-width: 560px;
  opacity: 0;
  transition: none;
}
.ct.ct-center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: 520px;
}

.ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
}
.ct-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold-lt);
  box-shadow: 0 0 10px var(--gold);
  animation: pulse-dot 2s infinite;
}
.ct-tag {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-lt);
  padding: 6px 16px;
  border-radius: 40px;
  background: rgba(232,150,10,0.12);
  border: 1px solid rgba(232,150,10,0.3);
  backdrop-filter: blur(8px);
  margin-bottom: 18px;
}
.ct-title {
  font-family: var(--font-d);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.ct-title em {
  font-style: normal;
  background: var(--grad-90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ct-title-sm {
  font-family: var(--font-d);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.ct-title-sm em {
  font-style: normal;
  background: var(--grad-90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ct-sub {
  font-family: var(--font-b);
  font-size: 17px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.ct-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  pointer-events: auto;
}
.ct-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 800;
  color: var(--gold-lt);
  padding: 12px 24px;
  border-radius: 40px;
  background: rgba(232,150,10,0.12);
  border: 1px solid rgba(232,150,10,0.35);
  backdrop-filter: blur(8px);
  transition: all 0.2s;
  pointer-events: auto;
  text-shadow: none;
}
.ct-link:hover { background: rgba(232,150,10,0.22); color: #fff; transform: translateY(-2px); }
.ct-link.ct-gold {
  background: var(--grad-gold);
  color: #1a0a00;
  border-color: transparent;
  box-shadow: 0 0 28px rgba(232,150,10,0.45);
}

/* Scroll hint */
#scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.sh-arrow {
  font-size: 20px;
  animation: sh-bounce 1.6s ease-in-out infinite;
}
@keyframes sh-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* Keep hero button styles working */
.hero-inner, .blob { display: none; }

@media (max-width: 768px) {
  .ct { bottom: 8vh; left: 24px; right: 24px; max-width: 100%; }
  .ct.ct-center { left: 50%; right: auto; }
  .ct-title { font-size: clamp(36px, 10vw, 60px); }
  .ct-sub { font-size: 15px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-mid);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(16px);
  border-radius: 40px;
  padding: 7px 18px;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-lt);
  box-shadow: 0 0 8px var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 24px;
  overflow: visible;
}
.hero-title .line { display: block; overflow: visible; }
.hero-title .accent {
  background: var(--grad-90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-family: var(--font-b);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-sub);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  padding: 15px 32px;
  border-radius: 50px;
  background: var(--grad-gold);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 800;
  color: #1a0a00;
  box-shadow: 0 0 32px rgba(240,165,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary-hero:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px rgba(240,165,0,0.65);
}
.btn-ghost-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 50px;
  background: var(--glass-mid);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(12px);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: all 0.2s;
}
.btn-ghost-hero:hover {
  background: var(--glass-hi);
  color: #fff;
  transform: translateY(-2px);
}
.btn-arrow { font-size: 18px; }


/* Hero photos collage — floats over the 3D */
.hero-photos {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 20px;
  background: rgba(9,7,26,0.3);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  pointer-events: none;
}
.hp {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border: 1px solid var(--border-hi);
  height: 180px;
}
.hp1 { border-radius: 16px 60px 16px 16px; }
.hp2 { border-radius: 60px 16px 16px 16px; }
.hp3 { border-radius: 16px 16px 60px 16px; }
.hp4 { border-radius: 16px 16px 16px 60px; }
.hp img { animation: ken-burns 10s ease-in-out infinite alternate; }
.hp2 img { animation-duration: 13s; animation-delay: -3s; }
.hp3 img { animation-duration: 11s; animation-delay: -6s; }
.hp4 img { animation-duration: 14s; animation-delay: -2s; }
@keyframes ken-burns {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.07) translate(-1.5%, 1.5%); }
}


/* ── OCCASIONS ────────────────────────────────────────────────── */
#showcase {
  position: relative;
  background: var(--black);
}

/* Tab row */
.sc-tabs {
  display: flex;
  position: relative;
  z-index: 10;
  background: rgba(9,7,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.sc-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 16px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.sc-tab:hover { background: var(--glass-mid); }
.sc-tab.active { border-bottom-color: var(--gold); }
.sc-tab-num {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  line-height: 1;
  transition: color 0.25s;
}
.sc-tab-name {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  transition: color 0.25s;
}
.sc-tab.active .sc-tab-num { color: var(--gold); }
.sc-tab.active .sc-tab-name { color: #fff; }

/* Panels container */
.sc-panels {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
}

/* Individual panel */
.sc-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}
.sc-panel.active {
  opacity: 1;
  pointer-events: auto;
}

/* Photo */
.sc-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  transform: scale(1.06);
}
.sc-panel.active .sc-photo { transform: scale(1); }

/* Gradient overlay */
.sc-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Content block */
.sc-content {
  position: absolute;
  bottom: 80px;
  left: max(40px, calc((100% - 1200px) / 2 + 40px));
  z-index: 2;
  max-width: 580px;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.7s ease 0.2s, opacity 0.7s ease 0.2s;
}
.sc-panel.active .sc-content {
  transform: translateY(0);
  opacity: 1;
}

.sc-accent {
  width: 48px;
  height: 4px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.sc-title {
  font-family: var(--font-d);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.sc-desc {
  font-family: var(--font-b);
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 460px;
}

.sc-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  background: var(--btn-color, var(--pink));
  box-shadow: 0 0 28px rgba(0,0,0,0.35);
  transition: transform 0.2s, opacity 0.2s;
}
.sc-btn:hover { transform: translateY(-2px); opacity: 0.9; }

/* Progress bar at bottom of each panel */
.sc-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 3;
}
.sc-progress-fill {
  height: 100%;
  width: 0;
  background: var(--bar-color, var(--pink));
  border-radius: 0;
  transition: none;
}
.sc-panel.active .sc-progress-fill {
  animation: sc-progress 5s linear forwards;
}
@keyframes sc-progress {
  from { width: 0%; }
  to   { width: 100%; }
}

@media (max-width: 768px) {
  .sc-panels { height: 75vh; min-height: 460px; }
  .sc-content {
    bottom: 60px;
    left: 24px;
    right: 24px;
    max-width: 100%;
  }
  .sc-tab-name { font-size: 12px; }
  .sc-title { font-size: clamp(28px, 7vw, 44px); }
}

/* ── OCCASIONS + INLINE GALLERY ───────────────────────────────── */
#occasions { padding: 100px 0; }
#occasions .section-wrap { text-align: center; }
.occ-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: left;
}
.occ-card {
  position: relative;
  height: 440px;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  will-change: transform;
}
.occ-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5);
}
.occ-card.active {
  border-color: var(--card-active-color, var(--pink));
  box-shadow: 0 0 0 1px var(--card-active-color, var(--pink)), 0 20px 60px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.occ-photo {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}
.occ-card:hover .occ-photo,
.occ-card.active .occ-photo { transform: scale(1.07); }
.occ-photo-overlay { position: absolute; inset: 0; z-index: 1; }
.occ-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  background: var(--glass-mid);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-hi);
  border-radius: 40px;
  padding: 5px 14px;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.occ-name {
  position: absolute;
  bottom: 56px;
  left: 20px;
  right: 20px;
  z-index: 3;
  font-family: var(--font-d);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.occ-desc {
  position: absolute;
  bottom: 26px;
  left: 20px;
  right: 20px;
  z-index: 3;
  font-family: var(--font-b);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  line-height: 1.5;
}
.occ-tap-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  text-align: center;
  padding: 8px;
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.0);
  background: rgba(0,0,0,0);
  transition: all 0.25s ease;
}
.occ-card:hover .occ-tap-hint {
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
}

/* ── Inline gallery panel ─────────────────────────────────────── */
.occ-panel {
  margin-top: 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.55s cubic-bezier(0.4,0,0.2,1),
              opacity 0.4s ease,
              margin-top 0.4s ease;
}
.occ-panel.open {
  max-height: 1000px;
  opacity: 1;
  margin-top: 24px;
}
.occ-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 20px 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  backdrop-filter: blur(16px);
}
.oph-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.oph-bar {
  display: block;
  width: 4px;
  height: 28px;
  border-radius: 4px;
  background: var(--grad-90);
  flex-shrink: 0;
}
.oph-title {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.oph-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--glass-mid);
  border: 1px solid var(--border);
  color: var(--text-sub);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.oph-close:hover { background: var(--glass-hi); color: #fff; }
.oph-close svg { width: 16px; height: 16px; }

.occ-panel-grid {
  columns: 4;
  column-gap: 10px;
  margin-bottom: 20px;
}
.occ-panel-grid .pg-item {
  margin-bottom: 10px;
  border-radius: var(--r-sm);
  overflow: hidden;
  break-inside: avoid;
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(255,255,255,0.06);
}
.occ-panel-grid .pg-item img {
  display: block;
  width: 100%;
  transition: transform 0.4s ease;
}
.occ-panel-grid .pg-item:hover img { transform: scale(1.05); }
.occ-panel-grid .pg-item .pg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,7,26,0.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.occ-panel-grid .pg-item:hover .pg-overlay { opacity: 1; }
.occ-panel-grid .pg-item .pg-overlay span {
  font-family: var(--font-b);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
}

.occ-panel-footer {
  display: flex;
  justify-content: center;
  padding: 4px 0 8px;
}

@media (max-width: 1024px) {
  .occ-panel-grid { columns: 3; }
}
@media (max-width: 768px) {
  .occ-panel-grid { columns: 2; }
  .occ-panel-header { padding: 16px; }
  .oph-title { font-size: 18px; }
}
@media (max-width: 480px) {
  .occ-panel-grid { columns: 2; }
}

.btn {
  padding: 12px 28px;
  border-radius: 40px;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 800;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-dark {
  background: var(--glass-mid);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.8);
}
.btn-outline-dark:hover { background: var(--glass-hi); color: #fff; transform: translateY(-2px); }
.btn-fill {
  background: var(--grad-gold);
  color: #1a0a00;
  box-shadow: 0 0 24px rgba(240,165,0,0.35);
}
.btn-fill:hover { opacity: 0.9; transform: translateY(-2px); }

/* ── WHY US ───────────────────────────────────────────────────── */
#whyus { padding: 100px 0; }
.whyus-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.features { display: flex; flex-direction: column; gap: 16px; }
.feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r);
  backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}
.feat:hover {
  background: var(--glass-mid);
  border-color: var(--border-hi);
  transform: translateX(6px);
}
.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feat-icon svg { width: 22px; height: 22px; }
.feat-title {
  font-family: var(--font-d);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.feat-desc {
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
}

.whyus-right { height: 100%; }
.wow-card {
  position: relative;
  height: 500px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-hi);
  box-shadow: var(--shadow-lg);
}
.wow-card-photos {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  padding: 6px;
}
.wow-card-photos .wp {
  border-radius: 16px;
  overflow: hidden;
}
.wow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,7,26,0.92) 0%, rgba(9,7,26,0.3) 50%, transparent 100%);
  z-index: 1;
}
.wow-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  background: rgba(9,7,26,0.7);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(24px);
  border-radius: var(--r);
  padding: 20px 24px;
}
.wow-badge-title {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.wow-badge-sub {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.wow-badge-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.wbs {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-lt);
}
.wbs span {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}
.wbs-divider { width: 1px; height: 28px; background: var(--border); }


/* ── CONTACT ──────────────────────────────────────────────────── */
#contact { padding: 100px 0; }
.contact-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-hi);
  box-shadow: 0 0 80px rgba(217,70,239,0.12);
}
.contact-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cb { position: absolute; border-radius: 50%; filter: blur(60px); }
.cb1 { width: 350px; height: 350px; background: rgba(255,45,143,0.12); top: -100px; left: -80px; }
.cb2 { width: 300px; height: 300px; background: rgba(123,79,212,0.12); bottom: -80px; right: -60px; }
.contact-inner {
  position: relative;
  z-index: 1;
  padding: 64px;
  background: rgba(9,7,26,0.72);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  text-align: center;
}
.contact-sub {
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 40px;
  margin-top: -28px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
  margin-inline: auto;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-input {
  width: 100%;
  padding: 15px 20px;
  border-radius: var(--r-sm);
  background: var(--glass-mid);
  border: 1px solid var(--border);
  color: #fff;
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: all 0.2s ease;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus {
  border-color: var(--gold);
  background: var(--glass-hi);
  box-shadow: 0 0 0 3px rgba(232,150,10,0.18);
}
.contact-submit {
  margin-top: 6px;
  padding: 16px 40px;
  border-radius: 50px;
  background: var(--grad-gold);
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 800;
  color: #1a0a00;
  box-shadow: 0 0 32px rgba(240,165,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  align-self: center;
}
.contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(240,165,0,0.6);
}
.social-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 40px;
  background: var(--glass-mid);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sub);
  transition: all 0.2s;
}
.social-pill:hover {
  background: var(--glass-hi);
  border-color: var(--border-hi);
  color: #fff;
  transform: translateY(-2px);
}
.social-pill svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── FOOTER ───────────────────────────────────────────────────── */
#footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: var(--wrap);
  margin-inline: auto;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.footer-logo em {
  font-style: normal;
  background: var(--grad-90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-tagline {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--muted);
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-copy {
  font-family: var(--font-b);
  font-size: 12px;
  color: rgba(255,255,255,0.22);
}

/* ── LIGHTBOX ─────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(9,7,26,0.95);
  backdrop-filter: blur(20px);
  display: none;
  place-items: center;
  padding: 24px;
}
.lightbox.open { display: grid; }
#lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.lightbox-close,
.lightbox-nav {
  cursor: pointer;
  background: var(--glass-mid);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-sub);
  display: grid;
  place-items: center;
  transition: all 0.2s;
  user-select: none;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--glass-hi); color: #fff; }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  font-size: 20px;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 28px;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .whyus-wrap { grid-template-columns: 1fr; gap: 48px; }
  .whyus-right { max-width: 500px; }
  .wow-card { height: 380px; }
  .hero-photos { width: 42%; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-inner { max-width: 100%; padding-top: 130px; }
  .hero-photos { display: none; }
  .hero-title { font-size: clamp(40px, 12vw, 64px); }
  .occ-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .occ-card { height: 320px; }
  .testi-grid { grid-template-columns: 1fr; }
  .photo-grid { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .contact-inner { padding: 40px 24px; }
  .slide-content { width: 90%; padding: 0 24px; }
  .slide-photo-right { display: none; }
  .stats-row { gap: 8px; }
  .stat-pill { min-width: 120px; padding: 16px 20px; }
}
@media (max-width: 480px) {
  .occ-grid { grid-template-columns: 1fr; }
  .occ-card { height: 280px; }
  .display { font-size: clamp(28px, 9vw, 48px); }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .photo-grid { columns: 1; }
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
