:root {
  --primary: #006b5f;
  --primary-2: #149987;
  --secondary: #f27a2c;
  --gold: #e9bd55;
  --ink: #172521;
  --muted: #687873;
  --line: #dfe8e5;
  --soft: #f5f8f7;
  --cream: #fff8ef;
  --card: #ffffff;
  --shadow: 0 18px 46px rgba(18, 37, 32, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.fw-black { font-weight: 720; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header .navbar { padding: 14px 0; }
.site-header.is-solid,
.site-header:hover {
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223,232,229,.8);
  box-shadow: 0 12px 34px rgba(18,37,32,.08);
  backdrop-filter: blur(16px);
}
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 280px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 720;
  line-height: 1.15;
}
.navbar-brand::before {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
  box-shadow: 0 10px 22px rgba(242,122,44,.24);
}
.navbar-brand:has(img)::before { display: none; }
.navbar-brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  padding: 4px;
}
.navbar-brand span { color: #98eadc; }
.site-header.is-solid .navbar-brand,
.site-header:hover .navbar-brand { color: var(--ink); }
.site-header.is-solid .navbar-brand span,
.site-header:hover .navbar-brand span { color: var(--primary); }
.nav-link {
  position: relative;
  color: rgba(255,255,255,.86);
  font-size: .91rem;
  font-weight: 560;
}
.site-header.is-solid .nav-link,
.site-header:hover .nav-link { color: #253a35; }
.nav-link::after {
  content: "";
  position: absolute;
  left: .5rem;
  right: .5rem;
  bottom: .18rem;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav-link:hover::after { transform: scaleX(1); }
.navbar-toggler {
  border: 0;
  border-radius: 8px;
  background: #fff;
}
.mobile-links {
  display: grid;
  gap: 8px;
}
.mobile-links a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
}
.brand-mobile { color: var(--ink); font-weight: 700; }

.btn-sport,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 650;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-sport {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), #f59a49);
  box-shadow: 0 14px 28px rgba(242,122,44,.24);
}
.btn-sport:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(242,122,44,.30);
}
.btn-sport svg,
.section-head svg { width: 18px; }
.btn-sm {
  min-height: 36px;
  padding: 8px 12px;
  font-size: .86rem;
}
.btn-outline-secondary {
  border-color: var(--line);
  color: #38504a;
  font-weight: 600;
}
.btn-outline-secondary:hover {
  border-color: var(--primary);
  background: rgba(0,107,95,.08);
  color: var(--primary);
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,.46);
  color: #fff;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { color: #fff; background: rgba(255,255,255,.16); }

.home-hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: #fff;
  background: #071512;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 120px;
  background: linear-gradient(transparent, #fff);
}
.home-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 5s ease;
}
.home-hero-bg.is-active {
  opacity: 1;
  transform: scale(1);
}
.home-hero-inner {
  position: relative;
  z-index: 3;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: center;
  padding-top: 84px;
}
.hero-copy { display: none; max-width: 860px; }
.hero-copy.is-active { display: block; animation: heroText .5s ease both; }
@keyframes heroText {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.eyebrow svg { width: 17px; color: var(--gold); }
.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.65rem, 6vw, 5.8rem);
  line-height: .96;
  letter-spacing: 0;
  font-weight: 720;
  text-wrap: balance;
}
.hero-copy p {
  max-width: 650px;
  margin: 24px 0 30px;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dots {
  display: flex;
  gap: 9px;
  margin-top: 34px;
}
.hero-dots button {
  width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.32);
  transition: width .18s ease, background .18s ease;
}
.hero-dots button.is-active {
  width: 58px;
  background: var(--secondary);
}
.hero-info-panel {
  align-self: end;
  margin-bottom: 74px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.11);
  box-shadow: 0 20px 58px rgba(0,0,0,.22);
  backdrop-filter: blur(16px);
}
.hero-info-panel > span {
  display: block;
  color: var(--gold);
  font-size: .77rem;
  font-weight: 650;
  text-transform: uppercase;
}
.hero-info-panel > strong {
  display: block;
  margin: 10px 0 18px;
  font-size: 1.18rem;
  line-height: 1.3;
  font-weight: 650;
}
.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.hero-mini-grid div {
  padding: 12px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.11);
}
.hero-mini-grid b,
.hero-mini-grid small { display: block; }
.hero-mini-grid b { font-size: 1.08rem; font-weight: 700; }
.hero-mini-grid small {
  color: rgba(255,255,255,.70);
  font-size: .78rem;
  font-weight: 500;
}

.quick-band {
  position: relative;
  z-index: 5;
  margin-top: -48px;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.quick-card,
.sport-card,
.form-shell,
.branch-card,
.news-card-pro {
  border: 1px solid rgba(223,232,229,.95);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
}
.quick-card {
  min-height: 132px;
  padding: 22px;
  transition: transform .18s ease, border-color .18s ease;
}
.quick-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242,122,44,.34);
}
.icon-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(18,37,32,.14);
}
.icon-badge svg { width: 22px; }
.quick-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 650;
}

.section { padding: 84px 0; }
.surface-section,
.stat-section,
.media-section {
  background: linear-gradient(180deg, rgba(0,107,95,.045), rgba(242,122,44,.035)), var(--soft);
}
.agenda-section {
  color: #fff;
  background:
    linear-gradient(110deg, rgba(16,31,28,.94), rgba(0,107,95,.88)),
    url("https://images.unsplash.com/photo-1551958219-acbc608c6377?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.section-title {
  max-width: 760px;
  margin-bottom: 32px;
}
.section-title small,
.cta-band small {
  display: inline-block;
  color: var(--secondary);
  font-size: .78rem;
  font-weight: 650;
  text-transform: uppercase;
}
.agenda-section .section-title small,
.cta-band small { color: var(--gold); }
.section-title h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.9rem, 3.7vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 700;
  text-wrap: balance;
}
.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}
.agenda-section .section-title p { color: rgba(255,255,255,.76); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head .section-title { margin-bottom: 0; }
.section-head > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-weight: 650;
  white-space: nowrap;
}

.feature-list {
  display: grid;
  gap: 12px;
}
.feature-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #283b36;
  font-weight: 560;
}
.feature-list svg {
  width: 19px;
  color: var(--primary);
  flex: 0 0 auto;
}
.showcase-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(18,37,32,.16);
}
.showcase-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(0,0,0,.70));
}
.showcase-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 22px;
  color: #fff;
}
.showcase-card strong,
.showcase-card span { display: block; }
.showcase-card strong {
  font-size: 1.55rem;
  font-weight: 700;
}
.showcase-card span {
  color: rgba(255,255,255,.78);
  font-weight: 500;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.stat {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18,37,32,.06);
}
.stat strong {
  display: block;
  color: var(--primary);
  font-size: 2.45rem;
  line-height: 1;
  font-weight: 700;
}
.stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-weight: 560;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}
.branch-card {
  min-height: 210px;
  padding: 24px;
  transition: transform .18s ease, border-color .18s ease;
}
.branch-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,107,95,.28);
}
.branch-card svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-bottom: 18px;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.branch-card h3 {
  font-size: 1.12rem;
  font-weight: 680;
}
.branch-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.sport-card {
  padding: 0;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
}
.sport-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,107,95,.26);
}
.card-image {
  height: 218px;
  overflow: hidden;
  background: #dce8e4;
  border-radius: 8px 8px 0 0;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.sport-card:hover .card-image img { transform: scale(1.05); }
.sport-card-body { padding: 22px; }
.sport-card h3 {
  font-size: 1.18rem;
  line-height: 1.28;
  font-weight: 680;
}
.sport-card p { color: var(--muted); }
.course-fill {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 600;
}
.badge-soft {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--primary);
  background: rgba(0,107,95,.10);
  font-size: .78rem;
  font-weight: 620;
}
.progress {
  height: 9px;
  border-radius: 999px;
  background: #e4eeea;
}
.progress-bar { background: linear-gradient(90deg, var(--primary), var(--secondary)); }

