/* ==========================================================================
   NAVIGATION STYLES — GKSC Theme
   Dark B2B industrial site: white/gray palette on dark backgrounds.
   Teal (#40C4FF) is used ONLY for CTA buttons — nowhere else.
   ========================================================================== */


/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  --nav-bg: #0e1013;
  --nav-panel: #12151a;
  --nav-line: rgba(255, 255, 255, 0.06);
  --nav-text: #e7ecf3;
  --nav-soft: #94a3b8;
  --nav-dim: #64748b;
  --nav-accent: #40C4FF;
  --nav-hover: #ffffff;
  --nav-radius: 8px;
  --nav-transition: 200ms ease;
}


/* ==========================================================================
   2. TOP BAR
   ========================================================================== */

.topbar {
  height: 32px;
  background: #0a0c0f;
  font-size: 13px;
  color: var(--nav-dim);
  transition: transform 300ms ease;
  white-space: nowrap;
  overflow: hidden;
}

.topbar--hidden {
  transform: translateY(-100%);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  white-space: nowrap;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.topbar a {
  color: var(--nav-dim);
  text-decoration: none;
  transition: color var(--nav-transition);
}

.topbar a:hover {
  color: var(--nav-soft);
}

.topbar__divider {
  color: var(--nav-dim);
  user-select: none;
}

.topbar__phone {
  color: var(--nav-soft);
}

.topbar__phone a {
  color: var(--nav-soft);
}

.topbar__phone a:hover {
  color: var(--nav-hover);
}


/* ==========================================================================
   3. MAIN HEADER
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(14, 16, 19, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-line);
  transition: height 300ms ease, box-shadow 300ms ease;
}

.site-header--compact {
  height: 56px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}


/* --------------------------------------------------------------------------
   3a. Logo
   -------------------------------------------------------------------------- */

.site-header__logo {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__logo-img {
  width: 36px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text__name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.logo-text__slogan {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #94a3b8;
  line-height: 1.3;
}


/* ==========================================================================
   4. MAIN NAV
   ========================================================================== */

.main-nav {
  display: none;
}

.main-nav__list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav__item {
  position: relative;
}

.main-nav__item > a {
  color: var(--nav-soft);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--nav-transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}

.main-nav__item > a:hover {
  color: var(--nav-hover);
}

/* Active / current page — white text + 2px white bottom bar */
.main-nav__item.is-current > a {
  color: var(--nav-hover);
}

.main-nav__item.is-current > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--nav-hover);
  border-radius: 1px;
}

/* Chevron for dropdowns */
.nav-chevron {
  width: 10px;
  height: 10px;
  margin-left: 2px;
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.main-nav__item.is-open .nav-chevron {
  transform: rotate(180deg);
}


/* ==========================================================================
   5. HEADER RIGHT
   ========================================================================== */

.site-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Phone circle button */
.site-header__phone {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--nav-line);
  background: transparent;
  color: var(--nav-soft);
  text-decoration: none;
  transition: border-color var(--nav-transition), color var(--nav-transition);
  flex-shrink: 0;
  cursor: pointer;
}

.site-header__phone:hover {
  border-color: var(--nav-hover);
  color: var(--nav-hover);
}

.site-header__phone svg {
  width: 18px;
  height: 18px;
}

/* CTA button — THE ONLY teal element */
.site-header__cta {
  display: none;
  background: linear-gradient(135deg, #40C4FF, #339FCC);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.site-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(64, 196, 255, 0.25);
}

/* Burger / Hamburger button */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  z-index: 1001;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  transition: all 300ms ease;
  border-radius: 1px;
}

/* Active / open state — X animation */
.burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger--active span:nth-child(2) {
  opacity: 0;
}

.burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* ==========================================================================
   6. MEGA MENU
   ========================================================================== */

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--nav-panel);
  border: 1px solid var(--nav-line);
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 100;
}

/* Open state */
.mega-menu.is-open,
.main-nav__item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}


/* --------------------------------------------------------------------------
   6a. Mega Menu Grid
   -------------------------------------------------------------------------- */

.mega-menu__grid {
  display: grid;
  gap: 0;
}

.mega-menu__grid--3plus {
  grid-template-columns: 1fr 1fr 1fr 220px;
}

.mega-menu__grid--2plus {
  grid-template-columns: 1fr 1fr 220px;
}


/* --------------------------------------------------------------------------
   6b. Mega Menu Column
   -------------------------------------------------------------------------- */

.mega-menu__col {
  padding: 24px;
}

.mega-menu__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

/* Heading — 11px uppercase, white/light color, NOT teal */
.mega-menu__heading {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--nav-text);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--nav-line);
  margin-bottom: 12px;
  text-decoration: none;
  transition: color 150ms ease;
}

a.mega-menu__heading:hover,
.mega-menu__heading:hover {
  color: var(--nav-hover);
}

