/* SWIM&GYM theme — Manrope, clean blue fitness (ref hero style) */
:root {
  --navy: #0B1F33;
  --aqua: #1E6BF2;
  --blue: #1E6BF2;
  --light: #F3F7FB;
  --light-aqua: #F3F7FB;
  --graphite: #2A3440;
  --orange: #1E6BF2;
  --accent-mark: #E11D48;
  --white: #fff;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 48px rgba(15, 40, 80, 0.08);
  --container: min(1180px, calc(100% - 2rem));
  --font: "Manrope", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--aqua); text-decoration: none; }
a:hover { color: var(--navy); }
.container { width: var(--container); margin-inline: auto; }
.narrow { max-width: 720px; }
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy a { color: var(--aqua); }
.screen-reader-text { position: absolute; left: -9999px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(11,47,74,.08);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 72px; flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: .65rem; color: var(--navy); font-weight: 800; font-size: 1.1rem; letter-spacing: -.02em; }
.brand-amp { color: var(--blue); }
.brand-logo { border-radius: 999px; }
.primary-nav { flex: 1; display: flex; justify-content: center; }
.header-cta { display: flex; align-items: center; gap: .85rem; margin-left: auto; }
.header-phone { font-weight: 700; color: var(--navy); white-space: nowrap; font-size: .95rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.45rem; border-radius: 999px; font-weight: 700;
  border: 1.5px solid transparent; cursor: pointer; transition: .2s ease;
  font-family: inherit; font-size: .92rem; letter-spacing: .01em;
}
.btn-sm { padding: .6rem 1.15rem; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 10px 28px rgba(30, 107, 242, 0.28); }
.btn-primary:hover { filter: brightness(1.06); color: var(--white); transform: translateY(-1px); }
.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(30, 107, 242, 0.35);
  box-shadow: none;
}
.btn-secondary:hover { color: var(--blue); border-color: var(--blue); background: rgba(30, 107, 242, 0.04); }
.btn-outline { background: transparent; border-color: rgba(11,47,74,.15); color: var(--navy); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* Hero */
.hero { background: linear-gradient(180deg, #fff 0%, #F7FAFD 100%); overflow: hidden; padding-top: clamp(2.5rem, 5vw, 4rem); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.hero-title {
  font-size: clamp(2.15rem, 4.8vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--navy);
  margin: .55rem 0 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.hero-title .text-accent { color: var(--blue); }
.hero-lead { font-size: 1.05rem; max-width: 36ch; color: rgba(42,52,64,.82); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.6rem 0 1.25rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--blue);
  margin: 0;
}
.eyebrow-aqua { color: var(--blue); }
.hero-stats { display: flex; gap: 1.75rem; list-style: none; padding: 0; margin: 1.75rem 0 0; flex-wrap: wrap; }
.hero-stats strong { display: block; font-size: 1.65rem; color: var(--blue); letter-spacing: -.03em; font-weight: 800; }
.hero-stats span { font-size: .82rem; color: rgba(42,52,64,.62); }
.hero-visual { position: relative; min-height: 320px; }
.hero-img { border-radius: calc(var(--radius) + 4px); object-fit: cover; box-shadow: var(--shadow-soft); }
.hero-img-main { width: 100%; aspect-ratio: 4/3; }
.hero-img-accent {
  position: absolute;
  right: -2%;
  bottom: -6%;
  width: 42%;
  border: 5px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 40, 80, 0.14);
}

/* Cards */
.section-head { max-width: 720px; margin-bottom: 2rem; }
.section-head h2, .page-hero h1 {
  color: var(--navy);
  letter-spacing: -.03em;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 .65rem;
}
.section-head h2 {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.section-head.text-center h2 {
  justify-content: center;
}
.section-mark {
  width: .55rem;
  height: .55rem;
  background: var(--accent-mark);
  transform: rotate(45deg);
  flex-shrink: 0;
  border-radius: 1px;
  display: inline-block;
}
.section-desc { margin: 0; color: rgba(42,52,64,.72); max-width: 42ch; }
.cards-grid { display: grid; gap: 1.35rem; }
.cards-grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (min-width: 992px) {
  .cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 0;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(15, 40, 80, 0.12); }
.service-card a { color: inherit; display: block; }
.service-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.service-card-body { padding: 1.15rem 1.25rem 1.4rem; }
.service-card h3 {
  margin: 0 0 .4rem;
  font-size: .98rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: -.01em;
  font-weight: 800;
}
.service-card p { margin: 0; font-size: .9rem; color: rgba(42,52,64,.72); line-height: 1.45; }
.link-arrow { display: none; }

/* Baby pool */
.baby-pool-teaser { background: var(--navy); color: var(--white); }
.baby-pool-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.baby-pool-teaser h2 { color: var(--white); text-transform: none; letter-spacing: -.02em; }
.baby-pool-teaser p { color: rgba(255,255,255,.85); }
.baby-pool-teaser .btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.baby-pool-teaser .btn-secondary:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: var(--white);
}
.check-list { padding-left: 1.1rem; }
.check-list li { margin-bottom: .35rem; }
.baby-pool-visual img { border-radius: var(--radius); box-shadow: var(--shadow-soft); }

/* Prices */
.price-disclaimer { color: rgba(29,39,48,.72); font-size: .95rem; background: rgba(30,107,242,.08); padding: .75rem 1rem; border-radius: var(--radius-sm); }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.price-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-soft); border: 1px solid rgba(11,47,74,.06); }
.price-card h2, .price-card h3 { margin-top: 0; color: var(--navy); }
.price-value { font-size: 2rem; font-weight: 800; color: var(--aqua); margin: .5rem 0; }
.price-period { font-weight: 600; }
.price-note { font-size: .85rem; color: rgba(29,39,48,.65); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; }
.team-grid-full { grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: 1.5rem; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.team-card h2, .team-card h3 { font-size: 1rem; margin: .75rem 0 .25rem; color: var(--navy); }
.team-card p { margin: 0; font-size: .85rem; color: rgba(29,39,48,.72); }
.section-cta { text-align: center; margin-top: 2rem; }

/* FAQ */
.faq-list details { border: 1px solid rgba(11,47,74,.08); border-radius: var(--radius-sm); padding: .85rem 1rem; margin-bottom: .65rem; background: var(--white); }
.faq-list summary { cursor: pointer; font-weight: 700; color: var(--navy); }

/* Forms */
.lead-form {
  background: var(--white);
  color: var(--graphite);
  border: 1px solid rgba(11, 47, 74, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.lead-form h3 {
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}
.lead-form .form-note {
  color: rgba(29, 39, 48, 0.7);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.lead-form label {
  display: block;
  margin-bottom: 1rem;
}
.lead-form label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.lead-form input[type="text"], .lead-form input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(11, 47, 74, 0.15);
  background: var(--white);
  color: var(--graphite);
  font: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lead-form input[type="text"]:focus, .lead-form input[type="tel"]:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(22, 182, 200, 0.15);
  outline: none;
}
.checkbox {
  display: flex !important;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
.checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  flex-shrink: 0;
}
.checkbox span {
  color: rgba(29, 39, 48, 0.8);
}
.checkbox a {
  color: var(--aqua);
  text-decoration: underline;
  font-weight: 600;
}
.checkbox a:hover {
  color: var(--navy);
}
.form-status {
  min-height: 1.25rem;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  font-weight: 600;
}

/* Dark lead form (for dark sections if any) */
.section-navy .lead-form,
.bg-navy-section .lead-form {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}
.section-navy .lead-form h3,
.bg-navy-section .lead-form h3 {
  color: var(--white);
}
.section-navy .lead-form .form-note,
.bg-navy-section .lead-form .form-note {
  color: rgba(255, 255, 255, 0.8);
}
.section-navy .lead-form label span,
.bg-navy-section .lead-form label span {
  color: var(--white);
}
.section-navy .lead-form .checkbox span,
.bg-navy-section .lead-form .checkbox span {
  color: rgba(255, 255, 255, 0.9);
}
.section-navy .lead-form .checkbox a,
.bg-navy-section .lead-form .checkbox a {
  color: var(--aqua);
}

/* Desktop Dropdown Menu Styles */
.primary-nav .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  align-items: center;
}
.primary-nav .menu li {
  position: relative;
}
.primary-nav .menu a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 0;
  display: block;
  transition: color 0.2s;
}
.primary-nav .menu a:hover {
  color: var(--aqua);
}

/* Highlight Promotions (Акции) */
.primary-nav .menu li.menu-item-sale > a,
.drawer-menu li.menu-item-sale > a {
  color: var(--orange) !important;
  font-weight: 800;
}
.primary-nav .menu li.menu-item-sale > a:hover {
  filter: brightness(1.1);
}

/* Dropdown styling */
.primary-nav .menu li.menu-item-has-children > a {
  padding-right: 1.25rem;
}
.primary-nav .menu li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s;
}
.primary-nav .menu li.menu-item-has-children:hover > a::after {
  transform: translateY(-20%) rotate(-135deg);
}

