/* ==========================================================================
   MUSCLE ZONE — Core Stylesheet
   Design system: Black / White / Metallic Silver / Red (#E50914)
   Display: Anton | Body: Manrope | Utility/Data: JetBrains Mono
   Signature element: the "Power Line" — a single red diagonal load-bar
   that cuts through the hero and recurs as an underline / stat marker
   throughout the site, echoing a barbell being racked and a strength gauge.
   ========================================================================== */

:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --black-elevated: #1b1b1b;
  --white: #f4f4f2;
  --silver: #b9bcc2;
  --silver-dim: #6f727a;
  --silver-line: rgba(185, 188, 194, 0.18);
  --red: #e50914;
  --red-dim: #9c060d;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-bg-strong: rgba(255, 255, 255, 0.07);

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", monospace;

  --container-max: 1280px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; margin: 0; padding: 0; }

::selection { background: var(--red); color: var(--white); }

/* Visible keyboard focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  margin-bottom: 18px;
}

.section-lede {
  color: var(--silver);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 0;
}

.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }

.bg-elevated { background: var(--black-soft); }

/* ---------- Buttons ---------- */
.btn-mz {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  transition: all .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

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

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

.btn-mz-ghost {
  background: var(--glass-bg);
  color: var(--white);
  border-color: var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-mz-ghost:hover { background: var(--glass-bg-strong); }

/* ---------- Navigation ---------- */
.mz-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all .35s var(--ease);
  background: transparent;
}
.mz-navbar.is-scrolled {
  padding: 14px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
}
.mz-navbar .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mz-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.mz-logo span { color: var(--red); }
.mz-logo .mz-logo-mark {
  width: 34px; height: 34px;
  border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  transform: rotate(45deg);
  font-family: var(--font-mono);
}
.mz-logo .mz-logo-mark i { transform: rotate(-45deg); color: var(--red); font-size: 0.85rem; }

.mz-nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.mz-nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  position: relative;
  padding: 6px 0;
}
.mz-nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .3s var(--ease);
}
.mz-nav-links a:hover,
.mz-nav-links a.active { color: var(--white); }
.mz-nav-links a:hover::after,
.mz-nav-links a.active::after { width: 100%; }

.mz-nav-cta { display: flex; align-items: center; gap: 18px; }
.mz-nav-phone {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--silver);
  display: flex; align-items: center; gap: 8px;
}
.mz-nav-phone i { color: var(--red); }

.mz-burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--white);
  align-items: center; justify-content: center;
  cursor: pointer;
}

.mz-mobile-panel {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
}
.mz-mobile-panel.is-open { transform: translateY(0); }
.mz-mobile-panel a {
  font-family: var(--font-display);
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--white);
}
.mz-mobile-panel a:hover { color: var(--red); }
.mz-mobile-close {
  position: absolute;
  top: 26px; right: 24px;
  width: 42px; height: 42px;
  border: 1px solid var(--glass-border);
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
}

/* ---------- Scroll progress bar ---------- */
.mz-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 1100;
  transition: width .1s linear;
}

/* ---------- Hero ---------- */
.mz-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat fixed;
  overflow: hidden;
}
.mz-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.78) 55%, rgba(10,10,10,0.96) 100%);
  z-index: 1;
}
/* signature power-line: diagonal red load bar slicing the hero */
.mz-hero::after {
  content: "";
  position: absolute;
  top: -10%;
  right: 8%;
  width: 3px;
  height: 130%;
  background: linear-gradient(180deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
  transform: rotate(14deg);
  z-index: 2;
  opacity: 0.85;
}
.mz-hero-content { position: relative; z-index: 3; }
.mz-hero-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.mz-hero-tag::before { content: ""; width: 40px; height: 2px; background: var(--red); }

.mz-hero-title {
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.98;
  margin-bottom: 26px;
}
.mz-hero-title .stroke {
  -webkit-text-stroke: 1.5px var(--silver);
  color: transparent;
}

.mz-hero-sub {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--silver);
  max-width: 520px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.mz-hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 70px; }