.timeline-card {
  display: grid;
  gap: 5px;
  position: relative;
  padding: 18px 18px 18px 24px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px);
}
.timeline-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 999px;
  background: var(--gold);
}
.timeline-card.accent::before { background: var(--secondary); }
.timeline-card span {
  color: var(--gold);
  font-size: .84rem;
  font-weight: 620;
}
.timeline-card strong {
  color: #fff;
  font-size: 1.08rem;
  font-weight: 680;
}
.timeline-card small {
  color: rgba(255,255,255,.74);
  font-weight: 500;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.news-card-pro {
  min-height: 236px;
  padding: 24px;
  transition: transform .18s ease, border-color .18s ease;
}
.news-card-pro:hover {
  transform: translateY(-5px);
  border-color: rgba(242,122,44,.32);
}
.news-card-pro span {
  color: var(--secondary);
  font-size: .82rem;
  font-weight: 620;
}
.news-card-pro h3 {
  margin: 12px 0;
  font-size: 1.16rem;
  line-height: 1.35;
  font-weight: 680;
}
.news-card-pro p {
  color: var(--muted);
}
.news-card-pro a {
  color: var(--primary);
  font-weight: 650;
}
.news-card { min-height: 235px; }

.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 14px;
}
.gallery-tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 280px;
  padding: 18px;
  overflow: hidden;
  color: #fff;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}
.gallery-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 38%, rgba(0,0,0,.72));
}
.gallery-tile span {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  font-weight: 680;
}
.video-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18,37,32,.06);
}
.video-row svg {
  width: 40px;
  height: 40px;
  color: var(--secondary);
  flex: 0 0 auto;
}
.video-row strong,
.video-row small { display: block; }
.video-row strong { font-weight: 680; }
.video-row small {
  color: var(--muted);
  margin-top: 3px;
}

.form-shell {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-control,
.form-select {
  border-radius: 8px;
  padding: 12px 14px;
  border-color: #d5e2de;
  background-color: #fff;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 .22rem rgba(20,153,135,.16);
}
.form-label {
  color: var(--ink);
  font-weight: 600;
}
.invalid-feedback { display: block; }

.cta-band {
  padding: 76px 0;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(0,107,95,.96), rgba(23,37,33,.94) 58%, rgba(242,122,44,.84)),
    url("https://images.unsplash.com/photo-1552674605-db6ffd4facb5?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.cta-band h2 {
  max-width: 790px;
  margin: 8px 0 10px;
  font-size: clamp(1.9rem, 3.7vw, 3.35rem);
  line-height: 1.08;
  font-weight: 700;
}
.cta-band p {
  margin: 0;
  color: rgba(255,255,255,.82);
}

.footer-section {
  padding: 72px 0 28px;
  color: #dbe7e4;
  background: linear-gradient(135deg, rgba(242,122,44,.10), transparent 42%), #10201d;
}
.footer-section h2,
.footer-section h3 {
  color: #fff;
  font-weight: 680;
}
.footer-section a {
  display: block;
  color: #b8c8c4;
  margin: 9px 0;
  transition: color .18s ease;
}
.footer-section a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 38px;
  padding-top: 22px;
  color: #aac0bb;
}

.login-body { background: #071512; }
.login-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  background:
    linear-gradient(110deg, rgba(7,18,17,.95), rgba(7,18,17,.72)),
    url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=1800&q=82") center/cover;
}
.login-showcase {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 5vw, 64px);
  color: #fff;
}
.login-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 360px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 720;
  line-height: 1.15;
}
.login-brand::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--secondary), var(--gold));
}
.login-brand span { color: #98eadc; }
.login-brand:has(img)::before { display: none; }
.login-brand img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  padding: 4px;
}
.login-copy small,
.login-panel-head small {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 650;
  text-transform: uppercase;
}
.login-copy h1 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-size: clamp(2.35rem, 5.5vw, 5rem);
  line-height: .98;
  font-weight: 720;
}
.login-copy p {
  max-width: 560px;
  color: rgba(255,255,255,.78);
  font-size: 1.06rem;
}
.login-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  max-width: 520px;
}
.login-stats div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}
.login-stats strong,
.login-stats span { display: block; }
.login-stats strong {
  font-size: 1.45rem;
  font-weight: 700;
}
.login-stats span {
  color: rgba(255,255,255,.72);
  font-weight: 500;
}
.login-panel-wrap {
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(245,248,247,.92);
  backdrop-filter: blur(18px);
}
.login-panel {
  width: min(100%, 460px);
  padding: 32px;
  border: 1px solid rgba(223,232,229,.95);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 74px rgba(18,37,32,.16);
  color: var(--ink);
}
.login-panel-head h2 {
  margin: 8px 0;
  color: var(--ink);
  font-size: 1.85rem;
  font-weight: 700;
}
.login-panel-head p {
  color: var(--muted);
  margin-bottom: 24px;
}
.login-safe {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
}
.login-safe svg { width: 16px; }

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .site-header {
    background: rgba(255,255,255,.94);
    border-bottom: 1px solid rgba(223,232,229,.8);
    box-shadow: 0 12px 32px rgba(18,37,32,.08);
  }
  .navbar-brand,
  .nav-link { color: var(--ink); }
  .navbar-brand span { color: var(--primary); }
  .navbar-brand { max-width: 230px; font-size: 1rem; }
  .home-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-info-panel {
    align-self: auto;
    margin-bottom: 78px;
  }
  .quick-grid,
  .stat-grid,
  .branch-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .gallery-strip { grid-template-columns: 1fr; }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .login-page { grid-template-columns: 1fr; }
  .login-showcase { min-height: 48vh; }
}

