.loader-text,
.logo,
h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 3px;
}
.glass,
.navbar-float,
.price-card,
.schedule,
.stat {
  backdrop-filter: blur(20px);
}
.price,
.schedule th,
.stat-num {
  font-family: "Bebas Neue";
}
.bjj-gradient-text,
.gradient-text,
.logo,
.price,
.stat-icon,
.stat-num {
  -webkit-text-fill-color: transparent;
}
.belt,
.category-link i,
.collection-item,
.contact-card,
.cookie-type,
.footer-bottom,
.price-card,
.security-feature,
.stat,
.title-main {
  text-align: center;
}
.contact-link:hover,
.cookie-learn-more:hover,
.text-link:hover {
  text-decoration: underline;
}
:root {
  --primary: #ff0033;
  --dark: #0a0a0a;
  --light: #ffffff;
  --gray: #888;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Barlow, sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
}
.footer-email:hover,
.footer-links a:hover,
tbody,
td,
tfoot,
th,
thead,
tr {
  color: #fff;
}
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, #1a1a1a, #0a0a0a);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero,
.social-link {
  align-items: center;
}
.loader {
  width: 200px;
  height: 200px;
  position: relative;
}
.btn-glow::before,
.loader-text,
.nav-link::after,
.ring {
  position: absolute;
}
.ring {
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite spin;
}
.ring:nth-child(2) {
  border-top-color: #00d9ff;
  width: 85%;
  height: 85%;
  top: 7.5%;
  left: 7.5%;
  animation-delay: 0.3s;
}
.ring:nth-child(3) {
  border-top-color: #ffc107;
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation-delay: 0.6s;
}
.loader-text {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  animation: 2s infinite pulse;
}
.nav-link::after,
.navbar-float {
  left: 50%;
  transition: 0.3s;
  transform: translateX(-50%);
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    text-shadow: 0 0 20px var(--primary);
  }
  50% {
    opacity: 0.7;
    text-shadow: 0 0 40px var(--primary);
  }
}
.navbar-float {
  position: fixed;
  top: 20px;
  width: 90%;
  max-width: 1400px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 15px 30px;
  z-index: 1000;
}
.navbar-float.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 10px 40px rgba(255, 0, 51, 0.2);
}
.logo {
  font-size: 1.8rem;
  background: linear-gradient(135deg, #f03, #f36);
  -webkit-background-clip: text;
}
.btn-glow,
.nav-link::after,
.stat-icon {
  background: linear-gradient(135deg, #f03, #f36);
}
.nav-link {
  color: var(--light) !important;
  font-weight: 600;
  margin: 0 15px;
  position: relative;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-decoration: none;
}
.btn-glow,
.btn-outline-glow {
  padding: 15px 40px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  letter-spacing: 2px;
}
.nav-link::after {
  content: "";
  bottom: -5px;
  width: 0;
  height: 2px;
}
.comment-form button,
.nav-link:hover::after,
.newsletter-sidebar button {
  width: 100%;
}
.btn-glow {
  color: #fff;
  border: none;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(255, 0, 51, 0.3);
}
.btn-glow::before {
  content: "";
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}
.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 0, 51, 0.5);
  color: #fff;
}
.btn-glow:hover::before,
.glass:hover::before {
  left: 100%;
}
.btn-outline-glow {
  background: 0 0;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
}
.btn-outline-glow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  z-index: -1;
}
.btn-outline-glow:hover {
  color: #fff;
  transform: translateY(-3px);
}
.btn-outline-glow:hover::before {
  width: 400px;
  height: 400px;
}
#hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.7),
        rgba(255, 0, 51, 0.3)
      )
      center/cover,
    url("https://images.unsplash.com/photo-1549060279-7e168fce7090?auto=format&fit=crop&w=2070&q=80")
      center/cover;
  animation: 20s infinite alternate zoom;
}
@keyframes zoom {
  to {
    transform: scale(1.1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(255, 0, 51, 0.2),
    transparent 50%
  );
}
#faq-hero .hero-content,
#privacy-hero .hero-content,
#terms-hero .hero-content,
.blog-detail-hero-content,
.blog-hero-content,
.boxing-hero-content,
.hero-content,
.kickboxing-hero-content,
.mma-hero-content,
.sc-hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 4rem;
  line-height: 0.9;
  margin-bottom: 30px;
  text-shadow: 0 0 30px rgba(255, 0, 51, 0.5);
  animation: 1s slideUp;
}
.gradient-text {
  background: linear-gradient(135deg, #f03, #f36, #00d9ff);
  -webkit-background-clip: text;
  animation: 3s infinite alternate hue;
}
@keyframes hue {
  to {
    filter: hue-rotate(30deg);
  }
}
.hero-subtitle {
  font-size: 1.4rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 40px;
  animation: 1s 0.3s both slideUp;
}
.float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-icon {
  position: absolute;
  color: rgba(255, 0, 51, 0.1);
  font-size: 3rem;
  animation: 20s infinite float;
}
.glass,
.program {
  position: relative;
  overflow: hidden;
}
.badge-class,
.quote-icon,
.social-link {
  color: var(--primary);
}
.float-icon:first-child {
  top: 20%;
  left: 10%;
}
.float-icon:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}
.float-icon:nth-child(3) {
  top: 40%;
  left: 70%;
  animation-delay: 4s;
}
.float-icon:nth-child(4) {
  top: 80%;
  left: 20%;
  animation-delay: 6s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}
.glass {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  transition: 0.4s;
}
.program,
.stat {
  border-radius: 20px;
}
.program-bg,
.trainer img {
  transition: transform 0.6s;
}
.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 0, 51, 0.1),
    transparent
  );
  transition: left 0.5s;
}
.glass:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 0, 51, 0.5);
  box-shadow: 0 20px 60px rgba(255, 0, 51, 0.2);
}
.program {
  height: 450px;
  cursor: pointer;
}
.program-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.program:hover .program-bg {
  transform: scale(1.15);
}
.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255, 0, 51, 0.9), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: 0.4s;
}
.program:hover .program-overlay {
  background: linear-gradient(
    to top,
    rgba(255, 0, 51, 0.95),
    rgba(10, 10, 10, 0.8)
  );
}
.program-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.4s 0.1s;
}
.program:hover .program-icon {
  transform: translateY(0);
  opacity: 1;
}
.stat {
  padding: 40px 20px;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}
