/* ==========================================================================
   POWERLADY FITNESS — OFFICIAL STYLESHEET
   Brand: "STRENGTH BEYOND LIMITS"
   Location: Trivandrum, Kerala, India
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. DESIGN TOKENS & SYSTEM VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette (70% Dark / 20% Purple Energy / 10% Typography Hierarchy) */
  --bg-black: #060608;
  --bg-primary: #0a0a0f;
  --bg-surface: #101018;
  --bg-surface-elevated: #161622;
  --bg-surface-glass: rgba(16, 16, 24, 0.75);
  --bg-card: #13131c;
  --bg-charcoal: #1c1c28;

  /* Electric / Neon Purple Energy */
  --purple-neon: #c040ff;
  --purple-electric: #a855f7;
  --purple-laser: #8b5cf6;
  --purple-deep: #6b21a8;
  --purple-dark: #3b0764;
  --purple-ambient: rgba(168, 85, 247, 0.15);
  --purple-glow-sm: 0 0 15px rgba(192, 64, 255, 0.35);
  --purple-glow-md: 0 0 30px rgba(192, 64, 255, 0.45);
  --purple-glow-lg: 0 0 50px rgba(168, 85, 247, 0.55);

  /* Typography Hierarchy */
  --text-white: #ffffff;
  --text-light: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-purple: #e9d5ff;

  /* Accents & Status */
  --accent-gold: #fbbf24;
  --accent-green: #22c55e;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-purple: rgba(168, 85, 247, 0.35);
  --border-purple-active: rgba(192, 64, 255, 0.85);

  /* Typography Families */
  --font-display: 'Bebas Neue', 'Oswald', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --container-max: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --transition-fast: 0.2s var(--ease-out-cubic);
  --transition-normal: 0.35s var(--ease-out-cubic);
  --transition-slow: 0.6s var(--ease-out-cubic);
}

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-black);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 10%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 60%, rgba(192, 64, 255, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(107, 33, 168, 0.07) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
  background: var(--purple-deep);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--purple-electric);
}

/* Selection */
::selection {
  background: var(--purple-electric);
  color: var(--text-white);
}

/* Accessibility Focus */
:focus-visible {
  outline: 2px solid var(--purple-neon);
  outline-offset: 3px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--purple-electric);
  color: #fff;
  padding: 10px 18px;
  z-index: 99999;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 20px;
}

/* Images & Media */
img, picture, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Section Common */
.section {
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-pill);
  color: var(--purple-neon);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--purple-neon);
  box-shadow: 0 0 8px var(--purple-neon);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.section-title span.text-purple {
  color: var(--purple-neon);
  text-shadow: 0 0 20px rgba(192, 64, 255, 0.35);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 680px;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   2. BUTTONS & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c040ff 0%, #8b5cf6 100%);
  box-shadow: 0 6px 28px rgba(192, 64, 255, 0.65);
  transform: translateY(-2px);
  color: var(--text-white);
}

.btn-whatsapp {
  background: rgba(14, 14, 22, 0.88);
  color: #ffffff;
  border: 1.5px solid rgba(192, 64, 255, 0.55);
  box-shadow: 0 4px 20px rgba(192, 64, 255, 0.35), inset 0 0 12px rgba(168, 85, 247, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-whatsapp svg {
  fill: #25D366;
  filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.5));
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  background: rgba(22, 20, 35, 0.95);
  border-color: var(--purple-neon);
  box-shadow: 0 6px 30px rgba(192, 64, 255, 0.7), inset 0 0 18px rgba(192, 64, 255, 0.3);
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-whatsapp:hover svg, .btn-whatsapp:focus-visible svg {
  animation: iconMicroBounce 0.4s ease;
}

@keyframes iconMicroBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.18); }
}

.btn:active {
  transform: scale(0.96) !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: var(--border-purple);
  color: var(--purple-neon);
  transform: translateY(-2px);
}

.btn-outline-purple {
  background: transparent;
  color: var(--purple-neon);
  border: 1.5px solid var(--purple-neon);
  box-shadow: inset 0 0 10px rgba(192, 64, 255, 0.1);
}

.btn-outline-purple:hover {
  background: var(--purple-neon);
  color: #000;
  box-shadow: 0 0 25px rgba(192, 64, 255, 0.6);
  transform: translateY(-2px);
}