@media (max-width: 576px) {
  body { font-size: 15px; }
  .home-hero,
  .home-hero-inner { min-height: 86vh; }
  .home-hero-inner { padding-top: 104px; }
  .hero-copy h1 { font-size: 2.8rem; }
  .hero-actions .btn-sport,
  .hero-actions .btn-ghost { width: 100%; }
  .quick-grid,
  .stat-grid,
  .branch-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 64px 0; }
  .hero-mini-grid,
  .login-stats { grid-template-columns: 1fr; }
  .login-panel-wrap { padding: 18px; }
  .login-panel { padding: 24px; }
  .section-title h2,
  .cta-band h2 { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

/* Refined quick access */
.quick-band {
  z-index: 6;
  margin-top: -42px;
}

.quick-panel {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid rgba(230,238,238,.95);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 34px rgba(18,33,31,.08);
  backdrop-filter: blur(14px);
}

.quick-panel-head {
  display: grid;
  align-content: center;
  padding: 8px 8px 8px 4px;
}

.quick-panel-head small {
  color: var(--primary);
  font-size: .76rem;
  font-weight: 650;
  text-transform: uppercase;
}

.quick-panel-head h2 {
  margin: 6px 0 0;
  font-size: 1.35rem;
  line-height: 1.18;
  font-weight: 620;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.quick-card {
  position: relative;
  min-height: 82px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.quick-card:hover {
  transform: none;
  border-color: rgba(0,168,120,.30);
  background: var(--soft);
}

.icon-badge {
  width: 42px;
  height: 42px;
  margin: 0;
  color: var(--link-color, var(--primary));
  border-radius: 8px;
  background: color-mix(in srgb, var(--link-color, var(--primary)) 13%, #fff) !important;
  box-shadow: none;
}

.icon-badge svg {
  width: 21px;
}

.quick-card h3 {
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: .96rem;
  line-height: 1.22;
  font-weight: 590;
}

.quick-arrow {
  width: 17px;
  height: 17px;
  color: var(--muted);
  transition: transform .18s ease, color .18s ease;
}

.quick-card:hover .quick-arrow {
  color: var(--primary);
  transform: translateX(2px);
}

@media (max-width: 992px) {
  .quick-panel {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .quick-band {
    margin-top: -24px;
  }

  .quick-panel {
    padding: 14px;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }
}

/* Text-only elegant slider */
.home-hero {
  min-height: 620px;
  height: 72vh;
  max-height: 720px;
}

.home-hero-bg::after {
  background:
    linear-gradient(90deg, rgba(6,47,41,.78), rgba(6,47,41,.46) 44%, rgba(6,47,41,.16)),
    linear-gradient(0deg, rgba(0,0,0,.20), transparent 50%);
}

.home-hero-inner {
  min-height: 100%;
  padding-top: 96px;
  padding-bottom: 56px;
}

.hero-copy-wrap {
  position: relative;
  max-width: 720px;
  padding-left: 24px;
}

.hero-copy-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--secondary), var(--primary-2));
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.2rem, 4vw, 3.85rem);
  line-height: 1.12;
  font-weight: 590;
}

.hero-copy p {
  max-width: 580px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.eyebrow {
  margin-bottom: 14px;
  color: #c9fff0;
  font-size: .82rem;
  letter-spacing: .02em;
}

.eyebrow svg {
  display: none;
}

.hero-actions,
.hero-controls,
.hero-arrows,
.hero-dots,
.hero-thumbs {
  display: none !important;
}

@media (max-width: 576px) {
  .home-hero {
    min-height: 520px;
    height: auto;
  }

  .home-hero-inner {
    min-height: 520px;
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .hero-copy-wrap {
    padding-left: 18px;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }
}

/* Simple reference-style slider */
.home-hero {
  min-height: 640px;
  height: 76vh;
  max-height: 760px;
  background: #0f3f37;
}

.home-hero::before {
  display: none;
}

.home-hero::after {
  height: 0;
  background: none;
}

.home-hero-bg {
  background-position: center;
  filter: none;
}

.home-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,40,36,.74), rgba(5,40,36,.30) 48%, rgba(5,40,36,.10)),
    linear-gradient(0deg, rgba(0,0,0,.28), transparent 45%);
}

.home-hero-inner {
  min-height: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 52px;
}

.hero-copy-wrap {
  width: min(100%, 660px);
  max-width: 660px;
}

.hero-copy h1 {
  max-width: 640px;
  font-size: clamp(2.15rem, 4.2vw, 4.05rem);
  line-height: 1.08;
  font-weight: 620;
}

.hero-copy p {
  max-width: 560px;
  margin: 16px 0 24px;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
}

.eyebrow {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #bff7e8;
  font-size: .86rem;
  font-weight: 600;
}

.eyebrow svg {
  color: var(--secondary);
}

.hero-controls {
  position: absolute;
  left: max(16px, calc((100vw - 1140px) / 2));
  right: max(16px, calc((100vw - 1140px) / 2));
  bottom: 34px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin: 0;
  pointer-events: none;
}

.hero-arrows,
.hero-dots {
  pointer-events: auto;
}

.hero-arrows {
  order: 2;
}

.hero-arrows button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.56);
  background: rgba(255,255,255,.16);
  box-shadow: none;
}

.hero-arrows button:hover {
  background: rgba(255,255,255,.26);
}

.hero-dots {
  order: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}

.hero-dots button.is-active {
  width: 54px;
  background: #fff;
}

.hero-thumbs {
  display: none !important;
}

@media (max-width: 992px) {
  .home-hero {
    min-height: 600px;
    height: 72vh;
  }

  .home-hero-inner {
    padding-top: 92px;
    padding-bottom: 88px;
  }

  .hero-controls {
    bottom: 24px;
  }
}

@media (max-width: 576px) {
  .home-hero {
    min-height: 560px;
    height: auto;
  }

  .home-hero-inner {
    min-height: 560px;
    padding-top: 104px;
    padding-bottom: 86px;
  }

  .hero-copy h1 {
    font-size: 2.05rem;
  }

  .hero-copy p {
    font-size: .96rem;
  }

  .hero-controls {
    align-items: flex-end;
  }

  .hero-arrows button {
    width: 40px;
    height: 40px;
  }
}

/* Refined hero slider */
.home-hero {
  min-height: 82vh;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 44%);
  pointer-events: none;
}

.home-hero-bg {
  background-position: center;
}

.home-hero-inner {
  min-height: 72vh;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 84px;
}

.hero-copy-wrap {
  max-width: 760px;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(2.25rem, 4.6vw, 4.35rem);
  line-height: 1.08;
  font-weight: 640;
}

.hero-copy p {
  max-width: 590px;
  margin: 18px 0 24px;
  font-size: 1.05rem;
}

.eyebrow {
  padding: 7px 11px;
  background: rgba(255,255,255,.20);
}

.hero-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-arrows {
  display: flex;
  gap: 8px;
}

.hero-arrows button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  transition: background .18s ease, transform .18s ease;
}

.hero-arrows button:hover {
  background: rgba(255,255,255,.24);
  transform: translateY(-1px);
}

.hero-arrows svg {
  width: 20px;
  height: 20px;
}

.hero-dots {
  margin-top: 0;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255,255,255,.72);
  background: transparent;
}

.hero-dots button.is-active {
  width: 28px;
  background: #fff;
}

.hero-thumbs {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 24px;
  z-index: 4;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  pointer-events: none;
}

.hero-thumbs button {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  padding: 12px 14px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  pointer-events: auto;
  text-align: left;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.hero-thumbs button:hover,
.hero-thumbs button.is-active {
  color: #fff;
  border-color: rgba(255,255,255,.60);
  background: rgba(255,255,255,.24);
}

.hero-thumbs span {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 650;
}

.hero-thumbs strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .9rem;
  font-weight: 560;
}

@media (max-width: 992px) {
  .home-hero {
    min-height: 80vh;
  }

  .home-hero-inner {
    min-height: 70vh;
    padding-bottom: 124px;
  }

  .hero-thumbs {
    grid-template-columns: 1fr;
    bottom: 18px;
  }

  .hero-thumbs button:nth-child(n+3) {
    display: none;
  }
}

