/* DESIGN SYSTEM: Cyber-Fitness */
:root {
  --bg-black: #050505;
  --bg-dark: #121212;
  --bg-card: #1e1e1e;

  --lime: #ccff00;
  --lime-dim: #a3cc00;
  --white: #ffffff;
  --grey: #888888;

  --font-head: "Oswald", sans-serif;
  --font-body: "Roboto", sans-serif;

  --container: 1200px;
  --border: 1px solid #333;
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* UTILS */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  line-height: 1.1;
}
h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 10px;
  color: var(--white);
}
h3 {
  font-size: 1.5rem;
  color: var(--lime);
  margin-bottom: 20px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
  border-bottom: 1px solid #222;
}
.bg-dark {
  background-color: var(--bg-dark);
}
.bg-lime {
  background-color: var(--lime);
  color: var(--bg-black);
}
.txt-lime {
  color: var(--lime);
}
.narrow {
  max-width: 800px;
  margin: 0 auto;
}

/* BUTTONS */
.btn-lime {
  padding: 10px 25px;
  background: var(--lime);
  color: var(--bg-black);
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transform: skew(-10deg);
  transition: 0.2s;
  display: inline-block;
}
.btn-lime:hover {
  background: var(--white);
  transform: skew(-10deg) translateY(-2px);
  box-shadow: 0 0 15px var(--lime);
}

.btn-lime-lg {
  padding: 20px 50px;
  background: var(--lime);
  color: var(--bg-black);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  display: inline-block;
  transform: skew(-10deg);
  transition: 0.3s;
}
.btn-lime-lg:hover {
  background: var(--white);
  box-shadow: 0 0 30px rgba(204, 255, 0, 0.4);
}

.link-line {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 2px solid var(--lime);
  padding-bottom: 2px;
}
.link-line:hover {
  color: var(--lime);
}

/* HEADER */
.fit-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #333;
  z-index: 100;
}
.h-flex {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo svg {
  display: block;
}
.fit-nav {
  display: flex;
  gap: 40px;
}
.fit-nav a {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: #ccc;
}
.fit-nav a:hover {
  color: var(--lime);
}

.h-cta {
  display: flex;
  align-items: center;
  gap: 30px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  width: 35px;
  height: 3px;
  background: var(--lime);
}

/* MOBILE MENU */
.mob-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg-black);
  z-index: 200;
  transform: translateX(100%);
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 40px;
  border-left: 2px solid var(--lime);
  display: flex;
  flex-direction: column;
}
.mob-panel.active {
  transform: translateX(0);
}
.mp-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--lime);
}
#closeMob {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}
.mp-list a {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  transition: 0.2s;
}
.mp-list a:hover {
  color: var(--lime);
  padding-left: 10px;
}
.mp-highlight {
  font-size: 1.5rem !important;
  color: var(--lime) !important;
  margin-top: 30px;
}

/* HERO */
.hero-fit {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -2;
  opacity: 0.5;
  filter: grayscale(100%) contrast(1.2);
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.7) 100%);
  z-index: -1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.label-neon {
  display: inline-block;
  border: 1px solid var(--lime);
  color: var(--lime);
  padding: 5px 15px;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
  transform: skew(-10deg);
}
.hero-desc {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 600px;
  margin-bottom: 40px;
  border-left: 2px solid var(--lime);
  padding-left: 20px;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 40px;
}
.stat-box strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--lime);
  line-height: 1;
}
.stat-box span {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #888;
}

/* PHILOSOPHY */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sl-img {
  position: relative;
}
.sl-img img {
  filter: grayscale(100%);
}
.img-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--lime);
  z-index: -1;
}
.text-block p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #ccc;
}

/* PRACTICE GRID */
.sec-head {
  margin-bottom: 60px;
}
.sec-head p {
  font-size: 1.2rem;
  color: #888;
  font-family: var(--font-head);
  letter-spacing: 1px;
}
.dark-head h2 {
  color: var(--bg-black);
}
.dark-head p {
  color: #333;
}

.grid-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.card-fit {
  background: var(--bg-card);
  padding: 40px 30px;
  border: 1px solid #333;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.card-fit:hover {
  border-color: var(--lime);
  transform: translateY(-10px);
}
.card-fit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--lime);
  transform: scaleX(0);
  transition: 0.3s;
  transform-origin: left;
}
.card-fit:hover::before {
  transform: scaleX(1);
}

.cf-icon {
  font-size: 2rem;
  color: var(--lime);
  margin-bottom: 20px;
}
.card-fit p {
  color: #aaa;
  margin-bottom: 25px;
  line-height: 1.5;
}
.cf-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #fff;
  font-weight: 500;
}
.cf-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-family: var(--font-head);
}

/* REVIEWS */
.reviews-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.review-item {
  border: 2px solid var(--bg-black);
  padding: 30px;
  position: relative;
}
.ri-text {
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #111;
}
.ri-author strong {
  display: block;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #000;
}
.ri-author span {
  font-size: 0.9rem;
  color: #333;
}

/* FAQ */
.accordion-fit {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.acc-row {
  border-bottom: 1px solid #333;
}
.acc-btn {
  width: 100%;
  padding: 25px 0;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  transition: 0.3s;
}
.acc-btn:hover {
  color: var(--lime);
}
.acc-btn i {
  transition: 0.3s;
}
.acc-btn.active i {
  transform: rotate(45deg);
  color: var(--lime);
}
.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s;
}
.acc-content p {
  padding-bottom: 30px;
  color: #aaa;
  font-size: 1rem;
  max-width: 90%;
}

