/* =========================================
   HUMA GYM 'N' NUTRITION — MAIN STYLESHEET
   Premium Women-Only Fitness Center
   Aligarh, India
   ========================================= */

/* -------- CSS VARIABLES -------- */
:root {
  --primary:        #F97316;
  --primary-dark:   #EA580C;
  --secondary:      #0D0D16;
  --accent:         #FBBF24;
  --accent-light:   #FEF08A;
  --highlight:      #FBBF24;
  --bg:             #FFFFFF;
  --bg-section:     #FFF8F2;
  --bg-glass:       rgba(255,255,255,0.7);
  --text-dark:      #111827;
  --text-mid:       #374151;
  --text-light:     #6B7280;
  --text-lighter:   #9CA3AF;
  --border:         #FED7AA;
  --border-light:   #FFEDD5;
  --shadow-sm:      0 2px 8px rgba(249,115,22,0.08);
  --shadow-md:      0 8px 32px rgba(249,115,22,0.12);
  --shadow-lg:      0 20px 60px rgba(249,115,22,0.18);
  --shadow-glow:    0 0 40px rgba(251,191,36,0.3);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
  --radius-xl:      32px;
  --radius-full:    9999px;
  --transition:     all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow:all 0.6s cubic-bezier(0.4,0,0.2,1);
  --font-head:      'Poppins', sans-serif;
  --font-body:      'Inter', sans-serif;
  --container:      1200px;
  --header-h:       80px;
  --header-h-sm:    64px;
}

/* -------- RESET -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); }
*:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: var(--radius-sm); }

/* -------- CONTAINER -------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* -------- TYPOGRAPHY -------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); line-height: 1.2; }

/* -------- UTILITY -------- */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.w-full { width: 100%; }
.section { padding: 5rem 0; }
@media (max-width: 768px) { .section { padding: 3.5rem 0; } }

/* -------- FLOATING BG SHAPES -------- */
.bg-shapes { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.06;
  animation: floatShape 12s ease-in-out infinite;
}
.shape-1 { width: 600px; height: 600px; background: var(--primary); top: -200px; left: -200px; animation-delay: 0s; }
.shape-2 { width: 400px; height: 400px; background: var(--accent); top: 40%; right: -150px; animation-delay: -4s; }
.shape-3 { width: 500px; height: 500px; background: var(--secondary); bottom: -200px; left: 30%; animation-delay: -8s; }
.shape-4 { width: 300px; height: 300px; background: var(--highlight); top: 60%; left: 10%; animation-delay: -2s; }
@keyframes floatShape {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  padding: 0.7rem 1.6rem; border-radius: var(--radius-full);
  transition: var(--transition); position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124,58,237,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.btn-outline-purple {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-purple:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  padding: 0.75rem 1.5rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  width: 100%; justify-content: center; margin-top: 1rem;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.875rem; }

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(244,114,182,0.1));
  color: var(--primary);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem; font-weight: 600; font-family: var(--font-head);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(124,58,237,0.1);
  box-shadow: var(--shadow-sm);
}
.header.scrolled .header-inner { height: var(--header-h-sm); }
.header:not(.scrolled) .header-inner { height: var(--header-h); }

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon { flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-family: var(--font-head); font-weight: 500; font-size: 0.68rem;
  color: var(--text-light); letter-spacing: 0.05em;
}
.header:not(.scrolled) .logo-sub { color: rgba(255,255,255,0.7); }
.header:not(.scrolled) .logo-name {
  -webkit-text-fill-color: white;
  background: none;
  color: white;
}