.primary-nav .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border: 1px solid rgba(11, 47, 74, 0.08);
  box-shadow: 0 10px 30px rgba(11, 47, 74, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0;
  min-width: 260px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 100;
}
.primary-nav .menu li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.primary-nav .menu .sub-menu li {
  width: 100%;
}
.primary-nav .menu .sub-menu a {
  padding: 0.6rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--graphite);
}
.primary-nav .menu .sub-menu a:hover {
  background: var(--light-aqua);
  color: var(--aqua);
}

/* Mobile Menu Drawer Styles */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  visibility: hidden;
  transition: visibility 0.3s;
}
.mobile-menu-drawer.is-open {
  visibility: visible;
}
.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 47, 74, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu-drawer.is-open .drawer-overlay {
  opacity: 1;
}
.drawer-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--white);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.mobile-menu-drawer.is-open .drawer-content {
  right: 0;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(11, 47, 74, 0.06);
}
.drawer-close {
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.drawer-close:hover {
  background: var(--light-aqua);
  color: var(--aqua);
}
.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.drawer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.drawer-menu > li {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(11, 47, 74, 0.04);
}
.drawer-menu > li:last-child {
  border-bottom: none;
}
.drawer-menu a {
  display: block;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.75rem 0;
  transition: color 0.2s;
}
.drawer-menu a:hover {
  color: var(--aqua);
}

/* Drawer Submenu Styles */
.drawer-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-item-row a {
  flex: 1;
}
.drawer-toggle-sub {
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.drawer-toggle-sub:hover {
  color: var(--aqua);
}
.drawer-sub-menu {
  list-style: none;
  padding: 0 0 0.75rem 1rem;
  margin: 0;
  display: none;
  border-left: 2px solid var(--light-aqua);
}
.drawer-item-has-children.is-active .drawer-sub-menu {
  display: block;
}
.drawer-sub-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  color: var(--graphite);
}
.drawer-sub-menu a:hover {
  color: var(--aqua);
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(11, 47, 74, 0.06);
  background: var(--light-aqua);
}
.drawer-phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  margin-bottom: 0.25rem;
}
.drawer-hours {
  font-size: 0.8rem;
  color: var(--graphite);
  margin: 0 0 1rem 0;
}
.drawer-socials {
  display: flex;
  gap: 0.75rem;
}
.drawer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  transition: background 0.2s, color 0.2s;
}
.drawer-socials a.wa:hover { background: #25D366; color: #fff; }
.drawer-socials a.tg:hover { background: #24A1DE; color: #fff; }
.drawer-socials a.vk:hover { background: #0077FF; color: #fff; }
.drawer-socials a.max:hover { background: #E60000; color: #fff; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }

/* Inner pages */
.page-hero { margin-bottom: 2rem; }
.page-intro { font-size: 1.05rem; max-width: 60ch; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.split-section.reverse .split-copy { order: 2; }
.split-section.reverse .split-media { order: 1; }
.split-media { display: grid; gap: 1rem; }
.prose ul { padding-left: 1.2rem; }

/* Footer */
.site-footer { background: var(--graphite); color: rgba(255,255,255,.85); padding-top: 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; }
.footer-grid h3 { color: var(--white); margin-top: 0; font-size: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .4rem; }
.footer-grid a { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1rem 0 1.5rem; margin-top: 2rem; font-size: .85rem; }
.footer-legal-note { font-size: .75rem; opacity: .7; margin-top: .75rem; }

/* Cookie + mobile CTA */
.cookie-banner { display: none !important; }
.footer-cookie-settings {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255,255,255,.75);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-cookie-settings:hover { color: #fff; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.mobile-sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: none; gap: .5rem; padding: .65rem 1rem;
  background: rgba(255,255,255,.96); border-top: 1px solid rgba(11,47,74,.08);
}
.mobile-sticky-cta .btn { flex: 1; }

.scroll-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 160;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(11, 47, 74, 0.08);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.scroll-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.scroll-to-top:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .hero-grid, .baby-pool-grid, .split-section, .contact-grid { grid-template-columns: 1fr; }
  .hero-img-accent { position: static; width: 60%; margin-top: -2rem; margin-left: auto; }
  .split-section.reverse .split-copy, .split-section.reverse .split-media { order: unset; }
}
@media (max-width: 991px) {
  .site-main h1,
  .site-main h2,
  .site-main h3,
  .site-main p,
  .site-main li,
  .site-footer p,
  .hero-lead,
  .section-desc,
  .service-card p {
    text-wrap: pretty;
    hanging-punctuation: first last;
  }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .primary-nav { display: none !important; }
  .header-cta { display: none !important; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 4.5rem; }
  .scroll-to-top { right: 1rem; bottom: 5.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-animate] { opacity: 1 !important; transform: none !important; }
}

/* App Download section */
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--aqua); color: var(--white); }
.app-feature-box {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  margin: 1.5rem auto;
  max-width: 540px;
  text-align: left;
  border: 1px solid rgba(11,47,74,.06);
  box-shadow: var(--shadow-soft);
}
.app-features-list {
  padding-left: 1.25rem;
  margin: 0.5rem 0 0;
}
.app-features-list li {
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.app-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Detailed Team Page */
.team-filters-wrapper {
  margin-bottom: 2.5rem;
  overflow-x: auto;
  padding-bottom: .5rem;
  scrollbar-width: none;
}
.team-filters-wrapper::-webkit-scrollbar { display: none; }
.team-filters {
  display: flex;
  gap: .75rem;
  white-space: nowrap;
}
.filter-btn {
  background: var(--light);
  color: var(--navy);
  border: 0;
  padding: .65rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  transition: .2s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
}

.team-card-detailed {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11,47,74,.06);
  transition: .25s ease;
}
.team-card-detailed:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 47, 74, 0.12);
}
.team-card-img-wrap {
  width: 260px;
  flex-shrink: 0;
  position: relative;
  background: var(--light);
}
.team-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.team-card-content h3 {
  margin: 0 0 .35rem;
  color: var(--navy);
  font-size: 1.35rem;
}
.team-card-role {
  font-weight: 700;
  color: var(--aqua);
  margin: 0 0 .75rem;
  font-size: .95rem;
}
.team-card-exp {
  font-size: .9rem;
  margin: 0 0 1.25rem;
  color: rgba(29,39,48,.8);
}
.team-card-directions {
  margin-bottom: 1.5rem;
  flex: 1;
}
.team-card-directions h4 {
  margin: 0 0 .5rem;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(29,39,48,.5);
}
.team-card-directions ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .35rem .75rem;
}
.team-card-directions li {
  font-size: .9rem;
  position: relative;
  padding-left: .85rem;
  color: var(--graphite);
}
.team-card-directions li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--aqua);
}
.team-card-content .btn-more-trainer {
  align-self: flex-start;
  margin-top: auto;
}

