/* PowerFit Gym — Athletic Red Theme */
:root {
  --red: #d62828;
  --red-dark: #a01c1c;
  --red-light: #ff4444;
  --black: #0d0d0d;
  --dark: #161616;
  --dark2: #202020;
  --gray: #333333;
  --gray-mid: #555555;
  --gray-light: #888888;
  --silver: #c0c0c0;
  --white: #f0f0f0;
  --orange: #e05c00;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── DEMO BAR ── */
.demo-bar {
  background: #0a0a0a;
  border-bottom: 2px solid var(--red);
  padding: 7px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  color: var(--silver);
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.demo-bar strong { color: var(--red-light); font-weight: 700; }
.demo-bar a {
  color: var(--white);
  font-weight: 600;
  padding: 3px 11px;
  border-radius: 4px;
  border: 1px solid var(--gray);
  font-size: 12px;
  transition: background .2s;
}
.demo-bar a:hover { background: var(--gray); }
.demo-bar .wa {
  background: var(--red);
  border-color: var(--red);
}
.demo-bar .wa:hover { background: var(--red-dark); }

/* ── NAV ── */
.nav-wrap {
  background: var(--dark);
  border-bottom: 1px solid var(--gray);
  position: sticky;
  top: 39px;
  z-index: 900;
}
nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  position: relative;
}
.logo {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
}
.logo span { color: var(--red); }

#nav-toggle { display: none; }
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 10;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
#nav-toggle:checked ~ label .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ label .hamburger span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ label .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: none;
  flex-direction: column;
  background: var(--dark2);
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  border-top: 1px solid var(--gray);
  padding: 6px 0;
}
#nav-toggle:checked ~ .nav-links { display: flex; }
.nav-links a {
  padding: 11px 20px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  transition: color .2s, background .2s;
  border-left: 3px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red-light); border-left-color: var(--red); background: rgba(214,40,40,.07); }

@media (min-width: 768px) {
  .hamburger { display: none; }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: transparent;
    border: none;
    padding: 0;
    gap: 2px;
  }
  .nav-links a {
    padding: 7px 13px;
    border-left: none;
    border-bottom: 3px solid transparent;
    border-radius: 4px 4px 0 0;
  }
  .nav-links a:hover,
  .nav-links a.active { border-bottom-color: var(--red); background: rgba(214,40,40,.07); }
}

/* ── HERO ── */
.hero {
  min-height: 88vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 16px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 65%, rgba(214,40,40,.2) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 64px, rgba(214,40,40,.035) 64px, rgba(214,40,40,.035) 65px),
    repeating-linear-gradient(90deg, transparent, transparent 64px, rgba(214,40,40,.035) 64px, rgba(214,40,40,.035) 65px);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 780px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214,40,40,.15);
  border: 1px solid rgba(214,40,40,.4);
  color: var(--red-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--red); font-style: normal; display: block; }
.hero p {
  font-size: clamp(.95rem, 2.5vw, 1.2rem);
  color: var(--silver);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,0,0,.4); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }
.btn-outline { background: transparent; border: 2px solid var(--gray-mid); color: var(--white); }
.btn-outline:hover { border-color: var(--red-light); color: var(--red-light); }
.btn-full { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid var(--gray);
}
.stat { text-align: center; }
.stat-n { font-size: 2.3rem; font-weight: 900; color: var(--red); line-height: 1; letter-spacing: -1px; }
.stat-l { font-size: .72rem; color: var(--silver); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 4px; }

/* ── SECTIONS ── */
.sec {
  padding: 80px 16px;
}
.sec-inner { max-width: 1100px; margin: 0 auto; }
.bg-dark { background: var(--dark); }
.bg-dark2 { background: var(--dark2); }

.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.sec-title {
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}
.sec-title span { color: var(--red); }
.sec-sub {
  color: var(--silver);
  font-size: .95rem;
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.redbar { width: 48px; height: 4px; background: var(--red); border-radius: 2px; margin-bottom: 24px; }

/* ── GRID ── */
.g3 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 600px) { .g3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .g3 { grid-template-columns: repeat(3, 1fr); } }

.g2 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 680px) { .g2 { grid-template-columns: 1fr 1fr; } }

