/* ============================================================
   WAX FITNESS FACTORY — Premium Fitness Website Styles
   Color System: White (#FFFFFF) | Black (#0A0A0A) | Accent (#BFCE2B)
   ============================================================ */

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

:root {
  --accent: #BFCE2B;
  --accent-dark: #9DAA1E;
  --accent-light: rgba(191, 206, 43, 0.15);
  --accent-glow: rgba(191, 206, 43, 0.3);
  --black: #0A0A0A;
  --black-soft: #111111;
  --charcoal: #1A1A1A;
  --dark-card: #141414;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-50: rgba(255,255,255,0.5);
  --white-10: rgba(255,255,255,0.1);
  --gray-light: #F5F5F5;
  --gray-mid: #E8E8E8;
  --gray-text: #555555;
  --gray-muted: #888888;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.18);
  --shadow-accent: 0 8px 32px rgba(191,206,43,0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Bebas Neue', 'Inter', sans-serif;
  --section-pad: 100px 0;
  --container-max: 1280px;
  --container-pad: 0 100px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ======================== CONTAINER ======================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-pad);
}

/* ======================== SCROLL REVEAL ======================== */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

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

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

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(191,206,43,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: #D0D0D0;
}

.btn-outline-dark:hover {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1DAE55;
  border-color: #1DAE55;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
}

.full-width {
  width: 100%;
  justify-content: center;
}

/* ======================== SECTION COMMON ======================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid rgba(191,206,43,0.35);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 580px;
  line-height: 1.75;
}

.section-desc.white {
  color: var(--white-70);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accent {
  color: var(--accent);
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

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

.navbar.scrolled .nav-logo .logo-fitness,
.navbar.scrolled .nav-logo .logo-factory {
  color: var(--black);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.logo-wax {
  color: var(--accent);
}

.logo-fitness,
.logo-factory {
  color: var(--white);
  transition: var(--transition);
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
  letter-spacing: 0.03em;
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  background: var(--accent);
  color: var(--black);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

/* ======================== HERO ======================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.40) 100%
  );
}

.hero-glow {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(191,206,43,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(191,206,43,0.15);
  border: 1px solid rgba(191,206,43,0.4);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  max-width: 700px;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--white-70);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white-80, rgba(255,255,255,0.8));
  font-size: 0.83rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-item i {
  color: var(--accent);
  font-size: 0.9rem;
}

.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease infinite;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-50);
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Hero reveal animations */
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.reveal-up { animation: fadeUp 0.8s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ======================== STATS BANNER ======================== */
.stats-banner {
  background: var(--black);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--white-50);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
  font-weight: 600;
}

/* ======================== ABOUT ======================== */
.about {
  padding: var(--section-pad);
  background: var(--white);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.04);
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
}

.about-badge-float {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--accent);
  color: var(--black);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}

.about-badge-float i {
  font-size: 1.1rem;
}

.about-content {
  padding-top: 20px;
}

.about-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text {
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(191,206,43,0.25);
}

.about-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.88rem;
  color: var(--gray-muted);
  line-height: 1.5;
}

/* ======================== WHY CHOOSE ======================== */
.why-choose {
  padding: var(--section-pad);
  background: var(--gray-light);
}

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

.why-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-mid);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s), box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  transform: translateY(-6px);
}

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

.why-icon {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  transform: scale(1.08);
  box-shadow: var(--shadow-accent);
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.why-glow {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* ======================== SERVICES ======================== */
.services {
  padding: var(--section-pad);
  background: var(--white);
}

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

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s), box-shadow 0.3s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

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

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-body {
  padding: 22px 20px;
}

.service-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  border: 1px solid rgba(191,206,43,0.25);
}

.service-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-body p {
  font-size: 0.85rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-dark);
  transition: var(--transition);
}

.service-link:hover {
  gap: 10px;
  color: var(--black);
}

/* ======================== TRAINERS ======================== */
.trainers {
  padding: var(--section-pad);
  background: var(--black);
}

.trainers .section-title {
  color: var(--white);
}

.trainers .section-desc {
  color: var(--white-70);
}

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

.trainer-card {
  background: var(--dark-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s), border-color 0.3s ease, box-shadow 0.3s ease;
}

.trainer-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.trainer-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(191,206,43,0.15);
  transform: translateY(-6px);
}

.trainer-card.founder {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
}

.trainer-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.trainer-card.founder .trainer-img-wrap {
  aspect-ratio: auto;
}

.trainer-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.trainer-card:hover .trainer-img-wrap img {
  transform: scale(1.04);
}

.trainer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}

.founder-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: var(--black);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}

.trainer-info {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trainer-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.trainer-role {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.trainer-bio {
  font-size: 0.9rem;
  color: var(--white-70);
  line-height: 1.65;
  margin-bottom: 20px;
}

.trainer-certs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trainer-certs span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--white-50);
}

.trainer-certs i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* ======================== COMMUNITY ======================== */
.community {
  position: relative;
  padding: var(--section-pad);
  overflow: hidden;
}

.community-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.community-bg img {
  width: 100%;
  height: 100%;
}

.community-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.80);
}

.community-content {
  position: relative;
  z-index: 1;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
  margin-bottom: 40px;
}

.community-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s);
}

.community-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.community-card img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

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

.community-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.community-card:hover .community-card-overlay {
  opacity: 1;
}

.community-card-overlay span {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.community-card.tall {
  grid-row: 1 / 3;
}

.community-card.wide {
  grid-column: 1 / 3;
}

.community-highlights {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-70);
  font-size: 0.9rem;
  font-weight: 600;
}

.highlight-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

/* ======================== PRICING ======================== */
.pricing {
  padding: var(--section-pad);
  background: var(--gray-light);
}

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

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-mid);
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s), box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.pricing-card.featured {
  background: var(--black);
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(191,206,43,0.2);
  transform: scale(1.03);
}