@media (max-width: 576px) {
  .home-hero,
  .home-hero-inner {
    min-height: 82vh;
  }

  .home-hero-inner {
    padding-top: 96px;
    padding-bottom: 112px;
  }

  .hero-copy h1 {
    font-size: 2.15rem;
  }

  .hero-copy p {
    font-size: .98rem;
  }

  .hero-controls {
    gap: 12px;
  }
}

/* Clean municipal sports theme */
:root {
  --primary: #00a878;
  --primary-2: #2bb9df;
  --secondary: #86c232;
  --gold: #ffd166;
  --ink: #16211f;
  --muted: #6d7d79;
  --line: #e6eeee;
  --soft: #f6faf9;
  --cream: #fff;
  --card: #ffffff;
  --shadow: 0 10px 28px rgba(18, 33, 31, .07);
}

body {
  color: var(--ink);
  background: #fff;
}

.site-header,
.site-header.is-solid,
.site-header:hover {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(230,238,238,.95);
  box-shadow: 0 8px 22px rgba(18,33,31,.06);
  backdrop-filter: blur(14px);
}

.site-header .navbar {
  padding: 10px 0;
}

.navbar-brand,
.site-header.is-solid .navbar-brand,
.site-header:hover .navbar-brand {
  max-width: 340px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 650;
}

.navbar-brand span,
.site-header.is-solid .navbar-brand span,
.site-header:hover .navbar-brand span {
  color: var(--primary);
}

.navbar-brand::before {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: none;
}

.nav-link,
.site-header.is-solid .nav-link,
.site-header:hover .nav-link {
  color: #314642;
  font-size: .9rem;
  font-weight: 500;
}

.nav-link::after {
  background: var(--primary);
}

.btn-sport {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 24px rgba(0,168,120,.20);
  font-weight: 620;
}

.btn-sport:hover {
  box-shadow: 0 14px 30px rgba(0,168,120,.26);
}

.btn-ghost {
  border-color: rgba(255,255,255,.74);
  background: rgba(255,255,255,.18);
  font-weight: 600;
}

.home-hero {
  min-height: 76vh;
  color: #fff;
  background: #0d2c28;
}

.home-hero::after {
  height: 70px;
  background: linear-gradient(transparent, #fff);
}

.home-hero-bg {
  filter: saturate(.98);
}

.home-hero-inner {
  min-height: 76vh;
  grid-template-columns: minmax(0, 1fr);
  padding-top: 86px;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: 1.03;
  font-weight: 650;
}

.hero-copy p {
  max-width: 620px;
  margin: 20px 0 26px;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
}

.eyebrow {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.16);
  font-weight: 520;
}

.hero-info-panel {
  margin-bottom: 58px;
  padding: 20px;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.14);
  box-shadow: none;
}

.hero-info-panel > strong {
  font-weight: 560;
}

.hero-dots button.is-active {
  background: var(--secondary);
}

.quick-band {
  margin-top: -34px;
}

.quick-grid {
  gap: 14px;
}

.quick-card,
.sport-card,
.form-shell,
.branch-card,
.news-card-pro {
  border-color: var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-card {
  min-height: 116px;
  padding: 18px;
}

.quick-card:hover,
.branch-card:hover,
.sport-card:hover,
.news-card-pro:hover {
  transform: translateY(-3px);
  border-color: rgba(0,168,120,.28);
}

.icon-badge,
.branch-card svg {
  background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
  box-shadow: none;
}

.quick-card h3,
.branch-card h3,
.sport-card h3,
.news-card-pro h3,
.timeline-card strong,
.video-row strong {
  font-weight: 620;
}

.section {
  padding: 72px 0;
}

.surface-section,
.stat-section,
.media-section {
  background: var(--soft);
}

.section-title {
  margin-bottom: 28px;
}

.section-title small,
.cta-band small,
.login-copy small,
.login-panel-head small {
  color: var(--primary);
  font-size: .76rem;
  font-weight: 620;
  letter-spacing: .02em;
}

.section-title h2 {
  margin-top: 7px;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.16;
  font-weight: 620;
}

.section-title p {
  font-size: 1rem;
}

.section-head > a,
.news-card-pro a {
  color: var(--primary);
  font-weight: 600;
}

.feature-list div {
  font-weight: 500;
  box-shadow: none;
}

.showcase-card {
  min-height: 380px;
  box-shadow: var(--shadow);
}

.showcase-card img {
  height: 380px;
}

.showcase-card strong {
  font-weight: 620;
}

.stat {
  padding: 22px;
  box-shadow: none;
}

.stat strong {
  color: var(--primary);
  font-size: 2.25rem;
  font-weight: 620;
}

.stat span {
  font-weight: 500;
}

.branch-card {
  min-height: 188px;
  padding: 22px;
}

.card-image {
  height: 204px;
}

.badge-soft {
  color: #047857;
  background: rgba(0,168,120,.10);
  font-weight: 560;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}

.agenda-section {
  background:
    linear-gradient(110deg, rgba(5,74,64,.92), rgba(16,112,132,.82)),
    url("https://images.unsplash.com/photo-1551958219-acbc608c6377?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.timeline-card {
  background: rgba(255,255,255,.12);
}

.timeline-card::before {
  background: var(--secondary);
}

.timeline-card span,
.agenda-section .section-title small,
.cta-band small {
  color: var(--gold);
}

.news-card-pro {
  min-height: 210px;
}

.news-card-pro span {
  color: var(--primary-2);
  font-weight: 560;
}

.newsroom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .9fr);
  gap: 18px;
  align-items: stretch;
}

