/* =========================================================
   JUNGLE GYM — Premium CSS Design System
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

/* ─── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Colors */
  --black:        #0a0a0a;
  --charcoal:     #141414;
  --dark:         #1a1a1a;
  --dark-2:       #222222;
  --surface:      #2a2a2a;
  --border:       rgba(255,255,255,0.08);
  --jungle:       #1e3a24;
  --jungle-mid:   #2d5c35;
  --jungle-light: #3d7a45;
  --jungle-accent:#4a9455;
  --green-glow:   rgba(58, 120, 70, 0.25);
  --red:          #c0392b;
  --red-soft:     #e74c3c;
  --off-white:    #f0ede8;
  --light-grey:   #c8c4be;
  --muted:        #888480;
  --text:         #e8e4de;
  --wa-green:     #25D366;
  --wa-dark:      #1da851;

  /* Spacing */
  --section-py:   100px;
  --section-py-sm: 60px;
  --container:    1200px;

  /* Typography */
  --font-primary: 'Outfit', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* Transitions */
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --dur:          0.35s;
  --dur-slow:     0.6s;
}

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

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

body {
  font-family: var(--font-primary);
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button { cursor: pointer; border: none; background: none; font-family: inherit; }

ul { list-style: none; }

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--jungle-mid); border-radius: 2px; }

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jungle-accent);
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--jungle-accent);
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--off-white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--wa-dark);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--off-white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--jungle-accent);
  color: var(--jungle-accent);
  transform: translateY(-2px);
}

.btn-jungle {
  background: var(--jungle-mid);
  color: var(--off-white);
  box-shadow: 0 4px 20px rgba(45, 92, 53, 0.35);
}

.btn-jungle:hover {
  background: var(--jungle-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(45, 92, 53, 0.5);
}

.btn-dark {
  background: var(--surface);
  color: var(--off-white);
  border: 1px solid var(--border);
}

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

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

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--jungle-mid), var(--jungle-accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-text .name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--off-white);
}

.nav-logo-text .tagline {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--jungle-accent);
  font-weight: 500;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--light-grey);
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--jungle-accent);
  transition: width var(--dur) var(--ease);
}

.nav-links a:hover { color: var(--jungle-accent); }
.nav-links a:hover::after { width: 100%; }

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

.nav-wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--dur) var(--ease);
}

.nav-wa-btn:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

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

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

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

