/* ============================================================
   MOBILE APP DESIGN — META Fitness
   App-like experience for screens ≤ 768px
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   PILL BADGE — mobile section labels (global, no media query)
   ──────────────────────────────────────────────────────────── */
.mobile-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(247,148,30,0.12);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Bottom nav — hidden on desktop */
.app-bottom-nav { display: none; }

/* ────────────────────────────────────────────────────────────
   MOBILE BREAKPOINT  ≤ 768px
   ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* ─── SAFE AREA & BASE ─── */
  html {
    overflow-x: hidden;
    overscroll-behavior: none; /* prevent rubber-band gap */
  }
  body {
    overflow-x: hidden;
    overscroll-behavior: none;
    padding-bottom: calc(62px + env(safe-area-inset-bottom, 16px));
    -webkit-tap-highlight-color: rgba(247,148,30,0.08);
  }

  /* Global container tighter */
  .container {
    padding-left: 18px !important;
    padding-right: 18px !important;
    max-width: 100% !important;
  }

  /* Prevent zoom on input focus (iOS) */
  input, select, textarea { font-size: 16px !important; }

  /* Larger tap targets */
  a, button { min-height: 44px; }

  /* No horizontal overflow for all sections */
  section, .section, .strip, .logos-section, .numbers-section { overflow-x: hidden; }

  /* ─── TOPBAR ─── */
  .topbar-left { display: none !important; }
  .topbar-inner { justify-content: flex-end !important; }

  /* ─── BOTTOM NAVIGATION ─── */
  .app-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 2000;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.09);
    box-shadow: 0 -2px 20px rgba(0,0,0,0.10);
    height: 62px;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    align-items: stretch;
    /* extend bg color below nav to cover Chrome address-bar gap */
    box-shadow: 0 -2px 20px rgba(0,0,0,0.10), 0 80px 0 0 #fff;
  }

  .app-bottom-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: #999;
    font-size: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: color 0.18s;
    position: relative;
  }

  .app-bottom-nav a i {
    font-size: 1.05rem;
    transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), color 0.18s;
  }

  .app-bottom-nav a:active i { transform: scale(0.82); }
  .app-bottom-nav a.active, .app-bottom-nav a:hover { color: var(--primary); }
  .app-bottom-nav a.active i { transform: scale(1.1); }

  /* active indicator */
  .app-bottom-nav a.active::after {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 2px;
    border-radius: 2px;
    background: var(--primary);
  }

  /* CTA tab */
  .app-bottom-nav a.app-nav-cta { color: var(--primary); }
  .app-bottom-nav a.app-nav-cta i {
    background: var(--primary);
    color: #fff;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(247,148,30,0.45);
    margin-top: -16px; margin-bottom: 2px;
  }

  /* ─── COMPACT NAVBAR ─── */
  .navbar .container {
    height: 58px !important;
    padding: 0 16px !important;
  }
  .navbar-brand img { height: 42px !important; }

  /* Hide hamburger and desktop nav */
  .navbar-toggler { display: none !important; }
  .nav-menu { display: none !important; }

  /* Show mobile quick-action buttons */
  .navbar-mobile-actions {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }
  .navbar-mobile-actions a {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--bg-2);
    color: var(--text);
    font-size: 0.88rem;
    text-decoration: none;
    transition: background 0.2s;
    min-height: auto;
  }
  .navbar-mobile-actions .nav-call-btn {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 3px 10px rgba(247,148,30,0.38);
  }

  /* ─── HERO ─── */
  .hero-slider {
    height: auto !important;
    min-height: unset !important;
    max-height: none !important;
    overflow: hidden;
  }
  .hero-slides {
    height: auto !important;
  }
  .hero-slide {
    min-width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    min-height: 280px !important;
    position: relative !important;
    flex-shrink: 0 !important;
  }
  .hero-slide-img {
    position: absolute !important;
    top: 0 !important; left: 0 !important;
    right: 0 !important; bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-position: center center !important;
    background-size: contain !important;
    background-color: #0f0f0f !important;
    background-repeat: no-repeat !important;
  }
  /* Fix padding-top: desktop navbar=76px, mobile navbar=58px */
  .hero-slide-content {
    padding-top: calc(var(--topbar-h) + 58px) !important;
    padding-bottom: 50px !important;
    align-items: center !important;
  }
  .hero-slide-content .container {
    padding: 0 18px !important;
    max-width: 100% !important;
  }
  .hero-slide-content h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem) !important;
    line-height: 1.1 !important;
    letter-spacing: 0.01em !important;
    margin-bottom: 10px !important;
  }
  .hero-slide-desc {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
    max-width: 95% !important;
  }
  .slide-btns, .hero-btns {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .slide-btns .btn-slide,
  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-outline {
    flex: 1 1 auto;
    min-width: 120px;
    max-width: calc(50% - 4px);
    text-align: center;
    padding: 10px 12px !important;
    font-size: 0.72rem !important;
  }
  /* Remove clip-path on mobile — causes overflow */
  .btn-hero-primary {
    clip-path: none !important;
    border-radius: 4px !important;
  }
  /* Swipe hint indicator */
  .hero-slider::after {
    content: '';
    position: absolute;
    bottom: 68px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 4px;
    border-radius: 4px;
    background: rgba(255,255,255,0.35);
    z-index: 5;
    pointer-events: none;
  }
  /* Slider nav bar */
  .hero-slider-nav {
    padding: 0 16px !important;
  }
  .slider-dots { padding: 14px 0 !important; }
  .slider-dot { width: 20px !important; height: 3px !important; }
  .slider-dot.active { width: 36px !important; }
  .slider-arrows { gap: 0 !important; }
  .slider-arrow {
    width: 36px !important; height: 36px !important;
    font-size: 0.75rem !important;
  }

  /* ─── MARQUEE STRIP ─── */
  .strip { padding: 0; }
  .strip-item { padding: 0 24px; font-size: 0.65rem; }

  /* ─── SECTIONS GLOBAL ─── */
  .section { padding: 52px 0 !important; }
  .section-eyebrow { font-size: 0.65rem !important; margin-bottom: 10px !important; }
  .section-title {
    font-size: clamp(1.55rem, 6vw, 2rem) !important;
    line-height: 1.25 !important;
  }
  .section-lead { font-size: 0.88rem !important; }

  /* Section header row (title + see-all link) */
  .section-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 12px;
  }
  .section-header-row .see-all {
    font-size: 0.78rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 4px;
  }

  /* ─── SERVICES — 2-column compact grid ─── */
  .services-section .row { gap: 1px !important; }
  .services-section .row > [class*="col-"] { padding: 1px !important; }
  .service-icon-card {
    padding: 22px 18px !important;
    border-radius: 0 !important;
  }
  .service-icon-wrap {
    width: 48px !important; height: 48px !important;
    font-size: 1.2rem !important;
    margin-bottom: 14px !important;
  }
  .service-icon-title { font-size: 0.95rem !important; margin-bottom: 8px !important; }
  .service-icon-desc { font-size: 0.8rem !important; margin-bottom: 14px !important; line-height: 1.65 !important; }
  .service-icon-num { font-size: 2.8rem !important; top: 12px; right: 14px; }

  /* ─── ABOUT ─── */
  .about-img-wrap {
    height: 260px !important;
    margin-bottom: 32px;
  }
  .about-img-main { width: 100% !important; }
  .about-img-accent { display: none; }
  .about-exp-badge {
    width: 80px !important; height: 80px !important;
    right: 12px !important; bottom: 12px !important;
  }
  .about-exp-badge .num { font-size: 1.9rem !important; }
  .about-exp-badge .lbl { font-size: 0.58rem !important; }
  .about-tag-row { gap: 7px; margin-top: 20px; }
  .about-tag { padding: 6px 12px; font-size: 0.76rem; }

  /* ─── PROCESS STEPS ─── */
  .process-section { padding: 52px 0 !important; }
  .process-step { padding: 28px 20px !important; }
  .process-icon { width: 48px !important; height: 48px !important; font-size: 1.1rem !important; margin-bottom: 16px !important; }
  .process-title { font-size: 0.95rem !important; margin-bottom: 8px !important; }
  .process-desc { font-size: 0.8rem !important; line-height: 1.7 !important; }
  .process-num { font-size: 3.5rem !important; }

  /* ─── CLASSES / TIMETABLE ─── */
  .timetable-tabs-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .timetable-tabs-wrap::-webkit-scrollbar { display: none; }
  .timetable-tabs {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: none !important;
    gap: 6px !important;
    padding: 0 !important;
    background: transparent !important;
    min-width: 100%;
  }
  .timetable-tabs::-webkit-scrollbar { display: none; }
  .timetable-tab {
    flex: 0 0 auto !important;
    padding: 9px 18px !important;
    font-size: 0.73rem !important;
    border-radius: 50px !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    white-space: nowrap;
    background: var(--bg-3) !important;
    color: var(--text-muted) !important;
  }
  .timetable-tab.active {
    background: var(--primary) !important;
    color: #fff !important;
  }
  .timetable-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .timetable-item { padding: 14px !important; }

  /* ─── VIDEO SECTION ─── */
  .video-section { height: 260px !important; }
  .video-play-btn { width: 68px !important; height: 68px !important; font-size: 1.15rem !important; margin-bottom: 18px !important; }
  .video-section-title { font-size: clamp(1.4rem, 5.5vw, 2rem) !important; }
  .video-section-sub { font-size: 0.82rem !important; }

  /* ─── NUMBERS BAND — 2×2 grid ─── */
  .numbers-section { padding: 44px 0 !important; }
  .numbers-section .row { row-gap: 28px !important; }
  .number-count { font-size: clamp(2.2rem, 8vw, 3rem) !important; margin-bottom: 6px !important; }
  .number-label { font-size: 0.72rem !important; }

  /* ─── PACKAGES — horizontal scroll snap ─── */
  .packages-row-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    padding: 6px 18px 20px !important;
    margin: 0 -18px !important;
    scrollbar-width: none;
  }
  .packages-row-wrap::-webkit-scrollbar { display: none; }
  .packages-row-wrap > [class*="col-"] {
    flex: 0 0 80vw !important;
    max-width: 80vw !important;
    scroll-snap-align: center;
  }
  .package-card { border-radius: 16px !important; padding: 28px 22px !important; }
  .pkg-price { font-size: 2.2rem !important; }
  .pkg-name { font-size: 1.1rem !important; }

  /* scroll hint dots for packages */
  .packages-scroll-hint {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 14px;
  }
  .packages-scroll-hint span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s;
  }
  .packages-scroll-hint span.active { background: var(--primary); }

  /* ─── TRAINERS — horizontal scroll ─── */
  .trainers-row-wrap {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 14px !important;
    padding: 6px 18px 20px !important;
    margin: 0 -18px !important;
    scrollbar-width: none;
  }
  .trainers-row-wrap::-webkit-scrollbar { display: none; }
  .trainers-row-wrap > [class*="col-"] {
    flex: 0 0 72vw !important;
    max-width: 72vw !important;
    scroll-snap-align: center;
  }
  .trainer-card img { height: 240px !important; }
  .trainer-info { padding: 16px 18px !important; }
  .trainer-name { font-size: 1rem !important; }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section { padding: 52px 0 !important; }
  .testimonial-card { padding: 24px 20px !important; }
  .testimonial-text { font-size: 0.84rem !important; margin-bottom: 20px !important; }
  .swiper-testimonials { padding-bottom: 36px !important; }

  /* ─── BMI CALCULATOR ─── */
  .bmi-section .row > [class*="col-lg-6"]:first-child { margin-bottom: 0 !important; }
  .bmi-card { padding: 28px 20px !important; }
  .bmi-card.bmi-chart-side {
    border-left: 1px solid var(--border) !important;
    border-top: none !important;
    margin-top: 0 !important;
  }
  .bmi-deco-title { font-size: clamp(1.5rem, 5vw, 2rem) !important; margin-bottom: 10px !important; }
  .bmi-fields { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .bmi-range-info { min-width: 90px !important; }
  .bmi-range-label { font-size: 0.76rem !important; }
  .bmi-range-val { font-size: 0.66rem !important; }

  /* ─── BLOG — horizontal scroll ─── */
  .blog-section .row.g-1 {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 0 !important;
    padding: 4px 18px 16px !important;
    margin: 0 -18px !important;
    scrollbar-width: none;
  }
  .blog-section .row.g-1::-webkit-scrollbar { display: none; }
  .blog-section .row.g-1 > [class*="col-"] {
    flex: 0 0 78vw !important;
    max-width: 78vw !important;
    padding: 0 6px !important;
    scroll-snap-align: start;
  }
  .blog-card { border-radius: 14px !important; overflow: hidden; }
  .blog-img { height: 160px !important; }
  .blog-body { padding: 18px 16px 16px !important; }
  .blog-title { font-size: 0.95rem !important; margin-bottom: 8px !important; }
  .blog-excerpt { font-size: 0.8rem !important; margin-bottom: 12px !important; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .blog-meta { font-size: 0.7rem !important; gap: 10px !important; }

  /* ─── PARTNER LOGOS ─── */
  .logos-section { padding: 32px 0 !important; }
  .logo-item { padding: 0 28px; }
  .logo-item-text { font-size: 0.95rem; }

  /* ─── CTA SECTION ─── */
  .cta-section { padding: 56px 0 !important; }
  .cta-section h2 { font-size: clamp(1.7rem, 7vw, 2.5rem) !important; }
  .cta-section p { font-size: 0.86rem !important; margin-bottom: 28px !important; }
  .cta-btns {
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
  }
  .cta-btns .btn-primary,
  .cta-btns .btn-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 20px !important;
  }

  /* ─── CONSULT FORM ─── */
  .consult-section { padding: 52px 0 !important; }
  .consult-card { padding: 28px 18px !important; }
  .form-control, .form-select {
    padding: 13px 14px !important;
    border-radius: 8px !important;
  }
  .btn-submit { padding: 15px 20px !important; border-radius: 8px !important; }
  .consult-card .row.g-3 { row-gap: 14px !important; }
  .consult-card .col-md-6 { width: 100% !important; flex: 0 0 100% !important; max-width: 100% !important; }

  /* ─── QUICK CONTACT BAR ─── */
  .quick-contact-section .container > .row {
    gap: 0 !important;
  }
  .quick-contact-section [class*="col-"] {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 16px 14px !important;
  }
  .quick-contact-section [class*="col-"]:last-child {
    border-bottom: none !important;
  }

  /* ─── FOOTER ─── */
  .footer { padding: 44px 0 0 !important; }
  .footer .row.g-5 {
    gap: 0 !important;
  }
  /* Brand col full width */
  .footer .col-lg-3:first-child {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-bottom: 28px !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    margin-bottom: 4px !important;
  }
  .footer-brand img { height: 52px !important; }
  .footer-desc { font-size: 0.8rem !important; margin-bottom: 16px !important; }

  /* Footer columns — 2×2 grid */
  .footer .col-lg-2,
  .footer .col-md-4 {
    width: 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 20px 14px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
  }
  .footer .col-lg-3.col-md-6 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 20px 14px !important;
  }
  .footer-heading { font-size: 0.72rem !important; margin-bottom: 14px !important; }
  .footer-links li { margin-bottom: 8px !important; }
  .footer-links a { font-size: 0.8rem !important; }
  .footer-contact-item { font-size: 0.8rem !important; margin-bottom: 10px !important; }
  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 6px !important;
    padding: 18px 0 !important;
    margin-top: 0 !important;
    font-size: 0.72rem !important;
  }
  /* Add padding at bottom for bottom nav */
  .footer {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* ─── STICKY CTA BANNER ─── */
  .app-sticky-cta {
    position: fixed;
    bottom: calc(66px + env(safe-area-inset-bottom, 0px));
    left: 14px; right: 14px;
    z-index: 1800;
    background: var(--primary);
    color: #fff;
    border-radius: 14px;
    padding: 12px 18px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(247,148,30,0.42);
    transform: translateY(120%);
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
    border: none !important;
  }
  .app-sticky-cta.show {
    display: flex;
    transform: translateY(0);
  }
  .app-sticky-cta .cta-text {
    font-size: 0.83rem;
    font-weight: 700;
    line-height: 1.35;
    color: #fff;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    flex: 1;
  }
  .app-sticky-cta .cta-text small {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    opacity: 0.88;
    font-family: var(--font-body);
    letter-spacing: 0;
  }
  .app-sticky-cta .cta-btn {
    flex-shrink: 0;
    background: #fff;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    white-space: nowrap;
    min-height: auto;
  }
  .app-sticky-cta .cta-close {
    position: absolute;
    top: -9px; right: -9px;
    width: 22px; height: 22px;
    background: var(--text);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 0.6rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    min-height: auto;
  }

  /* ─── BACK TO TOP ─── */
  #back-to-top {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px)) !important;
    right: 14px !important;
    width: 38px !important; height: 38px !important;
    font-size: 0.78rem !important;
  }

  /* ─── QUICK ACTIONS STRIP (mobile-only widget) ─── */
  .mobile-quick-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 18px 4px;
    margin: 0 -18px;
  }
  .mobile-quick-strip::-webkit-scrollbar { display: none; }
  .mobile-quick-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text);
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-quick-item .mqi-icon {
    width: 54px; height: 54px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    background: var(--bg-2);
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  }
  .mobile-quick-item:active .mqi-icon { transform: scale(0.90); }
  .mobile-quick-item .mqi-label {
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dim);
    white-space: nowrap;
  }

  /* ─── GALLERY SECTION ─── */
  #galleryFilters {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
    justify-content: flex-start !important;
    padding-bottom: 6px !important;
    margin: 0 -18px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  #galleryFilters::-webkit-scrollbar { display: none; }
  #galleryFilters .gallery-filter-btn {
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    font-size: 0.72rem !important;
    padding: 6px 14px !important;
    min-height: auto !important;
  }
  #galleryGrid .col-6 { padding: 4px !important; }
  .gallery-card { border-radius: 8px !important; }

  /* ─── AOS — reduce offset on mobile ─── */
  [data-aos] { --aos-offset: 40px; }

  /* ─── SMOOTH MOMENTUM SCROLL ─── */
  .row { -webkit-overflow-scrolling: touch; }

  /* ─── ABOUT SECTION OVERFLOW ─── */
  .about-img-wrap { overflow: hidden; }
  .about-section .row { overflow: hidden; }

  /* ─── NAVBAR CLIP-PATH BUTTON ─── */
  .btn-nav { clip-path: none !important; border-radius: 4px !important; }
}

