/* ============================================================
   ELYSIUM CALISTHENICS PARK — Global Styles
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ── */
:root {
  --green-dark:   #1a5c1a;
  --green-main:   #2e7d32;
  --green-mid:    #43a047;
  --green-light:  #e8f5e9;
  --yellow-main:  #f5c518;
  --yellow-light: #fff9e6;
  --black:        #111110;
  --gray-900:     #1c1c1c;
  --gray-700:     #444;
  --gray-500:     #777;
  --gray-300:     #ccc;
  --gray-100:     #f5f5f5;
  --white:        #ffffff;

  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.06);
  --shadow-md:  0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.14);

  --transition: .25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (max-width: 600px) {
  .container { padding-inline: 1.25rem; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-main);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(46,125,50,.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,125,50,.4);
}
.btn-outline {
  background: transparent;
  color: var(--green-main);
  border: 2px solid var(--green-main);
}
.btn-outline:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.w-full { width: 100%; }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1160px;
  margin-inline: auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.logo-link:hover { opacity: .85; }

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--green-main);
  box-shadow: 0 2px 10px rgba(46,125,50,.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--green-dark);
  letter-spacing: .04em;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: .72rem;
  color: var(--gray-500);
  letter-spacing: .02em;
}

@media (max-width: 1100px) {
  .logo-sub { display: none; }
}

/* Desktop nav */
.desktop-nav { display: flex; }
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-link {
  padding: .5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .92rem;
  color: var(--gray-700);
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--green-main);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav-link:hover { color: var(--green-dark); }
.nav-link:hover::after { left: 1rem; right: 1rem; }

.nav-link--cta {
  background: var(--green-main);
  color: var(--white) !important;
  margin-left: .5rem;
  padding: .5rem 1.25rem;
  box-shadow: 0 3px 14px rgba(46,125,50,.3);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
.hamburger .bar {
  width: 24px; height: 2.5px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open .bar:nth-child(2) { opacity: 0; }
.hamburger.open .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: block;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.mobile-drawer.open {
  max-height: 400px;
  visibility: visible;
}
.mobile-nav-list { padding: 1rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav-link {
  display: block;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-700);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover { background: var(--green-light); color: var(--green-dark); }
.mobile-nav-link--cta {
  background: var(--green-main);
  color: var(--white) !important;
  text-align: center;
  margin-top: .5rem;
  border-radius: 50px;
}
.mobile-nav-link--cta:hover { background: var(--green-dark) !important; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 20% 50%, rgba(46,125,50,.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(245,197,24,.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  /* keep pattern only on the left side so it doesn't bleed on image */
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 5%;
  max-width: 100%;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

/* Photo strip row spans full width */
.hero-photo-strip-row {
  grid-column: 1 / -1;
  grid-row: 2 / 3;
  overflow: hidden;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--green-light);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(46,125,50,.2);
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.hero-title-accent { color: var(--green-main); }
.hero-desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.br-hide { display: block; }

@media (max-width: 960px) {
  .hero-content {
    padding: 6rem 1.5rem 3rem;
    text-align: center;
    align-items: center;
  }
  .br-hide { display: none; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; }
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--green-main);
  line-height: 1;
}
.stat-label { font-size: .78rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .08em; }
.stat-divider { width: 1px; height: 40px; background: var(--gray-300); }

/* Hero right — static image, centred */
.hero-img-right {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 65vh;
  min-height: 550px;
  align-self: center;
  justify-self: center;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 2rem auto;
  box-shadow: 0 16px 56px rgba(0,0,0,.15);
}

@media (max-width: 960px) {
  .hero-img-right {
    height: 400px;
    min-height: unset;
    margin: 0 1.5rem 4rem;
    width: calc(100% - 3rem);
  }
}
@media (max-width: 600px) {
  .hero-img-right {
    height: 300px;
    border-radius: var(--radius-lg);
  }
}
.hero-img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   HERO PHOTO STRIP — infinite marquee below hero
   ============================================================ */
.hero-photo-strip-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--white);
  padding: 2.5rem 0;          /* breathing room top & bottom */
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.hero-photo-strip {
  display: flex;
  gap: 14px;                  /* gap between cards */
  width: max-content;
  animation: hero-marquee 36s linear infinite;
}

.hero-photo-strip img {
  height: 300px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  border-radius: 14px;        /* rounded cards */
  box-shadow: 0 4px 18px rgba(0,0,0,.10);
}

@keyframes hero-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.section { padding: 6rem 0; }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-main);
  background: var(--green-light);
  padding: .35rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  border: 1px solid rgba(46,125,50,.2);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--black);
  margin-bottom: .75rem;
  line-height: 1.1;
}
.section-title .accent { color: var(--green-main); }
.section-sub { color: var(--gray-500); font-size: 1.05rem; margin-bottom: 3rem; max-width: 560px; }

/* ============================================================
   ABOUT SECTION — clean, professional
   ============================================================ */
.about-section {
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.85)), url('assets/community_bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
}