.headline-news,
.side-news,
.mini-news {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.headline-news {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
  min-height: 360px;
}

.headline-image,
.side-news-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.headline-image img,
.side-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.headline-image svg {
  width: 54px;
  height: 54px;
}

.headline-body {
  display: grid;
  align-content: center;
  padding: 30px;
}

.headline-body span,
.side-news span,
.mini-news span {
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
}

.headline-body h3 {
  margin: 10px 0 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.16;
  font-weight: 640;
}

.headline-body p,
.mini-news p {
  color: var(--muted);
  margin-bottom: 18px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-weight: 620;
}

.read-more svg {
  width: 17px;
}

.side-news-list {
  display: grid;
  gap: 14px;
}

.side-news {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 150px;
}

.side-news-image svg {
  width: 34px;
  height: 34px;
}

.side-news > div {
  display: grid;
  align-content: center;
  padding: 18px;
}

.side-news h3,
.mini-news h3 {
  margin: 8px 0 0;
  font-size: 1.05rem;
  line-height: 1.32;
  font-weight: 620;
}

.news-list-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.mini-news {
  padding: 20px;
}

.mini-news p {
  margin: 10px 0 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.page-offset {
  padding-top: 130px;
}

.news-archive {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.archive-news-card {
  display: grid;
  grid-template-rows: 210px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.archive-news-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.archive-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-news-image svg {
  width: 42px;
  height: 42px;
}

.archive-news-body {
  display: grid;
  align-content: start;
  padding: 20px;
}

.archive-news-body span {
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
}

.archive-news-body h3 {
  margin: 9px 0 10px;
  font-size: 1.12rem;
  line-height: 1.34;
  font-weight: 620;
}

.archive-news-body p {
  color: var(--muted);
}

.news-detail-page {
  padding-bottom: 76px;
  background: #fff;
}

.news-detail-head {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.news-detail-head > span {
  display: block;
  margin: 16px 0 8px;
  color: var(--primary);
  font-size: .86rem;
  font-weight: 600;
}

.news-detail-head h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.08;
  font-weight: 640;
  text-wrap: balance;
}

.news-detail-head p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.news-detail-cover {
  max-width: 1080px;
  margin: 0 auto 34px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.news-detail-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) 220px;
  gap: 34px;
  justify-content: center;
  align-items: start;
}

.news-content {
  color: #243733;
  font-size: 1.04rem;
}

.news-content p {
  margin-bottom: 1.1rem;
}

.share-box {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.share-box strong {
  margin-bottom: 4px;
  font-weight: 620;
}

.share-box a,
.share-box button {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: #314642;
  text-align: left;
  font: inherit;
  font-weight: 560;
}

.gallery-tile span {
  font-weight: 620;
}

.cta-band {
  padding: 68px 0;
  background:
    linear-gradient(120deg, rgba(0,132,103,.92), rgba(43,185,223,.78)),
    url("https://images.unsplash.com/photo-1552674605-db6ffd4facb5?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.9rem);
  font-weight: 620;
}

.footer-section {
  color: #dbe8e5;
  background: #102522;
}

.footer-section h2,
.footer-section h3 {
  font-weight: 620;
}

.login-copy h1,
.login-panel-head h2 {
  font-weight: 620;
}

@media (max-width: 992px) {
  .home-hero,
  .home-hero-inner {
    min-height: 74vh;
  }

  .home-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-info-panel {
    margin-bottom: 62px;
  }

  .newsroom-grid,
  .headline-news {
    grid-template-columns: 1fr;
  }

  .headline-image {
    min-height: 260px;
  }

  .news-list-row {
    grid-template-columns: 1fr;
  }

  .news-archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .share-box {
    position: static;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    max-width: 250px;
  }

  .home-hero,
  .home-hero-inner {
    min-height: 78vh;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .side-news {
    grid-template-columns: 1fr;
  }

  .side-news-image {
    min-height: 180px;
  }

  .news-archive {
    grid-template-columns: 1fr;
  }
}

/* Final quick access rail — flex ile hero altına otomatik yerleşim */
.home-hero {
  --hero-header-offset: 76px;
  display: flex;
  flex-direction: column;
  min-height: max(480px, calc(100svh - var(--hero-header-offset)));
  min-height: max(480px, calc(100dvh - var(--hero-header-offset)));
  height: auto;
  max-height: none;
  padding-bottom: 0;
  overflow: visible;
}

.home-hero-inner {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 0;
  width: 100%;
  height: auto;
  padding-top: clamp(72px, 10vh, 96px);
  padding-bottom: clamp(8px, 1.5vh, 16px);
}

.quick-band {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  flex: 0 0 auto;
  width: 100%;
  margin-top: auto;
  z-index: 10;
  padding-top: clamp(48px, 8vh, 96px);
  padding-bottom: clamp(4px, 0.8vh, 10px);
  transform: translateY(clamp(56px, 8.5vh, 104px));
}

.quick-panel {
  display: block;
}

.quick-panel-head {
  display: none;
}

.quick-rail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 12px;
  border: 1px solid rgba(224, 234, 232, .98);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 14px 34px rgba(24, 45, 42, .08);
}

.quick-rail-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: var(--primary);
  font-size: .93rem;
  font-weight: 620;
  white-space: nowrap;
}

.quick-rail-label svg {
  width: 19px;
  height: 19px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.quick-card {
  position: relative;
  min-height: 58px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  transition: background .18s ease, border-color .18s ease;
}

.quick-card:hover {
  transform: none;
  border-color: rgba(0, 168, 120, .22);
  background: #f5fbfa;
}

.quick-card .icon-badge {
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 8px;
  background: #eef8f6 !important;
  color: var(--link-color, var(--primary));
  box-shadow: none;
}

.quick-card .icon-badge svg {
  width: 18px;
  height: 18px;
}

.quick-card h3 {
  margin: 0;
  overflow: hidden;
  color: #243733;
  font-size: .93rem;
  line-height: 1.18;
  font-weight: 560;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-arrow {
  width: 16px;
  height: 16px;
  color: #9aaba7;
  transition: transform .18s ease, color .18s ease;
}

.quick-card:hover .quick-arrow {
  color: var(--primary);
  transform: translateX(2px);
}

@media (max-width: 992px) {
  .quick-rail {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quick-rail-label {
    min-height: auto;
    padding: 2px 2px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .quick-band {
    margin-top: auto;
    padding-top: clamp(32px, 5.5vh, 56px);
    padding-bottom: clamp(4px, 0.8vh, 8px);
    transform: translateY(clamp(40px, 6vh, 64px));
  }

  .quick-rail {
    padding: 10px;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    --hero-header-offset: 68px;
    min-height: max(440px, calc(100svh - var(--hero-header-offset)));
    min-height: max(440px, calc(100dvh - var(--hero-header-offset)));
  }

  .home-hero-inner {
    align-items: flex-start;
    padding-top: 78px;
    padding-bottom: 12px;
  }
}

/* (hero height artık yukarıdaki flex bloğunda yönetiliyor) */

/* Sharp hero slider images */
.home-hero-bg {
  transform: none !important;
  transition: opacity .75s ease !important;
  filter: none !important;
}

.home-hero-bg.is-active {
  transform: none !important;
}

.home-hero-bg picture,
.home-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero-bg img {
  object-fit: cover;
  object-position: center;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.home-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(7, 38, 34, 0.52) 0%, rgba(7, 38, 34, 0.24) 48%, rgba(7, 38, 34, 0.08) 100%),
    linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.14) 100%);
  pointer-events: none;
}

.home-hero::after {
  height: 56px;
  opacity: 0.75;
  z-index: 4;
}

/* Final brand typography */
.navbar-brand,
.site-header.is-solid .navbar-brand,
.site-header:hover .navbar-brand,
.login-brand {
  gap: 12px;
  max-width: 360px;
  text-decoration: none;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  color: inherit;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-stack strong {
  display: block;
  color: var(--primary);
  font-size: 1.18rem;
  font-weight: 780;
  letter-spacing: 0;
}

.brand-stack small {
  display: block;
  color: #243733;
  font-size: .9rem;
  font-weight: 540;
  letter-spacing: 0;
}

.site-header:not(.is-solid):not(:hover) .brand-stack strong {
  color: var(--primary);
}

.site-header:not(.is-solid):not(:hover) .brand-stack small {
  color: #243733;
}

.site-header:hover .brand-stack strong,
.site-header.is-solid .brand-stack strong {
  color: var(--primary);
}

.site-header:hover .brand-stack small,
.site-header.is-solid .brand-stack small {
  color: #243733;
}

.login-brand .brand-stack strong {
  color: #ffffff;
}

.login-brand .brand-stack small {
  color: #98eadc;
}

.brand-mobile {
  display: grid;
  gap: 1px;
  line-height: 1.06;
}

.brand-mobile span {
  color: var(--primary);
  font-size: .95rem;
  letter-spacing: 0;
}

.brand-mobile small {
  color: #243733;
  font-size: .9rem;
  font-weight: 540;
}

@media (max-width: 576px) {
  .navbar-brand,
  .site-header.is-solid .navbar-brand,
  .site-header:hover .navbar-brand {
    max-width: 260px;
  }

  .brand-stack strong {
    font-size: 1rem;
  }

  .brand-stack small {
    font-size: .82rem;
  }
}

/* Facilities page */
.facilities-page {
  background: #fff;
}

.facilities-hero {
  padding: 148px 0 58px;
  background:
    linear-gradient(90deg, rgba(245, 251, 250, .98), rgba(245, 251, 250, .88)),
    url("https://images.unsplash.com/photo-1574629810360-7efbbe195018?auto=format&fit=crop&w=1800&q=82") center/cover;
  border-bottom: 1px solid var(--line);
}

.facilities-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: end;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 650;
}

.facilities-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1.08;
  font-weight: 640;
}

.facilities-hero-copy p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.facilities-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 45, 42, .08);
}

.facilities-summary div {
  padding: 22px;
}

.facilities-summary div + div {
  border-left: 1px solid var(--line);
}

.facilities-summary strong,
.facilities-summary span {
  display: block;
}

.facilities-summary strong {
  color: var(--primary);
  font-size: 2rem;
  line-height: 1;
  font-weight: 680;
}

.facilities-summary span {
  margin-top: 7px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 540;
}

.facilities-section {
  padding: 68px 0;
}

.facilities-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.facilities-toolbar h2,
.facility-map-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.15;
  font-weight: 620;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.facility-card {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 258px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 45, 42, .06);
  transition: border-color .18s ease, transform .18s ease;
}

.facility-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 120, .30);
}

