/* ========================================
   ABS HEADER STYLES - Centered Logo Layout
   ======================================== */

/* ============================================
   HEADER CONTAINER
   ============================================ */
.abs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: #0a2540;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  /* Only transition specific properties, NOT background (prevents flash on page load) */
  transition: box-shadow 0.3s ease;
}

/* Index Page: Transparent header with smooth scroll transition */
body.index-page .abs-header,
body[data-page="index"] .abs-header {
  position: fixed;
  background: transparent;
  box-shadow: none;
  border-bottom: none;
  /* Enable background transition for scroll effect on index page */
  transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

/* ============================================
   HEADER CONTAINER LAYOUT - Centered Logo (CSS Grid)
   ============================================ */
.abs-header-container {
  max-width: 100%;
  margin: 0;
  padding: 14px 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  transition: padding 0.3s ease;
}

/* Index page spacing */
body.index-page .abs-header-container,
body[data-page="index"] .abs-header-container {
  padding: 14px 80px;
}

/* ============================================
   NAVIGATION - Left & Right
   ============================================ */
.abs-nav-left,
.abs-nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.abs-nav-left {
  justify-content: flex-end;
}

.abs-nav-right {
  justify-content: flex-start;
}

/* Nav Links - Default (Dark header - white text) */
.abs-nav-left a,
.abs-nav-right a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  padding: 8px 0;
  position: relative;
}

.abs-nav-left a:not(.abs-cta-button)::after,
.abs-nav-right a:not(.abs-cta-button)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.abs-nav-left a:not(.abs-cta-button):hover::after,
.abs-nav-right a:not(.abs-cta-button):hover::after {
  width: 100%;
}

.abs-nav-left a:hover,
.abs-nav-right a:hover {
  color: #ffffff !important;
}

/* Nav Links - Index page (transparent - white text) */
body.index-page .abs-nav-left a,
body.index-page .abs-nav-right a,
body[data-page="index"] .abs-nav-left a,
body[data-page="index"] .abs-nav-right a {
  color: #ffffff;
}

body.index-page .abs-nav-left a:not(.abs-cta-button)::after,
body.index-page .abs-nav-right a:not(.abs-cta-button)::after,
body[data-page="index"] .abs-nav-left a:not(.abs-cta-button)::after,
body[data-page="index"] .abs-nav-right a:not(.abs-cta-button)::after {
  background: #ffffff;
}

body.index-page .abs-nav-left a:hover,
body.index-page .abs-nav-right a:hover,
body[data-page="index"] .abs-nav-left a:hover,
body[data-page="index"] .abs-nav-right a:hover {
  color: #ffffff !important;
}

/* ============================================
   LOGO - Center
   ============================================ */