/* ─── MOBILE NAV ─────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.03);
  transition: all 0.4s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.02em;
  transition: color var(--dur);
}

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

.mobile-nav-cta {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ─── LOADER / INTRO ANIMATION ───────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.loader-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(30, 58, 36, 0.5) 0%, transparent 70%);
}

.loader-leaves-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.loader-leaf {
  position: absolute;
  opacity: 0;
  animation: leafFall linear forwards;
}

.loader-leaf svg {
  transform-origin: center;
  animation: leafSway 3s ease-in-out infinite;
}

@keyframes leafFall {
  0%   { opacity: 0; transform: translateY(-60px) rotate(0deg); }
  15%  { opacity: 0.7; }
  85%  { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(110vh) rotate(40deg); }
}

@keyframes leafSway {
  0%, 100% { transform: rotate(-8deg); }
  50%       { transform: rotate(8deg); }
}

.loader-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dust-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(74, 148, 85, 0.5);
  animation: dustFloat linear infinite;
}

@keyframes dustFloat {
  0%   { opacity: 0; transform: translateY(0px) scale(0); }
  20%  { opacity: 1; transform: translateY(-20px) scale(1); }
  80%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

.loader-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-emblem {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--jungle-mid), var(--jungle-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 8px;
  opacity: 0;
  transform: scale(0.8) translateY(12px);
  animation: fadeScaleIn 0.7s var(--ease-out) 0.4s forwards;
  box-shadow: 0 0 40px rgba(58, 120, 70, 0.35);
}

.loader-gym-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 900;
  color: var(--off-white);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.8s var(--ease-out) 0.7s forwards;
  line-height: 1;
}

.loader-gym-name span {
  color: var(--jungle-accent);
}

.loader-tagline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--jungle-accent);
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUpIn 0.7s var(--ease-out) 1s forwards;
}

.loader-line {
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--jungle-accent), transparent);
  animation: lineExpand 0.8s var(--ease-out) 1.1s forwards;
  margin: 4px 0;
}

.loader-overlay {
  position: absolute;
  inset: 0;
  background: var(--black);
  z-index: 1;
  transform: scaleY(0);
  transform-origin: bottom;
}

@keyframes fadeScaleIn {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeUpIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
  to { width: 180px; }
}

.loader-exit {
  animation: loaderExit 0.8s var(--ease-out) forwards;
}

@keyframes loaderExit {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-40px); pointer-events: none; }
}

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.72) 40%,
    rgba(30, 58, 36, 0.45) 70%,
    rgba(10, 10, 10, 0.82) 100%
  );
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(30, 58, 36, 0.5);
  border: 1px solid rgba(74, 148, 85, 0.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jungle-accent);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 0.6s var(--ease-out) 0.2s forwards;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jungle-accent);
  box-shadow: 0 0 8px var(--jungle-accent);
  animation: pulse 2s ease infinite;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 0.75s var(--ease-out) 0.4s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--jungle-accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--light-grey);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 0.75s var(--ease-out) 0.6s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpIn 0.75s var(--ease-out) 0.8s forwards;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUpIn 0.75s var(--ease-out) 1s forwards;
}

.trust-dot {
  width: 4px;
  height: 4px;
  background: var(--jungle-accent);
  border-radius: 50%;
}

.trust-item {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUpIn 0.7s var(--ease-out) 1.4s forwards;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

.scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── ABOUT SECTION ──────────────────────────────────────── */
#about {
  padding: var(--section-py) 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

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

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.about-img-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--jungle-mid);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.about-img-badge .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--off-white);
  line-height: 1;
}

.about-img-badge .label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.7);
  text-align: center;
  max-width: 80px;
  line-height: 1.4;
}

.about-text {
  padding: 0 8px;
}

.about-body {
  font-size: 1.05rem;
  color: var(--light-grey);
  line-height: 1.85;
  margin-bottom: 32px;
}

.about-body strong {
  color: var(--off-white);
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--jungle-accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

/* ─── FEATURES / WHY SECTION ─────────────────────────────── */
#features {
  padding: var(--section-py) 0;
  background: var(--black);
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

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

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

.feature-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all var(--dur-slow) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 92, 53, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
  border-radius: inherit;
}

.feature-card:hover {
  border-color: rgba(74, 148, 85, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(74, 148, 85, 0.12);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(30, 58, 36, 0.8), rgba(45, 92, 53, 0.5));
  border: 1px solid rgba(74, 148, 85, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: all var(--dur) var(--ease);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--jungle-mid), var(--jungle-light));
  box-shadow: 0 4px 20px rgba(45, 92, 53, 0.4);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

.feature-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(74, 148, 85, 0.08), transparent 70%);
  border-radius: 0 12px 0 0;
}

/* ─── SERVICES SECTION ───────────────────────────────────── */
#services {
  padding: var(--section-py) 0;
  background: var(--charcoal);
  position: relative;
}

.services-header {
  margin-bottom: 56px;
}

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

.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 28px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  cursor: default;
  transition: all var(--dur-slow) var(--ease);
  group: true;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--jungle-mid), var(--jungle-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}

.service-card:hover {
  border-color: rgba(74, 148, 85, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

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

.service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(74, 148, 85, 0.1);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  transition: color var(--dur) var(--ease);
}

.service-card:hover .service-number {
  color: rgba(74, 148, 85, 0.2);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.service-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(30, 58, 36, 0.5);
  border: 1px solid rgba(74, 148, 85, 0.2);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jungle-accent);
}

/* ─── GALLERY SECTION ────────────────────────────────────── */
#gallery {
  padding: var(--section-py) 0;
  background: var(--black);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}

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

