/* ============================================================
   APEX SPORTS ACADEMY — style.css
   Bold dark navy + red accent — athletic & premium
   ============================================================ */

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

:root {
  --primary:       #1a1a2e;
  --primary-dark:  #0d0d1a;
  --primary-light: #f0f0ff;
  --accent:        #e63946;
  --accent-dark:   #c1121f;
  --accent-light:  #fde8ea;
  --gold:          #ffd700;
  --bg:            #ffffff;
  --bg-alt:        #f8f9fc;
  --surface:       #ffffff;
  --border:        #e5e7eb;
  --text:          #0d0d1a;
  --text-muted:    #4b5563;
  --text-light:    #9ca3af;
  --green:         #16a34a;
  --radius:        10px;
  --radius-lg:     16px;
  --shadow:        0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.06);
  --shadow-lg:     0 8px 32px rgba(0,0,0,.12);
  --font:          'Barlow', system-ui, sans-serif;
  --font-head:     'Barlow Condensed', system-ui, sans-serif;
  --max-w:         1200px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

#scrollProgress { position: fixed; top: 0; left: 0; height: 3px; background: var(--accent); width: 0%; z-index: 9999; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 500; background: rgba(26,26,46,.98); backdrop-filter: blur(20px); transition: box-shadow .2s; }
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.navbar-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; height: 66px; display: flex; align-items: center; gap: 24px; }
.navbar-brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.navbar-brand .brand-main { font-family: var(--font-head); font-size: 1.35rem; font-weight: 800; color: #fff; letter-spacing: .06em; }
.navbar-brand .brand-sub  { font-size: 8.5px; font-weight: 600; letter-spacing: .2em; color: var(--accent); text-transform: uppercase; }
.navbar-links { display: flex; align-items: center; gap: 2px; list-style: none; margin-left: auto; }
.navbar-links a { font-size: 13.5px; font-weight: 600; padding: 8px 12px; border-radius: 7px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .04em; transition: all .15s; }
.navbar-links a:hover { color: #fff; background: rgba(255,255,255,.07); }
.navbar-actions { display: flex; align-items: center; gap: 8px; }
.btn-nav-cta { padding: 9px 20px; font-size: 13px; font-weight: 700; color: #fff; background: var(--accent); border: none; border-radius: 7px; cursor: pointer; transition: background .15s; white-space: nowrap; text-transform: uppercase; letter-spacing: .04em; }
.btn-nav-cta:hover { background: var(--accent-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform .2s, opacity .2s; }
.mobile-menu { display: none; flex-direction: column; background: var(--primary); border-top: 1px solid rgba(255,255,255,.08); padding: 16px 24px 24px; gap: 4px; }
.mobile-menu a { padding: 10px 12px; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; border-radius: 7px; color: rgba(255,255,255,.7); }
.mobile-menu a:hover { background: rgba(255,255,255,.06); color: #fff; }
.mobile-menu .btn-nav-cta { margin-top: 8px; text-align: center; padding: 12px; border-radius: 8px; }
.navbar.open .mobile-menu { display: flex; }

/* HERO */
.hero { min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--primary-dark); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(13,13,26,.95) 40%, rgba(13,13,26,.5)); }
.hero .container { position: relative; z-index: 2; max-width: var(--max-w); margin: 0 auto; padding: 120px 24px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); background: rgba(230,57,70,.12); border: 1px solid rgba(230,57,70,.3); padding: 6px 14px; border-radius: 4px; margin-bottom: 20px; }
.hero-h1 { font-family: var(--font-head); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; color: #fff; line-height: .95; letter-spacing: -.01em; text-transform: uppercase; margin-bottom: 24px; }
.hero-h1 span { color: var(--accent); }
.hero-sub { font-size: 1.0625rem; color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 40px; max-width: 480px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: 14.5px; font-weight: 800; color: #fff; background: var(--accent); border: none; border-radius: 7px; cursor: pointer; text-transform: uppercase; letter-spacing: .06em; transition: all .18s; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,57,70,.4); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; font-size: 14.5px; font-weight: 700; color: #fff; background: transparent; border: 1.5px solid rgba(255,255,255,.25); border-radius: 7px; cursor: pointer; text-transform: uppercase; letter-spacing: .06em; transition: all .18s; }
.btn-outline:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.hero-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.hero-stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 16px 18px; border-left: 3px solid var(--accent); }
.hero-stat .stat-v { font-family: var(--font-head); font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -.01em; }
.hero-stat .stat-l { font-size: 11.5px; color: rgba(255,255,255,.5); margin-top: 4px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hero-image-wrap { position: relative; }
.hero-image-wrap img { width: 100%; border-radius: 12px; box-shadow: 0 32px 80px rgba(0,0,0,.5); }
.hero-badge { position: absolute; bottom: -16px; right: -16px; background: var(--accent); border-radius: 10px; padding: 14px 18px; color: #fff; text-align: center; }
.hero-badge .hb-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; line-height: 1; }
.hero-badge .hb-txt { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .8; margin-top: 2px; }

/* SECTIONS */
.section { padding: 96px 24px; }
.section-dark { background: var(--primary); color: #fff; }
.section-alt  { background: var(--bg-alt); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.section-eyebrow-light { color: rgba(255,255,255,.45); }
.section-headline { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: var(--text); line-height: 1.05; letter-spacing: -.01em; text-transform: uppercase; margin-bottom: 14px; }
.section-headline-light { color: #fff; }
.section-sub { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.7; max-width: 600px; }
.section-sub-light { color: rgba(255,255,255,.65); }
.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* PROGRAMS */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--border); transition: all .22s; }
.program-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--accent); }
.program-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.program-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.program-card:hover .program-img img { transform: scale(1.06); }
.program-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,26,.8) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 14px; }
.program-badge { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; padding: 3px 10px; background: var(--accent); color: #fff; border-radius: 4px; }
.program-body { padding: 20px 22px; }
.program-sport { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 6px; }
.program-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.program-ages { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--accent); }

/* AGE GROUPS */
.ages-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.age-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 28px; transition: all .22s; }
.age-card:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }
.age-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.age-range { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 3px; }
.age-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: 12px; }
.age-card p { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.65; }