.mz-hero-stats {
  display: flex;
  gap: 50px;
  border-top: 1px solid var(--silver-line);
  padding-top: 26px;
  flex-wrap: wrap;
}
.mz-hero-stats .stat-num {
  font-family: var(--font-mono);
  font-size: 2.1rem;
  color: var(--white);
}
.mz-hero-stats .stat-num span { color: var(--red); }
.mz-hero-stats .stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.mz-scroll-cue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--silver);
  text-transform: uppercase;
}
.mz-scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--red), transparent);
  animation: scrollCue 1.8s infinite;
}
@keyframes scrollCue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Glass card ---------- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  transition: all .35s var(--ease);
  position: relative;
}
.glass-card:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(229, 9, 20, 0.4);
  transform: translateY(-6px);
}

/* ---------- Why Choose Us ---------- */
.feature-card {
  padding: 40px 30px;
  text-align: left;
  height: 100%;
}
.feature-card .icon-wrap {
  width: 58px; height: 58px;
  border: 1px solid var(--silver-line);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
  color: var(--red);
  transition: all .3s var(--ease);
}
.feature-card:hover .icon-wrap {
  border-color: var(--red);
  background: rgba(229,9,20,0.08);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.feature-card p { color: var(--silver); font-size: 0.92rem; margin: 0; }
.feature-card .num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--silver-dim);
}

/* ---------- Equipment Showcase ---------- */
.equip-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/5;
}
.equip-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: grayscale(35%) brightness(0.75);
}
.equip-card:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(0.9); }
.equip-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.9) 100%);
}
.equip-card-label {
  position: absolute; left: 20px; bottom: 20px; z-index: 2;
}
.equip-card-label .eq-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.15em;
}
.equip-card-label h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
}

/* ---------- Membership pricing ---------- */
.price-card {
  padding: 48px 34px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.price-card.popular {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(229,9,20,0.08), var(--glass-bg));
  transform: scale(1.03);
}
.price-card .plan-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.price-card .plan-name { font-size: 1.7rem; margin-bottom: 14px; }
.price-card .plan-price {
  font-family: var(--font-mono);
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 4px;
}
.price-card .plan-price sup { font-size: 1rem; color: var(--silver); }
.price-card .plan-price small { font-size: 0.9rem; color: var(--silver-dim); font-family: var(--font-body); }
.price-card .plan-features { margin: 30px 0; flex-grow: 1; }
.price-card .plan-features li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--silver-line);
  font-size: 0.92rem;
  color: var(--silver);
}
.price-card .plan-features li i { color: var(--red); font-size: 0.85rem; }
.price-card .plan-features li:last-child { border-bottom: none; }
.badge-popular {
  position: absolute; top: -14px; right: 30px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
}

/* ---------- Trainers ---------- */
.trainer-card { overflow: hidden; }
.trainer-photo { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.trainer-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(60%); transition: filter .4s var(--ease), transform .5s var(--ease); }
.trainer-card:hover .trainer-photo img { filter: grayscale(0%); transform: scale(1.05); }
.trainer-social {
  position: absolute; bottom: -60px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 14px;
  padding: 16px 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent);
  transition: bottom .35s var(--ease);
}
.trainer-card:hover .trainer-social { bottom: 0; }
.trainer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--silver-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.trainer-social a:hover { border-color: var(--red); color: var(--red); }
.trainer-info { padding: 22px 24px; }
.trainer-info h4 { font-size: 1.1rem; margin-bottom: 4px; }
.trainer-info .role { font-family: var(--font-mono); font-size: 0.72rem; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.trainer-info p { color: var(--silver); font-size: 0.85rem; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-slide { padding: 20px 10px; }
.testi-card { padding: 44px; }
.testi-card i.fa-quote-left { color: var(--red); font-size: 1.6rem; opacity: 0.6; margin-bottom: 20px; }
.testi-card p { font-size: 1.05rem; color: var(--white); margin-bottom: 26px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-person img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; filter: grayscale(40%); }
.testi-person h5 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; text-transform: none; margin: 0; }
.testi-person span { color: var(--silver-dim); font-size: 0.8rem; font-family: var(--font-mono); }
.testi-stars { color: var(--red); font-size: 0.8rem; margin-bottom: 12px; }
.swiper-pagination-bullet { background: var(--silver-line); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--red); }

