.site-quote-actions {
  position: fixed;
  top: auto;
  bottom: 24px;
  right: 24px;
  z-index: 1005;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(21, 24, 21, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(17, 20, 17, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-quote-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-quote-actions a:hover {
  transform: translateY(-2px);
}

.site-quote-actions-primary {
  color: #fff;
  background: #151815;
  border: 1px solid #151815;
}

.site-quote-actions-primary:hover {
  color: #fff;
  background: #252a25;
  box-shadow: 0 14px 30px rgba(17, 20, 17, 0.2);
}

.site-quote-actions-secondary {
  color: #151815;
  background: #fff;
  border: 1px solid rgba(21, 24, 21, 0.16);
}

.site-quote-actions-secondary:hover {
  color: #151815;
  background: #f6f4ee;
}

@media (max-width: 768px) {
  .site-quote-actions {
    top: auto;
    bottom: 14px;
    right: 16px;
    left: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 6px;
    border-radius: 14px;
  }

  .site-quote-actions a {
    min-height: 46px;
    padding: 0 10px;
    font-size: 0.78rem;
    white-space: normal;
  }
}

@media (max-width: 991px) {
  .sub-navbar .sub-nav-link {
    justify-content: center;
    white-space: normal !important;
    text-align: center;
    line-height: 1.25;
  }

  body:has(#subNav.show) .site-quote-actions {
    display: none;
  }
}

@media (min-width: 992px) {
  .sub-navbar .sub-navbar-nav {
    flex-wrap: nowrap !important;
    gap: 6px !important;
  }

  .sub-navbar .sub-nav-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .sub-navbar .sub-nav-link {
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 0.78rem !important;
  }
}

.global-footer {
  background: #fff;
  border-top: 1px solid rgba(21, 24, 21, 0.1);
  padding: 72px 0 112px;
}

.global-footer h3 {
  font-weight: 800;
  letter-spacing: 0;
}

.global-footer p,
.global-footer li {
  color: #6f756e;
  line-height: 1.7;
  font-size: 0.95rem;
}

.global-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.global-footer .footer-links li {
  margin-bottom: 12px;
}

.global-footer .footer-links a {
  color: #6f756e;
  text-decoration: none;
  transition: color 0.25s ease;
}

.global-footer .footer-links a:hover {
  color: #151815;
}

.global-footer .btn-primary {
  background: #151815;
  border: 0;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 800;
  color: #fff;
}

@media (max-width: 768px) {
  .global-footer {
    padding: 54px 0 28px;
  }

  .global-footer .row > div {
    text-align: center;
  }
}