/* CONTACT */
.section-form {
  background: url("https://www.transparenttextures.com/patterns/carbon-fibre.png")
    var(--bg-card);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cg-contacts {
  margin-top: 40px;
}
.c-item {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.c-item i {
  color: var(--lime);
}

.cg-form {
  background: var(--bg-black);
  padding: 50px;
  border: 1px solid #333;
  position: relative;
}
.cg-form::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--lime);
  z-index: -1;
}

.inp-group {
  margin-bottom: 20px;
}
.inp-group label {
  display: block;
  font-family: var(--font-head);
  color: var(--lime);
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.inp-group input,
.inp-group select {
  width: 100%;
  padding: 15px;
  background: #111;
  border: 1px solid #444;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: 0.3s;
}
.inp-group input:focus,
.inp-group select:focus {
  outline: none;
  border-color: var(--lime);
}

.inp-check {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #888;
}
.inp-check a {
  color: var(--white);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--lime);
  color: #000;
  border: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}
.btn-submit:hover {
  background: #fff;
}

/* FOOTER */
.fit-footer {
  background: #000;
  padding: 100px 0 30px;
  border-top: 5px solid var(--lime);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}
.f-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}
.branding p {
  color: #666;
  font-size: 0.9rem;
  max-width: 300px;
}

.f-col h5 {
  color: var(--lime);
  font-family: var(--font-head);
  margin-bottom: 25px;
  font-size: 1rem;
}
.f-col a {
  display: block;
  color: #999;
  margin-bottom: 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
}
.f-col a:hover {
  color: var(--white);
  padding-left: 5px;
}

.contact-info p {
  color: #999;
  margin-bottom: 5px;
}
.phone-hl a {
  color: var(--lime) !important;
  font-size: 1.2rem !important;
  font-weight: 700;
  display: block;
  margin: 15px 0;
}
.email-hl {
  text-decoration: underline;
}

.footer-btm {
  text-align: center;
  color: #444;
  font-size: 0.8rem;
  padding-top: 30px;
  border-top: 1px solid #111;
}

/* COOKIE */
.cookie-fitness {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--lime);
  color: #000;
  padding: 15px;
  display: none;
  z-index: 500;
}
.cb-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
.cb-inner span {
  font-weight: 500;
  font-family: var(--font-head);
  text-transform: uppercase;
}
#acceptCookie {
  background: #000;
  color: var(--lime);
  padding: 8px 20px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transform: skew(-10deg);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .fit-nav,
  .h-cta .link-line,
  .h-cta .btn-lime {
    display: none;
  }
  .burger {
    display: flex;
  }
  .hero-bg {
    opacity: 0.3;
  }
  .split-layout,
  .contact-grid,
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .reviews-scroll {
    grid-template-columns: 1fr;
  }
  .sl-img {
    order: -1;
  }
  .run-line {
    display: none;
  } /* Hide marquee on mobile for better perf */
}

.pages {
  padding: 120px 0;
}

.pages-wrap {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto 20px;
}

.pages h1 {
  font-size: 40px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 40px;
  margin-top: 40px;
  text-align: center;
}

.text-wrapper {
  background: #f8fafc;
  padding: 50px 40px;
  border-radius: 20px;
  line-height: 1.8;
}

.text-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-top: 40px;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  padding-bottom: 5px;
}

.text-wrapper h3 {
  color: #000000;
  margin-bottom: 20px;
}

.text-wrapper p {
  color: #64748b;
  margin-bottom: 20px;
}

.text-wrapper ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.text-wrapper ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #1e293b;
}

.text-wrapper ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: var(--primary);
  top: 0;
}

.text-wrapper strong {
  color: var(--color-error);
}

.text-wrapper a {
  color: #001eff;
  text-decoration: underline;
  font-weight: 600;
}

.text-wrapper ol {
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: #000000;
}

.margin {
  margin: 120px 0 50px;
  font-size: 40px;
  color: var(--ink);
}

@media (max-width: 768px) {
  .pages {
    padding: 100px 0 60px;
  }
  .pages h1 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .text-wrapper {
    padding: 30px 20px;
  }
  .text-wrapper h2 {
    font-size: 24px !important;
    margin-top: 30px;
  }
  .margin {
    font-size: 28px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */
.contact-page-main {
  padding-top: 180px;
  padding-bottom: 120px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cp-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -2px;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1;
}

.cp-divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent);
  margin: 0 auto 40px auto;
}

.cp-status {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  border: 1px solid var(--line);
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 60px;
  background: #fcfcfc;
}

.cp-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cp-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.cp-phone-link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 1.2;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  margin-bottom: 40px;
}

.cp-phone-link:hover {
  border-bottom-color: var(--accent);
  opacity: 0.8;
}

.cp-address-box {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  width: 100%;
  max-width: 400px;
}

.cp-addr {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 10px;
}

.cp-email {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
}

.cp-email a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cp-email a:hover {
  color: var(--accent);
}

@media (max-width: 600px) {
  .contact-page-main {
    padding-top: 140px;
    text-align: center;
  }

  .cp-phone-link {
    font-size: 2rem;
  }
}