/* Menu links — gray → white on hover + translateX(4px) */
.mega-menu__col ul li a {
  display: block;
  color: var(--nav-soft);
  font-size: 14px;
  font-weight: 400;
  padding: 6px 0;
  transition: color 150ms ease, transform 150ms ease;
  text-decoration: none;
}

.mega-menu__col ul li a:hover {
  color: var(--nav-hover);
  transform: translateX(4px);
}

/* "Show all" link */
.mega-menu__all {
  display: block;
  margin-top: 12px;
  color: var(--nav-soft);
  font-size: 13px;
  text-decoration: none;
  transition: color 150ms ease;
}

.mega-menu__all:hover {
  color: var(--nav-hover);
}


/* --------------------------------------------------------------------------
   6c. Mega Menu CTA Sidebar
   -------------------------------------------------------------------------- */

.mega-menu__cta {
  background: var(--nav-bg);
  border-left: 1px solid var(--nav-line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border-radius: 0 12px 12px 0;
}

.mega-menu__cta-inner {
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mega-menu__cta-icon {
  color: var(--nav-soft);
  margin-bottom: 4px;
}

.mega-menu__cta-icon svg {
  color: var(--nav-soft);
}

.mega-menu__cta-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--nav-hover);
}

.mega-menu__cta-desc {
  font-size: 13px;
  color: var(--nav-soft);
  line-height: 1.4;
}

.mega-menu__cta-btn {
  display: inline-block;
  margin-top: 16px;
  background: linear-gradient(135deg, #40C4FF, #339FCC);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
  border: none;
  cursor: pointer;
}

.mega-menu__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(64, 196, 255, 0.25);
}


/* ==========================================================================
   7. DROPDOWN MENU (simple, non-mega)
   ========================================================================== */

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--nav-panel);
  border: 1px solid var(--nav-line);
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 100;
}

/* Open state */
.dropdown-menu.is-open,
.main-nav__item.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--nav-soft);
  font-size: 14px;
  transition: background 200ms ease, color 200ms ease;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--nav-hover);
}


/* ==========================================================================
   8. MOBILE NAVIGATION
   ========================================================================== */

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: var(--nav-bg);
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav--open {
  transform: translateX(0);
  visibility: visible;
}


/* --------------------------------------------------------------------------
   8a. Mobile Nav Container
   -------------------------------------------------------------------------- */

.mobile-nav__container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 72px 0 32px;
}


/* --------------------------------------------------------------------------
   8b. Mobile Nav Pages (slide-based sub-navigation)
   -------------------------------------------------------------------------- */

.mobile-nav__page {
  position: absolute;
  inset: 0;
  padding: 80px 20px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
              visibility 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav__page.is-active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav__page.is-past {
  transform: translateX(-30%);
  opacity: 0;
  visibility: hidden;
}


/* --------------------------------------------------------------------------
   8c. Mobile Nav Back Button
   -------------------------------------------------------------------------- */

.mobile-nav__back {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nav-soft);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--nav-line);
  background: none;
  cursor: pointer;
  width: 100%;
  margin-bottom: 8px;
  text-align: left;
}

.mobile-nav__back:hover {
  color: var(--nav-hover);
}


/* --------------------------------------------------------------------------
   8d. Mobile Nav List & Items
   -------------------------------------------------------------------------- */

.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.mobile-nav__item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--nav-line);
}

.mobile-nav__link {
  flex: 1;
  display: block;
  padding: 14px 0;
  color: var(--nav-soft);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--nav-transition);
}

.mobile-nav__link:hover {
  color: var(--nav-hover);
}

.mobile-nav__link--all {
  color: var(--nav-dim);
  font-size: 14px;
}

.mobile-nav__link--all:hover {
  color: var(--nav-soft);
}


/* --------------------------------------------------------------------------
   8e. Mobile Nav Arrow
   -------------------------------------------------------------------------- */

.mobile-nav__arrow {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-dim);
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--nav-transition);
}

.mobile-nav__arrow:hover {
  color: var(--nav-soft);
}


/* --------------------------------------------------------------------------
   8f. Mobile Nav Contacts
   -------------------------------------------------------------------------- */

.mobile-nav__contacts {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--nav-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav__contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nav-dim);
  font-size: 14px;
  text-decoration: none;
  padding: 10px 0;
  transition: color var(--nav-transition);
}

.mobile-nav__contacts a:hover {
  color: var(--nav-hover);
}

.mobile-nav__contact-phone {
  color: var(--nav-soft);
  font-weight: 600;
}

.mobile-nav__contact-phone a {
  color: var(--nav-soft);
  font-weight: 600;
}

.mobile-nav__contact-phone a:hover {
  color: var(--nav-hover);
}


/* --------------------------------------------------------------------------
   8g. Mobile Nav CTA Button
   -------------------------------------------------------------------------- */

.mobile-nav__cta-btn {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 14px 0;
  width: 100%;
  background: linear-gradient(135deg, #40C4FF, #339FCC);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
  border: none;
  cursor: pointer;
}

.mobile-nav__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(64, 196, 255, 0.25);
}


