/* ============================================================
   FINAL PREMIUM REDESIGN — Dr. Gupta Breast Augmentation
   Clean Light Hero · Doctor Section Elevated · No Dark-on-Dark
   ============================================================ */

/* ── Design tokens ── */
:root {
  --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --anim-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
  --anim-inout: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Page Loader ── */
#page-loader {
  position: fixed;
  inset: 0;
  background: #faf7f2;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--anim-ease), visibility 0.7s;
}

#page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ldr-mark {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(13, 31, 56, 0.4);
  margin-bottom: 30px;
  opacity: 0;
  animation: ldrIn 0.5s var(--anim-ease) 0.15s both;
}

.ldr-mark em {
  color: var(--gold);
  font-style: italic;
}

.ldr-line {
  width: 160px;
  height: 1px;
  background: rgba(201, 168, 76, 0.2);
  overflow: hidden;
  opacity: 0;
  animation: ldrIn 0.4s var(--anim-ease) 0.35s both;
}

.ldr-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: ldrBar 1.6s var(--anim-ease) 0.5s both;
}

@keyframes ldrIn {
  from {
    opacity: 0;
    transform: translateY(6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes ldrBar {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

/* ── Scroll Progress ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 1001;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Back to top ── */
#back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s, transform 0.4s var(--anim-ease), background 0.3s, box-shadow 0.3s;
}

#back-to-top.show {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--gold-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.5);
}

/* ──────────────────────────────────────────────────────────
   HERO REDESIGN — Light premium background
   ────────────────────────────────────────────────────────── */
.hero {
  background: #faf7f2 !important;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 30px 0;
}



/* Subtle animated diagonal gold lines */
.hero-pattern {
  background-image:
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 60px,
      rgba(201, 168, 76, 0.04) 60px,
      rgba(201, 168, 76, 0.04) 61px),
    radial-gradient(ellipse 70% 60% at 70% 60%, rgba(201, 168, 76, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 60%) !important;
  animation: patternDrift 20s ease-in-out infinite alternate;
}

@keyframes patternDrift {
  from {
    background-position: 0 0, center, center;
  }

  to {
    background-position: 40px 40px, center, center;
  }
}

/* Hero title — navy for contrast on light bg */
.hero-title {
  color: var(--navy) !important;
  font-size: 58px !important;
}

/* Gold animated gradient on the italic word */
.hero-title em {
  color: transparent !important;
  background: linear-gradient(135deg, #b8922a 0%, #c9a84c 30%, #e8d18a 55%, #c9a84c 75%, #b8922a 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldFlow 5s ease-in-out infinite;
  position: relative;
  font-style: italic;
}

@keyframes goldFlow {
  0% {
    background-position: 0% 50%;
  }

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

  100% {
    background-position: 0% 50%;
  }
}

/* Hero tagline on light bg */
.hero-tagline {
  color: var(--text-mid) !important;
  font-style: italic;
}

/* Hero desc on light bg */
.hero-desc {
  color: var(--text-mid) !important;
}


.hero-breadcrumb .sep,
.hero-breadcrumb .cur {
  color: var(--gold) !important;
}

/* Tag on light bg */
.hero-tag {
  background: rgba(201, 168, 76, 0.1) !important;
  border-color: rgba(201, 168, 76, 0.3) !important;
  color: var(--navy) !important;
}

/* Btn outline adjusted for light bg */
.hero-actions .btn-outline {
  color: var(--navy);
  border-color: rgba(13, 31, 56, 0.35);
}

.hero-actions .btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.06) !important;
}

/* Stats on light bg */
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 38px;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  animation: heroUp 0.7s var(--anim-ease) 1.14s both;
}

.stat-num {
  color: var(--navy) !important;
}


/* Scroll indicator on light bg */
.hero-scroll {
  color: rgba(26, 26, 46, 0.3) !important;
}

.scroll-bar {
  background: linear-gradient(to bottom, var(--gold), transparent) !important;
}

/* Hero image — premium floating effect */
.hero-img-frame {
  animation: imgSlideIn 1s var(--anim-ease) 0.42s both;
}