.about-top {
  width: 100%;
  padding: 6rem 5%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 960px) {
  .about-top {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 1.5rem;
    text-align: center;
  }
}

/* Content — left column */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-heading {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  color: var(--black);
  margin-bottom: 1.1rem;
  line-height: 1.1;
}

.about-body {
  color: var(--black);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 480px;
}

@media (max-width: 960px) {
  .about-body { margin-inline: auto; }
}

/* Stats — right column (inline grid) */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-stat-card {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(0,0,0,.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.about-stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.4rem;
  color: var(--green-main);
  line-height: 1;
  margin-bottom: .35rem;
}
.about-stat-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .82rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .07em;
}


/* ── Infinite horizontal photo strip ── */
.photo-strip-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--gray-100);
  padding: 1.5rem 0;
}

.photo-strip {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.photo-strip img {
  height: 260px;
  width: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}



.about-detail-section {
  background: var(--gray-100);
  border-top: 1px solid rgba(0,0,0,.06);
}

.about-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

@media (max-width: 960px) {
  .about-detail-grid { grid-template-columns: 1fr; }
}

/* Left: full image, natural proportions */
.about-detail-img {
  overflow: hidden;
}
.about-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 960px) {
  .about-detail-img { height: 420px; }
  .about-detail-img img { object-position: 50% 20%; }
}

/* Right: green background fills completely, text stacked */
.about-detail-content {
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 5% 3.5rem 4rem;
}

.about-detail-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.about-detail-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  border-left: 4px solid var(--yellow-main);
  padding-left: 1.25rem;
}

/* ============================================================
   PHYSICAL TRAINING SECTION
   ============================================================ */
.physical-section {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,.06);
}

.physical-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

@media (max-width: 960px) {
  .physical-grid { grid-template-columns: 1fr; }
  .physical-grid .physical-img { order: -1; height: 420px; }
  .physical-img img { object-position: 50% 20%; }
}

.physical-img {
  overflow: hidden;
}
.physical-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.physical-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 4rem 3.5rem 5%;
  background: var(--white);
}

.physical-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  color: var(--black);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.physical-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--gray-600);
  line-height: 1.8;
  border-left: 4px solid var(--green-main);
  padding-left: 1.25rem;
}

/* ============================================================
   MENTAL TRAINING SECTION
   ============================================================ */
.mental-section {
  background: var(--green-dark);
}

.mental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

@media (max-width: 960px) {
  .mental-grid { grid-template-columns: 1fr; }
  .mental-img { height: 420px; }
  .mental-img img { object-position: 50% 20%; }
}

.mental-img {
  overflow: hidden;
}
.mental-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mental-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem 5% 3.5rem 4rem;
  background: var(--green-dark);
}

.mental-heading {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.mental-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255,255,255,.85);
  line-height: 1.8;
  border-left: 4px solid var(--yellow-main);
  padding-left: 1.25rem;
}

/* ============================================================
   ADVANTAGES SECTION
   ============================================================ */
.advantages-section {
  background: var(--white);
}

.advantages-header {
  margin-bottom: 4rem;
}

.section-label-center {
  margin-inline: auto;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .adv-center-media { grid-column: span 2; order: -1; height: 400px; }
}

@media (max-width: 600px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .adv-center-media { grid-column: span 1; height: 300px; }
}

.adv-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.adv-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.adv-icon {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.adv-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gray-700);
  margin-bottom: .75rem;
}