/* Nav */
.nav { display: none; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  font-family: var(--font-head); font-weight: 500; font-size: 0.9rem;
  padding: 0.5rem 0.9rem; border-radius: var(--radius-full);
  transition: var(--transition);
  color: var(--text-dark);
  position: relative;
}
.header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.nav-link:hover {
  color: var(--primary);
  background: rgba(124,58,237,0.08);
}
.header:not(.scrolled) .nav-link:hover {
  color: white;
  background: rgba(255,255,255,0.15);
}
.nav-link.active { color: var(--primary); }
.header:not(.scrolled) .nav-link.active { color: white; font-weight: 700; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 1rem; }
.header:not(.scrolled) .btn-primary {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.header:not(.scrolled) .btn-primary:hover {
  background: rgba(255,255,255,0.3);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex; flex-direction: column;
  gap: 5px; padding: 6px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn span {
  display: block; width: 24px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: var(--transition);
}
.header:not(.scrolled) .mobile-menu-btn span { background: white; }
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { max-height: 600px; }
.mobile-nav-list { padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: block; padding: 0.75rem 1rem;
  font-family: var(--font-head); font-weight: 500; font-size: 1rem;
  color: var(--text-dark); border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-nav-link:hover { background: var(--bg-section); color: var(--primary); }

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: #0D0D0D;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(109,28,189,0.75) 0%,
    rgba(124,58,237,0.65) 30%,
    rgba(168,85,247,0.5) 60%,
    rgba(244,114,182,0.45) 100%
  );
}

.hero-content {
  position: relative; z-index: 1;
  padding: 4rem 0;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white; border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem; font-weight: 600; font-family: var(--font-head);
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent-light), var(--highlight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3rem;
}

/* Trust Indicators */
.trust-indicators {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
}
.trust-card {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 0.7rem 1rem;
  color: white;
  transition: var(--transition);
}
.trust-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.trust-icon { font-size: 1.2rem; }
.trust-info { display: flex; flex-direction: column; line-height: 1.2; }
.trust-info strong { font-size: 0.95rem; font-weight: 700; font-family: var(--font-head); }
.trust-info span { font-size: 0.75rem; opacity: 0.8; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator {
  width: 28px; height: 44px; border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px; position: relative;
}
.scroll-indicator::after {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: white;
  border-radius: 2px; animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(16px); opacity: 0; }
}

/* =========================================
   MARQUEE STRIP
   ========================================= */
.marquee-strip {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 0.85rem 0; overflow: hidden;
  position: relative; z-index: 1;
}
.marquee-inner {
  display: flex; align-items: center; gap: 1.5rem;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: rgba(255,255,255,0.9); letter-spacing: 0.05em; text-transform: uppercase;
}
.marquee-inner .dot { color: var(--accent-light); font-size: 0.7rem; }
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about { background: var(--bg); }
.about-grid {
  display: grid; gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

.about-image-wrapper {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img {
  width: 100%; height: 480px;
  object-fit: cover; object-position: center top;
  transition: transform 0.8s ease;
}
.about-image-wrapper:hover .about-img { transform: scale(1.03); }
.about-image-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white; border-radius: var(--radius-lg);
  padding: 1rem 1.25rem; text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-number { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 900; line-height: 1; }
.badge-label { display: block; font-size: 0.75rem; font-weight: 500; opacity: 0.9; margin-top: 0.25rem; }
.about-image-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(124,58,237,0.15) 0%, transparent 50%);
}

.about-intro {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 2rem;
}
.about-features { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.about-feature {
  display: flex; align-items: flex-start; gap: 1rem;
}
.feature-icon-wrap {
  font-size: 1.5rem; width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(244,114,182,0.1));
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  border: 1px solid rgba(124,58,237,0.15);
}
.about-feature h3 { font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.25rem; }
.about-feature p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* =========================================
   RESULTS SECTION
   ========================================= */
.results {
  background: var(--bg-section);
  position: relative; overflow: hidden;
}
.results-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,58,237,0.04) 0%, transparent 70%);
}

.stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
  background: white; border-radius: var(--radius-xl);
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.04), rgba(244,114,182,0.04));
  opacity: 0; transition: var(--transition);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-card:hover::before { opacity: 1; }
