/* ============================================
   HORMONIZE – Fitness & Weight Training
   Premium Design System — Logo Colors
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Logo-derived palette */
  --teal: #2A5F4E;
  --teal-dark: #1E4639;
  --teal-light: #3A7A66;
  --burgundy: #7A2E3C;
  --burgundy-dark: #5E1F2D;
  --burgundy-light: #9B3D4F;
  --gold: #C9A54E;
  --gold-light: #DBBE6E;
  --gold-dark: #A8883A;
  --cream: #F7F2EB;
  --cream-dark: #EDE6DA;
  --cream-deeper: #E3DACB;

  /* Semantic */
  --primary: var(--teal);
  --primary-dark: var(--teal-dark);
  --primary-light: var(--teal-light);
  --accent: var(--burgundy);
  --accent-dark: var(--burgundy-dark);
  --accent-light: var(--burgundy-light);
  --highlight: var(--gold);
  --highlight-light: var(--gold-light);

  --bg: #FFFFFF;
  --bg-warm: var(--cream);
  --bg-dark: #121210;
  --bg-section: #FDFBF7;
  --text: #2A2A28;
  --text-light: #5A5A56;
  --text-muted: #8A8A84;
  --text-on-dark: #F0EDE6;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(42, 42, 40, 0.06);
  --shadow-md: 0 8px 30px rgba(42, 42, 40, 0.10);
  --shadow-lg: 0 20px 60px rgba(42, 42, 40, 0.14);
  --shadow-gold: 0 8px 30px rgba(201, 165, 78, 0.25);
  --shadow-teal: 0 8px 30px rgba(42, 95, 78, 0.25);
  --shadow-burgundy: 0 8px 30px rgba(122, 46, 60, 0.20);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  /* Transitions */
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

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

img {
  max-width: 100%;
  display: block;
}

ul { list-style: none; }

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 20px;
  color: var(--text);
}

.section-title .em {
  color: var(--teal);
}

.section-title .em-burgundy {
  color: var(--burgundy);
}

.section-title .em-gold {
  color: var(--gold);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.8;
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content { text-align: center; }

.preloader-logo { margin-bottom: 30px; }

.preloader-logo-img {
  width: 110px;
  height: auto;
  margin: 0 auto;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--burgundy));
  border-radius: 2px;
  animation: preloaderFill 2s ease-in-out forwards;
}

@keyframes preloaderFill { to { width: 100%; } }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(247, 242, 235, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; }

.nav-logo-img {
  height: 46px;
  width: auto;
  transition: all var(--transition);
}

.navbar.scrolled .nav-logo-img {
  height: 38px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  transition: color var(--transition);
}

.navbar.scrolled .nav-links a { color: var(--text); }

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

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

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light)) !important;
  color: #fff !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 1.5px;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-burgundy);
  color: #fff !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-hamburger span { background: var(--text); }

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 120%;
  background-image: url('assets/hero-bg.png');
  background-size: cover;
  background-position: center top;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 16, 0.75) 0%,
    rgba(18, 18, 16, 0.45) 50%,
    rgba(18, 18, 16, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px 0 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 165, 78, 0.12);
  border: 1px solid rgba(201, 165, 78, 0.25);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.05;
  font-weight: 800;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .highlight-burgundy {
  color: var(--burgundy-light);
  -webkit-text-fill-color: var(--burgundy-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.hero-cta:hover::before { left: 100%; }

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-burgundy);
}

.hero-cta svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg { transform: translateX(4px); }

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 16px 24px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  transition: all var(--transition);
}

.hero-cta-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,165,78,0.08);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Floating icons */
.floating-icons {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.float-icon {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.10;
  filter: drop-shadow(0 0 20px rgba(201,165,78,0.25));
}

.float-icon:nth-child(1) { top: 18%; right: 8%; }
.float-icon:nth-child(2) { top: 35%; right: 15%; font-size: 1.8rem; }
.float-icon:nth-child(3) { bottom: 20%; right: 10%; font-size: 2.5rem; }
.float-icon:nth-child(4) { bottom: 35%; right: 5%; font-size: 1.6rem; }
.float-icon:nth-child(5) { top: 55%; right: 3%; font-size: 1.5rem; }

/* ---------- About Section ---------- */
.about {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--cream) 0%, transparent 70%);
  opacity: 0.5;
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center top;
}

.about-image-decoration {
  position: absolute;
  top: -16px; left: -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  opacity: 0.25;
  z-index: -1;
}

.about-image-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: #fff;
  padding: 20px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-burgundy);
}

.about-image-badge .badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
}