@keyframes imgSlideIn {
  from {
    opacity: 0;
    transform: translateX(44px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-main-img {
  animation: heroFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(13, 31, 56, 0.18)) drop-shadow(0 8px 24px rgba(201, 168, 76, 0.12)) !important;
  transform-origin: center 92%;
}

@keyframes heroFloat {

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

  50% {
    transform: translateY(-16px) scale(1.008);
  }
}

/* Gold glow behind the image */
.hero-right-glow {
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.18) 0%, transparent 65%) !important;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* Floating card */
.hero-floating-card {
  background: var(--white) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  border-left: 3px solid var(--gold) !important;
  box-shadow: 0 20px 50px rgba(13, 31, 56, 0.12) !important;
  animation: floatSway 5.5s ease-in-out infinite;
}

.hero-float-val {
  color: var(--navy) !important;
}

.hero-float-sub {
  color: var(--text-mid) !important;
}

@keyframes floatSway {

  0%,
  100% {
    transform: translateY(0) rotate(-0.4deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.4deg);
  }
}

/* Hero entrance animations */
.hero-breadcrumb {
  animation: heroUp 0.65s var(--anim-ease) 0.3s both;
}

.hero-tag {
  animation: heroUp 0.65s var(--anim-ease) 0.44s both;
}

.hero-title {
  animation: heroUp 0.8s var(--anim-ease) 0.55s both;
}

.hero-tagline {
  animation: heroUp 0.7s var(--anim-ease) 0.7s both;
}

.hero-desc {
  animation: heroUp 0.7s var(--anim-ease) 0.82s both;
}

.hero-actions {
  animation: heroUp 0.7s var(--anim-ease) 0.94s both;
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Particles container */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.hp {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: hpFloat var(--hd) ease-in-out var(--hdl) infinite;
}

.hp.blurred {
  filter: blur(1px);
}

@keyframes hpFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  12% {
    opacity: var(--hop);
    transform: translateY(-10px) scale(1);
  }

  88% {
    opacity: var(--hop);
    transform: translateY(var(--ht)) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateY(calc(var(--ht) - 10px)) scale(0);
  }
}

/* ──────────────────────────────────────────────────────────
   TRUST BAR — elevated on light
   ────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--navy) !important;
}

/* ──────────────────────────────────────────────────────────
   WHY SECTION — fix dark-on-dark: use glass cards
   ────────────────────────────────────────────────────────── */
.why {
  background: linear-gradient(145deg, var(--navy-deep) 0%, #0e1f38 50%, #0a1a30 100%) !important;
  position: relative;
  overflow: hidden;
}

/* Glass/frosted card — not dark-on-dark */
.why-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s var(--anim-ease);
}

.why-card:hover {
  background: rgba(201, 168, 76, 0.12) !important;
  border-color: rgba(201, 168, 76, 0.4) !important;
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.why-icon {
  background: rgba(201, 168, 76, 0.15) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  color: var(--gold) !important;
  transition: all 0.4s var(--anim-spring);
}

.why-card:hover .why-icon {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
  transform: scale(1.12) rotate(-4deg);
}

/* Procedure section: see section-fixes.css */
/* Shine on proc card */
.proc-card-shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  z-index: 10;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: skewX(-15deg);
  transition: left 0.55s var(--anim-ease);
  pointer-events: none;
}

.proc-card:hover .proc-card-shine {
  left: 150%;
}

/* ──────────────────────────────────────────────────────────
   IMPLANTS SECTION — dark bg, white elevated cards
   ────────────────────────────────────────────────────────── */
.implants {
  background: var(--cream) !important;
}

.implant-card {
  background: var(--white) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  box-shadow: 0 4px 24px rgba(13, 31, 56, 0.07) !important;
  transition: all 0.42s var(--anim-ease);
  position: relative;
  overflow: hidden;
}

.implant-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s var(--anim-ease);
}

.implant-card:hover::before {
  transform: scaleX(1);
}