.stat-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.stat-number {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.stat-suffix {
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.stat-label {
  font-size: 0.9rem; color: var(--text-light); font-weight: 500;
  margin-top: 0.5rem;
}

.transformation-showcase {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.transformation-img {
  width: 100%; max-height: 450px; object-fit: cover;
  transition: transform 0.8s ease;
}
.transformation-showcase:hover .transformation-img { transform: scale(1.02); }
.transformation-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(13,13,22,0.95) 0%, rgba(13,13,22,0.3) 70%, transparent 100%);
  padding: 2rem;
}
.transformation-quote {
  color: white; font-size: 1.2rem; font-weight: 600;
  font-family: var(--font-head); font-style: italic;
  margin-bottom: 0.5rem;
}
.transformation-author { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* =========================================
   FEATURES / FACILITIES SECTION
   ========================================= */
.facilities { background: var(--bg); }

.features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card {
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 2rem 1.5rem;
  transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0; transition: var(--transition);
}
.feature-card:hover, .feature-card:focus {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before, .feature-card:focus::before { opacity: 1; }
.feature-card:hover .feature-icon-bg,
.feature-card:focus .feature-icon-bg { background: rgba(255,255,255,0.2); }
.feature-card:hover h3, .feature-card:focus h3 { color: white; }
.feature-card:hover p, .feature-card:focus p { color: rgba(255,255,255,0.85); }
.feature-card:hover svg, .feature-card:focus svg { color: white; }

.feature-icon-bg {
  width: 64px; height: 64px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(244,114,182,0.1));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--primary);
  transition: var(--transition);
  position: relative; z-index: 1;
}
.feature-card h3 {
  font-size: 1rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 0.6rem; line-height: 1.3;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.feature-card p {
  font-size: 0.875rem; color: var(--text-light); line-height: 1.6;
  position: relative; z-index: 1;
  transition: var(--transition);
}

/* =========================================
   PROGRAMS SECTION
   ========================================= */
.programs {
  background: var(--bg-section);
  position: relative; overflow: hidden;
}
.programs-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(244,114,182,0.05) 0%, transparent 60%);
}

.programs-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }

.program-card {
  background: white; border-radius: var(--radius-xl);
  padding: 2rem; border: 1px solid var(--border-light);
  transition: var(--transition); position: relative;
  display: flex; flex-direction: column;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.program-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent; color: white;
  transform: scale(1.02);
  box-shadow: var(--shadow-glow);
}
.program-card.featured:hover { transform: scale(1.02) translateY(-6px); box-shadow: 0 24px 60px rgba(124,58,237,0.4); }
.program-badge-top {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--highlight); color: #1a1a1a;
  padding: 0.35rem 1.25rem; border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 700; font-family: var(--font-head);
  white-space: nowrap; box-shadow: 0 4px 12px rgba(251,191,36,0.4);
}
.program-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.program-card h3 {
  font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.program-card.featured h3 { color: white; }
.program-card p {
  font-size: 0.9rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1.25rem;
}
.program-card.featured p { color: rgba(255,255,255,0.85); }
.program-features {
  list-style: none; margin-bottom: 1.5rem; flex: 1;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.program-features li {
  font-size: 0.875rem; color: var(--text-mid);
  display: flex; align-items: center; gap: 8px;
}
.program-features li::before {
  content: '✓'; color: var(--primary); font-weight: 700;
  width: 18px; height: 18px; background: rgba(124,58,237,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; flex-shrink: 0;
}
.program-card.featured .program-features li { color: rgba(255,255,255,0.9); }
.program-card.featured .program-features li::before {
  color: var(--primary); background: rgba(255,255,255,0.9);
}
.program-card.featured .btn-primary {
  background: white; color: var(--primary);
}
.program-card.featured .btn-primary:hover {
  background: rgba(255,255,255,0.9); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

/* =========================================
   TRAINER SECTION
   ========================================= */
.trainer { background: var(--bg); }
.trainer-grid {
  display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) {
  .trainer-grid { grid-template-columns: 1fr 1fr; }
}

.trainer-image-wrapper {
  position: relative;
}
.trainer-img {
  width: 100%; max-height: 560px; object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.8s ease;
}
.trainer-image-wrapper:hover .trainer-img { transform: scale(1.02); }
.trainer-image-glow {
  position: absolute; inset: -4px;
  border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  z-index: -1; opacity: 0.35; filter: blur(20px);
}
.trainer-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: white; color: var(--primary);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.25rem;
  font-weight: 600; font-size: 0.9rem; font-family: var(--font-head);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
}
.badge-icon { font-size: 1.1rem; }

.trainer-intro {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 2rem;
}
.trainer-credentials { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.credential {
  display: flex; align-items: flex-start; gap: 1rem;
}
.credential-icon {
  font-size: 1.4rem; width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(244,114,182,0.08));
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
  border: 1px solid rgba(124,58,237,0.12);
}
.credential strong { display: block; font-weight: 700; font-size: 0.95rem; color: var(--text-dark); margin-bottom: 0.2rem; }
.credential span { font-size: 0.875rem; color: var(--text-light); line-height: 1.5; }

/* =========================================
   NUTRITION SECTION
   ========================================= */
.nutrition-section { background: var(--bg-section); }
.nutrition-grid {
  display: grid; gap: 4rem; align-items: center;
}
@media (min-width: 1024px) {
  .nutrition-grid { grid-template-columns: 1fr 1fr; }
}

.nutrition-content p {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.8;
  margin-bottom: 1.5rem;
}
.nutrition-points { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.nutrition-point {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.95rem; color: var(--text-mid); font-weight: 500;
}
.nutrition-point span {
  color: var(--primary); font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}

.nutrition-image { position: relative; }
.nutrition-img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform 0.8s ease;
}
.nutrition-image:hover .nutrition-img { transform: scale(1.02); }
.nutrition-glow {
  position: absolute; inset: -4px; border-radius: calc(var(--radius-xl) + 4px);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  z-index: -1; opacity: 0.25; filter: blur(20px);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--bg); overflow: hidden; }

.testimonials-slider {
  position: relative; overflow: hidden;
}
.testimonials-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(124,58,237,0.15);
  border-radius: var(--radius-xl); padding: 2rem;
  min-width: 340px; max-width: 340px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
@media (max-width: 640px) { .testimonial-card { min-width: 290px; max-width: 290px; } }

.testimonial-stars { font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem; color: var(--text-mid); line-height: 1.8;
  font-style: italic; margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: white;
  font-family: var(--font-head); flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--text-dark); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

.testimonials-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; margin-top: 2.5rem;
}
.testimonial-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: white; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.testimonial-btn:hover {
  background: var(--primary); color: white;
  border-color: var(--primary); transform: scale(1.1);
}
.testimonial-dots { display: flex; gap: 6px; }
.testimonial-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); transition: var(--transition);
}
.testimonial-dots .dot.active {
  width: 24px; border-radius: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* =========================================
   GALLERY
   ========================================= */
.gallery { background: var(--bg-section); }

.gallery-filter {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  padding: 0.5rem 1.25rem; border-radius: var(--radius-full);
  border: 1.5px solid var(--border); color: var(--text-mid);
  transition: var(--transition); background: white;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; border-color: transparent;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-rows: 220px;
}
@media (min-width: 768px) {
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 250px; }
}
@media (min-width: 1024px) {
  .gallery-masonry { grid-auto-rows: 280px; }
}

.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius-xl); cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 639px) { .gallery-item.wide { grid-column: span 1; } }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(109,28,189,0.8) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start;
  padding: 1.25rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay { opacity: 1; }