.btn-icon {
  width: 1.25em;
  height: 1.25em;
  fill: currentColor;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   3. NAVIGATION / HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: background-color var(--transition-normal), 
              backdrop-filter var(--transition-normal),
              box-shadow var(--transition-normal),
              height var(--transition-normal);
  background: linear-gradient(180deg, rgba(6, 6, 8, 0.9) 0%, rgba(6, 6, 8, 0) 100%);
}

.site-header.scrolled {
  background: rgba(8, 8, 12, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 1px 0 var(--border-purple);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--purple-electric);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.brand-link:hover .brand-badge {
  transform: scale(1.06);
  box-shadow: 0 0 18px var(--purple-neon);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text-white);
  white-space: nowrap;
}

.brand-name span {
  color: var(--purple-neon);
}

.brand-tagline {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple-neon);
  box-shadow: 0 0 8px var(--purple-neon);
  transition: width var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-white);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  color: var(--text-white);
  cursor: pointer;
  z-index: 1100;
}

.mobile-nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--bg-black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.48) contrast(1.15);
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

/* Poster stays as static base layer (graceful fallback) */
.hero-poster-img {
  position: absolute;
  inset: 0;
}

/* Video layer — starts transparent, fades in via JS on canplay */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.48) contrast(1.15);
  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
  /* Prevent video from stealing layout or focus */
  pointer-events: none;
  display: block;
}

/* Once video is ready, JS adds this class */
.hero-bg-video.video-ready {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    display: none !important;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, rgba(6, 6, 8, 0.7) 0%, rgba(6, 6, 8, 0.4) 40%, rgba(6, 6, 8, 0.95) 90%, #060608 100%),
    radial-gradient(ellipse at 70% 30%, rgba(168, 85, 247, 0.28) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(107, 33, 168, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

/* Floating Purple Energy Orb */
.hero-energy-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 64, 255, 0.25) 0%, rgba(139, 92, 246, 0.1) 40%, transparent 70%);
  filter: blur(40px);
  top: 20%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite alternate;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.12); }
  100% { transform: translate(20px, -20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-pill);
  color: var(--purple-neon);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.hero-location-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
  color: var(--purple-neon);
  text-shadow: 0 0 30px rgba(192, 64, 255, 0.6);
  display: block;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.hero-description strong {
  color: var(--text-white);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  max-width: 600px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-label {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--purple-neon);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.hero-stat-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   5. BRAND PHILOSOPHY — "MORE THAN A GYM"
   -------------------------------------------------------------------------- */
.philosophy-section {
  background: var(--bg-primary);
  border-top: 1px solid rgba(168, 85, 247, 0.15);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  position: relative;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-card-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.philosophy-pillar:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-purple);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), var(--purple-glow-sm);
  transform: translateX(6px);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-neon);
  flex-shrink: 0;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.philosophy-pillar:hover .pillar-icon-box {
  background: var(--purple-neon);
  color: #000;
  box-shadow: 0 0 15px var(--purple-neon);
}

.pillar-icon-box svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.pillar-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.pillar-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.philosophy-quote-box {
  position: relative;
  padding: 3rem 2.5rem;
  background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.15) 0%, rgba(16, 16, 24, 0.95) 70%);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.philosophy-quote-box::before {
  content: "“";
  position: absolute;
  top: -20px;
  right: 20px;
  font-family: var(--font-accent);
  font-size: 10rem;
  line-height: 1;
  color: rgba(168, 85, 247, 0.08);
  pointer-events: none;
}

.philosophy-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.philosophy-quote span.highlight {
  color: var(--purple-neon);
  font-style: normal;
  font-weight: 600;
}

.philosophy-quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-neon);
}

.author-info strong {
  display: block;
  font-size: 1rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   6. THE POWER TRIANGLE — SIGNATURE INTERACTIVE SECTION
   -------------------------------------------------------------------------- */
.triangle-section {
  background-color: var(--bg-black);
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}

.triangle-section-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.18) 0%, rgba(107, 33, 168, 0.05) 50%, transparent 75%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

.triangle-container {
  position: relative;
  z-index: 2;
}

.triangle-interactive-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3.5rem;
}