/* Trainer Modal */
.trainer-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.trainer-modal[hidden] { display: none !important; }
.trainer-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,47,74,.65);
  backdrop-filter: blur(8px);
}
.trainer-modal-container {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 840px;
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  animation: modalFadeIn .3s ease;
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.trainer-modal-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  background: var(--light);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: .2s;
  z-index: 20;
}
.trainer-modal-close:hover {
  background: var(--orange);
  color: var(--white);
}
.trainer-modal-body {
  padding: 2.5rem;
}
.modal-trainer-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}
.modal-trainer-visual img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.modal-trainer-info h2 {
  margin: 0 0 .5rem;
  color: var(--navy);
  font-size: 2rem;
  letter-spacing: -.02em;
}
.modal-trainer-role {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--aqua);
  margin: 0 0 .5rem;
}
.modal-trainer-exp {
  font-size: .95rem;
  color: rgba(29,39,48,.8);
  margin: 0 0 1.5rem;
}
.modal-trainer-prose h4 {
  margin: 1.5rem 0 .5rem;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
}
.modal-trainer-prose ul {
  padding-left: 1.1rem;
  margin: 0;
}
.modal-trainer-prose li {
  font-size: .95rem;
  margin-bottom: .35rem;
  color: var(--graphite);
}

@media (max-width: 768px) {
  .team-card-detailed {
    flex-direction: column;
  }
  .team-card-img-wrap {
    width: 100%;
    aspect-ratio: 4/3.1;
  }
  .team-card-img-wrap img {
    object-position: top !important;
  }
  .team-card-directions ul,
  .team-directions-short ul {
    grid-template-columns: 1fr;
  }
  .modal-trainer-grid {
    grid-template-columns: 1fr;
  }
  .modal-trainer-visual {
    max-width: 240px;
    margin-inline: auto;
  }
  .trainer-modal-body {
    padding: 1.5rem;
  }
  .modal-trainer-info .btn-primary {
    width: 100% !important;
  }
}