.trainer,
.trainer-info {
  transition: transform 0.4s;
}
.stat:hover {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(255, 0, 51, 0.3),
    inset 0 0 20px rgba(255, 0, 51, 0.1);
  transform: translateY(-5px);
}
.stat-icon {
  -webkit-background-clip: text;
  display: inline-block;
  animation: 2s infinite pulse-icon;
}
.schedule thead,
.stat-num {
  background: linear-gradient(135deg, #f03, #f36);
}
@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.stat-num {
  font-size: 4rem;
  -webkit-background-clip: text;
  display: block;
  margin-bottom: 10px;
}
.badge-class,
.featured-tag {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}
.footer-social a,
.social-link {
  display: inline-flex;
  text-decoration: none;
}
.trainer {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
}
.trainer:hover {
  transform: translateY(-10px);
}
.trainer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bjj-program:hover .bjj-program-bg,
.trainer:hover img {
  transform: scale(1.1);
}
.trainer-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  transform: translateY(60%);
}
.trainer:hover .trainer-info {
  transform: translateY(0);
}
.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 0, 51, 0.2);
  border: 1px solid var(--primary);
  justify-content: center;
  transition: 0.3s;
  margin: 0 5px;
}
.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.schedule {
  background: rgba(26, 26, 26, 0.6);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.schedule th {
  padding: 20px;
  font-size: 1.1rem;
  letter-spacing: 2px;
  border: none;
}
.belt h5,
.bjj-principle h4,
.bjj-program-overlay h4 {
  font-family: "Bebas Neue", sans-serif;
}
.schedule td {
  padding: 20px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
.schedule tr:hover td {
  background: rgba(255, 0, 51, 0.1);
}
.badge-class {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 0, 51, 0.2);
  border: 1px solid var(--primary);
  border-radius: 20px;
  letter-spacing: 1px;
  transition: 0.3s;
}
.badge-class:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
.price-card {
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 50px 35px;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}
.featured-tag,
.price {
  background: linear-gradient(135deg, #f03, #f36);
}
.price-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 0, 51, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.footer-title::after,
.footer::before {
  content: "";
  height: 3px;
  position: absolute;
}
.price-card:hover::before {
  opacity: 1;
}
.price-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(255, 0, 51, 0.3);
}
.price-card.featured {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 51, 0.1),
    rgba(26, 26, 26, 0.8)
  );
  border: 2px solid var(--primary);
  transform: scale(1.05);
}
.featured-tag {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 25px;
  border-radius: 20px;
  letter-spacing: 2px;
  box-shadow: 0 10px 20px rgba(255, 0, 51, 0.4);
}
#bjj-hero,
.footer,
.footer-links a,
.footer-title,
.title-main {
  position: relative;
}
.belt h5,
.bjj-belt,
.bjj-principle h4,
.footer-logo {
  letter-spacing: 1px;
}
.price {
  font-size: 5rem;
  -webkit-background-clip: text;
  margin: 30px 0;
  line-height: 1;
}
.form-modern input,
.form-modern textarea,
.testimonial {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px);
}
.price span {
  font-size: 1.5rem;
  color: var(--gray);
}
.testimonial {
  border-left: 4px solid var(--primary);
  border-radius: 20px;
  padding: 40px;
  transition: 0.4s;
}
.testimonial:hover {
  transform: translateX(10px);
  box-shadow: -10px 0 30px rgba(255, 0, 51, 0.2);
}
.quote-icon {
  font-size: 3rem;
  opacity: 0.3;
  line-height: 1;
}
.testimonial img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary);
  object-fit: cover;
}
.form-modern input,
.form-modern textarea {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 18px 25px;
  color: #fff;
  width: 100%;
  margin-bottom: 25px;
  transition: 0.3s;
}
.form-modern input:focus,
.form-modern textarea:focus {
  border-color: var(--primary);
  outline: 0;
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
  background: rgba(26, 26, 26, 0.8);
}
.footer-social a:hover,
.footer::before {
  background: linear-gradient(135deg, #f03, #f36);
}
.footer {
  background: radial-gradient(circle at top, #1a1a1a, #0a0a0a);
  padding: 90px 0 30px;
  color: #ccc;
}
.footer::before {
  top: 0;
  width: 100%;
}
.footer-logo {
  font-size: 32px;
  font-weight: 800;
}
.footer-logo span {
  color: #f03;
}
.footer-text {
  margin-top: 15px;
  max-width: 320px;
  line-height: 1.7;
  font-size: 15px;
}
.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-title::after {
  width: 35px;
  background: #f03;
  bottom: -8px;
  left: 0;
}
.blog-categories,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
.footer-links a::before {
  content: "›";
  margin-right: 8px;
  color: #f03;
  opacity: 0;
  transform: translateX(-5px);
  transition: 0.3s;
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-social {
  margin-top: 25px;
}
.footer-social a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: 0.35s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.footer-social a:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 0, 51, 0.35);
}
.footer-newsletter {
  display: flex;
  margin-top: 15px;
}
.footer-newsletter input {
  flex: 1;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 10px 0 0 10px;
  outline: 0;
}
#scrollTop,
.footer-newsletter button,
.title-main::after {
  background: linear-gradient(135deg, #f03, #f36);
}
.footer-newsletter button {
  padding: 14px 24px;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
  transition: 0.3s;
}
.footer-newsletter button:hover {
  box-shadow: 0 0 25px rgba(255, 0, 51, 0.6);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding-top: 25px;
  font-size: 14px;
  color: #888;
}
#scrollTop {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(255, 0, 51, 0.4);
}
#scrollTop:hover {
  box-shadow: 0 15px 40px rgba(255, 0, 51, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(var(--primary-rgb), 0.4);
}
.section-pad {
  padding: 80px 0;
}
.title-main {
  font-size: 2rem;
  margin-bottom: 60px;
}
.title-main::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  border-radius: 2px;
}
.bjj-hero-bg,
.bjj-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#bjj-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}
.bjj-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1544465544-1b71aee9dfa3?auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  animation: 20s infinite alternate pulseBackground;
}
.bjj-hero-overlay {
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.9) 0,
    rgba(26, 26, 26, 0.7) 100%
  );
}
@keyframes pulseBackground {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.05);
    opacity: 0.4;
  }
}
.bjj-gradient-text {
  background: linear-gradient(45deg, #fff, silver, #8b4513);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  animation: 3s infinite gradientShift;
}
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}
.bjj-principle {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bjj-principle:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary);
}
.no-results i,
.principle-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.bjj-principle h4 {
  color: #fff;
  margin-bottom: 15px;
}
.bjj-principle p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}
.bjj-program {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s;
}
.bjj-program-bg,
.bjj-program-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.bjj-program:hover {
  transform: scale(1.05);
}
.bjj-program-bg {
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.bjj-program-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
}
.bjj-program-overlay .program-icon,
.collection-icon,
.contact-icon,
.kickboxing-benefit-icon,
.mma-benefit-icon,
.newsletter-icon,
.sc-benefit-icon,
.security-icon,
.technique-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.belt-time,
.bjj-belt {
  font-size: 0.8rem;
  font-weight: 600;
}
.bjj-program-overlay h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.bjj-program-overlay p {
  color: #ddd;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.bjj-belt {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  text-transform: uppercase;
}
.bjj-belt.white {
  background: #fff;
  color: #000;
}
.bjj-belt.blue {
  background: #00f;
  color: #fff;
}
.bjj-belt.purple {
  background: purple;
  color: #fff;
}
.bjj-belt.nogi {
  background: #ff4500;
  color: #fff;
}
.bjj-belt.kids {
  background: gold;
  color: #000;
}
.bjj-belt.women {
  background: #ff69b4;
  color: #fff;
}
.belt-system {
  margin: 50px 0;
}
.belt-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.belt {
  flex: 1;
  min-width: 180px;
  max-width: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px 15px;
  transition: transform 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.privacy-nav-link,
.term-nav-link {
  transition: 0.3s;
  text-decoration: none;
}
.belt:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
}
.belt-color {
  width: 100%;
  height: 25px;
  border-radius: 12px;
  margin-bottom: 15px;
}
.white-belt .belt-color {
  background: #fff;
}
.blue-belt .belt-color {
  background: #00f;
}
.purple-belt .belt-color {
  background: purple;
}
.brown-belt .belt-color {
  background: #8b4513;
}
#faq-hero,
.black-belt .belt-color {
  background: #000;
}
.belt h5 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.belt p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 10px;
  min-height: 40px;
}
.belt-time {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 15px;
}
.belt-info,
.privacy-intro .privacy-summary-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  border-left: 4px solid var(--primary);
}
.badge-bjj,
.instructor-belt {
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-block;
}
.badge-bjj {
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
}
.free-class-form h4,
.instructor-belt {
  letter-spacing: 1px;
}
.badge-bjj.gi {
  background: linear-gradient(45deg, #1a1a1a, #333);
}
.badge-bjj.nogi {
  background: linear-gradient(45deg, #ff4500, tomato);
}
.badge-bjj.women {
  background: linear-gradient(45deg, #ff69b4, #ff1493);
}
.badge-bjj.fundamentals {
  background: linear-gradient(45deg, #4169e1, #6495ed);
}
.badge-bjj.comp {
  background: linear-gradient(45deg, red, #dc143c);
}
.badge-bjj.open {
  background: linear-gradient(45deg, #32cd32, #00fa9a);
}
.badge-bjj.advanced {
  background: linear-gradient(45deg, purple, #9932cc);
}
.badge-bjj.kids {
  background: linear-gradient(45deg, gold, orange);
}
.instructor-belt {
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.black-belt-tag {
  background: linear-gradient(45deg, #000, #333);
  color: gold;
  border: 2px solid gold;
}
.brown-belt-tag {
  background: linear-gradient(45deg, #8b4513, sienna);
  color: #fff;
  border: 2px solid #d2691e;
}
.trainer-bio {
  color: #aaa;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 10px;
  line-height: 1.5;
}
.free-class-form h4,
.loader-text {
  color: #fff;
  font-size: 2rem;
  font-family: "Bebas Neue", sans-serif;
}
.free-class-form {
  background: #0f0f0f;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.free-class-form .form-select {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.3s;
}
.free-class-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}
.loader-text {
  letter-spacing: 5px;
  text-shadow: 0 0 10px var(--primary);
}
.terms-hero-bg,
.terms-hero-overlay {
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
#privacy-hero,
#terms-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
  padding: 100px 0 50px;
}
.terms-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: grayscale(100%);
}
.terms-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0,
    rgba(26, 26, 26, 0.8) 100%
  );
}
#faq-hero .hero-title,
#privacy-hero .hero-title,
#terms-hero .hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
}
.privacy-navigation,
.terms-navigation {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 25px;
  border-left: 4px solid var(--primary);
  position: sticky;
  top: 100px;
  z-index: 100;
}
.term-nav-link {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #aaa;
  font-size: 0.9rem;
  font-weight: 600;
}
.privacy-nav-link:hover,
.term-nav-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
#faq-content,
#privacy-content,
#terms-content {
  background: #0a0a0a;
  padding-top: 50px;
}
.terms-intro .alert-warning {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #ffc107;
  border-radius: 10px;
  padding: 20px;
}
.privacy-section,
.terms-section {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.privacy-section:last-of-type,
.terms-section:last-of-type,
.usage-row:last-child {
  border-bottom: none;
}
.privacy-title,
.term-title {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  letter-spacing: 1px;
}
.privacy-number,
.term-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  margin-right: 20px;
  font-family: Barlow, sans-serif;
  font-weight: 700;
}
.privacy-subtitle,
.term-subtitle {
  color: #fff;
  font-size: 1.3rem;
  margin: 30px 0 15px;
  font-weight: 600;
  position: relative;
  padding-left: 20px;
}
.privacy-subtitle:before,
.term-subtitle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.privacy-section p,
.terms-section p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 1.05rem;
}
.privacy-section ol,
.privacy-section ul,
.terms-section ul {
  padding-left: 25px;
  margin-bottom: 20px;
}
.faq-answer li,
.privacy-section li,
.terms-section li {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
}
.privacy-section li:before,
.terms-section li:before {
  content: "•";
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: -15px;
}
.terms-section .alert-danger {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}
.contact-info-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin: 20px 0;
  border-left: 3px solid var(--primary);
}
.contact-info-box p {
  margin-bottom: 10px;
  color: #ddd;
}
.contact-details i,
.contact-info-box i {
  color: var(--primary);
  width: 20px;
}
@media print {
  .term-title,
  body {
    color: #000 !important;
  }
  #scrollTop,
  .btn-glow,
  .btn-outline-glow,
  .terms-navigation,
  footer,
  nav {
    display: none !important;
  }
  #terms-hero {
    min-height: auto;
    padding: 50px 0;
  }
  .terms-section {
    break-inside: avoid;
    margin-bottom: 40px;
  }
  body {
    background: #fff !important;
  }
  .terms-section li,
  .terms-section p {
    color: #333 !important;
  }
}
.blog-tag:hover,
.btn-cookie.accept,
.privacy-resource-link:hover,
.term-nav-link.active {
  background: var(--primary);
  color: #fff;
}
.privacy-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: blur(2px);
}
.faq-hero-overlay,
.privacy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95) 0,
    rgba(26, 26, 26, 0.9) 100%
  );
}
.cta-buttons,
.privacy-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.privacy-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: rgba(var(--primary-rgb), 0.2);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  border-radius: 25px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.author-social a:hover,
.blog-detail-meta-icon,
.cta-note i,
.equipment-category i,
.equipment-icon,
.glove-icon,
.method-check,
.privacy-badge i,
.privacy-summary-box h4 i,
.recent-post-content a:hover,
.technique-check {
  color: var(--primary);
}
.privacy-summary-box h4 {
  color: #fff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.summary-list {
  list-style: none;
  padding-left: 0;
}
.summary-list li {
  color: #ccc;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}
.privacy-nav-link {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #aaa;
  font-size: 0.85rem;
  font-weight: 600;
}
.collection-item,
.contact-card,
.faq-question i,
.security-feature {
  transition: transform 0.3s;
}
.privacy-section ol li {
  counter-increment: item;
  padding-left: 25px;
}
.faq-answer ol li:before,
.privacy-section ol li:before {
  content: counter(item) ".";
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: 0;
}
.notice-box {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
}
.notice-box i {
  color: #ffc107;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}
.collection-grid,
.contact-grid,
.cookie-types,
.security-features,
.sharing-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.collection-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
}
.collection-item:hover,
.contact-card:hover,
.security-feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}
.age-group h6,
.collection-item h5,
.frequency-level h6 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.collection-item p,
.milestone-content p,
.right-item p,
.security-feature p,
.sharing-category p,
.stat-content p,
.timeline-content p,
.usage-purpose p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0;
}
.sensitive-data-box {
  background: rgba(220, 53, 69, 0.1);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
}
.usage-header,
.usage-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sensitive-data-box h5 {
  color: #dc3545;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.usage-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin: 25px 0;
}
.usage-header {
  background: rgba(var(--primary-rgb), 0.2);
  padding: 15px 20px;
  font-weight: 700;
  color: #fff;
}
.usage-row {
  padding: 20px;
}
.usage-purpose strong {
  color: #fff;
  display: block;
  margin-bottom: 5px;
}
.usage-basis,
.usage-data {
  color: #ccc;
  display: flex;
  align-items: center;
}
.sharing-category {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
}
.contact-address h5,
.response-time h5,
.right-item h5,
.sharing-category h5 {
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.no-sell-box {
  background: rgba(25, 135, 84, 0.1);
  border: 1px solid rgba(25, 135, 84, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
  display: flex;
  align-items: flex-start;
}
.right-item,
.security-feature {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.no-sell-box i {
  color: #198754;
  font-size: 2rem;
  margin-right: 20px;
  flex-shrink: 0;
}
.no-sell-box h5 {
  color: #198754;
  margin-bottom: 10px;
}
.security-feature {
  padding: 25px 20px;
}
.contact-card h5,
.no-results h4,
.security-feature h5 {
  color: #fff;
  margin-bottom: 10px;
}
.rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin: 25px 0;
}
.right-item {
  padding: 20px;
  border-left: 4px solid var(--primary);
}
.rights-request-box {
  background: rgba(13, 110, 253, 0.1);
  border: 1px solid rgba(13, 110, 253, 0.3);
  border-radius: 10px;
  padding: 25px;
  margin: 25px 0;
}
.rights-request-box h5 {
  color: #0d6efd;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.contact-details p {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.cookie-type {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
}
.cookie-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-badge.essential {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}
.cookie-badge.functional {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}
.cookie-badge.analytics {
  background: rgba(13, 110, 253, 0.2);
  color: #0d6efd;
  border: 1px solid rgba(13, 110, 253, 0.3);
}
.cookie-badge.marketing {
  background: rgba(25, 135, 84, 0.2);
  color: #198754;
  border: 1px solid rgba(25, 135, 84, 0.3);
}
.cookie-type p {
  color: #ccc;
  margin-bottom: 5px;
}
.cookie-type small {
  color: #888;
  font-size: 0.8rem;
}
.do-not-track {
  background: rgba(108, 117, 125, 0.1);
  border: 1px solid rgba(108, 117, 125, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 25px 0;
}
.children-info,
.contact-card,
.privacy-acknowledgement {
  background: rgba(255, 255, 255, 0.05);
}
.do-not-track h5 {
  color: #6c757d;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.children-info {
  display: flex;
  align-items: flex-start;
  border-radius: 10px;
  padding: 25px;
  margin: 25px 0;
}
.children-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-right: 25px;
  flex-shrink: 0;
}
.children-info h4 {
  color: #fff;
  margin-bottom: 15px;
}
.changes-timeline {
  margin: 25px 0;
  position: relative;
  padding-left: 30px;
}
.changes-timeline:before,
.progress-timeline:before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(var(--primary-rgb), 0.3);
}
.timeline-item,
.timeline-milestone {
  position: relative;
  margin-bottom: 30px;
}
.timeline-item:last-child,
.timeline-milestone:last-child {
  margin-bottom: 0;
}
.timeline-item:before,
.timeline-milestone:before {
  content: "";
  position: absolute;
  left: -35px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid #0a0a0a;
}
.timeline-date {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
}
.timeline-content h5 {
  color: #fff;
  margin-bottom: 5px;
}
.contact-card {
  border-radius: 10px;
  padding: 25px;
}
.contact-card p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 15px;
}
.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.contact-link:hover {
  color: #fff;
}
.privacy-acknowledgement {
  border-radius: 15px;
  border-left: 4px solid var(--primary);
}
.privacy-acknowledgement h4,
.sidebar-help h5 {
  color: #fff;
  display: flex;
  align-items: center;
}
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  padding: 20px;
  z-index: 9999;
  border-top: 1px solid rgba(var(--primary-rgb), 0.3);
  display: none;
}
.cookie-consent.show {
  display: block;
  animation: 0.5s slideUp;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.cookie-text h5 {
  color: #fff;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.cookie-text p {
  color: #ccc;
  margin-bottom: 0;
  max-width: 700px;
}
.cookie-learn-more,
.text-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.btn-cookie {
  padding: 10px 20px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.btn-cookie.reject {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-cookie.settings {
  background: 0 0;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-cookie:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.privacy-resource-link {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  color: #aaa;
  text-decoration: none;
  font-size: 0.8rem;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: 0.3s;
}
.faq-question,
.nav-post.prev {
  text-align: left;
}
#faq-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 0 50px;
}
.faq-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: blur(2px);
}
.faq-search-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-search {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}
#scrollTop,
.search-btn {
  background: var(--primary);
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.faq-search:focus-within {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}
.search-icon {
  color: #aaa;
  font-size: 1.2rem;
  margin: 0 20px;
}
#faqSearch,
.search-btn {
  color: #fff;
  border: none;
}
#faqSearch {
  flex: 1;
  background: 0 0;
  font-size: 1.1rem;
  padding: 15px 0;
  outline: 0;
}
#faqSearch::placeholder {
  color: #888;
}
.search-btn {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.search-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.5);
}
.category-link.active,
.category-link:hover,
.help-option:hover {
  background: rgba(var(--primary-rgb), 0.2);
  color: #fff;
  transform: translateX(5px);
}
.search-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.search-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: #aaa;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}
.category-link,
.faq-sidebar {
  background: rgba(255, 255, 255, 0.05);
}
.search-tag:hover {
  background: rgba(var(--primary-rgb), 0.2);
  color: #fff;
  border-color: var(--primary);
}
.faq-sidebar {
  position: sticky;
  top: 120px;
  border-radius: 15px;
  padding: 25px;
  border-left: 4px solid var(--primary);
}
.sidebar-title {
  display: flex;
  align-items: center;
}
.help-options,
.sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.category-link,
.help-option {
  align-items: center;
  color: #aaa;
  display: flex;
  transition: 0.3s;
  text-decoration: none;
}
.category-link {
  justify-content: space-between;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.category-link.active,
.category-link:hover {
  border-color: var(--primary);
}
.category-link i {
  width: 20px;
}
.category-count {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
}
.faq-stats,
.help-option,
.sidebar-help {
  background: rgba(255, 255, 255, 0.05);
}
.sidebar-help {
  border-radius: 10px;
  padding: 20px;
  border-top: 2px solid var(--primary);
}
.help-option {
  padding: 12px 15px;
  border-radius: 10px;
}
.help-option i {
  width: 25px;
  font-size: 1.1rem;
  color: var(--primary);
}
.faq-stats {
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-box {
  align-items: center;
  gap: 20px;
}
.stat-icon {
  font-size: 2.5rem;
  color: var(--primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  margin: auto;
}
.faq-category-title,
.stat-content h3 {
  color: #fff;
  letter-spacing: 1px;
  font-family: "Bebas Neue", sans-serif;
}
.equipment-category,
.faq-item,
.membership-tier {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.stat-content h3 {
  font-size: 2rem;
  margin-bottom: 5px;
}
.faq-category {
  margin-bottom: 50px;
}
.faq-category-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.category-icon {
  color: var(--primary);
  font-size: 1.8rem;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.1);
}
.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: 0 0;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}
.faq-question:hover,
.nav-post:hover {
  background: rgba(255, 255, 255, 0.05);
}
.faq-question i {
  color: var(--primary);
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
}
.faq-item.active .faq-answer {
  padding: 0 25px 25px;
  max-height: 2000px;
}
.faq-answer p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 15px;
}
.faq-answer ol,
.faq-answer ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
.faq-answer li:before {
  content: "•";
  color: var(--primary);
  font-weight: 700;
  position: absolute;
  left: -10px;
}
.faq-answer ol li {
  counter-increment: item;
  padding-left: 20px;
}
.text-link:hover {
  color: #fff;
}
.age-groups,
.equipment-list,
.membership-comparison,
.training-frequency {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.equipment-category,
.membership-tier {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.discipline,
.frequency-level {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}
.membership-tier h5 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.2rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}
.equipment-category ul,
.membership-tier ul {
  padding-left: 0;
  list-style: none;
}
.equipment-category li,
.membership-tier li {
  color: #aaa;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
.membership-tier li:before {
  content: "✓";
  color: var(--primary);
  position: absolute;
  left: 0;
}
.training-disciplines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.discipline {
  padding: 20px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}
.discipline:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}
.discipline i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}
.discipline h6 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1rem;
}
.discipline p {
  color: #aaa;
  font-size: 0.85rem;
  margin-bottom: 0;
}
.equipment-category h6 {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1rem;
}
.equipment-category li:before {
  content: "•";
  color: var(--primary);
  position: absolute;
  left: 0;
}
.frequency-level {
  padding: 25px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.frequency-level p {
  color: #ccc;
  margin-bottom: 0;
  line-height: 1.6;
}
.frequency-level p strong {
  color: var(--primary);
  font-size: 1.2rem;
}
.progress-timeline {
  position: relative;
  margin: 20px 0;
  padding-left: 30px;
}
.milestone-time {
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.milestone-content h6 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 1.1rem;
}
.age-group {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.age-group p {
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}
.faq-cta {
  background: linear-gradient(
    45deg,
    rgba(var(--primary-rgb), 0.1),
    rgba(var(--primary-rgb), 0.2)
  );
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(var(--primary-rgb), 0.3);
}
.cta-content h3 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 15px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}
.cta-content p {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-note {
  color: #888;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.footer-links .active {
  color: var(--primary) !important;
  font-weight: 600;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
#scrollTop {
  color: #fff;
  border-radius: 50%;
  border: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.3);
}
#scrollTop.show {
  opacity: 1;
  visibility: visible;
}
html {
  scroll-behavior: smooth;
}
.faq-item.highlight {
  animation: 2s highlightPulse;
}
@keyframes highlightPulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
  }
  50% {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.3);
  }
}
.no-results {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.no-results p {
  color: #aaa;
  margin-bottom: 20px;
}
.boxing-hero,
.kickboxing-hero,
.mma-hero,
.sc-hero {
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)),
    url("https://images.unsplash.com/photo-1553775282-20af80779df7?auto=format&fit=crop&w=2070&q=80")
      center center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 120px;
}
.blog-title,
.boxing-title,
.kickboxing-title,
.mma-title,
.sc-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}
.blog-icon-large,
.boxing-icon-large,
.kickboxing-icon-large,
.mma-icon-large,
.sc-icon-large {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
}
.boxing-benefits {
  background: #0a0a0a;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.boxing-benefits h4 {
  color: var(--primary);
  margin-bottom: 20px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.benefit-icon {
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 15px;
  margin-top: 3px;
}
.technique-card {
  background: #0f0f0f;
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s;
}
.kickboxing-benefit-card:hover,
.mma-benefit-card:hover,
.related-post-card:hover,
.sc-benefit-card:hover,
.technique-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 0, 0.2);
}
.boxing-levels {
  background: #0a0a0a;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary);
}
.kickboxing-level-tag,
.level-tag,
.mma-level-tag,
.sc-program-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.equipment-list,
.kickboxing-equipment,
.sc-equipment {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.boxing-schedule,
.kickboxing-schedule,
.mma-schedule,
.sc-schedule {
  background: #0f0f0f;
  border-radius: 15px;
  padding: 30px;
}
.boxing-class {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.boxing-class-time {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}
.boxing-class-type,
.kickboxing-class-level,
.mma-class-level,
.sc-class-type {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 10px;
}
.boxing-coach,
.kickboxing-coach-card,
.mma-coach-card,
.sc-coach-card {
  text-align: center;
  background: #0f0f0f;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.boxing-coach-img,
.kickboxing-coach-img,
.mma-coach-img,
.sc-coach-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin-bottom: 20px;
}
.author-title,
.coach-specialty,
.kickboxing-coach-specialty,
.mma-coach-specialty,
.sc-coach-specialty {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}
.boxing-cta {
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
    url("https://images.unsplash.com/photo-1521907553201-411a4c67f5e9?auto=format&fit=crop&w=2070&q=80")
      center center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
}
.kickboxing-styles,
.mma-disciplines,
.sc-focus-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}
.discipline-badge,
.focus-badge,
.style-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
}
.discipline-badge:hover,
.focus-badge:hover,
.style-badge:hover {
  background: rgba(255, 0, 0, 0.1);
  border-color: rgba(255, 0, 0, 0.3);
  transform: translateY(-3px);
}
.discipline-icon,
.focus-icon,
.style-icon {
  color: var(--primary);
  font-size: 1.3rem;
}
.kickboxing-levels,
.mma-levels,
.sc-programs {
  background: #0a0a0a;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 5px solid var(--primary);
}
.kickboxing-benefits,
.mma-benefits-grid,
.sc-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.kickboxing-benefit-card,
.mma-benefit-card,
.sc-benefit-card {
  background: #0f0f0f;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s;
}
.kickboxing-techniques,
.mma-technique-section,
.sc-training-methods {
  background: #0a0a0a;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
}
.method-grid,
.technique-grid,
.technique-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.kickboxing-class,
.mma-class,
.sc-class {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.kickboxing-class-time,
.mma-class-time,
.sc-class-time {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.mma-cta {
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
    url("https://images.unsplash.com/photo-1611602134776-2f4ffba340ef?auto=format&fit=crop&w=2070&q=80")
      center center/cover no-repeat;
  padding: 80px 0;
  text-align: center;
}
.kickboxing-workout,
.mma-pathway {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.pathway-step,
.workout-component {
  background: #0f0f0f;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 120px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.pathway-number,
.workout-percentage {
  width: 40px;
  margin: 0 auto 15px;
  display: flex;
}
.pathway-number {
  background: var(--primary);
  color: #fff;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.nav-post-icon,
.pathway-arrow {
  color: var(--primary);
  font-size: 1.5rem;
}
.method-item,
.technique-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kickboxing-cta,
.sc-cta {
  padding: 80px 0;
  text-align: center;
}
.kickboxing-cta {
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
    url("https://images.unsplash.com/photo-1628166015722-2d5baa1cde2b?auto=format&fit=crop&w=2070&q=80")
      center center/cover no-repeat;
}
.workout-percentage {
  background: var(--primary);
  color: #fff;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}
.stat-number,
.workout-plus {
  color: var(--primary);
  font-weight: 700;
}
.workout-plus {
  font-size: 1.5rem;
}
.sc-cta {
  background: linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
    url("https://images.unsplash.com/photo-1534367507877-0edd93bd013b?auto=format&fit=crop&w=2070&q=80")
      center center/cover no-repeat;
}
.results-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 30px;
}
.stat-box {
  background: #0f0f0f;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  width: 180px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: block;
}
.blog-categories a:hover,
.blog-search input,
.equipment-item {
  background: rgba(255, 255, 255, 0.05);
}
.stat-number {
  font-size: 2.5rem;
  margin-bottom: 5px;
  font-family: "Bebas Neue", sans-serif;
}
.stat-label {
  font-size: 0.9rem;
  color: #aaa;
}
.equipment-item {
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.assessment-card {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.assessment-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.blog-hero,
.blog-post-meta {
  display: flex;
  align-items: center;
}
.blog-hero {
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)),
    url("https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=2070&q=80")
      center center/cover no-repeat;
  height: 60vh;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}
.blog-post-card,
.related-post-card {
  background: #0f0f0f;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
  height: 100%;
}
.blog-post-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 0, 0, 0.2);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}
.blog-post-img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.blog-post-content {
  padding: 25px;
}
.blog-post-meta {
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 15px;
}
.blog-post-date {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.blog-post-category {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}
.blog-post-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.3;
}
.blog-post-excerpt {
  color: #aaa;
  margin-bottom: 20px;
  line-height: 1.6;
}
.blog-detail-title,
.featured-post-title {
  line-height: 1.2;
  font-family: "Bebas Neue", sans-serif;
}
.blog-read-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.blog-read-more:hover {
  color: #fff;
  gap: 12px;
}
.blog-sidebar {
  background: #0f0f0f;
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}
.sidebar-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.blog-categories li {
  margin-bottom: 10px;
}
.blog-categories a {
  color: #aaa;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-radius: 8px;
  transition: 0.3s;
}
.blog-categories a:hover {
  color: #fff;
}
.category-count {
  background: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}
.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.recent-post-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.recent-post-content h5 {
  font-size: 1rem;
  margin-bottom: 5px;
  line-height: 1.4;
}
.recent-post-content a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.blog-tag,
.nav-post,
.page-numbers a,
.share-button {
  text-decoration: none;
  transition: 0.3s;
}
.recent-post-date,
.related-post-date {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
}
.blog-search {
  position: relative;
  margin-bottom: 25px;
}
.blog-search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 45px 12px 15px;
  color: #fff;
}
.blog-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: 0 0;
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
}
.blog-tags {
  display: flex;
  flex-wrap: wrap;
}
.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.page-numbers {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-numbers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #0f0f0f;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.page-numbers a.active,
.page-numbers a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.featured-post {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #0f0f0f;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}
.blog-detail-title,
.featured-badge,
.featured-post-title {
  color: #fff;
  margin-bottom: 20px;
}
.featured-post-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.featured-post-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-badge {
  display: inline-block;
  background: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  align-self: flex-start;
}
.featured-post-title {
  font-size: 2.5rem;
}
.newsletter-sidebar {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
  border-radius: 15px;
  padding: 25px;
  border: 1px solid rgba(255, 0, 0, 0.2);
}
.newsletter-sidebar input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 15px;
  color: #fff;
  margin-bottom: 15px;
}
.newsletter-sidebar input::placeholder {
  color: #aaa;
}
@media (max-width: 992px) {
  .faq-category-title,
  .privacy-title,
  .term-title {
    font-size: 1.8rem;
  }
  .privacy-number,
  .term-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 15px;
  }
  .usage-header,
  .usage-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .usage-header {
    display: none;
  }
  .usage-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .usage-row:before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
  }
  .age-groups,
  .featured-post,
  .membership-comparison,
  .training-disciplines,
  .training-frequency {
    grid-template-columns: 1fr;
  }
  .stat-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  .featured-post-img {
    height: 300px;
  }
  .blog-title {
    font-size: 3.5rem;
  }
  .blog-hero {
    height: 50vh;
  }
}
.blog-detail-hero {
  background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.9)),
    url("../images/64938.jpg") center center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}