/* Triangle SVG Canvas */
.triangle-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.triangle-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.45));
}

.triangle-path-base {
  fill: none;
  stroke: rgba(168, 85, 247, 0.25);
  stroke-width: 3;
}

.triangle-path-active {
  fill: none;
  stroke: var(--purple-neon);
  stroke-width: 4;
  stroke-dasharray: 800;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 10px var(--purple-neon));
  transition: all var(--transition-slow);
}

.triangle-node {
  cursor: pointer;
  transition: transform var(--transition-normal);
}

.triangle-node circle.node-bg {
  fill: #101018;
  stroke: var(--purple-electric);
  stroke-width: 2.5;
  transition: all var(--transition-normal);
}

.triangle-node:hover circle.node-bg,
.triangle-node.active circle.node-bg {
  fill: var(--purple-neon);
  stroke: #ffffff;
  filter: drop-shadow(0 0 15px var(--purple-neon));
}

.triangle-node text {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  fill: #ffffff;
  text-anchor: middle;
  pointer-events: none;
  font-weight: 700;
}

.triangle-node:hover text,
.triangle-node.active text {
  fill: #000000;
}

.triangle-center-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  text-align: center;
  pointer-events: none;
  z-index: 4;
}

.center-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: 0.08em;
}

.center-title span {
  color: var(--purple-neon);
}

.center-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 700;
  margin-top: 0.35rem;
}

/* Triangle Content Cards */
.triangle-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.triangle-pillar-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.triangle-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background var(--transition-fast);
}

.triangle-pillar-card:hover,
.triangle-pillar-card.active {
  background: var(--bg-surface-elevated);
  border-color: var(--border-purple-active);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--purple-glow-sm);
  transform: translateX(8px);
}

.triangle-pillar-card.active::before {
  background: var(--purple-neon);
  box-shadow: 0 0 10px var(--purple-neon);
}

.card-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.card-title-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.card-node-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--border-purple);
  color: var(--purple-neon);
  font-weight: 700;
}

.triangle-pillar-card.active .card-node-badge {
  background: var(--purple-neon);
  color: #000;
  box-shadow: 0 0 12px var(--purple-neon);
}

.card-node-badge svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
  line-height: 1;
}

.card-keywords {
  font-size: 0.85rem;
  color: var(--purple-neon);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.card-body-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. OUR STORY & BRAND COLORS DNA
   -------------------------------------------------------------------------- */
.story-section {
  background: var(--bg-primary);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-purple);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), var(--purple-glow-sm);
  filter: contrast(1.1) brightness(0.95);
  transition: transform var(--transition-normal);
}

.story-img-main:hover {
  transform: scale(1.02);
}

.story-accent-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
}

.story-accent-badge .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--purple-neon);
}

.story-accent-badge .stat-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.story-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--purple-neon);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--purple-neon);
}

.story-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Color DNA Cards */
.color-dna-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.color-dna-card {
  padding: 1.4rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-normal);
}

.color-dna-card.dna-purple {
  border-top: 3px solid var(--purple-neon);
}

.color-dna-card.dna-black {
  border-top: 3px solid #64748b;
}

.color-dna-card:hover {
  background: var(--bg-surface-elevated);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.color-dna-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.color-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.color-swatch.purple {
  background: var(--purple-neon);
  box-shadow: 0 0 8px var(--purple-neon);
}

.color-swatch.black {
  background: #1c1c28;
  border: 1px solid #94a3b8;
}

.color-dna-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: var(--text-white);
}

.color-dna-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. MISSION & VISION
   -------------------------------------------------------------------------- */
.mission-vision-section {
  background-color: var(--bg-black);
  position: relative;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.mission-card, .vision-card {
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.12) 0%, rgba(16, 16, 24, 0.95) 75%);
  border: 1.5px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.mission-card:hover, .vision-card:hover {
  border-color: var(--purple-neon);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), var(--purple-glow-md);
  transform: translateY(-5px);
}

.card-watermark-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  color: rgba(168, 85, 247, 0.05);
  pointer-events: none;
}

.mission-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--purple-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-neon);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
  margin-bottom: 1.75rem;
}

.mission-icon-box svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.mission-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-neon);
  margin-bottom: 0.5rem;
}