/* Custom Page Styles — Gym, Banya, Group Training, Promotions, Vacancies */
.gym-hero {
  padding: clamp(5rem, 10vw, 10rem) 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
  position: relative;
}
.hero-container {
  max-width: 840px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.hero-tagline {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .85rem;
  font-weight: 700;
  color: var(--aqua);
}
.gym-hero h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.12;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -.02em;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 58ch;
  margin: 0 auto 1.5rem;
  line-height: 1.4;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-ctas .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.hero-ctas .btn-outline:hover {
  border-color: var(--aqua);
  color: var(--aqua);
  background: rgba(255,255,255,0.05);
}

.banya-features-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: .95rem;
  color: var(--aqua);
  margin-bottom: 1.5rem;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.zone-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 47, 74, 0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.zone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 47, 74, 0.12);
}
.zone-icon {
  color: var(--aqua);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  padding: .75rem;
  border-radius: 12px;
}
.zone-card h3 {
  margin: 0 0 .5rem;
  font-size: 1.2rem;
  color: var(--navy);
}
.zone-card p {
  margin: 0;
  font-size: .9rem;
  color: rgba(29, 39, 48, 0.75);
  line-height: 1.5;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
.visit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 47, 74, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.visit-card.featured {
  border: 2px solid var(--orange);
}
.visit-card .badge {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.visit-card-content h3 {
  margin: 0 0 .5rem;
  font-size: 1.35rem;
  color: var(--navy);
}
.visit-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--aqua);
  margin: .5rem 0 1rem;
}
.visit-price .price-unconfirmed {
  font-size: 1.25rem;
  color: var(--orange);
}
.visit-desc {
  font-size: .92rem;
  color: rgba(29, 39, 48, 0.78);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.visit-note {
  font-size: .8rem;
  color: rgba(29, 39, 48, 0.5);
  margin-bottom: 1rem;
}
.visit-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.visit-features li {
  font-size: .9rem;
  margin-bottom: .5rem;
  position: relative;
  padding-left: 1.25rem;
}
.visit-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-weight: 700;
}
.visit-card-footer {
  margin-top: auto;
}
.btn-full {
  width: 100%;
  text-align: center;
}