.pricing-card.featured.visible:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card.featured.visible {
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 28px;
}

.pricing-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 1.2rem;
  margin-bottom: 16px;
  border: 1px solid rgba(191,206,43,0.25);
}

.pricing-card.featured .pricing-icon {
  background: rgba(191,206,43,0.15);
  color: var(--accent);
}

.pricing-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
}

.pricing-card.featured .pricing-header h3 {
  color: var(--white);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.pricing-card.featured .currency {
  color: var(--accent);
}

.amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--black);
  line-height: 1;
}

.pricing-card.featured .amount {
  color: var(--white);
}

.period {
  font-size: 0.85rem;
  color: var(--gray-muted);
}

.pricing-card.featured .period {
  color: var(--white-50);
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 6px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-text);
}

.pricing-card.featured .pricing-features li {
  color: var(--white-70);
}

.pricing-features i {
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pricing-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pricing-cta p {
  font-size: 1rem;
  color: var(--gray-text);
}

/* ======================== TESTIMONIALS ======================== */
.testimonials {
  padding: var(--section-pad);
  background: var(--black);
  overflow: hidden;
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-desc {
  color: var(--white-70);
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(191,206,43,0.3);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: var(--accent);
  font-size: 0.9rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 46px;
  height: 46px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--white-50);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.testimonial-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s);
}

.gallery-item.visible {
  opacity: 1;
  transform: scale(1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.gallery-item.large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-item.tall {
  grid-row: span 2;
}

.play-btn {
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--black);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.gallery-item.video-placeholder:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: var(--shadow-accent);
}

/* ======================== CTA BANNER ======================== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.65) 100%);
}

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

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ======================== CONTACT ======================== */
.contact {
  padding: var(--section-pad);
  background: var(--gray-light);
}

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

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.contact-detail:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  font-size: 0.95rem;
  flex-shrink: 0;
  border: 1px solid rgba(191,206,43,0.25);
}

.contact-detail h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-detail a,
.contact-detail p {
  display: block;
  font-size: 0.9rem;
  color: var(--black);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--accent-dark);
}

.wa-large {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 28px;
}

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--gray-mid);
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 28px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ======================== FOOTER ======================== */
.footer {
  background: var(--black);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 8px;
}

.footer-logo .logo-fitness,
.footer-logo .logo-factory {
  color: var(--white);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--white-50);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-70);
  font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--white-50);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a,
.footer-contact-item p {
  font-size: 0.85rem;
  color: var(--white-50);
  line-height: 1.6;
}

.footer-contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--white-50);
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ======================== FLOATING WHATSAPP ======================== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  z-index: 900;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: var(--black);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

/* ======================== SCROLL TO TOP ======================== */
.scroll-top {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  color: var(--black);
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

/* ======================== FORM SUCCESS ======================== */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
  color: var(--black);
}

.form-success i {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.form-success p {
  color: var(--gray-text);
}

/* ======================== RESPONSIVE ======================== */

/* Large Desktop */
@media (max-width: 1400px) {
  :root {
    --container-pad: 0 60px;
  }

  .nav-container {
    padding: 0 60px;
  }

  .hero-content {
    padding: 0 60px;
  }

  .hero-scroll {
    right: 60px;
  }
}

/* Desktop */
@media (max-width: 1200px) {
  :root {
    --container-pad: 0 40px;
  }

  .nav-container {
    padding: 0 40px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-scroll {
    right: 40px;
  }

  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trainer-card.founder {
    grid-column: 1 / -1;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured.visible {
    transform: scale(1);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --container-pad: 0 32px;
    --section-pad: 80px 0;
  }

  .nav-container {
    padding: 0 32px;
  }

  .hero-content {
    padding: 0 32px;
  }

  .hero-scroll {
    display: none;
  }

  .nav-links {
    gap: 20px;
  }

  .about-grid {
    gap: 48px;
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }

  .community-card.tall {
    grid-row: 1 / 3;
  }

  .community-card.wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item.large {
    grid-column: 1 / 3;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

/* Mobile Large */
@media (max-width: 768px) {
  :root {
    --container-pad: 0 20px;
    --section-pad: 64px 0;
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.3rem;
    color: var(--white);
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 1000;
  }

  .nav-cta {
    display: none;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-badge {
    margin: 0 auto 20px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .trust-divider {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .stat-item:nth-child(4),
  .stat-item:nth-child(5) {
    grid-column: span 1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    order: 2;
  }

  .about-content {
    order: 1;
    text-align: center;
  }

  .about-feature {
    text-align: left;
  }

  .about-img-secondary {
    right: 0;
    bottom: -30px;
    width: 160px;
    height: 160px;
  }

  .about-badge-float {
    left: 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

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

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

  .trainer-card.founder {
    grid-template-columns: 1fr;
  }

  .trainer-card.founder .trainer-img-wrap {
    aspect-ratio: 16/9;
  }

  .community-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .community-card.tall {
    grid-row: auto;
  }

  .community-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .community-highlights {
    gap: 24px;
    justify-content: center;
  }

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

  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.large {
    grid-column: 1 / -1;
  }

  .gallery-item.tall {
    grid-row: auto;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col ul {
    align-items: center;
  }

  .footer-contact {
    align-items: center;
    text-align: left;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .stats-banner {
    padding: 40px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .stat-item {
    padding: 0 12px;
    border-right: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:nth-child(3) {
    border-right: none;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  :root {
    --container-pad: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

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

  .services-grid {
    max-width: 100%;
  }

  .pricing-grid {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-item {
    border-right: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

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

  .gallery-item.large {
    grid-column: 1;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .scroll-top {
    bottom: 82px;
    right: 20px;
  }
}