/* ────────────────────────────────────────────────────────────
   SMALL PHONES  ≤ 480px
   ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  html, body { overflow-x: hidden; }
  .hero-slide-content h1 { font-size: clamp(1.6rem, 7vw, 2rem) !important; }
  .hero-slide-desc { font-size: 0.82rem !important; }
  .hero-btns .btn-hero-primary,
  .hero-btns .btn-hero-outline {
    max-width: calc(50% - 5px);
    padding: 11px 12px !important;
    font-size: 0.7rem !important;
  }
  .packages-row-wrap > [class*="col-"] { flex: 0 0 86vw !important; max-width: 86vw !important; }
  .trainers-row-wrap > [class*="col-"] { flex: 0 0 78vw !important; max-width: 78vw !important; }
  .blog-section .row.g-1 > [class*="col-"] { flex: 0 0 84vw !important; max-width: 84vw !important; }
  .timetable-grid { grid-template-columns: 1fr !important; }
  .bmi-fields { grid-template-columns: 1fr !important; }
  .footer .col-lg-2, .footer .col-md-4 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .section-title { font-size: clamp(1.4rem, 5.5vw, 1.8rem) !important; }
  .about-img-wrap { height: 220px !important; }
  .numbers-section .col-6 { width: 50% !important; }
  .cta-section h2 { font-size: clamp(1.5rem, 6.5vw, 2rem) !important; }
}