.team-directions-short {
  margin-bottom: 1.25rem;
}
.team-directions-short h4 {
  margin: 0 0 .35rem;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(29, 39, 48, 0.6);
}
.team-directions-short ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: .25rem .75rem;
}
@media (min-width: 769px) {
  .team-directions-short ul {
    grid-template-columns: 1fr 1fr;
  }
}
.team-directions-short li {
  font-size: .85rem;
  position: relative;
  padding-left: .75rem;
  color: var(--graphite);
}
.team-directions-short li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--aqua);
  font-weight: 900;
}

.banya-info-card {
  padding: 2.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}
.safety-box {
  padding: 1.5rem;
  background: #FFF5F5;
  border-left: 4px solid #E53E3E;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.promo-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 47, 74, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
  position: relative;
}
.promo-card:hover {
  transform: translateY(-4px);
}
.promo-card-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.promo-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-card--pilates .promo-card-img-wrap img {
  object-position: center 70%;
  transform: scale(1.15);
  transform-origin: center 70%;
}
.promo-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 999px;
  text-transform: uppercase;
}
.promo-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.promo-card-content h3 {
  margin: 0 0 .5rem;
  font-size: 1.2rem;
  color: var(--navy);
}
.promo-benefit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--aqua);
  margin-bottom: .75rem;
}
.promo-card-content p {
  margin: 0 0 1.25rem;
  font-size: .9rem;
  color: rgba(29, 39, 48, 0.75);
  line-height: 1.5;
}
.promo-card-actions {
  margin-top: auto;
}