.facility-image {
  display: block;
  min-height: 100%;
  background: #dce8e4;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.facility-card-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: .8rem;
  font-weight: 620;
}

.facility-card-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.22;
  font-weight: 620;
}

.facility-body p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.facility-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.facility-tags span {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid #dcefeb;
  border-radius: 8px;
  color: #17685d;
  background: #f1faf8;
  font-size: .78rem;
  font-weight: 560;
}

.facility-meta {
  display: grid;
  gap: 8px;
  padding-top: 2px;
}

.facility-meta div {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 8px;
  color: #526661;
  font-size: .9rem;
}

.facility-meta svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.facility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 2px;
}

.facility-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #2f4641;
  background: #fff;
  font-size: .9rem;
  font-weight: 580;
}

.facility-link.primary {
  border-color: var(--primary);
  color: #fff;
  background: var(--primary);
}

.facility-map-section {
  padding: 0 0 76px;
}

.facility-map-panel {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.facility-map-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

.facility-map-list {
  display: grid;
  gap: 10px;
}

.facility-map-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.facility-map-row strong,
.facility-map-row span {
  display: block;
}

.facility-map-row strong {
  color: var(--ink);
  font-weight: 610;
}

.facility-map-row span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .9rem;
}

.facility-map-row a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--primary);
  background: #eaf7f4;
}

