/* ==========================================================================
   URBAN FIT — variables & reset
   ========================================================================== */
:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --gray-900: #161616;
  --gray-800: #1e1e1e;
  --gray-700: #2a2a2a;
  --gray-500: #6b6b6b;
  --gray-300: #a8a8a8;
  --white: #f5f5f5;
  --orange: #ff6a00;
  --orange-light: #ff9142;
  --green: #39ff14;
  --green-dark: #26c40d;
  --radius: 14px;
  --transition: .35s cubic-bezier(.22,.68,.4,1);
  --shadow-orange: 0 0 25px rgba(255,106,0,.35);
  --shadow-green: 0 0 25px rgba(57,255,20,.3);
  --container-w: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }

.text-neon { color: var(--orange); text-shadow: 0 0 18px rgba(255,106,0,.6); }
.text-neon-green { color: var(--green); text-shadow: 0 0 18px rgba(57,255,20,.5); }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 14px;
}

.section { padding: 120px 0; position: relative; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section__title { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
.section__subhead { text-align: center; margin: 70px 0 40px; }
.section__subhead h3 { font-size: 1.5rem; color: var(--gray-300); }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: .85rem; }
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--orange), #ff8c3d);
  color: #0a0a0a;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 40px rgba(255,106,0,.55);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--green);
  box-shadow: 0 0 0 rgba(57,255,20,0);
}
.btn--outline:hover {
  background: var(--green);
  color: #0a0a0a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-green);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: all var(--transition);
  background: transparent;
}
.navbar.is-scrolled {
  padding: 12px 0;
  background: rgba(10,10,10,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; }
.navbar__logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.7rem;
  letter-spacing: 1px;
  color: var(--white);
}
.navbar__logo span { color: var(--orange); }

.navbar__nav { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-300);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.navbar__cta { margin-left: 10px; }

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  z-index: 600;
}
.navbar__burger span {
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: all var(--transition);
}
.navbar__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.is-active span:nth-child(2) { opacity: 0; }
.navbar__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,.35) 0%, rgba(10,10,10,.85) 75%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 780px; }
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.3rem);
  margin-bottom: 22px;
}
.hero__subtitle {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 560px;
  margin-bottom: 38px;
}
.hero__actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 70px; }

.hero__scroll { display: flex; align-items: center; gap: 12px; color: var(--gray-300); font-size: .82rem; letter-spacing: 1px; }
.hero__scroll-line {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: bounce 1.8s infinite;
  color: var(--orange);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ==========================================================================
   About
   ========================================================================== */
.about { background: var(--black-soft); }
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 30px;
}
.about__text h3 { font-size: 1.6rem; margin-bottom: 18px; color: var(--white); }
.about__text p { color: var(--gray-300); margin-bottom: 16px; }

.about__counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.counter-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.counter-card:hover { transform: translateY(-6px); border-color: var(--orange); }
.counter, .counter-suffix {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  color: var(--orange);
}
.counter-card p { color: var(--gray-300); font-size: .88rem; margin-top: 6px; }

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 34px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-orange); }
.team-card__avatar {
  width: 78px; height: 78px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--black);
  background: var(--av-color, var(--orange));
  box-shadow: 0 0 20px var(--av-color, var(--orange));
}
.team-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.team-card span { color: var(--gray-300); font-size: .85rem; }

/* ==========================================================================
   Activities
   ========================================================================== */
.activities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.activity-card {
  background: linear-gradient(160deg, var(--gray-900), var(--black-soft));
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 40px 30px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.activity-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,106,0,.08), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.activity-card:hover::before { opacity: 1; }
.activity-card:hover {
  transform: translateY(-10px);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.activity-card__icon {
  width: 62px; height: 62px;
  border-radius: 16px;
  background: rgba(255,106,0,.12);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: transform var(--transition);
}
.activity-card:hover .activity-card__icon { transform: rotate(-8deg) scale(1.1); }
.activity-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.activity-card p { color: var(--gray-300); font-size: .92rem; }

/* ==========================================================================
   Plans
   ========================================================================== */
.plans { background: var(--black-soft); }
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.plan-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-8px); }
.plan-card--featured {
  background: linear-gradient(165deg, #1c1305, var(--gray-900) 55%);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
  transform: scale(1.04);
}
.plan-card--featured:hover { transform: scale(1.04) translateY(-8px); }
.plan-card__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-size: .75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: .5px;
}
.plan-card__name { font-size: 1.3rem; margin-bottom: 10px; }
.plan-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--orange);
  margin-bottom: 24px;
}
.plan-card__price span { font-size: 1.4rem; vertical-align: top; }
.plan-card__price small { font-size: 1rem; color: var(--gray-300); font-family: 'Poppins', sans-serif; }
.plan-card__features { margin-bottom: 32px; flex-grow: 1; }
.plan-card__features li { display: flex; align-items: center; gap: 10px; padding: 9px 0; color: var(--gray-300); font-size: .92rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.plan-card__features li i { color: var(--green); }
.plan-card__features li.is-off { color: var(--gray-500); }
.plan-card__features li.is-off i { color: var(--gray-500); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.12); }
.gallery__zoom {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10,10,10,.55);
  color: var(--orange);
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__zoom { opacity: 1; }

