/* ============================================================
   RB FITNESS — style.css
   All Tailwind utility values translated to native CSS.
   No build step required.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ──────────────────────────────────────── */
:root {
  --gym-yellow: #FFD700;
  --gym-yellow-glow: rgba(255, 215, 0, 0.4);
  --gym-gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
  --gym-dark: #070707;
  --gym-darker: #040404;
  --gym-darkest: #010101;
  --gym-card: rgba(30, 30, 30, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 1rem;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ── Reset / Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--gym-dark);
  color: #fff;
  overflow-x: hidden;
  width: 100%;
}

section {
  overflow: hidden;
  position: relative;
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
}

img,
video {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* ── Keyframes ──────────────────────────────────────────────── */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down-top {
  from {
    top: -100px;
    opacity: 0;
  }

  to {
    top: 0.75rem;
    opacity: 1;
  }
}

/* ── Scroll-reveal helper ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Prevent overflow during reveal */
.reveal-right:not(.visible) {
  transform: translateX(10px);
}

.reveal-delay-1 {
  transition-delay: 0.10s;
}

.reveal-delay-2 {
  transition-delay: 0.20s;
}

.reveal-delay-3 {
  transition-delay: 0.30s;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.5rem);
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: slide-down-top 0.6s ease-out both;
  background: rgba(8, 8, 8, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.25rem;
  box-sizing: border-box;
}

#navbar.scrolled {
  background: rgba(8, 8, 8, 0.85);
  top: 0.5rem;
  width: calc(100% - 1rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.nav-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.75rem;
}

@media (min-width: 768px) {
  .nav-inner {
    height: 5rem;
  }
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-logo-img {
  height: 2.5rem;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .nav-logo-img {
    height: 3.25rem;
  }
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-links button {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
  background: none;
  border: none;
  padding: 0;
}

.nav-links button:hover {
  color: var(--gym-yellow);
}

/* Mobile toggle */
.nav-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #fff;
  background: none;
  border: none;
}

@media (min-width: 768px) {
  .nav-burger {
    display: none;
  }
}

.nav-burger svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mobile menu */
#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: none;
  border-radius: 0 0 1.25rem 1.25rem;
  margin-top: -0.75rem;
  padding-top: 1rem;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 2rem;
}

#mobile-menu nav a {
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#mobile-menu nav a::after {
  content: '\f105';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  opacity: 0.3;
}

#mobile-menu nav a:last-child {
  border-bottom: none;
}

#mobile-menu nav a:hover {
  color: var(--gym-yellow);
  padding-left: 0.5rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
#home {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
  opacity: 0.30;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), hsla(54, 100%, 50%, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 6rem 1.5rem 2.5rem;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.20);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  font-size: clamp(2.25rem, 12vw, 9rem);
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title .white {
  color: #fff;
}

.hero-title .red {
  color: var(--gym-yellow);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.80);
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  font-weight: 300;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding-top: 1rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.btn-primary {
  padding: 1rem 2.5rem;
  background: var(--gym-gold-gradient);
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 9999px;
  font-size: 1.15rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  transition: 0.6s;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 100%;
  top: 100%;
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.25);
}

@media (max-width: 480px) {
  .btn-primary {
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 320px;
  }
}

.btn-outline {
  padding: 1rem 2rem;
  border: 2px solid #fff;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 9999px;
  font-size: 1.25rem;
  transition: background 0.2s;
  display: inline-block;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
}

/* Stats bar */
.hero-stats-bar {
  margin-top: 2.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-stats-bar {
    position: absolute;
    bottom: 2rem;
    left: 1.5rem;
    right: 1.5rem;
    margin-top: 0;
  }
}

.stats-inner {
  max-width: 60rem;
  margin: 0 auto;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.60);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 2.25rem;
  }

  .stat-label {
    font-size: 1rem;
  }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  /* background: var(--gym-dark); */
  padding: 5rem 1.5rem;
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../assets/about_us.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  #about {
    padding: 7rem 2rem;
  }
}

.section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.section-inner-wide {
  max-width: 80rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.section-title .red {
  color: var(--gym-yellow);
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.70);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* Highlights grid */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.highlight-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: background 0.2s;
}

.highlight-card:hover {
  background: rgba(255, 255, 255, 0.10);
}

.highlight-card svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.75rem;
  color: var(--gym-yellow);
  stroke: var(--gym-yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.highlight-card:hover svg {
  transform: scale(1.10);
}

.highlight-label {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 500;
}

/* ============================================================
   FACILITIES SECTION
   ============================================================ */
#facilities {
  background: var(--gym-darker);
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  #facilities {
    padding: 7rem 2rem;
  }
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .facilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.facility-card {
  position: relative;
  overflow: hidden;
  object-fit: contain;
  border-radius: 28px;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 100%;
}