.mission-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.mission-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   9. WHY POWERLADY SECTION
   -------------------------------------------------------------------------- */
.why-section {
  background: var(--bg-primary);
  position: relative;
}

.why-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.why-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--purple-neon), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.why-card:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-purple);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--purple-glow-sm);
}

.why-card:hover::after {
  opacity: 1;
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-neon);
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast);
}

.why-card:hover .why-card-icon {
  transform: scale(1.08);
  box-shadow: 0 0 15px var(--purple-neon);
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. PROGRAMS & TRAINING OFFERINGS
   -------------------------------------------------------------------------- */
.programs-section {
  background-color: var(--bg-black);
  position: relative;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.25rem;
  margin-top: 3.5rem;
}

.program-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.program-card:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-purple);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--purple-glow-md);
}

.program-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.program-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.program-card:hover .program-img {
  transform: scale(1.08);
}

.program-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16, 16, 24, 0.95) 100%);
}

.program-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(16, 16, 24, 0.85);
  border: 1px solid var(--border-purple);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple-neon);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.program-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.program-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 0.65rem;
}

.program-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.program-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.program-benefits li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.program-benefits li svg {
  width: 14px;
  height: 14px;
  fill: var(--purple-neon);
  flex-shrink: 0;
}

.program-cta {
  width: 100%;
}

/* --------------------------------------------------------------------------
   11. FACILITIES & ATMOSPHERIC GALLERY
   -------------------------------------------------------------------------- */
.gallery-section {
  background: var(--bg-primary);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 280px;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.gallery-item:hover {
  border-color: var(--border-purple);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--purple-glow-sm);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow), filter var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 6, 8, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.gallery-caption {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  line-height: 1.1;
}

.gallery-sub {
  font-size: 0.8rem;
  color: var(--purple-neon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Asymmetric Grid Spans */
.gallery-item-1 { grid-column: span 7; grid-row: span 2; }
.gallery-item-2 { grid-column: span 5; grid-row: span 1; }
.gallery-item-3 { grid-column: span 5; grid-row: span 1; }
.gallery-item-4 { grid-column: span 4; grid-row: span 1; }
.gallery-item-5 { grid-column: span 4; grid-row: span 1; }
.gallery-item-6 { grid-column: span 4; grid-row: span 1; }

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(4, 4, 6, 0.95);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-purple);
  box-shadow: 0 0 50px rgba(168, 85, 247, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--purple-neon);
}

/* --------------------------------------------------------------------------
   12. TESTIMONIALS & COMMUNITY VOICES
   -------------------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--bg-black);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

/* Testimonials Placeholder Card */
.testimonials-placeholder {
  max-width: 760px;
  margin: 3.5rem auto 0;
  background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.12) 0%, rgba(16, 16, 24, 0.85) 70%);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.testimonials-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple-neon), transparent);
}

.placeholder-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid var(--border-purple);
  border-radius: 50%;
  color: var(--purple-neon);
  box-shadow: 0 0 20px rgba(192, 64, 255, 0.3);
}

.placeholder-icon svg {
  width: 32px;
  height: 32px;
}

.placeholder-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.03em;
  color: var(--text-white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.placeholder-body {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 2rem;
}

.testimonials-placeholder .btn {
  display: inline-flex;
  white-space: normal;
  text-align: center;
  word-break: break-word;
  max-width: 100%;
}

.testimonial-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  background: var(--bg-surface-elevated);
  border-color: var(--border-purple);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--purple-glow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--purple-neon);
  margin-bottom: 1.25rem;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-electric) 0%, var(--purple-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  border: 1.5px solid var(--purple-neon);
}

.author-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-white);
}

.author-meta span {
  font-size: 0.8rem;
  color: var(--purple-neon);
}

/* --------------------------------------------------------------------------
   13. HIGH-IMPACT MEMBERSHIP CTA BANNER
   -------------------------------------------------------------------------- */