.empty-state {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

@media (max-width: 992px) {
  .facilities-hero-grid,
  .facility-map-panel {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .facilities-toolbar {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .facilities-hero {
    padding: 126px 0 42px;
  }

  .facilities-summary,
  .facility-card {
    grid-template-columns: 1fr;
  }

  .facilities-summary div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .facility-image {
    min-height: 210px;
  }

  .facility-body,
  .facility-map-panel {
    padding: 18px;
  }
}

/* ---- Application page ---- */
.apply-page {
  background: var(--soft);
  font-size: 14px;
  line-height: 1.55;
}

.apply-hero {
  padding: 124px 0 32px;
  color: #fff;
  background:
    linear-gradient(125deg, rgba(0, 107, 95, 0.96) 0%, rgba(15, 45, 40, 0.94) 55%, rgba(23, 37, 33, 0.92) 100%);
}

.apply-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.apply-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.apply-eyebrow svg {
  width: 14px;
  height: 14px;
}

.apply-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.apply-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.55;
  font-weight: 400;
}

.apply-hero-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.apply-step {
  display: grid;
  gap: 3px;
  justify-items: center;
  min-width: 52px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.apply-step span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.78rem;
  font-weight: 650;
}

.apply-step small {
  font-size: 0.66rem;
  font-weight: 500;
}

.apply-step.is-active {
  color: #fff;
}

.apply-step.is-active span {
  border-color: transparent;
  background: linear-gradient(135deg, var(--secondary), #f59a49);
}

.apply-step-line {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.apply-body {
  padding: 0 0 84px;
  margin-top: -22px;
}

.apply-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.apply-sidebar {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 96px;
}

.apply-info-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.apply-info-card.highlight {
  border-color: rgba(0, 107, 95, 0.18);
  background: linear-gradient(180deg, #f7fcfb, #fff);
}

.apply-info-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  border-radius: 10px;
  color: var(--primary);
  background: rgba(0, 107, 95, 0.1);
}

.apply-info-icon svg {
  width: 17px;
  height: 17px;
}

.apply-info-card h3 {
  margin: 0 0 6px;
  font-size: 0.9rem;
  font-weight: 650;
}

.apply-info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.apply-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
}

.apply-link-btn svg {
  width: 14px;
  height: 14px;
}

.apply-checklist {
  margin: 0;
  padding: 14px 16px;
  list-style: none;
  border: 1px dashed var(--line);
  border-radius: 12px;
  background: #fff;
}

.apply-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.apply-checklist svg {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: var(--primary);
  flex-shrink: 0;
}

.apply-form-wrap {
  min-width: 0;
}

.apply-form {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.apply-alert {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  margin: 18px 18px 0;
  padding: 12px 14px;
  border: 1px solid rgba(220, 53, 69, 0.25);
  border-radius: 10px;
  background: #fff5f5;
  color: #842029;
  font-size: 0.84rem;
}

.apply-alert strong {
  font-size: 0.86rem;
  font-weight: 650;
}

.apply-alert svg {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.apply-alert ul {
  margin: 4px 0 0;
  padding-left: 16px;
  font-size: 0.82rem;
}

.apply-alert li {
  margin: 1px 0;
}

.apply-section {
  margin: 0;
  padding: 20px 22px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.apply-section:last-of-type {
  border-bottom: 0;
  padding-bottom: 22px;
}

.apply-section legend {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
  float: none;
}

.apply-section-num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: rgba(0, 107, 95, 0.1);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.apply-section legend strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--ink);
}

.apply-section legend small {
  display: block;
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
}

.apply-field-help {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.apply-section .form-label {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.apply-section .form-control,
.apply-section .form-select {
  min-height: 40px;
  padding: 9px 12px;
  border-color: #d5e2de;
  border-radius: 8px;
  font-size: 0.86rem;
}

.apply-section .form-select-lg {
  min-height: 42px;
  font-size: 0.86rem;
  font-weight: 500;
}

.apply-section textarea.form-control {
  min-height: 96px;
  resize: vertical;
}

.apply-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbfa;
  cursor: pointer;
}

.apply-kvkk .form-check-input {
  margin-top: 3px;
  flex-shrink: 0;
}

.apply-kvkk strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
}

.apply-kvkk small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
}

.apply-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.apply-actions .btn-sport,
.apply-actions .btn-outline-secondary {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 600;
}

.apply-actions .btn-sport svg {
  width: 15px;
  height: 15px;
}

#parent-section.is-required {
  border-left: 3px solid var(--secondary);
  background: linear-gradient(90deg, rgba(242, 122, 44, 0.06), transparent 40%);
}

#parent-section.is-required .apply-section-num {
  color: var(--secondary);
  background: rgba(242, 122, 44, 0.12);
}

@media (max-width: 992px) {
  .apply-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .apply-hero-steps {
    justify-content: center;
  }

  .apply-layout {
    grid-template-columns: 1fr;
  }

  .apply-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apply-checklist {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .apply-hero {
    padding: 112px 0 28px;
  }

  .apply-body {
    margin-top: 0;
    padding-bottom: 56px;
  }

  .apply-sidebar {
    grid-template-columns: 1fr;
  }

  .apply-section {
    padding: 18px 16px 4px;
  }

  .apply-section:last-of-type {
    padding-bottom: 18px;
  }

  .apply-alert {
    margin: 14px 14px 0;
  }

  .apply-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .apply-actions .btn {
    width: 100%;
  }
}

/* ---- Global refined typography (site-wide) ---- */
body {
  font-size: 14px;
  line-height: 1.55;
}

.navbar-brand {
  font-size: 0.98rem;
  font-weight: 650;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 500;
}

.brand-stack strong {
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-stack small {
  font-size: 0.76rem;
  font-weight: 500;
}

.btn-sport,
.btn-ghost {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 600;
}

.btn-sport svg,
.btn-ghost svg {
  width: 15px;
  height: 15px;
}

.hero-copy h1 {
  font-size: clamp(1.45rem, 2.8vw, 2.05rem) !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
}

.hero-copy p {
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
  margin-top: 12px !important;
}

.eyebrow {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  margin-bottom: 10px !important;
}

.quick-rail-label {
  font-size: 0.82rem;
  font-weight: 600;
  min-height: 46px;
}

.quick-card h3 {
  font-size: 0.82rem !important;
  font-weight: 560 !important;
}

.quick-card .icon-badge {
  width: 30px;
  height: 30px;
}

.quick-card .icon-badge svg {
  width: 16px;
  height: 16px;
}

.section {
  padding: 60px 0;
}

.section-title {
  margin-bottom: 22px;
}

.section-title small,
.cta-band small {
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em;
}

.section-title h2 {
  margin-top: 5px;
  font-size: clamp(1.28rem, 2.2vw, 1.72rem) !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
}

.section-title p {
  font-size: 0.88rem !important;
  line-height: 1.55;
}

.section-head > a {
  font-size: 0.84rem;
  font-weight: 600;
}

.feature-list div {
  font-size: 0.86rem;
  font-weight: 500;
}

.feature-list svg {
  width: 17px;
  height: 17px;
}

.showcase-card strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.showcase-card span {
  font-size: 0.8rem;
}

.timeline-card {
  padding: 16px 18px;
}

.timeline-card span {
  font-size: 0.72rem;
}

.timeline-card strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.timeline-card small {
  font-size: 0.78rem;
}

.headline-body {
  padding: 22px;
}

.headline-body span,
.side-news span,
.mini-news span {
  font-size: 0.72rem;
}

.headline-body h3 {
  margin: 8px 0 8px;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem) !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
}

.headline-body p,
.mini-news p {
  font-size: 0.84rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.side-news h3,
.mini-news h3 {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
}

.read-more {
  font-size: 0.82rem;
  font-weight: 600;
}

.read-more svg {
  width: 15px;
}

.mini-news {
  padding: 16px;
}

.video-row strong {
  font-size: 0.88rem;
  font-weight: 600;
}

.video-row small {
  font-size: 0.78rem;
}

.gallery-tile span {
  font-size: 0.82rem;
  font-weight: 600;
}

.stat strong {
  font-size: 1.65rem;
  font-weight: 650;
}

.stat span {
  font-size: 0.82rem;
}

.cta-band {
  padding: 56px 0;
}

.cta-band h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.85rem) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

.cta-band p {
  font-size: 0.88rem;
}

.footer-section {
  padding: 56px 0 24px;
}

.footer-section h2,
.footer-section h3 {
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-section a,
.footer-bottom {
  font-size: 0.82rem;
}

.sport-card h3,
.branch-card h3,
.news-card-pro h3 {
  font-size: 0.92rem;
  font-weight: 600;
}

.form-label {
  font-size: 0.8rem;
}

.form-control,
.form-select {
  font-size: 0.86rem;
  padding: 9px 12px;
}

@media (max-width: 576px) {
  body {
    font-size: 13.5px;
  }

  .hero-copy h1 {
    font-size: 1.38rem !important;
  }

  .section-title h2 {
    font-size: 1.22rem !important;
  }

  .headline-body h3 {
    font-size: 1.05rem !important;
  }

  .navbar-brand {
    font-size: 0.92rem;
  }
}

/* Final modern home slider */
.home-hero {
  --hero-header-offset: 76px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: max(560px, calc(100svh - var(--hero-header-offset)));
  min-height: max(560px, calc(100dvh - var(--hero-header-offset)));
  height: auto;
  max-height: none;
  overflow: visible;
  color: #fff;
  background: #0c2f2a;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: none !important;
  transition: opacity .75s ease !important;
  filter: none !important;
}

.home-hero-bg.is-active {
  opacity: 1;
  transform: none !important;
}

.home-hero-bg picture,
.home-hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero-bg img {
  object-fit: cover;
  object-position: center;
}

.home-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(6, 42, 37, .78) 0%, rgba(6, 42, 37, .46) 45%, rgba(6, 42, 37, .12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .03) 48%, rgba(255, 255, 255, .16) 100%);
  pointer-events: none;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.92));
  pointer-events: none;
}

.home-hero::after {
  display: none;
}

.home-hero-inner {
  position: relative;
  z-index: 3;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-height: 0;
  height: auto;
  padding-top: clamp(92px, 12vh, 124px);
  padding-bottom: 48px;
}

.hero-copy-wrap {
  position: relative;
  width: min(100%, 760px);
  max-width: 760px;
  padding-left: 26px;
}

.hero-copy-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 44px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
}

.hero-copy {
  display: none;
  max-width: 760px;
}

.hero-copy.is-active {
  display: block;
  animation: heroText .55s ease both;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.15rem, 5vw, 4.6rem) !important;
  line-height: 1.05 !important;
  font-weight: 620 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 600px;
  margin: 18px 0 0 !important;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(1rem, 1.25vw, 1.13rem) !important;
  line-height: 1.58 !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px !important;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 8px;
  color: rgba(255,255,255,.90);
  background: rgba(255,255,255,.10);
  font-size: .78rem !important;
  font-weight: 560 !important;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
  color: var(--primary-2);
}

.hero-progress {
  display: flex;
  gap: 8px;
  width: min(100%, 330px);
  margin-top: 28px;
}

.hero-progress span {
  height: 4px;
  flex: 1 1 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}

.hero-progress span::before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.hero-progress span.is-active::before {
  width: 100%;
  transition: width 6.5s linear;
}