.implant-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 168, 76, 0.6) !important;
  box-shadow: 0 26px 60px rgba(13, 31, 56, 0.14) !important;
}

/* ──────────────────────────────────────────────────────────
   RECOVERY SECTION — was dark, now warm cream
   ────────────────────────────────────────────────────────── */
.recovery {
  background: linear-gradient(165deg, #0d1f38 0%, #132843 60%, #091629 100%) !important;
}

.tl-content {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--anim-ease);
}

.tl-content:hover {
  background: rgba(201, 168, 76, 0.1) !important;
  border-color: rgba(201, 168, 76, 0.4) !important;
  transform: translateX(9px);
}

.tl-dot {
  transition: all 0.38s var(--anim-spring);
}

.tl-item:hover .tl-dot {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: scale(1.2);
  box-shadow: 0 0 22px rgba(201, 168, 76, 0.5);
}

/* Animated scan on timeline line */
.tl-line {
  background: linear-gradient(to bottom, rgba(201, 168, 76, 0.8), rgba(201, 168, 76, 0.15)) !important;
  position: relative;
  overflow: hidden;
}

.tl-line::after {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.7), transparent);
  animation: tlScan 3.5s ease-in-out infinite;
}

@keyframes tlScan {
  from {
    top: -40px
  }

  to {
    top: 100%
  }
}

/* ──────────────────────────────────────────────────────────
   SURGEON SECTION — elevated premium
   ────────────────────────────────────────────────────────── */
.surgeon {
  background: #fff;
  position: relative;
}

/* Elegant curved bg accent */
.surgeon::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.surgeon-img {
  transition: transform 0.52s var(--anim-ease), filter 0.4s, box-shadow 0.4s;
}

.surgeon-img-wrap:hover .surgeon-img {
  transform: scale(1.025) translateY(-4px);
  box-shadow: 0 40px 80px rgba(13, 31, 56, 0.18) !important;
}

.surgeon-frame {
  border-color: rgba(201, 168, 76, 0.35) !important;
  transition: border-color 0.4s;
}

.surgeon-img-wrap:hover .surgeon-frame {
  border-color: rgba(201, 168, 76, 0.6) !important;
}

.surgeon-badge {
  background: var(--white) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  box-shadow: 0 20px 50px rgba(13, 31, 56, 0.15) !important;
  animation: floatSway 5s ease-in-out 0.5s infinite;
}

.surgeon-badge-num {
  color: var(--navy) !important;
}

.surgeon-badge-label {
  color: var(--text-mid) !important;
}

.cred-item {
  background: var(--white) !important;
  border-left-color: var(--gold) !important;
  box-shadow: 0 2px 12px rgba(13, 31, 56, 0.06) !important;
  transition: transform 0.32s var(--anim-ease), box-shadow 0.3s, border-left-color 0.3s;
}

.cred-item:hover {
  transform: translateX(7px);
  box-shadow: 0 6px 24px rgba(13, 31, 56, 0.12) !important;
  border-left-color: var(--gold-light) !important;
}

.cred-icon {
  transition: transform 0.38s var(--anim-spring), color 0.3s;
}

.cred-item:hover .cred-icon {
  transform: scale(1.3) rotate(14deg);
  color: var(--gold-light) !important;
}

/* ──────────────────────────────────────────────────────────
   TESTIMONIALS — warm light background
   ────────────────────────────────────────────────────────── */


.testi-card {
  background: var(--white) !important;
  border: 1px solid rgba(201, 168, 76, 0.15) !important;
  box-shadow: 0 8px 32px rgba(13, 31, 56, 0.07) !important;
  transition: all 0.42s var(--anim-ease);
  position: relative;
  overflow: hidden;
}

.testi-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s var(--anim-ease);
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(13, 31, 56, 0.12) !important;
  border-color: rgba(201, 168, 76, 0.4) !important;
}

.testi-card:hover::after {
  transform: scaleX(1);
}

.testi-avatar {
  transition: transform 0.35s var(--anim-spring), border-color 0.3s;
}

.testi-card:hover .testi-avatar {
  transform: scale(1.1);
  border-color: var(--gold) !important;
}