.abs-logo-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.abs-logo-center img {
  height: 65px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

/* Logo switching - Default shows white logo (dark header) */
.abs-logo-center .logo-light {
  display: block;
}

.abs-logo-center .logo-dark {
  display: none;
}

/* Index page shows light (white) logo */
body.index-page .abs-logo-center .logo-light,
body[data-page="index"] .abs-logo-center .logo-light {
  display: block;
}

body.index-page .abs-logo-center .logo-dark,
body[data-page="index"] .abs-logo-center .logo-dark {
  display: none;
}

/* ============================================
   CTA BUTTON
   ============================================ */
.abs-cta-button {
  padding: 12px 28px !important;
  background: linear-gradient(135deg, #075CAD 0%, #0869c4 100%) !important;
  color: #ffffff !important;
  border-radius: 6px;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.3px !important;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(7, 92, 173, 0.35);
}

.abs-cta-button:hover {
  background: linear-gradient(135deg, #0869c4 0%, #075CAD 100%) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(7, 92, 173, 0.4);
}

.abs-cta-button::after {
  display: none !important;
}

/* Index page CTA */
body.index-page .abs-cta-button,
body[data-page="index"] .abs-cta-button {
  background: linear-gradient(135deg, #075CAD 0%, #0869c4 100%) !important;
  border: none;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(7, 92, 173, 0.35);
}

body.index-page .abs-cta-button:hover,
body[data-page="index"] .abs-cta-button:hover {
  background: linear-gradient(135deg, #0869c4 0%, #075CAD 100%) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(7, 92, 173, 0.4);
}

/* ============================================
   SHRUNK STATE (Non-index pages on scroll)
   ============================================ */
.abs-header.shrunk .abs-header-container {
  padding: 10px 80px;
  transition: padding 0.3s ease;
}

.abs-header.shrunk .abs-logo-center img {
  height: 60px;
  transition: height 0.3s ease;
}

@media (max-width: 1440px) {
  .abs-header.shrunk .abs-header-container {
    padding: 12px 60px;
  }
  .abs-header.shrunk .abs-logo-center img {
    height: 58px;
  }
}

@media (max-width: 1200px) {
  .abs-header.shrunk .abs-header-container {
    padding: 12px 40px;
  }
  .abs-header.shrunk .abs-logo-center img {
    height: 52px;
  }
}

@media (max-width: 1024px) {
  .abs-header.shrunk .abs-header-container {
    padding: 10px 30px;
  }
  .abs-header.shrunk .abs-logo-center img {
    height: 45px;
  }
}

/* ============================================
   SCROLLED STATE (Index page)
   ============================================ */
body.index-page .abs-header.scrolled,
body[data-page="index"] .abs-header.scrolled {
  position: fixed;
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* When scrolled on index, switch to dark styling */
body.index-page .abs-header.scrolled .abs-nav-left a,
body.index-page .abs-header.scrolled .abs-nav-right a,
body[data-page="index"] .abs-header.scrolled .abs-nav-left a,
body[data-page="index"] .abs-header.scrolled .abs-nav-right a {
  color: var(--secondary);
}

body.index-page .abs-header.scrolled .abs-nav-left a:not(.abs-cta-button)::after,
body.index-page .abs-header.scrolled .abs-nav-right a:not(.abs-cta-button)::after,
body[data-page="index"] .abs-header.scrolled .abs-nav-left a:not(.abs-cta-button)::after,
body[data-page="index"] .abs-header.scrolled .abs-nav-right a:not(.abs-cta-button)::after {
  background: var(--primary);
}

body.index-page .abs-header.scrolled .abs-nav-left a:hover,
body.index-page .abs-header.scrolled .abs-nav-right a:hover,
body[data-page="index"] .abs-header.scrolled .abs-nav-left a:hover,
body[data-page="index"] .abs-header.scrolled .abs-nav-right a:hover {
  color: var(--secondary) !important;
}

/* Scrolled logo - show dark version */
body.index-page .abs-header.scrolled .abs-logo-center .logo-light,
body[data-page="index"] .abs-header.scrolled .abs-logo-center .logo-light {
  display: none;
}

body.index-page .abs-header.scrolled .abs-logo-center .logo-dark,
body[data-page="index"] .abs-header.scrolled .abs-logo-center .logo-dark {
  display: block;
}

/* Scrolled CTA */
body.index-page .abs-header.scrolled .abs-cta-button,
body[data-page="index"] .abs-header.scrolled .abs-cta-button {
  background: linear-gradient(135deg, #075CAD 0%, #0869c4 100%) !important;
  border: none;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(7, 92, 173, 0.35);
}

body.index-page .abs-header.scrolled .abs-cta-button:hover,
body[data-page="index"] .abs-header.scrolled .abs-cta-button:hover {
  background: linear-gradient(135deg, #0869c4 0%, #075CAD 100%) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(7, 92, 173, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop */
@media (max-width: 1440px) {
  .abs-header-container {
    padding: 18px 60px;
  }

  body.index-page .abs-header-container,
  body[data-page="index"] .abs-header-container {
    padding: 22px 60px;
  }

  .abs-nav-left,
  .abs-nav-right {
    gap: 32px;
  }

  .abs-logo-center img {
    height: 75px;
  }
}

/* Medium Desktop */
@media (max-width: 1200px) {
  .abs-header-container {
    padding: 16px 40px;
  }

  body.index-page .abs-header-container,
  body[data-page="index"] .abs-header-container {
    padding: 20px 40px;
  }

  .abs-nav-left,
  .abs-nav-right {
    gap: 25px;
  }

  .abs-nav-left a,
  .abs-nav-right a {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .abs-logo-center img {
    height: 65px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .abs-header-container {
    padding: 14px 30px;
  }

  .abs-nav-left,
  .abs-nav-right {
    gap: 20px;
  }

  .abs-nav-left a,
  .abs-nav-right a {
    font-size: 0.8rem;
  }

  .abs-logo-center img {
    height: 55px;
  }

  .abs-cta-button {
    padding: 10px 20px !important;
    font-size: 0.8rem !important;
  }
}

/* Mobile - Stack Layout */
@media (max-width: 768px) {
  .abs-header-container {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
  }

  .abs-logo-center {
    order: -1;
    margin: 0;
  }

  .abs-logo-center img {
    height: 60px;
  }

  .abs-nav-left,
  .abs-nav-right {
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .abs-nav-left a,
  .abs-nav-right a {
    font-size: 0.85rem;
  }

  .abs-cta-button {
    padding: 10px 24px !important;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .abs-header-container {
    padding: 12px 15px;
    gap: 12px;
  }

  .abs-logo-center img {
    height: 50px;
  }

  .abs-nav-left,
  .abs-nav-right {
    flex-wrap: wrap;
    gap: 10px;
  }

  .abs-nav-left a,
  .abs-nav-right a {
    font-size: 0.75rem;
    letter-spacing: 0;
  }

  .abs-cta-button {
    padding: 8px 18px !important;
    font-size: 0.75rem !important;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.abs-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
}

.abs-skip-link:focus {
  top: 0;
}

/* Focus states */
.abs-nav-left a:focus-visible,
.abs-nav-right a:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

/* Focus on scrolled index (white header) */
body.index-page .abs-header.scrolled .abs-nav-left a:focus-visible,
body.index-page .abs-header.scrolled .abs-nav-right a:focus-visible,
body[data-page="index"] .abs-header.scrolled .abs-nav-left a:focus-visible,
body[data-page="index"] .abs-header.scrolled .abs-nav-right a:focus-visible {
  outline-color: var(--primary);
}

/* ============================================
   SERVICES DROPDOWN
   ============================================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.2s ease;
  padding: 8px 0;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  user-select: none;
}

.nav-dropdown-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown.active .nav-dropdown-trigger::after {
  width: 100%;
}

.dropdown-arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

/* Invisible bridge between trigger and menu to prevent hover gap */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

body .abs-header .nav-dropdown-menu a,
body .abs-header .nav-dropdown-menu a:link,
body .abs-header .nav-dropdown-menu a:visited,
body .abs-header .nav-dropdown-menu a:hover,
body .abs-header .nav-dropdown-menu a:active {
  display: block;
  padding: 10px 24px !important;
  color: #334155 !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
  text-decoration: none;
  transition: background 0.15s ease;
  white-space: nowrap;
}

body .abs-header .nav-dropdown-menu a::after {
  display: none !important;
}

body .abs-header .nav-dropdown-menu a:hover {
  background: #e2e8f0 !important;
}

/* Active service page indicator */
body .abs-header .nav-dropdown-menu a.active {
  color: #334155 !important;
  background: #e2e8f0 !important;
}

/* Index page scrolled state - dropdown adjustments */
body.index-page .abs-header.scrolled .nav-dropdown-trigger,
body[data-page="index"] .abs-header.scrolled .nav-dropdown-trigger {
  color: var(--secondary);
}

body.index-page .abs-header.scrolled .nav-dropdown-trigger::after,
body[data-page="index"] .abs-header.scrolled .nav-dropdown-trigger::after {
  background: var(--primary);
}

body.index-page .abs-header.scrolled .nav-dropdown-trigger:hover,
body[data-page="index"] .abs-header.scrolled .nav-dropdown-trigger:hover {
  color: var(--secondary);
}

/* Dropdown menu stays soft gray regardless of header state */

/* Dropdown trigger responsive sizing */
@media (max-width: 1200px) {
  .nav-dropdown-trigger {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 1024px) {
  .nav-dropdown-trigger {
    font-size: 0.8rem;
  }
}

/* Hide desktop dropdown on mobile */
@media (max-width: 768px) {
  .nav-dropdown {
    display: none !important;
  }
}

/* ============================================
   MOBILE SUBMENU (Services)
   ============================================ */
.mobile-submenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.mobile-submenu-trigger {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.mobile-submenu-trigger:hover {
  color: #60a5fa;
}

.mobile-submenu-trigger .dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.mobile-submenu.open .mobile-submenu-trigger .dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-submenu-items {
  display: none;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 4px 0 8px;
}

.mobile-submenu.open .mobile-submenu-items {
  display: flex;
}

.mobile-submenu-items a {
  font-size: 1rem !important;
  letter-spacing: 0.5px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 8px 24px !important;
}

.mobile-submenu-items a:hover {
  color: #60a5fa !important;
}

.mobile-submenu-items a.active {
  color: #60a5fa !important;
}

/* ============================================
   PHONE BUTTON - Default: Transparent with border glow on hover
   ============================================ */
.abs-cta-button.abs-cta-phone {
  background: transparent !important;
  background-color: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 600 !important;
  font-family: var(--font-heading) !important;
  letter-spacing: 0.5px !important;
}

.abs-cta-button.abs-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px);
}

/* Disable shine sweep on phone button */
.abs-cta-button.abs-cta-phone::before {
  display: none !important;
}

/* ============================================
   PHONE BUTTON - Index page: Frosted glass effect with blue border hover
   ============================================ */
body.index-page .abs-cta-button.abs-cta-phone,
body[data-page="index"] .abs-cta-button.abs-cta-phone {
  background: rgba(255, 255, 255, 0.15) !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
  border: 2px solid rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

body.index-page .abs-cta-button.abs-cta-phone:hover,
body[data-page="index"] .abs-cta-button.abs-cta-phone:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15) !important;
}

/* Phone button on scrolled index (white header) */
body.index-page .abs-header.scrolled .abs-cta-button.abs-cta-phone,
body[data-page="index"] .abs-header.scrolled .abs-cta-button.abs-cta-phone {
  background: rgba(10, 37, 64, 0.1) !important;
  border: 2px solid rgba(10, 37, 64, 0.25) !important;
  color: #0a2540 !important;
}

body.index-page .abs-header.scrolled .abs-cta-button.abs-cta-phone:hover,
body[data-page="index"] .abs-header.scrolled .abs-cta-button.abs-cta-phone:hover {
  background: rgba(10, 37, 64, 0.08) !important;
  border-color: rgba(10, 37, 64, 0.6) !important;
  color: #0a2540 !important;
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.15) !important;
}

/* ============================================
   HAMBURGER MENU - Mobile Only
   ============================================ */
.abs-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation to X */
.abs-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.abs-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.abs-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hamburger on scrolled index (white header) */
body.index-page .abs-header.scrolled .hamburger-line,
body[data-page="index"] .abs-header.scrolled .hamburger-line {
  background-color: #0a2540;
}

/* ============================================
   MOBILE NAVIGATION MENU
   ============================================ */
.abs-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: #0a2540;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.abs-mobile-nav.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.abs-mobile-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 24px;
  transition: color 0.2s ease;
}

.abs-mobile-nav a:hover {
  color: #60a5fa;
}

.abs-mobile-nav .mobile-phone {
  color: #60a5fa;
  font-weight: 600;
  margin-top: 10px;
}

.abs-mobile-nav .abs-cta-button {
  margin-top: 20px;
  padding: 14px 32px !important;
  background: linear-gradient(135deg, #075CAD 0%, #0869c4 100%) !important;
  color: #ffffff !important;
  font-size: 1rem !important;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(7, 92, 173, 0.35);
}

.abs-mobile-nav .abs-cta-button:hover {
  background: linear-gradient(135deg, #0869c4 0%, #075CAD 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(7, 92, 173, 0.4);
}

/* ============================================
   MOBILE RESPONSIVE - Show Hamburger
   ============================================ */
@media (max-width: 768px) {
  .abs-hamburger {
    display: flex;
  }

  .abs-nav-left,
  .abs-nav-right {
    display: none !important;
  }

  .abs-header-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    position: relative;
  }

  .abs-logo-center {
    margin: 0 auto;
  }

  .abs-logo-center img {
    height: 55px;
  }

  /* Prevent body scroll when menu is open */
  body.mobile-menu-open {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .abs-logo-center img {
    height: 55px;
  }

  .abs-hamburger {
    right: 15px;
  }
}