.hero-actions,
.hero-controls,
.hero-arrows,
.hero-dots,
.hero-thumbs {
  display: none !important;
}

.home-hero .quick-band {
  position: relative;
  z-index: 5;
  margin-top: -28px;
  padding-bottom: 18px;
}

@media (max-width: 992px) {
  .home-hero {
    --hero-header-offset: 68px;
    min-height: max(520px, calc(100svh - var(--hero-header-offset)));
    min-height: max(520px, calc(100dvh - var(--hero-header-offset)));
  }

  .home-hero-inner {
    padding-top: 92px;
    padding-bottom: 34px;
  }
}

@media (max-width: 576px) {
  .home-hero {
    min-height: 540px;
  }

  .home-hero-inner {
    align-items: flex-start;
    padding-top: 108px;
    padding-bottom: 26px;
  }

  .hero-copy-wrap {
    padding-left: 18px;
  }

  .hero-copy-wrap::before {
    bottom: 36px;
  }

  .hero-copy h1 {
    font-size: 1.7rem !important;
  }

  .hero-copy p {
    font-size: .88rem !important;
  }

  .home-hero .quick-band {
    margin-top: -16px;
  }
}

/* Mobile hero refresh */
@media (max-width: 992px) {
  .home-hero .quick-band {
    margin-top: 0;
    transform: none;
  }
}

@media (max-width: 768px) {
  .home-hero .quick-band {
    display: none;
  }

  .home-hero {
    min-height: 0;
    overflow: hidden;
    background: #ffffff;
  }

  .home-hero-bg {
    bottom: auto;
    height: clamp(430px, 68svh, 520px);
    height: clamp(430px, 68dvh, 520px);
  }

  .home-hero-bg img {
    object-position: center top;
  }

  .home-hero-bg::after {
    background:
      linear-gradient(180deg, rgba(5, 28, 25, .58) 0%, rgba(5, 28, 25, .14) 34%, rgba(5, 28, 25, .72) 100%),
      linear-gradient(90deg, rgba(0, 107, 95, .48), rgba(242, 122, 44, .18));
  }

  .home-hero::before {
    display: none;
  }

  .home-hero-inner {
    min-height: clamp(430px, 68svh, 520px);
    min-height: clamp(430px, 68dvh, 520px);
    align-items: end;
    padding: 96px 14px 22px;
  }

  .hero-copy-wrap {
    width: 100%;
    max-width: none;
    padding: 16px 16px 15px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(8, 41, 36, .66), rgba(8, 41, 36, .46));
    box-shadow: 0 18px 42px rgba(5, 28, 25, .26);
    backdrop-filter: blur(10px);
  }

  .hero-copy-wrap::before {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
    border-radius: 999px 999px 0 0;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 10px !important;
    padding: 6px 9px;
    font-size: .72rem !important;
    line-height: 1.2;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(1.58rem, 8.5vw, 2.15rem) !important;
    line-height: 1.1 !important;
  }

  .hero-copy p {
    max-width: 100%;
    margin-top: 10px !important;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    color: rgba(255, 255, 255, .88);
    font-size: .92rem !important;
    line-height: 1.45 !important;
  }

  .hero-progress {
    width: 100%;
    margin-top: 14px;
    gap: 6px;
  }

  .hero-progress span {
    height: 3px;
  }

  .home-hero .quick-band {
    margin-top: 0;
    padding: 10px 0 14px;
    transform: none;
    background: #ffffff;
  }

  .quick-rail {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .quick-rail-label {
    min-height: 0;
    padding: 0 2px 8px;
    border: 0;
    color: #38504a;
    font-size: .78rem;
  }

  .quick-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 0 2px 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .quick-grid::-webkit-scrollbar {
    display: none;
  }

  .quick-card {
    flex: 0 0 min(76vw, 260px);
    min-height: 52px;
    grid-template-columns: 32px minmax(0, 1fr) 16px;
    padding: 9px 10px;
    border-color: rgba(223, 232, 229, .95);
    background: #f8fbfa;
    scroll-snap-align: start;
  }

  .quick-card .icon-badge {
    width: 32px;
    height: 32px;
  }

  .quick-card h3 {
    font-size: .88rem;
  }
}

@media (max-width: 390px) {
  .home-hero-inner {
    padding-top: 86px;
  }

  .hero-copy-wrap {
    padding: 14px;
  }

  .hero-copy h1 {
    font-size: 1.45rem !important;
  }
}

/* Polished mobile app-like hero */
@media (max-width: 768px) {
  .home-hero {
    background: #f6f8f7;
  }

  .home-hero-bg,
  .home-hero-inner {
    height: min(620px, 76svh);
    height: min(620px, 76dvh);
    min-height: 500px;
  }

  .home-hero-bg img {
    object-position: 54% top;
  }

  .home-hero-bg::after {
    background:
      linear-gradient(180deg, rgba(5, 26, 23, .18) 0%, rgba(5, 26, 23, .10) 28%, rgba(5, 26, 23, .78) 72%, rgba(5, 26, 23, .92) 100%),
      linear-gradient(110deg, rgba(0, 107, 95, .38), rgba(242, 122, 44, .18));
  }

  .home-hero-inner {
    padding: 94px 14px 18px;
  }

  .hero-copy-wrap {
    padding: 17px;
    border-color: rgba(255, 255, 255, .22);
    background: rgba(6, 34, 30, .70);
    box-shadow: 0 20px 46px rgba(5, 26, 23, .30);
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 8.2vw, 2.28rem) !important;
    font-weight: 720 !important;
  }

  .hero-copy p:empty {
    display: none;
  }

  .hero-actions {
    display: flex !important;
    gap: 8px;
    margin-top: 14px;
  }

  .hero-actions .btn-sport,
  .hero-actions .btn-ghost {
    min-height: 42px;
    flex: 1 1 0;
    padding: 10px 11px;
    border-radius: 8px;
    font-size: .82rem;
    line-height: 1.15;
    white-space: normal;
  }

  .hero-actions .btn-sport svg,
  .hero-actions .btn-ghost svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }

  .hero-progress {
    margin-top: 13px;
  }

  .intro-section {
    padding-top: 34px;
  }
}

@media (max-width: 390px) {
  .home-hero-bg,
  .home-hero-inner {
    min-height: 480px;
  }

  .home-hero-inner {
    padding: 86px 12px 14px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-sport,
  .hero-actions .btn-ghost {
    width: 100%;
  }
}

/* Mobile final: keep quick access under the slider, keep hero image clear */
@media (max-width: 768px) {
  .hero-actions {
    display: none !important;
  }

  .hero-copy-wrap {
    padding: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(1.62rem, 7.8vw, 2.08rem) !important;
  }

  .home-hero .quick-band {
    display: block !important;
    position: relative;
    z-index: 5;
    margin-top: 0;
    padding: 14px 0 18px;
    transform: none !important;
    background: #f6f8f7;
  }

  .home-hero .quick-rail {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-hero .quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }

  .home-hero .quick-card {
    min-width: 0;
    min-height: 54px;
    grid-template-columns: 32px minmax(0, 1fr);
    padding: 10px;
    scroll-snap-align: none;
  }

  .home-hero .quick-arrow {
    display: none;
  }
}