/* ---------- Transformation ---------- */
.transform-card { position: relative; overflow: hidden; border-radius: var(--radius-md); }
.transform-imgs { display: flex; }
.transform-imgs .half { position: relative; width: 50%; overflow: hidden; aspect-ratio: 3/4; }
.transform-imgs img { width: 100%; height: 100%; object-fit: cover; }
.transform-imgs .tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.15em;
  padding: 4px 10px; text-transform: uppercase;
  background: rgba(0,0,0,0.6); border: 1px solid var(--silver-line);
}
.transform-imgs .half:last-child .tag { border-color: var(--red); color: var(--red); }
.transform-caption { padding: 20px 24px; }
.transform-caption h5 { font-size: 1rem; margin-bottom: 4px; }
.transform-caption span { color: var(--silver-dim); font-family: var(--font-mono); font-size: 0.75rem; }

/* ---------- FAQ Accordion ---------- */
.mz-accordion .accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin-bottom: 14px;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
}
.mz-accordion .accordion-button {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 22px 26px;
  box-shadow: none;
}
.mz-accordion .accordion-button:not(.collapsed) { color: var(--red); }
.mz-accordion .accordion-button::after { filter: invert(1); }
.mz-accordion .accordion-body { color: var(--silver); padding: 0 26px 24px; font-size: 0.93rem; }

/* ---------- CTA Banner ---------- */
.mz-cta-banner {
  position: relative;
  padding: 100px 0;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?q=80&w=1800&auto=format&fit=crop') center/cover fixed;
}
.mz-cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(10,10,10,0.88);
}
.mz-cta-banner .content { position: relative; z-index: 2; }
.mz-cta-banner h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 30px; }

/* ---------- Footer ---------- */
.mz-footer { background: var(--black-soft); border-top: 1px solid var(--glass-border); padding: 80px 0 0; }
.mz-footer h5 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 26px;
}
.mz-footer p, .mz-footer li { color: var(--silver); font-size: 0.9rem; }
.mz-footer .mz-logo { margin-bottom: 20px; }
.mz-footer-links li { margin-bottom: 12px; }
.mz-footer-links a:hover { color: var(--red); }
.mz-footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.mz-footer-contact i { color: var(--red); margin-top: 4px; }
.mz-social { display: flex; gap: 12px; margin-top: 22px; }
.mz-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
}
.mz-social a:hover { border-color: var(--red); color: var(--red); }
.mz-map-embed { border: 1px solid var(--glass-border); filter: grayscale(1) invert(0.92) contrast(0.9); height: 180px; width: 100%; }
.mz-footer-bottom {
  margin-top: 60px;
  padding: 26px 0;
  border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--silver-dim);
}

/* ---------- Page Hero (interior pages) ---------- */
.mz-page-hero {
  position: relative;
  padding: 190px 0 90px;
  background: linear-gradient(180deg, var(--black-soft), var(--black));
  overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}
.mz-page-hero::after {
  content: "";
  position: absolute; top: -20%; right: 6%;
  width: 2px; height: 140%;
  background: linear-gradient(180deg, transparent, var(--red) 40%, transparent);
  transform: rotate(14deg);
  opacity: 0.6;
}
.mz-page-hero .breadcrumb-mz {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--silver-dim);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.mz-page-hero .breadcrumb-mz a:hover { color: var(--red); }
.mz-page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }

/* ---------- Counter ---------- */
.counter-block { text-align: center; }
.counter-block .num { font-family: var(--font-mono); font-size: 2.6rem; color: var(--white); }
.counter-block .num span { color: var(--red); }
.counter-block .lbl { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--silver-dim); margin-top: 6px; }