.gallery-label {
  font-size: 0.85rem; font-weight: 600; font-family: var(--font-head);
  color: white; text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.gallery-zoom-icon { font-size: 1.2rem; position: absolute; top: 1rem; right: 1rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
}
.lightbox-content {
  position: relative; z-index: 1;
  max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.lightbox-close {
  position: absolute; top: -3rem; right: 0;
  color: white; font-size: 2rem; line-height: 1; padding: 0.5rem;
  transition: var(--transition); background: rgba(255,255,255,0.1);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }
.lightbox-img {
  max-width: 100%; max-height: 80vh; border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; text-align: center;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  position: relative; overflow: hidden; padding: 6rem 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}
.cta-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 680px; margin: 0 auto;
}
.cta-icon { font-size: 3rem; margin-bottom: 1rem; animation: floatIcon 3s ease-in-out infinite; }
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: white;
  line-height: 1.2; margin-bottom: 1.25rem;
}
.cta-title span { display: block; color: var(--highlight); }
.cta-subtitle {
  color: rgba(255,255,255,0.88); font-size: 1.05rem; line-height: 1.7;
  margin-bottom: 2.5rem;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.cta-guarantee { color: rgba(255,255,255,0.75); font-size: 0.85rem; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact { background: var(--bg); }
.contact-grid {
  display: grid; gap: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  background: var(--bg-section); border-radius: var(--radius-xl);
  padding: 2rem; border: 1px solid var(--border-light);
  margin-bottom: 1.5rem;
}
.contact-card h3 {
  font-size: 1.3rem; font-weight: 800; color: var(--text-dark);
  margin-bottom: 1.5rem; font-family: var(--font-head);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-item-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(244,114,182,0.1));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
  border: 1px solid rgba(124,58,237,0.15);
}
.contact-item strong { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.3rem; color: var(--text-dark); }
.contact-item span { font-size: 0.875rem; color: var(--text-light); display: block; line-height: 1.6; }
.contact-item a { color: var(--primary); font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.contact-item a:hover { color: var(--accent); }

.map-wrapper {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border-light);
}
.map-wrapper iframe { display: block; }

/* Contact Form */
.contact-form {
  background: var(--bg-section); border-radius: var(--radius-xl);
  padding: 2.5rem; border: 1px solid var(--border-light);
}
.contact-form h3 {
  font-size: 1.3rem; font-weight: 800; color: var(--text-dark);
  margin-bottom: 0.5rem; font-family: var(--font-head);
}
.contact-form > p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.75rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  background: white; font-size: 0.95rem; color: var(--text-dark);
  transition: var(--transition); resize: vertical;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lighter); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }

.form-success {
  display: flex; align-items: center; gap: 12px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-md); padding: 1rem 1.25rem; margin-top: 1rem;
}
.form-success span { font-size: 1.5rem; }
.form-success p { font-size: 0.9rem; color: #15803d; font-weight: 500; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: #0F0A1A; }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .logo-name { -webkit-text-fill-color: white; background: none; color: white; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-brand-desc { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 1.25rem 0; }
.footer-rating { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 1.25rem; }
.rating-stars { font-size: 0.9rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.social-link:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }

.footer-links-col h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  color: white; margin-bottom: 1.25rem;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-col a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5);
  transition: var(--transition); display: inline-block;
}
.footer-links-col a:hover { color: var(--accent); transform: translateX(4px); }

.footer-contact-col h4 {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  color: white; margin-bottom: 1.25rem;
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 1rem;
}
.footer-contact-item span { font-size: 1rem; flex-shrink: 0; }
.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6;
}
.footer-contact-item a { transition: var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.825rem; color: rgba(255,255,255,0.3); }

/* =========================================
   WHATSAPP FLOAT + BACK TO TOP
   ========================================= */
.whatsapp-float {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: var(--transition); z-index: 900;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}
.whatsapp-tooltip {
  position: absolute; left: 70px;
  background: #333; color: white;
  font-size: 0.8rem; font-weight: 600;
  padding: 0.4rem 0.9rem; border-radius: var(--radius-md);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: var(--transition); z-index: 900;
}
.back-to-top:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.back-to-top[hidden] { display: none; }

/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-indicators { gap: 0.5rem; }
  .trust-card { padding: 0.6rem 0.75rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
  .about-img { height: 340px; }
  .trainer-img { max-height: 400px; }
  .contact-form { padding: 1.5rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* =========================================
   ABOUT — CSS VISUAL PANEL
   ========================================= */
.about-visual-panel {
  position: relative;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.avp-main-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.avp-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 40%, #0F0F16 75%, #FBBF24 100%);
  animation: avpGradient 8s ease-in-out infinite alternate;
}
@keyframes avpGradient {
  from { filter: hue-rotate(0deg); }
  to   { filter: hue-rotate(20deg); }
}
.avp-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 40%);
}
.avp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 100%);
}
.avp-center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  opacity: 0.6;
}
.avp-quote {
  position: absolute;
  bottom: 2rem;
  left: 1.5rem;
  right: 1.5rem;
  color: white;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Floating achievement badges */
.avp-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 2;
  animation: badgeFloat 4s ease-in-out infinite alternate;
  min-width: 155px;
}
.avp-badge-icon { font-size: 1.5rem; flex-shrink: 0; }
.avp-badge strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.avp-badge span   { font-size: 0.72rem; color: var(--text-light); }