.testi-stars {
  color: var(--gold) !important;
}

/* Rating bar on light */
.testi-rating-bar {
  background: var(--white) !important;
  border: 1px solid rgba(201, 168, 76, 0.2) !important;
  box-shadow: 0 8px 32px rgba(13, 31, 56, 0.08) !important;
}

.rating-num {
  color: var(--navy) !important;
}

.rating-label {
  color: var(--text-mid) !important;
}

.rating-stat {
  transition: transform 0.35s var(--anim-spring);
  cursor: default;
}

.rating-stat:hover {
  transform: translateY(-5px);
}

/* ──────────────────────────────────────────────────────────
   FAQ SECTION — Clean cream bg
   ────────────────────────────────────────────────────────── */
.faq {
  background: var(--cream) !important;
}

.faq-item {
  background: var(--white) !important;
  border: 1px solid rgba(201, 168, 76, 0.12) !important;
  transition: background 0.3s, border-color 0.3s;
}

.faq-item.open {
  background: var(--white) !important;
  border-color: rgba(201, 168, 76, 0.35) !important;
}

.faq-q:hover .faq-q-text {
  color: var(--gold);
}

.faq-icon {
  transition: transform 0.35s var(--anim-spring), background 0.3s, color 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}

/* ──────────────────────────────────────────────────────────
   OVERVIEW / CANDIDATE — keep light as-is but enhance
   ────────────────────────────────────────────────────────── */
.overview-img-main,
.overview-img-secondary {
  transition: transform 0.55s var(--anim-ease), box-shadow 0.45s;
}

.overview-img-main:hover {
  transform: translateY(-7px) scale(1.022);
  box-shadow: 36px 36px 80px rgba(13, 31, 56, 0.18) !important;
}

.overview-img-secondary:hover {
  transform: translateY(-6px) scale(1.038);
}

.cand-item {
  transition: transform 0.32s var(--anim-ease), border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.cand-item:hover {
  transform: translateX(8px);
  border-color: rgba(201, 168, 76, 0.5) !important;
  background: var(--white) !important;
  box-shadow: 0 5px 24px rgba(201, 168, 76, 0.1);
}

.cand-check {
  transition: transform 0.35s var(--anim-spring), box-shadow 0.3s;
}

.cand-item:hover .cand-check {
  transform: scale(1.12);
  box-shadow: 0 5px 18px rgba(201, 168, 76, 0.38);
}

/* ──────────────────────────────────────────────────────────
   GALLERY
   ────────────────────────────────────────────────────────── */
.gal-item {
  transition: transform 0.38s var(--anim-ease);
}

.gal-item:hover {
  transform: scale(1.016);
  z-index: 3;
}

.gal-item img {
  transition: transform 0.55s var(--anim-ease);
}

.gal-item:hover img {
  transform: scale(1.07) !important;
}

.gal-overlay {
  transition: opacity 0.38s;
}

.gal-overlay>div {
  transform: translateY(16px);
  opacity: 0.85;
  transition: transform 0.42s var(--anim-ease), opacity 0.38s;
}

.gal-item:hover .gal-overlay>div {
  transform: translateY(0);
  opacity: 1;
}

/* ──────────────────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: transform 0.38s var(--anim-spring), box-shadow 0.38s, background 0.3s !important;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -70%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-18deg) translateX(-100%);
  transition: transform 0.52s var(--anim-ease);
}

.btn-primary:hover::before {
  transform: skewX(-18deg) translateX(600%);
}

.btn-primary:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 38px rgba(201, 168, 76, 0.46) !important;
}

.btn-primary:active {
  transform: translateY(0) !important;
}

/* Ripple */
.bripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  transform: scale(0);
  animation: bripAnim 0.55s linear;
  pointer-events: none;
}