.g4 { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (min-width: 800px) { .g4 { grid-template-columns: repeat(4,1fr); } }

/* ── CARDS ── */
.card {
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 26px 22px;
  transition: border-color .25s, transform .25s;
}
.card:hover { border-color: var(--red); transform: translateY(-4px); }
.card-ico {
  width: 52px; height: 52px;
  background: rgba(214,40,40,.14);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-ico svg { width: 26px; height: 26px; fill: var(--red); }
.card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 9px; }
.card p { color: var(--silver); font-size: .88rem; line-height: 1.65; }

/* ── STRIP ── */
.strip {
  background: var(--red);
  padding: 26px 16px;
}
.strip-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  gap: 18px; justify-content: space-around; align-items: center;
}
.strip-item { display: flex; align-items: center; gap: 9px; }
.strip-item svg { width: 20px; height: 20px; fill: rgba(255,255,255,.85); flex-shrink: 0; }
.strip-item span { font-weight: 700; font-size: .88rem; color: #fff; }

/* ── PRICING ── */
.plan-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 700px) { .plan-grid { grid-template-columns: repeat(3,1fr); } }

.plan {
  background: var(--dark2);
  border: 2px solid var(--gray);
  border-radius: 14px;
  padding: 34px 26px;
  text-align: center;
  position: relative;
  transition: border-color .25s, transform .25s;
  overflow: hidden;
}
.plan:hover { border-color: var(--red-light); transform: translateY(-4px); }
.plan.hot { border-color: var(--red); }
.plan.hot::before {
  content: 'POPULER';
  position: absolute; top: 14px; right: -26px;
  background: var(--red); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
}
.plan-name { font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--silver); margin-bottom: 6px; }
.plan-price { font-size: 2.8rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.plan-price sup { font-size: 1.1rem; vertical-align: top; padding-top: 8px; color: var(--red); }
.plan-period { font-size: .82rem; color: var(--silver); margin-bottom: 24px; }
.plan-list { text-align: left; margin-bottom: 24px; }
.plan-list li {
  display: flex; align-items: flex-start; gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .88rem; color: var(--silver);
}
.plan-list li::before { content: '✓'; color: var(--red); font-weight: 900; flex-shrink: 0; }

/* ── TRAINER ── */
.trainer {
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}
.trainer:hover { border-color: var(--red); transform: translateY(-4px); }
.trainer-ava {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 210px;
  background: linear-gradient(135deg, var(--dark) 0%, #2a0808 100%);
  display: flex; align-items: center; justify-content: center;
}
.trainer-ava svg { width: 80px; height: 80px; }
.trainer-body { padding: 20px; }
.trainer-name { font-size: 1.1rem; font-weight: 900; margin-bottom: 3px; }
.trainer-role { color: var(--red); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 9px; }
.trainer-desc { color: var(--silver); font-size: .86rem; line-height: 1.55; margin-bottom: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag-pill {
  background: rgba(214,40,40,.14);
  color: var(--red-light);
  border: 1px solid rgba(214,40,40,.3);
  font-size: .7rem; font-weight: 600;
  padding: 3px 9px; border-radius: 999px;
}

/* ── TESTI ── */
.testi {
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 26px 22px;
}
.testi-stars { color: #ffaa00; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { color: var(--silver); font-size: .92rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-ava {
  width: 40px; height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; color: #fff; font-size: .88rem; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .92rem; }
.testi-since { font-size: .78rem; color: var(--gray-light); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(130deg, var(--red-dark) 0%, var(--red) 55%, var(--orange) 100%);
  padding: 72px 16px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.9rem, 5.5vw, 3rem);
  font-weight: 900; color: #fff;
  margin-bottom: 14px; letter-spacing: -1px;
}
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── PAGE HEADER ── */
.page-hdr {
  background: linear-gradient(135deg, var(--dark2) 0%, #1a0505 100%);
  padding: 62px 16px 46px;
  text-align: center;
  border-bottom: 1px solid var(--gray);
}
.page-hdr h1 {
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  font-weight: 900; letter-spacing: -1.5px;
  text-transform: uppercase; margin-bottom: 12px;
}
.page-hdr h1 span { color: var(--red); }
.page-hdr p { color: var(--silver); font-size: .98rem; max-width: 480px; margin: 0 auto; }

/* ── SCHEDULE ── */
.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--gray); }
.sch-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.sch-table th {
  background: var(--red); color: #fff;
  padding: 12px 16px; text-align: left;
  font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.sch-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray);
  color: var(--silver); font-size: .9rem;
}
.sch-table tr:hover td { background: rgba(214,40,40,.06); color: var(--white); }
.sch-table tr:last-child td { border-bottom: none; }
.badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .72rem; font-weight: 700;
}
.badge-r { background: rgba(214,40,40,.22); color: var(--red-light); }
.badge-g { background: rgba(0,180,90,.18); color: #4fd97c; }
.badge-o { background: rgba(224,92,0,.2); color: #ff8c44; }
.badge-p { background: rgba(160,100,255,.18); color: #c08cff; }

/* ── FORM ── */
.form-box {
  background: var(--dark2);
  border: 1px solid var(--gray);
  border-radius: 14px;
  padding: 34px 26px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .8rem; font-weight: 700;
  color: var(--silver); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font);
  font-size: .92rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group select option { background: var(--dark2); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ── CONTACT ── */
.ci-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--dark2); border: 1px solid var(--gray);
  border-radius: 11px; padding: 18px;
}
.ci-ico {
  width: 42px; height: 42px;
  background: rgba(214,40,40,.14);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci-ico svg { width: 20px; height: 20px; fill: var(--red); }
.ci-label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--red); margin-bottom: 3px; }
.ci-val { font-size: .92rem; color: var(--white); }

/* ── FACILITY BLOCK ── */
.fac-block {
  background: var(--dark2); border: 1px solid var(--gray);
  border-radius: 12px; padding: 26px 22px;
}
.fac-block h3 {
  font-size: 1rem; font-weight: 800; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--gray);
  display: flex; align-items: center; gap: 10px;
}
.fac-block h3 svg { width: 20px; height: 20px; fill: var(--red); flex-shrink: 0; }
.fac-list li {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
  font-size: .87rem; color: var(--silver);
}
.fac-list li:last-child { border-bottom: none; }
.fac-list li::before { content: '→'; color: var(--red); flex-shrink: 0; font-weight: 700; }