.membership-cta-section {
  background: linear-gradient(135deg, #0f0a17 0%, #170824 50%, #0c0814 100%);
  border-top: 1.5px solid var(--border-purple);
  border-bottom: 1.5px solid var(--border-purple);
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.membership-cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(192, 64, 255, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.membership-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.95;
  color: var(--text-white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.cta-headline span {
  color: var(--purple-neon);
  text-shadow: 0 0 25px rgba(192, 64, 255, 0.5);
}

.cta-subtext {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

/* --------------------------------------------------------------------------
   14. LOCATION & LOCAL SEO HUB
   -------------------------------------------------------------------------- */
.location-section {
  background: var(--bg-primary);
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-top: 3.5rem;
}

.location-info-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.location-info-item:last-child {
  margin-bottom: 0;
}

.loc-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-neon);
  flex-shrink: 0;
}

.loc-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.loc-details h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.loc-details p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.loc-details a {
  color: var(--purple-neon);
  font-weight: 600;
}

.location-map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border-purple);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--purple-glow-sm);
  aspect-ratio: 4 / 3;
}

.location-map-frame {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1) brightness(0.85);
}

.location-map-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(16, 16, 24, 0.9);
  border: 1px solid var(--border-purple);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
}

.location-map-badge-text strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
}

.location-map-badge-text span {
  font-size: 0.8rem;
  color: var(--purple-neon);
}

/* --------------------------------------------------------------------------
   15. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: var(--bg-black);
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 3.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active {
  border-color: var(--border-purple);
  background: var(--bg-surface-elevated);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--text-white);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--purple-neon);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #040406;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--purple-electric);
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--purple-neon);
  color: #000;
  box-shadow: 0 0 15px var(--purple-neon);
  transform: translateY(-2px);
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  background: var(--purple-neon);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--purple-neon);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-muted);
}
.footer-bottom a:hover {
  color: var(--purple-neon);
}

.developer-credit a {
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(192, 64, 255, 0.4);
  text-underline-offset: 3px;
  transition: all 0.25s ease;
}

.developer-credit a:hover {
  color: var(--purple-neon);
  text-decoration-color: var(--purple-neon);
  text-shadow: 0 0 10px rgba(192, 64, 255, 0.5);
}

/* --------------------------------------------------------------------------
   17. FLOATING WHATSAPP BUTTON & MOBILE BOTTOM BAR
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 990;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 12, 20, 0.88);
  border: 1.5px solid var(--purple-neon);
  box-shadow: 0 4px 22px rgba(192, 64, 255, 0.45), inset 0 0 12px rgba(192, 64, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  animation: floatingGlowPulse 2.8s infinite ease-in-out;
  text-decoration: none;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: #25D366;
  filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.6));
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.floating-whatsapp .status-dot {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #22c55e;
  border: 2px solid #060608;
  box-shadow: 0 0 8px #22c55e;
}

.floating-whatsapp:hover, .floating-whatsapp:focus-visible {
  transform: scale(1.08) translateY(-3px);
  border-color: #ffffff;
  box-shadow: 0 8px 32px rgba(192, 64, 255, 0.8), 0 0 20px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp:hover svg, .floating-whatsapp:focus-visible svg {
  animation: iconMicroBounce 0.4s ease;
}

.floating-whatsapp:active {
  transform: scale(0.94) !important;
}

@keyframes floatingGlowPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(192, 64, 255, 0.4), inset 0 0 10px rgba(192, 64, 255, 0.2);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 8px 30px rgba(192, 64, 255, 0.75), inset 0 0 16px rgba(192, 64, 255, 0.4);
    transform: translateY(-4px);
  }
}

/* Mobile Sticky Bottom CTA Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 14, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-purple);
  padding: 0.75rem 1rem;
  z-index: 980;
  gap: 0.75rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.7);
  transform: translateY(105%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
  pointer-events: none;
}

.mobile-sticky-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-sticky-bar.hidden-scroll {
  transform: translateY(105%);
  opacity: 0;
  pointer-events: none;
}

.mobile-sticky-btn {
  flex: 1;
  padding: 0.8rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.mobile-sticky-btn.wa-primary {
  background: rgba(18, 16, 28, 0.95);
  border: 1.5px solid var(--purple-neon);
  color: #ffffff;
  box-shadow: 0 0 15px rgba(192, 64, 255, 0.4);
}

.mobile-sticky-btn.wa-primary svg {
  fill: #25D366;
  width: 18px;
  height: 18px;
}

.mobile-sticky-btn.call-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
}

.mobile-sticky-btn.call-secondary svg {
  fill: currentColor;
  width: 16px;
  height: 16px;
}

.mobile-sticky-btn:active {
  transform: scale(0.96);
}

/* --------------------------------------------------------------------------
   18. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out-cubic), transform 0.8s var(--ease-out-cubic);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* --------------------------------------------------------------------------
   19. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .philosophy-grid,
  .story-grid,
  .location-grid,
  .triangle-interactive-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .gallery-item-1 { grid-column: span 12; grid-row: span 1; }
  .gallery-item-2 { grid-column: span 6; grid-row: span 1; }
  .gallery-item-3 { grid-column: span 6; grid-row: span 1; }
  .gallery-item-4 { grid-column: span 6; grid-row: span 1; }
  .gallery-item-5 { grid-column: span 6; grid-row: span 1; }
  .gallery-item-6 { grid-column: span 12; grid-row: span 1; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #0a0a0f;
    border-left: 1px solid var(--border-purple);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition-normal);
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.8);
    z-index: 1050;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.15rem;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .nav-actions .btn-whatsapp {
    display: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .color-dna-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .floating-whatsapp {
    bottom: 84px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
  .floating-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .mobile-sticky-bar {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }
  .btn {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   20. FOUNDERS SECTION
   -------------------------------------------------------------------------- */