.blog-detail-title {
  font-size: 4rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}
.blog-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.blog-detail-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #aaa;
}
.blog-detail-category {
  background: var(--primary);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
.blog-content,
.comments-section {
  padding: 60px 0;
}
.blog-content-inner {
  margin: 0 auto;
}
.blog-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #ddd;
}
.blog-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  margin: 40px 0 20px;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.blog-content h3 {
  font-size: 1.8rem;
  margin: 30px 0 15px;
  color: #fff;
}
.blog-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #aaa;
  font-size: 1.2rem;
}
.blog-content img {
  width: 100%;
  border-radius: 15px;
  margin: 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: auto;
}
.blog-content ol,
.blog-content ul {
  margin-bottom: 25px;
  padding-left: 20px;
}
.blog-content li {
  margin-bottom: 10px;
  color: #ddd;
  line-height: 1.6;
}
.blog-content-highlight {
  background: rgba(255, 0, 0, 0.1);
  border-left: 5px solid var(--primary);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}
.blog-content-highlight h4 {
  color: var(--primary);
  margin-bottom: 10px;
}
.author-card {
  background: #0f0f0f;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 50px 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}
.blog-navigation,
.blog-tags {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
}
.author-info h4 {
  margin-bottom: 5px;
  color: #fff;
}
.author-social {
  display: flex;
  gap: 15px;
}
.author-social a {
  color: #aaa;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.blog-tags {
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
  padding-top: 30px;
}
.blog-tag {
  background: rgba(255, 255, 255, 0.05);
  color: #aaa;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
}
.blog-navigation {
  justify-content: space-between;
  margin: 50px 0;
  padding-top: 30px;
}
.nav-post {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  width: 45%;
  padding: 15px;
  border-radius: 10px;
}
.nav-post.next {
  text-align: right;
  flex-direction: row-reverse;
}
.nav-post-content h5 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: #aaa;
}
.nav-post-content h4 {
  font-size: 1.1rem;
  line-height: 1.4;
}
.related-posts {
  padding: 60px 0;
  background: #0a0a0a;
}
.related-post-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.related-post-content {
  padding: 20px;
}
.related-post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.related-post-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.4;
}
.comment-form {
  background: #0f0f0f;
  border-radius: 15px;
  padding: 30px;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.comment-form h3 {
  margin-bottom: 25px;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  color: #fff;
}
.comment-form textarea {
  height: 150px;
  resize: vertical;
}
.share-buttons {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}
.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #aaa;
  font-size: 1.2rem;
}
.share-button:hover {
  transform: translateY(-3px);
  color: #fff;
}
.share-button.facebook:hover {
  background: #3b5998;
}
.share-button.twitter:hover {
  background: #1da1f2;
}
.share-button.linkedin:hover {
  background: #0077b5;
}
.share-button.whatsapp:hover {
  background: #25d366;
}
.read-time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .boxing-title,
  .hero-title,
  .kickboxing-title,
  .mma-title,
  .sc-title {
    font-size: 3.5rem;
  }
  .title-main {
    font-size: 2.2rem;
  }
  .navbar-float {
    width: 95%;
    padding: 10px 20px;
  }
  .price-card.featured {
    transform: scale(1);
    margin-top: 30px;
  }
  .schedule td,
  .schedule th {
    padding: 10px 8px;
    font-size: 0.85rem;
  }
  .belt {
    min-width: 140px;
    max-width: 160px;
  }
  .belt-row {
    gap: 10px;
  }
  .bjj-program {
    height: 250px;
  }
  .featured-post-content,
  .free-class-form {
    padding: 25px;
  }
  .belt h5 {
    font-size: 1.2rem;
  }
  .belt p {
    font-size: 0.8rem;
  }
  #faq-hero .hero-title,
  #privacy-hero .hero-title,
  #terms-hero .hero-title,
  .blog-detail-title {
    font-size: 2.5rem;
  }
  #privacy-hero,
  #terms-hero {
    min-height: 40vh;
  }
  .privacy-section,
  .terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }
  .privacy-title,
  .term-title {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .privacy-number,
  .term-number {
    margin-bottom: 15px;
    margin-right: 0;
  }
  .privacy-navigation,
  .terms-navigation {
    position: static;
    margin-bottom: 30px;
  }
  .privacy-nav-link,
  .term-nav-link {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin-bottom: 5px;
  }
  .privacy-badge {
    padding: 6px 15px;
    font-size: 0.8rem;
  }
  .collection-grid,
  .contact-grid,
  .form-row,
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .author-card,
  .children-info,
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .children-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .cookie-buttons {
    justify-content: center;
  }
  .faq-search {
    border-radius: 25px;
  }
  .search-icon {
    margin: 0 15px;
  }
  #faqSearch {
    font-size: 1rem;
    padding: 12px 0;
  }
  .search-btn {
    width: 45px;
    height: 45px;
  }
  #faq-hero {
    min-height: 50vh;
  }
  .faq-category {
    margin-bottom: 40px;
  }
  .cta-content h3,
  .faq-category-title {
    font-size: 1.5rem;
  }
  .faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 20px;
  }
  .faq-cta {
    padding: 30px 20px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn-glow,
  .cta-buttons .btn-outline-glow {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }
  .boxing-hero,
  .kickboxing-hero,
  .mma-hero,
  .sc-hero {
    height: 60vh;
  }
  .pathway-arrow,
  .workout-plus {
    transform: rotate(90deg);
  }
  .kickboxing-workout,
  .mma-pathway {
    flex-direction: column;
  }
  .results-stats {
    flex-direction: column;
    gap: 15px;
  }
  .stat-box {
    width: 100%;
    max-width: 250px;
  }
  .blog-post-img {
    height: 200px;
  }
  .featured-post-title {
    font-size: 2rem;
  }
  .blog-detail-hero {
    height: 50vh;
  }
  .blog-detail-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .blog-navigation {
    flex-direction: column;
    gap: 20px;
  }
  .nav-post {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .belt-row {
    flex-direction: column;
    align-items: center;
  }
  .belt {
    max-width: 100%;
    width: 100%;
  }
  .bjj-program {
    height: 200px;
  }
  #faq-hero .hero-title,
  #privacy-hero .hero-title,
  #terms-hero .hero-title,
  .blog-content h2 {
    font-size: 2rem;
  }
  .privacy-intro .lead,
  .privacy-subtitle,
  .term-subtitle,
  .terms-intro .lead {
    font-size: 1.1rem;
  }
  .blog-content p,
  .hero-subtitle,
  .privacy-section li,
  .privacy-section p,
  .terms-section li,
  .terms-section p {
    font-size: 1rem;
  }
  .timeline-item:before,
  .timeline-milestone:before {
    left: -25px;
  }
  .changes-timeline,
  .progress-timeline {
    padding-left: 20px;
  }
  .faq-question span {
    max-width: 80%;
    line-height: 1.4;
  }
  .blog-content h3 {
    font-size: 1.5rem;
  }
}
/* Mobile Menu Button */
.menu-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #fff;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;
    transform: translateY(-100%);
    transition: 0.3s ease;
    z-index: 999;
}

.mobile-menu a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
}

/* Show menu */
.mobile-menu.active {
    transform: translateY(0);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom-links a {
    color: #bbb;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}