/* ── ACCORDION FAQ ── */
.faq { display: grid; gap: 8px; }
.faq-item { background: var(--dark2); border: 1px solid var(--gray); border-radius: 10px; overflow: hidden; }
.faq-item input { display: none; }
.faq-label {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; cursor: pointer;
  font-weight: 600; font-size: .95rem;
  gap: 12px; user-select: none;
  transition: background .2s;
}
.faq-label:hover { background: rgba(214,40,40,.07); }
.faq-arr {
  width: 22px; height: 22px;
  border: 2px solid var(--gray-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: .3s;
}
.faq-arr svg { width: 10px; height: 10px; fill: var(--silver); transition: transform .3s; }
.faq-item input:checked ~ .faq-label .faq-arr { border-color: var(--red); background: var(--red); }
.faq-item input:checked ~ .faq-label .faq-arr svg { transform: rotate(180deg); fill: #fff; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item input:checked ~ .faq-body { max-height: 250px; }
.faq-body p { padding: 0 20px 18px; color: var(--silver); font-size: .9rem; line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--gray);
  padding: 52px 16px 26px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 36px;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr; } }
.foot-brand p { color: var(--silver); font-size: .86rem; line-height: 1.7; margin-top: 10px; max-width: 280px; }
.foot-col h4 {
  font-size: .75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red-light); margin-bottom: 14px;
}
.foot-col ul li + li { margin-top: 9px; }
.foot-col ul a { color: var(--silver); font-size: .87rem; transition: color .2s; }
.foot-col ul a:hover { color: var(--red-light); }
.footer-btm {
  max-width: 1100px; margin: 28px auto 0;
  padding-top: 22px; border-top: 1px solid var(--gray);
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--gray-light);
}

/* ── DIVIDER ── */
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--gray), transparent); margin: 0; }

/* ── UTILS ── */
.tc { text-align: center; }
.mt2 { margin-top: 20px; }
.mt4 { margin-top: 40px; }