/* ==========================================================================
   9. FLOATING CTA
   ========================================================================== */

.floating-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, #40C4FF, #339FCC);
  color: #fff;
  border-radius: 12px;
  padding: 14px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(64, 196, 255, 0.3);
  transition: transform 250ms ease, box-shadow 250ms ease;
  border: none;
  cursor: pointer;
}

.floating-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(64, 196, 255, 0.35);
}


/* ==========================================================================
   10. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--nav-bg);
  padding: 64px 0 32px;
  border-top: 1px solid var(--nav-line);
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--nav-line);
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-footer__desc {
  max-width: 400px;
  font-size: 14px;
  color: var(--nav-dim);
  line-height: 1.6;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0;
}

/* Footer headings — white/light, uppercase, NOT teal */
.site-footer__heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--nav-text);
  margin-bottom: 16px;
}

.site-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}

/* Footer links — gray → white on hover */
.site-footer__links li a {
  display: block;
  color: var(--nav-soft);
  font-size: 14px;
  padding: 4px 0;
  text-decoration: none;
  transition: color var(--nav-transition);
}

.site-footer__links li a:hover {
  color: var(--nav-hover);
}

.site-footer__links-all a {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  color: var(--nav-dim);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--nav-transition);
}

.site-footer__links-all a:hover {
  color: var(--nav-soft);
}

/* Footer contacts bar */
.site-footer__contacts-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--nav-line);
  border-bottom: 1px solid var(--nav-line);
}

.site-footer__contact {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.site-footer__contact svg {
  color: var(--nav-dim);
  flex-shrink: 0;
  margin-top: 2px;
}

.site-footer__contact a {
  color: var(--nav-soft);
  text-decoration: none;
  transition: color var(--nav-transition);
}

.site-footer__contact a:hover {
  color: var(--nav-hover);
}

.site-footer__contact-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--nav-dim);
  margin-bottom: 2px;
}

/* Footer bottom bar */
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
}

.site-footer__bottom p {
  font-size: 13px;
  color: var(--nav-dim);
  line-height: 1.5;
  margin: 0;
}

.site-footer__bottom-nav {
  display: flex;
  gap: 24px;
}

.site-footer__bottom-nav a {
  color: var(--nav-dim);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--nav-transition);
}

.site-footer__bottom-nav a:hover {
  color: var(--nav-soft);
}


/* ==========================================================================
   11. BREADCRUMBS
   ========================================================================== */

.breadcrumbs {
  background: var(--nav-panel);
  border-bottom: 1px solid var(--nav-line);
  padding: 12px 0;
  font-size: 13px;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--nav-dim);
}

.breadcrumbs__item:not(:last-child)::after {
  content: '>';
  margin-left: 4px;
  color: var(--nav-dim);
}

.breadcrumbs__item a {
  color: var(--nav-soft);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--nav-transition);
}

.breadcrumbs__item a:hover {
  color: var(--nav-hover);
}

.breadcrumbs__item:last-child span {
  color: var(--nav-hover);
  font-weight: 500;
}


/* ==========================================================================
   12. MOBILE CTA BAR
   ========================================================================== */

.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  gap: 8px;
  padding: 8px;
  z-index: 997;
  background: var(--nav-bg);
  border-top: 1px solid var(--nav-line);
}

.mobile-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 200ms ease;
}

.mobile-cta__btn:active {
  opacity: 0.85;
}

.mobile-cta__call {
  background: #0f3460;
}

.mobile-cta__kp {
  background: linear-gradient(135deg, #40C4FF, #339FCC);
}


/* ==========================================================================
   13. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* ---- Mobile & Tablet (< 1024px) ---- */
@media (max-width: 1023px) {
  .topbar {
    display: none;
  }

  .main-nav {
    display: none !important;
  }

  .site-header__cta {
    display: none !important;
  }

  .site-header {
    height: 56px;
  }

  .burger {
    display: flex;
  }

  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 68px;
  }

  .floating-cta {
    display: none !important;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Desktop (>= 1024px) ---- */
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
  }

  .site-header__cta {
    display: inline-flex;
  }

  .burger {
    display: none !important;
  }

  .mobile-nav {
    display: none !important;
  }

  .mobile-cta {
    display: none !important;
  }

  .floating-cta {
    display: none !important;
  }
}

/* ---- Small Tablet / Large Phone (< 768px) ---- */
@media (max-width: 767px) {
  .floating-cta {
    display: none !important;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__contacts-bar {
    flex-direction: column;
  }
}

/* ---- Small Phone (< 480px) ---- */
@media (max-width: 479px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__bottom-nav {
    flex-direction: column;
    align-items: center;
  }
}


/* ==========================================================================
   14. ACCESSIBILITY
   ========================================================================== */

/* Focus-visible outlines for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--nav-hover);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