/* ---------- Timeline (about page) ---------- */
.mz-timeline { position: relative; padding-left: 40px; border-left: 1px solid var(--silver-line); }
.mz-timeline-item { position: relative; padding-bottom: 50px; }
.mz-timeline-item:last-child { padding-bottom: 0; }
.mz-timeline-item::before {
  content: "";
  position: absolute; left: -45px; top: 4px;
  width: 10px; height: 10px;
  background: var(--red);
  border-radius: 50%;
}
.mz-timeline-item .yr { font-family: var(--font-mono); color: var(--red); font-size: 0.85rem; margin-bottom: 8px; letter-spacing: 0.1em; }
.mz-timeline-item h4 { font-size: 1.2rem; margin-bottom: 8px; }
.mz-timeline-item p { color: var(--silver); margin: 0; font-size: 0.92rem; }

/* ---------- Gallery ---------- */
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 46px; }
.gallery-filter button {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--silver);
  transition: all .3s var(--ease);
  cursor: pointer;
}
.gallery-filter button:hover,
.gallery-filter button.active { border-color: var(--red); color: var(--white); background: rgba(229,9,20,0.1); }
.gallery-item { overflow: hidden; border-radius: var(--radius-md); margin-bottom: 24px; position: relative; cursor: zoom-in; aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem;
  background: rgba(229,9,20,0);
  opacity: 0;
  transition: all .35s var(--ease);
}
.gallery-item:hover::after { opacity: 1; background: rgba(10,10,10,0.55); }

/* Lightbox */
.mz-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(5,5,5,0.96);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.mz-lightbox.is-open { display: flex; }
.mz-lightbox img { max-height: 86vh; max-width: 90vw; object-fit: contain; border: 1px solid var(--glass-border); }
.mz-lightbox-close { position: absolute; top: 30px; right: 34px; color: var(--white); font-size: 1.6rem; cursor: pointer; }
.mz-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 1.8rem; cursor: pointer; padding: 12px; }
.mz-lightbox-prev { left: 20px; }
.mz-lightbox-next { right: 20px; }

/* ---------- Contact ---------- */
.mz-form .form-control {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--white);
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
}
.mz-form .form-control:focus {
  background: var(--glass-bg-strong);
  border-color: var(--red);
  box-shadow: none;
  color: var(--white);
}
.mz-form .form-control::placeholder { color: var(--silver-dim); }
.mz-form label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 8px;
  display: block;
}
.contact-info-item { display: flex; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--glass-border); }
.contact-info-item .ic { width: 48px; height: 48px; border: 1px solid var(--silver-line); display: flex; align-items: center; justify-content: center; color: var(--red); flex-shrink: 0; }
.contact-info-item h5 { font-size: 1rem; margin-bottom: 6px; }
.contact-info-item p { color: var(--silver); margin: 0; font-size: 0.9rem; }

/* ---------- Membership comparison table ---------- */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 18px 20px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.9rem;
}
.compare-table th { font-family: var(--font-mono); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; color: var(--silver); }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; color: var(--white); }
.compare-table .fa-check { color: var(--red); }
.compare-table .fa-xmark { color: var(--silver-dim); }
.compare-table tr:hover td { background: var(--glass-bg); }

/* ---------- WhatsApp float + Back to top ---------- */
.mz-float-btn {
  position: fixed;
  right: 26px;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  z-index: 900;
  cursor: pointer;
  transition: all .3s var(--ease);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.mz-whatsapp { bottom: 26px; background: #25D366; color: #fff; }
.mz-whatsapp:hover { transform: scale(1.08); color: #fff; }
.mz-backtotop {
  bottom: 92px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  color: var(--white);
  opacity: 0; visibility: hidden; transform: translateY(10px);
}
.mz-backtotop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.mz-backtotop:hover { border-color: var(--red); color: var(--red); }

/* Utility */
.text-red { color: var(--red); }
.text-silver { color: var(--silver); }
.divider-line { height: 1px; background: var(--glass-border); border: none; margin: 0; }