.about-image-badge .badge-text {
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-top: 4px;
}

.about-content { padding: 10px 0; }

.about-text {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 32px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.about-feature:hover {
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-color: var(--cream-deeper);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: #fff;
}

.about-feature span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

/* ---------- Services & Pricing ---------- */
.services {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-subtitle { margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-slow);
  border: 1px solid var(--cream-deeper);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

/* Featured card */
.pricing-card.featured {
  background: linear-gradient(160deg, #1A1A18, #2A2220);
  border: 1px solid rgba(201,165,78,0.2);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(1);
}

.pricing-card.featured .pricing-icon,
.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-amount,
.pricing-card.featured .pricing-period,
.pricing-card.featured .pricing-features li {
  color: rgba(240,237,230,0.8);
}

.pricing-card.featured .pricing-name { color: #fff; }
.pricing-card.featured .pricing-amount { color: var(--gold); }

.pricing-popular {
  position: absolute;
  top: 18px; right: -32px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 42px;
  transform: rotate(45deg);
}

.pricing-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.pricing-currency {
  font-size: 1.1rem;
  vertical-align: top;
  margin-right: 2px;
}

.pricing-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  margin-top: 4px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.84rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li svg {
  width: 15px; height: 15px;
  color: var(--teal);
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li {
  border-bottom-color: rgba(255,255,255,0.06);
}

.pricing-card.featured .pricing-features li svg { color: var(--gold); }

.pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 13px 24px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: all var(--transition);
}

.pricing-btn:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.pricing-card.featured .pricing-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: var(--gold);
  color: var(--bg-dark);
}

.pricing-card.featured .pricing-btn:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* ---------- Programs Section ---------- */
.programs {
  padding: 100px 0;
  background: var(--bg);
}

.programs-header {
  text-align: center;
  margin-bottom: 50px;
}

.programs-header .section-subtitle { margin: 0 auto; }

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.program-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--burgundy));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

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

.program-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--cream-deeper);
}

.program-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.program-icon.teal { background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: #fff; }
.program-icon.burgundy { background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light)); color: #fff; }
.program-icon.gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff; }

.program-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.program-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 120%;
  background-image: url('assets/testimonials-bg.png');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.testimonials-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 16, 0.90) 0%,
    rgba(18, 18, 16, 0.92) 100%
  );
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-title { color: #fff; }
.testimonials-header .section-subtitle {
  color: rgba(255,255,255,0.5);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(201,165,78,0.2);
}

.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.5;
}

.testimonial-text {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.testimonial-info h4 {
  font-size: 0.92rem;
  color: #fff;
  font-weight: 600;
  font-family: 'Lato', sans-serif;
}

.testimonial-info p {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

/* ---------- Contact Section ---------- */
.contact {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info { padding: 20px 0; }
.contact-info .section-subtitle { margin-bottom: 36px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 50px; height: 50px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--cream-deeper);
}

.contact-detail h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.contact-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px; height: 44px;
  border: 1px solid var(--cream-deeper);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  color: var(--text-light);
  background: var(--cream);
}

.social-link:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--cream-deeper);
}

.contact-form-title {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.contact-form-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-deeper);
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: #fff;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42, 95, 78, 0.08);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-teal);
}

.form-submit svg { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  padding: 5px 0;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom p span { color: var(--gold); }

/* ---------- WhatsApp Button ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  z-index: 999;
  transition: all var(--transition);
  cursor: pointer;
}

.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
}

.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

.whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: #25D366;
  animation: whatsappPulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #fff;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }

/* ---------- GSAP Animation States ---------- */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-60px); }
.reveal-right { opacity: 0; transform: translateX(60px); }
.reveal-scale { opacity: 0; transform: scale(0.85); }

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--cream-deeper); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-10px); }
  .about-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    transition: right 0.4s ease;
    padding: 40px;
  }

  .nav-links.active { right: 0; }

  .nav-links a { color: rgba(255,255,255,0.85) !important; font-size: 0.95rem; }

  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 24px; text-align: center; }
  .hero-stats { justify-content: center; }
  .hero-cta-group { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrapper img { height: 380px; }
  .about-features { grid-template-columns: 1fr; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .programs-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrapper { padding: 30px 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .float-icon { display: none; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.62rem; padding: 6px 14px; }
  .hero-cta { padding: 14px 28px; font-size: 0.82rem; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 1.8rem; }
  .section-title { font-size: 1.7rem; }
  .pricing-card { padding: 28px 20px; }
  .whatsapp-btn { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .whatsapp-btn svg { width: 24px; height: 24px; }
}