/* Contacts Page Styles */
.contacts-hero {
  padding: 5rem 0;
  text-align: center;
}
.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-aqua);
  color: var(--aqua);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-text h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 700;
}
.contact-text p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--graphite);
  line-height: 1.6;
}
.contact-text strong {
  color: var(--navy);
}
.contact-socials-block h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* Premium Photo Galleries */
.gym-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16/10;
  background: var(--navy);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
}
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 47, 74, 0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(11, 47, 74, 0.15);
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox Modal Styles */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 47, 74, 0.95);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-modal.is-open .lightbox-img {
  transform: scale(1);
}
.lightbox-caption {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1rem;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: 0;
  color: var(--white);
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s ease, color 0.2s ease;
}
.lightbox-close:hover {
  color: var(--aqua);
  transform: scale(1.1);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lightbox-nav:hover {
  background: var(--aqua);
  border-color: var(--aqua);
}
.lightbox-nav.prev {
  left: -70px;
}
.lightbox-nav.next {
  right: -70px;
}

@media (max-width: 991px) {
  .lightbox-nav.prev {
    left: 10px;
    background: rgba(11, 47, 74, 0.6);
  }
  .lightbox-nav.next {
    right: 10px;
    background: rgba(11, 47, 74, 0.6);
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
    background: rgba(11, 47, 74, 0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }
}

/* Mobile Call Button in Header */
.mobile-call-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--aqua);
    color: var(--white) !important;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: 0.25rem;
    box-shadow: 0 4px 12px rgba(22, 182, 200, 0.3);
    transition: transform 0.2s, background 0.2s;
    flex-shrink: 0;
  }
  .mobile-call-btn:active {
    transform: scale(0.92);
    background: var(--navy);
  }
}