@keyframes bripAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Nav CTA */
.nav-cta {
  transition: background 0.3s, transform 0.35s var(--anim-spring), box-shadow 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

/* Nav underline */
.nav-links a {
  position: relative;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.32s var(--anim-ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

nav {
  transition: box-shadow 0.4s, background 0.3s !important;
}

nav.nav-scrolled {
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5) !important;
}

/* ──────────────────────────────────────────────────────────
   FORM
   ────────────────────────────────────────────────────────── */
.form-input,
.form-select {
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-select:focus {
  border-color: var(--gold) !important;
  background: rgba(201, 168, 76, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15) !important;
  outline: none;
}

.form-label {
  transition: color 0.3s, letter-spacing 0.3s;
}

.cta-feature {
  transition: transform 0.3s var(--anim-ease);
}

.cta-feature:hover {
  transform: translateX(7px);
}

.form-submit {
  transition: transform 0.38s var(--anim-spring), box-shadow 0.38s !important;
}

.form-submit:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.46) !important;
}

/* ──────────────────────────────────────────────────────────
   FOOTER
   ────────────────────────────────────────────────────────── */
.footer-links a {
  transition: color 0.25s, padding-left 0.3s var(--anim-ease);
}

.footer-links a:hover {
  padding-left: 7px;
}

.footer-social a {
  transition: background 0.3s, color 0.3s, transform 0.38s var(--anim-spring), box-shadow 0.3s;
}

.footer-social a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(201, 168, 76, 0.32);
}

/* ──────────────────────────────────────────────────────────
   SCROLL REVEAL
   ────────────────────────────────────────────────────────── */
.reveal,
.fade-up {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.78s var(--anim-ease), transform 0.78s var(--anim-ease);
  will-change: opacity, transform;
}

.reveal.from-left {
  transform: translateX(-42px);
}

.reveal.from-right {
  transform: translateX(42px);
}

.reveal.from-scale {
  transform: scale(0.92);
}

.reveal.is-visible,
.fade-up.visible {
  opacity: 1;
  transform: none !important;
}

.reveal.d1,
.fade-up.d1 {
  transition-delay: .1s
}

.reveal.d2,
.fade-up.d2 {
  transition-delay: .2s
}

.reveal.d3,
.fade-up.d3 {
  transition-delay: .32s
}

.reveal.d4,
.fade-up.d4 {
  transition-delay: .44s
}

/* Gold line grow */
.gold-line {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.85s var(--anim-ease);
  position: relative;
}

.gold-line.center {
  transform-origin: center;
}

.gold-line.line-in {
  transform: scaleX(1);
}

.gold-line.line-in::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40px;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(2px);
  animation: lineSweep 2.5s ease-in-out 0.9s 1;
}

@keyframes lineSweep {
  from {
    left: -40px;
    opacity: 1
  }

  to {
    left: 100%;
    opacity: 0
  }
}

/* Trust bar stagger */
.trust-item {
  transition: opacity 0.55s var(--anim-ease), transform 0.55s var(--anim-ease);
}

.trust-item.trust-in {
  transform: none;
}

.trust-icon {
  transition: background 0.3s, color 0.3s, transform 0.38s var(--anim-spring), border-color 0.3s;
}

.trust-item:hover .trust-icon {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: scale(1.2) rotate(8deg);
}

/* Pills */
.pill {
  transition: background 0.25s, border-color 0.25s, transform 0.3s var(--anim-spring), box-shadow 0.25s;
  cursor: default;
}

.pill:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 7px 20px rgba(201, 168, 76, 0.16);
}

/* Scroll bounce */
.hero-scroll {
  animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

/* Section title em glow */
.is-visible .section-title em,
.visible .section-title em {
  animation: sectionEmGlow 4s ease-in-out 0.8s infinite;
}

@keyframes sectionEmGlow {

  0%,
  100% {
    text-shadow: none;
  }

  50% {
    text-shadow: 0 2px 22px rgba(201, 168, 76, 0.35);
  }
}

/* Background watermark drift */
.why-bg-text {
  animation: bgDrift 18s ease-in-out infinite alternate;
}

@keyframes bgDrift {
  from {
    transform: translate(-50%, -50%) translateX(-16px);
  }

  to {
    transform: translate(-50%, -50%) translateX(16px);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}