.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,5,5,.94);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.lightbox.is-active { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 85vw; max-height: 80vh; border-radius: 10px; box-shadow: 0 0 60px rgba(255,106,0,.25); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  color: var(--white);
  font-size: 1.4rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--orange); color: var(--black); }
.lightbox__close { top: 30px; right: 30px; }
.lightbox__nav--prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 30px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { background: var(--black-soft); }
.carousel { max-width: 720px; margin: 0 auto; }
.carousel__track {
  display: flex;
  transition: transform .6s cubic-bezier(.22,.68,.4,1);
}
.testimonial-card {
  min-width: 100%;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 44px;
  text-align: center;
}
.testimonial-card__stars { color: var(--orange); letter-spacing: 4px; margin-bottom: 20px; font-size: 1.1rem; }
.testimonial-card p { font-size: 1.05rem; color: var(--gray-300); margin-bottom: 28px; font-style: italic; }
.testimonial-card__author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--black);
  background: var(--av-color, var(--orange));
}
.testimonial-card__author h4 { font-size: .98rem; }
.testimonial-card__author span { color: var(--gray-500); font-size: .8rem; }

.carousel__controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 36px; }
.carousel__arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.carousel__arrow:hover { background: var(--orange); border-color: var(--orange); color: var(--black); }
.carousel__dots { display: flex; gap: 10px; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gray-700); transition: all var(--transition); }
.carousel__dot.is-active { background: var(--orange); width: 26px; border-radius: 5px; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
}
.contact__form {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: .85rem; color: var(--gray-300); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--gray-700);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,0,.15);
}
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  margin-top: 18px;
  color: var(--green);
  font-size: .9rem;
  text-align: center;
}
.form-success.is-visible { display: block; }

.contact__info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform var(--transition), border-color var(--transition);
}
.info-card:hover { transform: translateX(6px); border-color: var(--green); }
.info-card i { font-size: 1.4rem; color: var(--green); width: 30px; text-align: center; }
.info-card h4 { font-size: .95rem; margin-bottom: 2px; }
.info-card span { color: var(--gray-300); font-size: .88rem; }
.info-card__social { display: flex; gap: 14px; justify-content: center; }
.info-card__social a {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.info-card__social a:hover { background: var(--orange); border-color: var(--orange); color: var(--black); transform: translateY(-4px); }

/* ==========================================================================
   Location
   ========================================================================== */
.location__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-700);
  min-height: 340px;
}
.location__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(.3) invert(.92) contrast(.9); }
.location__info { display: flex; flex-direction: column; gap: 18px; }
.schedule { margin-top: 8px; width: 100%; }
.schedule td { padding: 6px 0; color: var(--gray-300); font-size: .9rem; }
.schedule td:last-child { text-align: right; color: var(--white); font-weight: 500; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--black-soft); border-top: 1px solid var(--gray-700); padding: 60px 0 0; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
}
.footer__brand p { color: var(--gray-300); font-size: .88rem; margin-top: 10px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { color: var(--gray-300); font-size: .9rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--green); border-color: var(--green); color: var(--black); }
.footer__bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--gray-800);
  color: var(--gray-500);
  font-size: .82rem;
}

/* ==========================================================================
   Floating buttons
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 62px; height: 62px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem;
  z-index: 400;
  box-shadow: 0 0 0 rgba(37,211,102,.5);
  animation: pulse 2.4s infinite;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.back-to-top {
  position: fixed;
  bottom: 28px; left: 28px;
  width: 48px; height: 48px;
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 400;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--orange); color: var(--black); border-color: var(--orange); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .about__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
  .activities__grid { grid-template-columns: repeat(2, 1fr); }
  .plans__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .plan-card--featured { transform: none; order: -1; }
  .plan-card--featured:hover { transform: translateY(-8px); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar__nav {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: min(320px, 80%);
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 26px;
    transition: right var(--transition);
    border-left: 1px solid var(--gray-700);
  }
  .navbar__nav.is-open { right: 0; }
  .navbar__burger { display: flex; }
  .navbar__cta { margin-left: 0; }

  .section { padding: 80px 0; }
  .about__counters { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .activities__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .team__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .about__counters { grid-template-columns: 1fr 1fr; }
  .contact__form { padding: 28px 22px; }
}