/* COACHES */
.coaches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.coach-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all .22s; }
.coach-card:hover { box-shadow: var(--shadow); border-color: rgba(230,57,70,.25); }
.coach-photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.coach-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.coach-card:hover .coach-photo img { transform: scale(1.04); }
.coach-body { padding: 20px 22px; }
.coach-name  { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 3px; }
.coach-sport { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 10px; }
.coach-bio   { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.coach-cert  { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--primary); background: var(--primary-light); padding: 4px 10px; border-radius: 100px; }

/* FACILITIES */
.facilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.facility-item { display: flex; gap: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 20px; transition: all .18s; }
.facility-item:hover { background: rgba(255,255,255,.07); border-color: rgba(230,57,70,.3); }
.facility-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(230,57,70,.15); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.facility-item h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .02em; margin-bottom: 4px; }
.facility-item p  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* SCHEDULE */
.schedule-table { width: 100%; border-collapse: collapse; }
.schedule-table thead tr { background: var(--accent); color: #fff; }
.schedule-table thead th { padding: 14px 16px; text-align: left; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.schedule-table tbody tr { border-bottom: 1px solid var(--border); transition: background .15s; }
.schedule-table tbody tr:hover { background: var(--accent-light); }
.schedule-table tbody td { padding: 14px 16px; font-size: 14px; color: var(--text-muted); }
.schedule-table tbody td:first-child { font-weight: 700; color: var(--text); }
.level-badge { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; background: var(--primary-light); color: var(--primary); }

/* RESULTS */
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 64px; }
.result-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 28px; text-align: center; border-top: 3px solid var(--accent); }
.result-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(230,57,70,.15); color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.result-val  { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 8px; }
.result-lbl  { font-size: 13px; color: rgba(255,255,255,.55); font-weight: 500; line-height: 1.4; }