.adv-card-text {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.adv-center-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.adv-center-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  background: var(--gray-100);
  overflow: hidden;
  padding-bottom: 6rem;
}

.reviews-marquee-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
}

.reviews-marquee {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-left 40s linear infinite;
  padding: 1rem;
}

.reviews-marquee:hover {
  animation-play-state: paused;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 3rem;
  width: 500px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0,0,0,.04);
}

@media (max-width: 600px) {
  .review-card {
    width: 320px;
    padding: 2rem;
  }
}

.review-card:nth-child(even) {
  background: var(--green-dark);
  border: none;
}

.review-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.review-card:nth-child(even) .review-body {
  color: rgba(255,255,255,.85);
}

.review-author {
  text-align: right;
  margin-top: auto;
}

.review-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--black);
}

.review-card:nth-child(even) .review-name {
  color: var(--white);
}

.review-role {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .9rem;
  color: var(--gray-400);
  margin-top: .2rem;
}

.review-card:nth-child(even) .review-role {
  color: rgba(255,255,255,.6);
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

/* ============================================================
   JOIN CTA SECTION
   ============================================================ */
.join-cta-section {
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.85)), url('assets/joinus_bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
  padding: 8rem 0;
}
.join-cta-section .section-sub {
  color: var(--black);
  font-weight: 500;
}

.join-cta-content {
  max-width: 800px;
}

/* ============================================================
   MEMBERSHIP SECTION
   ============================================================ */
.membership-section { background: var(--gray-100); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1.5px solid rgba(0,0,0,.07);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.plan-card--featured {
  border-color: var(--green-main);
  background: var(--white);
  box-shadow: 0 8px 36px rgba(46,125,50,.18);
}
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--green-main);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-tier {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-main);
}
.plan-price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3rem;
  color: var(--black);
  line-height: 1;
}
.price-currency { font-size: 1.5rem; vertical-align: top; line-height: 2; }
.price-period { font-size: 1rem; color: var(--gray-500); font-weight: 500; }
.plan-desc { color: var(--gray-500); font-size: .9rem; }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex: 1;
}
.plan-features li { font-size: .9rem; color: var(--gray-700); }
.plan-btn { margin-top: auto; }

/* ============================================================
   NEWS FEATURES SECTION
   ============================================================ */
.news-features-section { background: var(--gray-100); padding: 5rem 0; }
.news-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 960px) {
  .news-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .news-features-grid { grid-template-columns: 1fr; }
}
.newspaper-card {
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  border-radius: var(--radius-md);
}
.newspaper-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}
.newspaper-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta-section {
  position: relative;
  background: linear-gradient(rgba(255, 255, 255, 0.70), rgba(255, 255, 255, 0.85)), url('assets/champion_bg.jpg') center/cover no-repeat;
  background-attachment: fixed;
  padding: 8rem 0;
}
.final-cta-section .section-sub {
  color: var(--black);
  font-weight: 500;
}

/* ============================================================
   LOCATIONS SECTION
   ============================================================ */
.locations-section { background: var(--white); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

@media (max-width: 1024px) {
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .locations-grid { grid-template-columns: 1fr; }
}
.location-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 3rem 2rem;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.location-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.loc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.loc-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
}
.loc-badge {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .7rem;
  letter-spacing: .1em;
  padding: .3rem .8rem;
  border-radius: 50px;
}
.loc-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--black);
  font-weight: 800;
}
.loc-address {
  font-size: .95rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
}
.loc-directions {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .05em;
  color: var(--green-main);
  text-transform: uppercase;
  margin-top: auto;
  display: inline-block;
  transition: color var(--transition);
}
.loc-directions:hover { color: var(--green-dark); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--white); padding: 5rem 0 8rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

