/* ═══════════════════════════════════════════════════════════
   INNOVO SPA — HOMEPAGE
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ── */
#hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: 140px 0 120px; overflow: hidden; color: var(--white);
}
.hero-fallback-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(46,107,158,0.5), transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(184,150,90,0.14), transparent 50%),
    linear-gradient(160deg, #12315A 0%, #0B1F3A 55%, #071426 100%);
}
/* gentle water shimmer on the fallback */
.hero-fallback-bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 110%, rgba(120,180,255,0.12), transparent 70%);
  animation: heroShimmer 9s ease-in-out infinite alternate;
}
@keyframes heroShimmer {
  from { opacity: 0.5; transform: translateY(6px); }
  to   { opacity: 1;   transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) { .hero-fallback-bg::after { animation: none; } }

.hero-video { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(100deg, rgba(7,20,38,0.88) 25%, rgba(7,20,38,0.45) 70%, rgba(7,20,38,0.25));
}
.hero-content { position: relative; z-index: 3; max-width: 720px; }
.hero-eyebrow .section-label { color: var(--gold-light); }
.hero-title {
  font-size: clamp(44px, 6.2vw, 78px); color: var(--white); margin: 22px 0 24px;
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.78); max-width: 560px; margin-bottom: 44px; }

.hero-ctas-row { display: flex; align-items: stretch; gap: 36px; flex-wrap: wrap; }
.cta-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 12px;
}
.cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-divider { width: 1px; background: rgba(255,255,255,0.18); }
@media (max-width: 640px) { .cta-divider { display: none; } }

.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 3; text-align: center;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px; height: 44px; margin: 10px auto 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ── Services ── */
#services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--porcelain); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 34px 28px; display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); background: var(--white); }
.service-icon {
  width: 54px; height: 54px; border-radius: 50%; margin-bottom: 22px;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
}
.service-tag {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--water); margin-bottom: 8px;
}
.service-name { font-size: 23px; color: var(--navy); margin-bottom: 12px; }
.service-desc { font-size: 14.5px; color: var(--mid-gray); flex: 1; margin-bottom: 20px; }
.service-link {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 7px;
  transition: gap 0.3s var(--ease);
}
.service-link:hover { gap: 12px; }
@media (max-width: 1020px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ── Testimonials ── */
#testimonials { background: var(--porcelain); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--hairline); border-radius: 10px;
  padding: 36px 32px; position: relative; box-shadow: var(--shadow-card);
}
.testimonial-quote-mark {
  font-family: var(--font-display); font-size: 70px; line-height: 0.6;
  color: var(--gold); opacity: 0.45; display: block; margin-bottom: 18px;
}
.testimonial-text { font-size: 15.5px; color: var(--ink); margin-bottom: 26px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 20px; font-weight: 600;
}
.testimonial-info strong { font-size: 14.5px; color: var(--navy); display: block; }
.testimonial-info span { font-size: 12.5px; color: var(--mid-gray); }
@media (max-width: 920px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* ── Membership section (home) ── */
#membership { background: var(--white); }

/* ── Franchise callout ── */
#franchise {
  background:
    radial-gradient(ellipse at 12% 15%, rgba(46,107,158,0.4), transparent 55%),
    linear-gradient(150deg, var(--navy-mid) 0%, var(--navy-deep) 70%);
}
.franchise-inner {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: start;
}
.franchise-stats { display: flex; gap: 44px; margin-top: 48px; flex-wrap: wrap; }
.stat-number { font-size: 46px; color: var(--gold-light); line-height: 1; }
.stat-desc { font-size: 13px; color: rgba(255,255,255,0.6); max-width: 170px; margin-top: 8px; }

.franchise-form-panel {
  background: var(--white); border-radius: 12px; padding: 40px 38px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.franchise-form-panel h3 { font-size: 27px; color: var(--navy); margin-bottom: 8px; }
.franchise-form-panel > p { font-size: 14px; color: var(--mid-gray); margin-bottom: 26px; }
@media (max-width: 960px) { .franchise-inner { grid-template-columns: 1fr; gap: 56px; } }