.founders-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-primary) 50%, var(--bg-black) 100%);
}

.founders-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(192, 64, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.founders-section .container {
  position: relative;
  z-index: 1;
}

/* Section header */
.founders-subheading {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--purple-electric);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.founders-intro-text {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-secondary);
  line-height: 1.85;
  max-width: 700px;
  margin: 0 auto;
}

/* Founders grid */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 0;
}

/* Founder card */
.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition-normal), transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.founder-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(192, 64, 255, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  pointer-events: none;
  z-index: 0;
}

.founder-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.18), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.founder-card:hover::before {
  opacity: 1;
}

/* Photo area */
.founder-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.5;
  overflow: hidden;
  background: var(--bg-charcoal);
}

.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--bg-charcoal) 0%, var(--bg-surface) 100%);
}

.founder-photo-icon {
  width: 64px;
  height: 64px;
  fill: var(--purple-electric);
  opacity: 0.35;
}

.founder-photo-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Actual photo */
.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out-cubic);
}

/* Precise head-to-top alignment so both founders align symmetrically */
#founder-1 .founder-photo {
  object-position: center 46%;
}

#founder-2 .founder-photo {
  object-position: center 4%;
}

.founder-card:hover .founder-photo {
  transform: scale(1.04);
}

/* Aesthetic Faded Black Gradient overlay */
.founder-photo-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 8, 0.15) 0%,
    transparent 28%,
    rgba(19, 19, 28, 0.45) 52%,
    rgba(19, 19, 28, 0.92) 78%,
    var(--bg-card) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Info area */
.founder-info {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  flex: 1;
}

.founder-number {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--purple-neon);
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-white);
  line-height: 1.1;
}

.founder-role {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-electric);
  display: block;
  margin-bottom: 0.5rem;
}

.founder-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-purple);
  border-left: 3px solid var(--purple-neon);
  padding-left: 1rem;
  margin: 0.25rem 0 0.75rem;
  line-height: 1.6;
  opacity: 0.85;
}

.founder-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}

.founder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.founder-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(168, 85, 247, 0.12);
  color: var(--purple-electric);
  border: 1px solid rgba(168, 85, 247, 0.25);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.founder-card:hover .founder-tag {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .founder-info {
    padding: 1.5rem;
  }
  .founder-photo-wrapper {
    aspect-ratio: 4 / 3.4;
  }
  #founder-1 .founder-photo {
    object-position: center 48%;
  }
  #founder-2 .founder-photo {
    object-position: center 4%;
  }
}

@media (max-width: 480px) {
  .founder-photo-wrapper {
    aspect-ratio: 4 / 3.4;
  }
  #founder-1 .founder-photo {
    object-position: center 50%;
  }
  #founder-2 .founder-photo {
    object-position: center 3%;
  }
}

/* --------------------------------------------------------------------------
   21. ACCESSIBILITY / PREFERS REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg-img {
    transform: none !important;
  }
  .hero-energy-orb, .floating-whatsapp {
    animation: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