/* Horizontal Scrollable Gallery Strip (Homepage) */
.section-gallery-strip {
  padding: 3rem 0;
  overflow: hidden;
  background: var(--white);
}
.gallery-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.gallery-header-row .section-header {
  margin-bottom: 0;
  text-align: left !important;
}
.gallery-nav-buttons {
  display: flex;
  gap: 0.75rem;
}
.gallery-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--light);
  color: var(--navy);
  border: 1px solid rgba(11, 47, 74, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}
.gallery-nav-btn:hover {
  background: var(--aqua);
  color: var(--white);
  border-color: var(--aqua);
  transform: scale(1.05);
}
.gallery-nav-btn:active {
  transform: scale(0.95);
}
.gallery-strip-container {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem;
  scroll-behavior: smooth;
}
.gallery-strip-container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.gallery-strip-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding-bottom: 1rem;
}
.gallery-strip-item {
  scroll-snap-align: start;
  position: relative;
  width: clamp(280px, 45vw, 480px);
  height: clamp(240px, 35vw, 360px);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.25rem 1.25rem;
  background: linear-gradient(to top, rgba(11, 47, 74, 0.85) 0%, transparent 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  transition: padding-bottom 0.3s ease;
}
.gallery-strip-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(11, 47, 74, 0.12);
}
.gallery-strip-item:hover img {
  transform: scale(1.04);
}

/* Club Video Overview Section */
.section-video-overview {
  padding: 5rem 0;
  background: var(--navy);
  color: var(--white);
}
.section-video-overview .btn-primary {
  color: var(--white) !important;
}
.video-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.video-overview-copy h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
  margin: 0.5rem 0 1.25rem;
  letter-spacing: -0.02em;
}
.video-overview-copy .lead-text {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}
.video-overview-copy p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
}
.video-container-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
  max-width: 480px; /* Limit horizontal width to make it more vertical/portrait */
  margin: 0 auto;
}
.video-container-wrapper video {
  width: 100%;
  aspect-ratio: 3/4; /* Make it vertical (portrait ratio) */
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .video-overview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* GEO facts strip — address, hours, prices, phone */
.front-page .hero.section {
  padding-bottom: 4.25rem;
}
.geo-facts-band {
  background: var(--light);
  padding: 0;
  margin: 0;
}
.geo-facts-wrap {
  margin-top: -3.75rem;
  margin-bottom: 0;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}
.front-page #services.section-light {
  padding-top: clamp(2rem, 4vw, 3.25rem);
}
.geo-facts {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 47, 74, 0.06);
  padding: 1.35rem 1.5rem;
}
.geo-facts-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.geo-facts-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.geo-facts-icon {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 107, 242, 0.1);
  color: var(--aqua);
}
.geo-facts-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}
.geo-facts-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(42, 52, 64, 0.55);
}
.geo-facts-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}
.geo-facts-value a {
  color: inherit;
  text-decoration: none;
}
.geo-facts-value a:hover {
  color: var(--aqua);
}
@media (min-width: 768px) {
  .geo-facts {
    padding: 1.5rem 1.75rem;
  }
  .geo-facts-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
  }
}

/* Contacts Socials Grid - Fits in one row on mobile */
.contacts-socials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 480px) {
  .contacts-socials-grid {
    flex-wrap: nowrap !important;
    gap: 0.25rem !important;
  }
  .contacts-socials-grid .btn-sm {
    padding: 0.55rem 0.35rem !important;
    font-size: 0.75rem !important;
    flex: 1 !important;
    text-align: center !important;
    min-width: 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* Mobile full-width stacked buttons for hero actions to prevent sticking */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.75rem !important;
    width: 100% !important;
  }
  .hero-actions .btn {
    width: 100% !important;
    margin: 0 !important;
  }
}







