:root {
    --yellow: #F5C000;
    --yellow-dark: #D4A500;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --white: #ffffff;
    --gray: #888;
    --light: #f5f5f5;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Cairo', sans-serif;
    background: var(--black);
    color: var(--white);
    direction: rtl;
    overflow-x: hidden;
  }

  /* ===== NAVBAR ===== */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(10,10,10,0.97);
    border-bottom: 2px solid var(--yellow);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(10px);
  }

  .logo {
    display: flex;
    align-items: center;
  }

  .logo-img {
    height: 60px;
    width: auto;
    display: block;
    transform: scale(1.6);
    transform-origin: right center;
  }

  .logo-z {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
    font-style: italic;
    transform: skewX(-10deg);
  }

  .logo-text {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    letter-spacing: 1px;
  }

  .logo-text span {
    font-size: 13px;
    color: var(--yellow);
    letter-spacing: 2px;
  }

  .nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
    padding-bottom: 6px;
  }

  .nav-links a:hover { color: var(--yellow); }
  
  .nav-links a.active {
    color: var(--yellow);
    border-bottom: 2px solid var(--yellow);
  }

  .nav-btn-contact {
    background: var(--yellow);
    color: var(--black) !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700 !important;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .nav-btn-contact:hover { 
    background: var(--yellow-dark) !important; 
    transform: translateY(-2px);
  }

  /* ===== HERO ===== */
  #hero {
    min-height: 100vh;
    background-color: var(--black);
    background-image: linear-gradient(to left, transparent 0%, transparent 45%, rgba(10,10,10,0.85) 72%, var(--black) 95%), url('assets/images/boxing-hero.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .hero-content {
    max-width: 580px;
  }

  .hero-eyebrow {
    display: inline-block;
    background: rgba(245,192,0,0.1);
    border: 1px solid rgba(245,192,0,0.4);
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeDown 0.7s ease both;
  }

  .hero-title {
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    animation: fadeUp 0.8s 0.1s ease both;
  }

  .hero-title-top,
  .hero-title-bottom {
    display: block;
    line-height: 1.4;
  }

  .hero-title .highlight {
    color: var(--yellow);
    display: block;
    font-size: clamp(18px, 3.2vw, 42px);
    font-weight: 900;
    line-height: 1.15;
    margin: 4px 0;
    margin-top: 16px;
    text-shadow: 0 0 60px rgba(245,192,0,0.25);
  }

  .hero-sub {
    font-size: 17px;
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 36px;
    animation: fadeUp 0.8s 0.2s ease both;
    font-weight: 400;
  }

  .hero-sub strong {
    color: var(--yellow);
    font-weight: 700;
  }

  .hero-btns {
    display: flex;
    gap: 14px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.35s ease both;
    margin-bottom: 48px;
  }

  .hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeUp 0.8s 0.5s ease both;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .hero-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--yellow);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 12px;
    color: #777;
    font-weight: 600;
  }

  .hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
  }

  .btn-primary {
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(245,192,0,0.35);
  }

  .btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
  }

  /* Badge */
  .hero-badge-round {
    width: 150px;
    height: 150px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transform: rotate(12deg);
    box-shadow: 0 0 0 8px rgba(245,192,0,0.15),
                0 0 0 16px rgba(245,192,0,0.07),
                0 20px 60px rgba(245,192,0,0.4);
    position: absolute;
    bottom: 80px;
    left: 60px;
    animation: fadeUp 1s 0.7s ease both;
    font-family: 'Cairo', sans-serif;
    z-index: 3;
  }

  .badge-top {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: -5px;
  }

  .badge-bottom {
    font-size: 38px;
    font-weight: 900;
  }

  /* ===== SECTION COMMONS ===== */
  section {
    padding: 90px 40px;
  }

  .section-label {
    display: inline-block;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .section-title .accent { color: var(--yellow); }

  .section-sub {
    font-size: 16px;
    color: #888;
    max-width: 560px;
    line-height: 1.8;
  }

  /* ===== ABOUT ===== */
  #about {
    background: var(--dark2);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 70px;
    align-items: center;
  }

  .about-visual {
    position: relative;
  }

  .about-card {
    background: var(--dark);
    border: 2px solid var(--yellow);
    border-radius: 16px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .about-card::before {
    content: '';
    position: absolute;
    top: -40px; left: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(245,192,0,0.15), transparent 70%);
    border-radius: 50%;
  }

  .about-year-badge {
    position: absolute;
    top: -10px; left: 30px;
    background: var(--yellow);
    color: var(--black);
    font-weight: 900;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    padding: 8px 20px;
    border-radius: 6px;
  }

  .about-card-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .about-card-text {
    color: #aaa;
    line-height: 2;
    font-size: 18px;
  }

  .about-branches {
    display: flex;
    gap: 10px;
    margin-top: 28px;
    flex-wrap: wrap;
  }

  .branch-tag {
    background: rgba(245,192,0,0.12);
    border: 1px solid rgba(245,192,0,0.3);
    color: var(--yellow);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
  }

  .about-text-side {}

  /* ===== SERVICES ===== */
  #services {
    background: var(--black);
  }

  .services-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .services-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .service-card {
    background: var(--dark2);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 40px 30px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: space-between;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: right;
  }

  .service-card:hover {
    border-color: rgba(245,192,0,0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  }

  .service-card:hover::after { transform: scaleX(1); }

  .service-icon {
    width: 60px; height: 60px;
    background: var(--yellow);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
  }

  .service-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .service-desc {
    color: #888;
    line-height: 1.9;
    font-size: 14px;
  }

  .service-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(245,192,0,0.3);
    padding-bottom: 2px;
    transition: border-color 0.2s;
  }

  .service-link:hover { border-color: var(--yellow); }

  /* ===== LOCATIONS ===== */
  #locations {
    background: var(--dark2);
  }

  .locations-inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  .locations-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .location-card {
    background: var(--dark);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  }

  .location-img {
    height: 180px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--yellow);
  }

  .location-img-bg {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    grid-template-rows: repeat(4,1fr);
    opacity: 0.06;
  }

  .location-img-bg span {
    border: 1px solid var(--yellow);
  }

  .location-name-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.5);
    padding: 8px 24px;
    border-radius: 6px;
  }

  .location-body {
    padding: 28px 26px;
  }

  .location-name {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 10px;
  }

  .location-detail {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .btn-location {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    padding: 10px 24px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s, color 0.2s;
  }

  .btn-location:hover {
    background: var(--yellow);
    color: var(--black);
  }

  /* ===== WHY US ===== */
  #why {
    background: #0d0d0d;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0 !important;
    overflow: hidden;
  }

  .why-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
  }

  .why-person {
    width: 220px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  .why-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(30%) contrast(1.1);
    display: block;
  }

  .why-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 40px 40px 20px;
    border-right: 2px solid var(--yellow);
  }

  .why-title {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.3;
  }

  .why-title span {
    color: var(--yellow);
  }

  .why-grid {
    display: flex;
    gap: 0;
  }

  .why-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s;
  }

  .why-item:last-child {
    border-right: none;
  }

  .why-item:hover {
    background: rgba(245,192,0,0.05);
  }

  .why-icon {
    color: var(--yellow);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-label {
    font-size: 13px;
    color: #bbb;
    line-height: 1.7;
    font-weight: 600;
  }

  /* ===== TESTIMONIALS ===== */
  #testimonials {
    background: linear-gradient(180deg, var(--dark2) 0%, var(--black) 100%);
  }

  .testimonials-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }

  .testimonials-header {
    margin-bottom: 50px;
  }

  .testimonial-slider {
    position: relative;
    min-height: 220px;
  }

  .testimonial-card {
    background: var(--dark2);
    border: 1px solid rgba(245,192,0,0.2);
    border-radius: 20px;
    padding: 50px 50px 40px;
    position: relative;
    display: none;
  }

  .testimonial-card.active { display: block; }

  .quote-mark {
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    color: var(--yellow);
    line-height: 0.5;
    position: absolute;
    top: 30px;
    right: 40px;
    opacity: 0.5;
  }

  .testimonial-text {
    font-size: 18px;
    color: var(--white);
    line-height: 1.9;
    font-weight: 600;
    margin-bottom: 24px;
  }

  .testimonial-author {
    color: var(--yellow);
    font-weight: 700;
    font-size: 15px;
  }

  .testimonial-stars {
    font-size: 18px;
    color: var(--yellow);
    margin-bottom: 14px;
  }

  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
  }

  .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s, width 0.3s;
  }

  .dot.active {
    background: var(--yellow);
    width: 28px;
    border-radius: 5px;
  }

  /* ===== CTA ===== */
  #cta {
    background: var(--yellow);
    padding: 90px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-bg {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      45deg,
      rgba(0,0,0,0.04) 0px,
      rgba(0,0,0,0.04) 1px,
      transparent 1px,
      transparent 20px
    );
  }

  .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
  }

  .cta-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.5);
    margin-bottom: 16px;
  }

  .cta-title {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.15;
  }

  .cta-sub {
    font-size: 17px;
    color: rgba(0,0,0,0.6);
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-dark {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 16px 38px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }

  .btn-wa {
    background: #25D366;
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
  }

  .btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  }

  /* ===== CONTACT ===== */
  #contact {
    background: var(--dark2);
    padding: 90px 40px;
  }

  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
  }

  .contact-form {
    background: var(--dark);
    border-radius: 20px;
    padding: 44px 40px;
    border: 1px solid rgba(255,255,255,0.07);
  }

  .form-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 28px;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .form-group input,
  .form-group select {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 13px 16px;
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
    direction: rtl;
  }

  .form-group input:focus,
  .form-group select:focus {
    border-color: var(--yellow);
  }

  .form-group select option {
    background: var(--dark2);
    color: var(--white);
  }

  .form-submit {
    width: 100%;
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s;
  }

  .form-submit:hover {
    background: var(--yellow-dark);
    transform: translateY(-1px);
  }

  .contact-info {}

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: #aaa;
    font-size: 15px;
  }

  .contact-detail-icon {
    width: 44px; height: 44px;
    background: rgba(245,192,0,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .social-row {
    display: flex;
    gap: 14px;
    margin-top: 36px;
  }

  .social-btn {
    width: 46px; height: 46px;
    border-radius: 10px;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
  }

  .social-btn:hover {
    background: var(--yellow);
    transform: translateY(-2px);
  }

  /* ===== FOOTER ===== */
  footer {
    background: var(--black);
    border-top: 2px solid var(--yellow);
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .footer-copy {
    color: #555;
    font-size: 13px;
    text-align: center;
  }

  .footer-links {
    display: flex;
    gap: 20px;
    list-style: none;
  }

  .footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--yellow); }

  /* ===== WHATSAPP FLOAT ===== */
  .wa-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    z-index: 998;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: pulse-wa 2s 1s infinite;
  }

  .wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37,211,102,0.6);
  }

  @keyframes pulse-wa {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
  }

  /* ===== ANIMATIONS ===== */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 900px) {
    nav { padding: 14px 20px; }
    .nav-links { display: none; }
    section { padding: 70px 20px; }
    .hero-inner { flex-direction: column; text-align: center; gap: 40px; justify-content: center; }
    #hero { background-image: linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.85)), url('assets/images/boxing-hero.png'); background-position: center center; }
    .hero-btns { justify-content: center; }
    .hero-image-wrapper { width: 100%; justify-content: center; }
    .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .locations-grid { grid-template-columns: 1fr; }
    .why-person { display: none; }
    .why-content { border-right: none; border-top: 2px solid var(--yellow); padding: 32px 20px; }
    .why-grid { flex-wrap: wrap; }
    .why-item { flex: 0 0 calc(50% - 1px); border-bottom: 1px solid rgba(255,255,255,0.07); }
    .testimonial-card { padding: 40px 28px 32px; }
    footer { flex-direction: column; text-align: center; }
  }