/* REVIEWS */
.reviews-header-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.rating-box { text-align: right; }
.rating-num { font-family: var(--font-head); font-size: 3rem; font-weight: 900; line-height: 1; }
.rating-stars { display: flex; gap: 3px; justify-content: flex-end; }
.rating-stars svg { color: var(--gold); }
.rating-count { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 26px; display: flex; flex-direction: column; gap: 14px; transition: all .22s; }
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { display: flex; gap: 2px; }
.review-stars svg { color: var(--gold); width: 14px; height: 14px; }
.review-quote { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 10px; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.reviewer-name   { font-size: 13.5px; font-weight: 700; }
.reviewer-detail { font-size: 12px; color: var(--text-muted); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .18s; }
.faq-item.open { border-color: var(--accent); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; padding: 18px 20px; background: none; border: none; text-align: left; font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--text); cursor: pointer; }
.faq-q svg { flex-shrink: 0; transition: transform .2s; color: var(--text-muted); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding: 0 20px 18px; font-size: 14.5px; color: var(--text-muted); line-height: 1.7; }

/* TRIAL FORM */
.trial-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.trial-points { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.trial-point { display: flex; gap: 12px; align-items: flex-start; }
.trial-point svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.trial-point span { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }
.trial-card { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .04em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; font-size: 14px; font-family: var(--font); color: var(--text);
  border: 1.5px solid var(--border); border-radius: 8px; background: var(--bg-alt); outline: none;
  transition: border-color .18s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: #fff; }
.btn-form-submit { width: 100%; padding: 14px; background: var(--accent); color: #fff; font-size: 15px; font-weight: 800; border: none; border-radius: 8px; cursor: pointer; text-transform: uppercase; letter-spacing: .06em; transition: background .18s; font-family: var(--font); }
.btn-form-submit:hover { background: var(--accent-dark); }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-item h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }
.contact-item a:hover { color: var(--accent); }
.hours-table tr td { padding: 3px 0; font-size: 13.5px; }
.hours-table tr td:first-child { font-weight: 700; color: var(--text); width: 110px; }
.hours-table tr td:last-child  { color: var(--text-muted); }
.map-placeholder { background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--radius-lg); height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--text-muted); margin-top: 24px; }
.social-row { display: flex; gap: 8px; margin-top: 16px; }
.social-btn { width: 40px; height: 40px; border-radius: 8px; background: var(--bg-alt); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all .18s; }
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* FOOTER */
footer { background: var(--primary-dark); color: rgba(255,255,255,.6); padding: 64px 24px 32px; }
.footer-top { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .fb-name { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: #fff; text-transform: uppercase; letter-spacing: .08em; }
.footer-brand .fb-sub  { font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; }

/* FLOAT + BACK TO TOP */
.float-btn { position: fixed; bottom: 88px; right: 24px; display: flex; align-items: center; gap: 8px; padding: 12px 18px; background: var(--accent); color: #fff; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; border-radius: 100px; box-shadow: 0 8px 24px rgba(230,57,70,.35); opacity: 0; pointer-events: none; transition: opacity .25s; z-index: 400; }
.float-btn:hover { background: var(--accent-dark); }
.back-to-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; background: var(--accent); color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 16px rgba(230,57,70,.35); opacity: 0; transition: opacity .25s; z-index: 400; }
.back-to-top.visible { opacity: 1; }
.back-to-top:hover { background: var(--accent-dark); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .ages-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .trial-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .programs-grid { grid-template-columns: 1fr; }
  .ages-grid { grid-template-columns: 1fr; }
  .coaches-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-header-row { flex-direction: column; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 72px 20px; }
  .schedule-table { display: block; overflow-x: auto; }
}