.avp-badge-1 { top: -16px;  left: -20px;  animation-delay: 0s; }
.avp-badge-2 { top: 30%;    right: -20px; animation-delay: -1s; }
.avp-badge-3 { bottom: 25%; left: -20px;  animation-delay: -2s; }
.avp-badge-4 { bottom: -16px; right: 10%; animation-delay: -0.5s; }

@keyframes badgeFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

/* Mini stats row */
.avp-mini-stats {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-full);
  padding: 0.6rem 1.25rem;
  z-index: 2;
  white-space: nowrap;
}
.avp-mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.6rem;
}
.avp-mini-stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.3);
}
.avp-mini-stat strong { font-size: 0.85rem; font-weight: 800; color: white; font-family: var(--font-head); }
.avp-mini-stat span   { font-size: 0.65rem; color: rgba(255,255,255,0.75); }

@media (max-width: 480px) {
  .avp-badge-1, .avp-badge-3 { left: 0; }
  .avp-badge-2, .avp-badge-4 { right: 0; }
  .about-visual-panel { height: 420px; }
}

/* =========================================
   TRANSFORMATION — MEMBER ACHIEVEMENT CARDS
   ========================================= */
.transform-cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .transform-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .transform-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.transform-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.transform-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border);
}
.transform-card.tc-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #FFF7ED, #FFFBEB);
  border-color: rgba(249,115,22,0.2);
}
@media (min-width: 1024px) {
  .transform-card.tc-featured { grid-column: auto; }
}

/* Before/After display */
.tc-before-after {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--bg-section);
  border-radius: var(--radius-lg);
  padding: 1rem;
}
.tc-phase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.tc-phase-icon { font-size: 2rem; }
.tc-phase span  { font-size: 0.72rem; color: var(--text-lighter); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.tc-phase strong { font-size: 1.1rem; font-weight: 800; font-family: var(--font-head); color: var(--text-dark); }

.tc-before { opacity: 0.7; }
.tc-arrow {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* Result number */
.tc-result {
  text-align: center;
}
.tc-result-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.tc-result-label {
  font-size: 0.8rem;
  color: var(--text-lighter);
  font-weight: 500;
}

/* Member info */
.tc-member {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1rem;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.tc-member strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.tc-member span   { font-size: 0.75rem; color: var(--text-lighter); }

/* Review text */
.tc-review {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  font-style: italic;
  border-left: 3px solid var(--border);
  padding-left: 0.75rem;
}

/* Quick stat row */
.transform-stat-row {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  box-shadow: var(--shadow-glow);
}
@media (min-width: 640px) {
  .transform-stat-row { grid-template-columns: repeat(4, 1fr); }
}
.transform-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
}
.transform-stat-item:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.15);
}
.tsi-num  { font-size: 1.6rem; font-weight: 900; color: white; font-family: var(--font-head); }
.tsi-label { font-size: 0.75rem; color: rgba(255,255,255,0.75); margin: 2px 0; }
.tsi-name  { font-size: 0.72rem; color: rgba(255,255,255,0.5); font-style: italic; }

/* =========================================
   TRAINER — PORTRAIT CARD (CSS BG IMAGE)
   ========================================= */
.trainer-portrait-card {
  position: relative;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.tpc-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tpc-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: transform 0.8s ease;
}
.tpc-bg:hover .tpc-bg-image { transform: scale(1.03); }

/* Fallback gradient if image fails */
.tpc-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1A0A00 0%, #2D1200 35%, #3D1A00 55%, #F97316 100%);
  z-index: -1;
}

.tpc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