.gallery-item-1 { grid-column: 1 / 7; grid-row: 1; min-height: 380px; }
.gallery-item-2 { grid-column: 7 / 13; grid-row: 1; min-height: 380px; }
.gallery-item-3 { grid-column: 1 / 5; grid-row: 2; min-height: 280px; }
.gallery-item-4 { grid-column: 5 / 9; grid-row: 2; min-height: 280px; }
.gallery-item-5 { grid-column: 9 / 13; grid-row: 2; min-height: 280px; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  transform: translateY(8px);
  opacity: 0;
  transition: all var(--dur) var(--ease);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jungle-accent);
}

/* ─── TESTIMONIALS ───────────────────────────────────────── */
#testimonials {
  padding: var(--section-py) 0;
  background: var(--charcoal);
}

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

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

.testimonial-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  transition: all var(--dur) var(--ease);
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(74, 148, 85, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 0.6;
  color: var(--jungle-mid);
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--light-grey);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jungle-mid), var(--jungle-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--off-white);
  font-family: var(--font-display);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--off-white);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
}

.testimonial-stars {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #e6a817;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

/* ─── CONTACT SECTION ────────────────────────────────────── */
#contact {
  padding: var(--section-py) 0;
  background: var(--black);
}

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

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all var(--dur) var(--ease);
}

.contact-info-item:hover {
  border-color: rgba(74, 148, 85, 0.25);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(30, 58, 36, 0.6);
  border: 1px solid rgba(74, 148, 85, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--off-white);
}

.contact-info-value a {
  color: inherit;
  transition: color var(--dur);
}

.contact-info-value a:hover {
  color: var(--jungle-accent);
}

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--charcoal);
}

.map-placeholder {
  width: 100%;
  height: 360px;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-icon { font-size: 2.5rem; }
.map-text { font-size: 0.85rem; color: var(--muted); }

/* ─── FINAL CTA SECTION ──────────────────────────────────── */
#cta-final {
  padding: var(--section-py) 0;
  background: var(--jungle);
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(30,58,36,0.3) 50%, rgba(10,10,10,0.75) 100%);
}

.cta-final-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: 
    repeating-linear-gradient(
      45deg,
      var(--jungle-accent) 0px,
      var(--jungle-accent) 1px,
      transparent 1px,
      transparent 40px
    );
}

.cta-final-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-final-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  backdrop-filter: blur(8px);
}

.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--off-white);
  line-height: 1.1;
}

.cta-final-text {
  font-size: 1.05rem;
  color: rgba(240, 237, 232, 0.75);
  line-height: 1.75;
}

.cta-final-btn {
  padding: 18px 48px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 8px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--jungle-mid), var(--jungle-accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.footer-logo .name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--off-white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.footer-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--dur);
}

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

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-copy strong {
  color: var(--jungle-accent);
}

.footer-made {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ─── FLOATING WHATSAPP BUTTON ───────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 100px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  border: none;
  font-family: var(--font-primary);
  text-decoration: none;
}

.wa-float:hover {
  background: var(--wa-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.wa-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.wa-float-label { white-space: nowrap; }

.wa-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 80px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-main { height: 380px; }
  .about-img-badge { bottom: -16px; right: -8px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item-1 { grid-column: 1 / 2; grid-row: 1; min-height: 260px; }
  .gallery-item-2 { grid-column: 2 / 3; grid-row: 1; min-height: 260px; }
  .gallery-item-3 { grid-column: 1 / 2; grid-row: 2; min-height: 220px; }
  .gallery-item-4 { grid-column: 2 / 3; grid-row: 2; min-height: 220px; }
  .gallery-item-5 { grid-column: 1 / 3; grid-row: 3; min-height: 220px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; width: 100%; max-width: 300px; }

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

  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-1,
  .gallery-item-2,
  .gallery-item-3,
  .gallery-item-4,
  .gallery-item-5 {
    grid-column: 1 / 2;
    grid-row: auto;
    min-height: 240px;
  }

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

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

  .wa-float .wa-float-label { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; }
  .wa-float svg { width: 26px; height: 26px; }

  .about-img-badge {
    position: relative;
    bottom: auto;
    right: auto;
    flex-direction: row;
    width: fit-content;
    margin-top: 16px;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .stat-num { font-size: 1.7rem; }
}