.facility-card img,
.facility-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.facility-card:hover img,
.facility-card:hover video {
  transform: scale(1.10);
}

.facility-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.02) 40%, rgba(0, 0, 0, 0.22) 100%);
}

.facility-inner-border {
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.facility-top-blur {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  top: 0.75rem;
  height: 4rem;
  border-radius: 9999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.03));
  filter: blur(12px);
  opacity: 0.80;
  transition: opacity 0.5s;
}

.facility-card:hover .facility-top-blur {
  opacity: 1;
}

#facilities_name {
  font-family: var(--font-display);
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   TRAINING VIDEOS SECTION
   ============================================================ */
#training {
  background: var(--gym-dark);
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  #training {
    padding: 7rem 2rem;
  }
}

.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-card {}

.video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.video-wrapper:hover {
  border-color: var(--gym-yellow);
  box-shadow: 0 0 20px hsla(54, 100%, 50%, 0.30);
  transform: scale(1.03);
}

.video-wrapper video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
}

.video-label {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

/* ============================================================
   TRAINERS SECTION
   ============================================================ */
#trainers {
  background: var(--gym-darker);
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  #trainers {
    padding: 7rem 2rem;
  }
}

.trainers-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .trainers-grid {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.trainer-card {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  transition: border-top-color 0.3s, transform 0.3s;
}

.trainer-card:hover {
  border-top: 3px solid var(--gym-yellow);
  transform: translateY(-0.5rem);
}

.trainer-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.trainer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.trainer-card:hover .trainer-photo img {
  transform: scale(1.05);
}

.trainer-info {
  padding: 1.25rem 1rem;
  text-align: center;
}

.trainer-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
}

.trainer-role {
  color: var(--gym-yellow);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ============================================================
   PLANS SECTION
   ============================================================ */
#plans {
  background: var(--gym-dark);
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  #plans {
    padding: 7rem 2rem;
  }
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 55rem;
  margin: 0 auto;
}

/* Category Tabs */
.plans-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
  background: var(--gym-yellow);
  color: #000;
  border-color: var(--gym-yellow);
  box-shadow: 0 4px 15px hsla(54, 100%, 50%, 0.3);
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.plan-card {
  position: relative;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: var(--gym-yellow);
  box-shadow: 0 10px 30px hsla(54, 100%, 50%, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.plan-card.featured {
  border: 2px solid var(--gym-yellow);
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.9));
  transform: scale(1.02);
  z-index: 2;
}

@media (max-width: 768px) {
  .plan-card.featured {
    transform: scale(1);
    margin-top: 1rem;
  }
}

.plan-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1.25rem;
  background: var(--gym-yellow);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 9999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px hsla(54, 100%, 50%, 0.3);
}

.plan-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.plan-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2rem;
}

.plan-price {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.plan-price-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.plan-price-note {
  font-size: 0.875rem;
  color: var(--gym-yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.plan-price-subtext {
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 400;
}

.plan-price-period {
  color: rgba(255, 255, 255, 0.50);
  font-size: 1rem;
  margin-top: 0.25rem;
}

.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.90);
  font-size: 1.05rem;
  line-height: 1.4;
}

.plan-features li svg {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  stroke: var(--gym-yellow);
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 0.2rem;
}

.btn-plan {
  width: 100%;
  padding: 1.125rem;
  border-radius: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-plan.primary {
  background: var(--gym-yellow);
  color: #000;
  border: none;
  box-shadow: 0 4px 10px hsla(54, 100%, 50%, 0.2);
}

.btn-plan.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(54, 100%, 50%, 0.4);
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
  background: var(--gym-card);
  padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
  #contact {
    padding: 7rem 2rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0.75rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.40);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gym-yellow);
}

.contact-form textarea {
  resize: none;
}

/* Info panel */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-item svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
  stroke: var(--gym-yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 700;
}

.contact-info-text {
  color: rgba(255, 255, 255, 0.60);
  margin-top: 0.25rem;
  line-height: 1.6;
}

.hours-grid {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 250px;
}

.hours-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hours-day {
  color: var(--gym-yellow);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: 70px;
  flex-shrink: 0;
}

.hours-time {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  font-weight: 500;
}

.hours-row.sun .hours-day {
  color: rgba(255, 255, 255, 0.4);
}

.hours-row.sun .hours-time {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 0.875rem;
}

.map-container {
  height: 20rem;
  width: 100%;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--gym-darkest);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 3rem 1.5rem;
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-logo-img {
  height: 3rem;
  width: auto;
  display: block;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-socials a {
  color: rgba(255, 255, 255, 0.40);
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--gym-yellow);
}

.footer-socials svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.30);
}