/* Floating certification badges */
.tpc-cert {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  z-index: 3;
  animation: certFloat 4s ease-in-out infinite alternate;
  font-family: var(--font-head);
}
.tpc-cert span { font-size: 1.25rem; }
.tpc-cert strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.tpc-cert > div > span { font-size: 0.68rem; color: var(--text-light); }

.tpc-cert-1 { top: 1rem;  right: -16px; animation-delay: 0s;  }
.tpc-cert-2 { top: 40%;  left: -16px;  animation-delay: -1.5s; }
.tpc-cert-3 { bottom: 30%; right: -16px; animation-delay: -0.8s; }

@keyframes certFloat {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

/* Experience ribbon */
.tpc-exp-ribbon {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  color: #000;
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 4px;
  box-shadow: 0 4px 16px rgba(249,115,22,0.4);
}
.tpc-exp-num { font-size: 1.4rem; font-weight: 900; font-family: var(--font-head); line-height: 1; }
.tpc-exp-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; }

/* Name card */
.tpc-name-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.tpc-name-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 900; font-size: 0.85rem;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.tpc-name-card strong { display: block; font-size: 0.95rem; color: var(--text-dark); font-family: var(--font-head); }
.tpc-name-card span   { font-size: 0.78rem; color: var(--text-light); }

@media (max-width: 768px) {
  .trainer-portrait-card { height: 420px; }
  .tpc-cert-1, .tpc-cert-2, .tpc-cert-3 { right: 8px; left: 8px; width: auto; }
}

/* =========================================
   NUTRITION — VISUAL PANEL (CSS BG IMAGE)
   ========================================= */
.nutrition-visual-panel {
  position: relative;
  height: 480px;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.nvp-bg-image {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform 0.8s ease;
}
.nvp-bg-image:hover { transform: scale(1.02); }

.nvp-fallback {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #F97316 0%, #EA580C 40%, #0F0F16 80%, #FBBF24 100%);
  display: flex; align-items: center; justify-content: center;
  z-index: -1;
}
.nvp-center-icon { font-size: 5rem; opacity: 0.4; }

.nvp-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(249,115,22,0.45) 0%,
    rgba(251,191,36,0.3) 50%,
    rgba(15,15,22,0.2) 100%
  );
}

/* Floating food cards */
.nvp-food-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 3;
  animation: nvpFloat 5s ease-in-out infinite alternate;
  font-family: var(--font-head);
  min-width: 150px;
}
.nvp-food-card span { font-size: 1.4rem; flex-shrink: 0; }
.nvp-food-card strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-dark); line-height: 1.2; }
.nvp-food-card > div > span { font-size: 0.68rem; color: var(--text-light); }

.nvp-fc-1 { top: 1rem;  left: -20px;  animation-delay: 0s; }
.nvp-fc-2 { top: 35%;   right: -20px; animation-delay: -1.5s; }
.nvp-fc-3 { bottom: 35%; left: -20px; animation-delay: -3s; }
.nvp-fc-4 { bottom: 1rem; right: -20px; animation-delay: -0.8s; }

@keyframes nvpFloat {
  from { transform: translateY(0) rotate(-1deg); }
  to   { transform: translateY(-12px) rotate(1deg); }
}

/* Calorie ring badge */
.nvp-calorie-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.95);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 3;
}
.ncb-ring {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.ncb-ring svg { position: absolute; inset: 0; }
.ncb-ring span {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; font-family: var(--font-head);
  color: var(--primary);
}
.nvp-calorie-badge strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.nvp-calorie-badge span   { font-size: 0.72rem; color: var(--text-light); }

@media (max-width: 768px) {
  .nutrition-visual-panel { height: 380px; }
  .nvp-fc-1, .nvp-fc-3 { left: 8px; }
  .nvp-fc-2, .nvp-fc-4 { right: 8px; }
}

/* =========================================
   GALLERY — CSS BACKGROUND-IMAGE ITEMS
   ========================================= */
.gallery-item.gi-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* No img child needed - pure CSS bg */
}

/* Remove stale img rule for gi-bg items */
.gallery-item.gi-bg img { display: none; }

/* Ensure gallery items have correct dimensions */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  grid-auto-rows: 220px;
}
@media (min-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
  }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-section);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay { opacity: 1; }