/* Contact Form Clean UI */
.clean-form {
  display: flex;
  flex-direction: column;
}
.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.clean-form input,
.clean-form textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--gray-900);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.2);
  padding: 1.25rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  margin-bottom: -1px; /* Overlap borders perfectly */
}
.form-row-half input:first-child {
  margin-right: -1px;
}
.clean-form input::placeholder,
.clean-form textarea::placeholder {
  color: var(--gray-500);
}
.clean-form input:focus,
.clean-form textarea:focus {
  border-color: var(--black);
  position: relative;
  z-index: 1;
}
.clean-form textarea {
  resize: vertical;
  min-height: 160px;
}
.btn-black-submit {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color var(--transition);
}
.btn-black-submit:hover { background-color: #333; }

/* Contact Map & Branches Grid */
.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.branch-details li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.form-success {
  text-align: center;
  color: var(--green-dark);
  font-weight: 600;
  font-family: var(--font-heading);
  background: var(--green-light);
  padding: .75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(46,125,50,.2);
  margin-top: 1.5rem;
}
.hidden { display: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 1.5rem;
}
.footer-inner {
  max-width: 1160px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 3rem;
  text-align: left;
}

@media (max-width: 960px) {
  .footer-inner { flex-direction: column; text-align: center; align-items: center; }
  .footer-col-right { align-items: center !important; text-align: center !important; }
  .footer-links { justify-content: center !important; }
  .footer-social { justify-content: center !important; }
  .footer-work-hours { max-width: 100% !important; }
  .footer-desc { margin-inline: auto; }
}

.footer-col-left { display: flex; flex-direction: column; flex: 1; }
.footer-col-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }

.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo {
  width: 56px; height: 56px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--green-main);
}
.footer-brand p { color: var(--gray-300); font-size: .9rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: flex-end;
}
.footer-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  color: var(--gray-300);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--green-mid); }
.footer-contact a:hover,
.branch-details a:hover { 
  color: var(--green-main) !important; 
}
.footer-copy { font-size: .8rem; color: var(--gray-500); }

/* ============================================================
   SCROLL FADE-IN ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .hamburger   { display: flex; }
  
  .about-top         { grid-template-columns: 1fr; }
  .about-content     { padding: 3rem 1.5rem; }
  .plans-grid        { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .news-grid         { grid-template-columns: 1fr; }
  .contact-grid      { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  .logo-sub { display: none; }
  .about-cards { grid-template-columns: 1fr; }
  .form-row    { grid-template-columns: 1fr; }
  .hero-stats { 
    flex-direction: row; 
    justify-content: center; 
    gap: 1rem; 
    width: 100%;
  }
  .stat-num { font-size: 1.4rem; }
  .stat-label { font-size: .65rem; }
  .stat-divider { height: 30px; width: 1px; }
}

/* ============================================================
   MEMBERSHIP PLANS SETTINGS
   ============================================================ */

.pricing-tables-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-block {
  width: 100%;
}

.pricing-table-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--black);
  text-align: left;
}

.table-responsive {
  width: 100%;
  overflow-x: auto; 
  border: 1px solid var(--gray-200);
}

.membership-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--white);
  font-family: var(--font-body);
}

.membership-table th,
.membership-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.membership-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  background: var(--gray-100);
  color: var(--black);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.membership-table tbody tr {
  transition: background var(--transition);
}

.membership-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

.membership-table tbody tr:hover {
  background: var(--gray-100);
}

.membership-table td {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
}

.membership-table td:last-child {
  font-weight: 800;
  color: var(--black);
}

.empty-price {
  color: var(--gray-400) !important;
}

@media (min-width: 768px) {
  .pricing-tables-wrapper {
    gap: 4rem;
  }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
  color: #FFF;
}
.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.phone-float {
  position: fixed;
  bottom: 105px;
  right: 30px;
  background-color: var(--black);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.phone-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  color: #FFF;
}
.phone-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ============================================================
   BROCHURE DOWNLOAD PRINT STYLES
   ============================================================ */
@media print {
  @page { margin: 1cm; size: auto; }
  body { background: var(--white); -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .header, .footer, .print-hide, .whatsapp-float, .phone-float { display: none !important; }
  .membership-section { padding-top: 0; min-height: auto; }
  .pricing-tables-wrapper { gap: 2rem; }
  .pricing-table-title { font-size: 1.25rem; }
  .membership-table th, .membership-table td { padding: 0.75rem 1rem; }
  .membership-table th { background-color: #f1f5f9 !important; }
  .membership-table tbody tr:nth-child(even) { background-color: #f8fafc !important; }
}

/* ============================================================
   ARTICLES PAGE SECTION
   ============================================================ */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .articles-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }
}

.article-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.article-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  mix-blend-mode: multiply;
}