.gallery-label {
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
}
.gallery-zoom-icon {
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 1.2rem;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}

/* Gallery hover zoom */
.gallery-item.gi-bg {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item.gi-bg:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: 2;
}

/* =========================================
   PREMIUM CONVERSION POPUP MODAL
   ========================================= */
.popup-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
}
.popup-modal.active {
  opacity: 1;
  visibility: visible;
}

.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 18, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: opacity 0.4s ease;
}

.popup-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: rgba(20, 20, 30, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%),
                    linear-gradient(135deg, rgba(249,115,22,0.3) 0%, rgba(251,191,36,0.05) 50%, transparent 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(249,115,22,0.15);
  z-index: 2;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: white;
  margin: 2rem auto;
  overflow: hidden;
}
/* Custom Scrollbar for popup-wrapper (safeguard) */
.popup-wrapper::-webkit-scrollbar {
  width: 6px;
}
.popup-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-full);
}
.popup-wrapper::-webkit-scrollbar-thumb {
  background: rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-full);
}
.popup-wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(249, 115, 22, 0.5);
}

.popup-modal.active .popup-wrapper {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  line-height: 1;
}
.popup-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
  box-shadow: 0 0 15px rgba(249,115,22,0.4);
  border-color: transparent;
}

.popup-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}
.popup-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #FFFFFF 30%, #FED7AA 70%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}
.popup-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-bottom: 1.75rem;
  flex-shrink: 0;
}

.popup-form {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}
.popup-form-body {
  overflow-y: auto;
  flex: 1 1 auto;
  padding-right: 0.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
/* Scrollbar styling for popup-form-body */
.popup-form-body::-webkit-scrollbar {
  width: 6px;
}
.popup-form-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-full);
}
.popup-form-body::-webkit-scrollbar-thumb {
  background: rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-full);
}
.popup-form-body::-webkit-scrollbar-thumb:hover {
  background: rgba(249, 115, 22, 0.5);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.popup-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.popup-form label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.popup-form select option {
  background: #111;
  color: white;
}

.popup-form input::placeholder,
.popup-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 10px rgba(249, 115, 22, 0.2);
}

.popup-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  text-align: center;
}

/* Spinner & Button styles inside modal */
#popupSubmit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}
.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s ease-in-out infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.popup-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
  flex-shrink: 0;
}

.popup-buttons-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-popup-call,
.btn-popup-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: #000;
  transition: var(--transition);
  width: 100%;
  height: 48px;
}

.btn-popup-call {
  background: linear-gradient(135deg, #F97316, #FBBF24);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.btn-popup-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 115, 22, 0.45);
}

.btn-popup-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.btn-popup-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

/* Success Screen inside popup */
.popup-success-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 0;
  overflow-y: auto;
  max-height: 100%;
  width: 100%;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid #25D366;
  color: #25D366;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  animation: scaleInSuccess 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes scaleInSuccess {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-success-screen h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #25D366;
  margin-bottom: 0.5rem;
}
.popup-success-screen p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}
.success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
.success-actions .popup-buttons-row {
  width: 100%;
}

/* =========================================
   FLOATING ACTION BUTTONS (BOTTOM RIGHT)
   ========================================= */
.floating-actions {
  position: fixed;
  bottom: 5.5rem; /* Stacked right above back-to-top */
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 990;
}

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
  animation: floatButton 3s ease-in-out infinite alternate;
}

.float-call {
  background: linear-gradient(135deg, #F97316, #FBBF24);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
  animation-delay: 0s;
}
.float-call:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.6), 0 0 15px rgba(251, 191, 36, 0.3);
}

.float-wa {
  background: #25D366;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  animation-delay: -1.5s;
}
.float-wa:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6), 0 0 15px rgba(37, 211, 102, 0.3);
}

@keyframes floatButton {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

@media (max-width: 640px) {
  .floating-actions {
    right: 1rem;
    bottom: 5rem;
    gap: 0.6rem;
  }
  .float-btn {
    width: 44px;
    height: 44px;
  }
}

