
/* ===== Shared Header/Nav/CTA styles (injected by build) ===== */
:root {
  --primary-color: #0ea5e9; /* fallback color; override on pages if needed */
}
header#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
header#main-header.header-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(18,18,18,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.nav-link {
  position: relative;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s ease;
}
.nav-link:hover {
  color: var(--primary-color);
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  transition: width .3s ease;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), opacity .3s ease;
  pointer-events: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}
#mobile-menu.menu-open,
#mobile-menu.open {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.1rem 0;
  transition: background-color .3s ease, color .3s ease;
  font-size: 1.05rem;
  font-weight: 500;
  color: #333333;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-decoration: none;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover, .mobile-nav-link.active {
  background-color: var(--primary-color);
  color: white !important;
}
#mobile-menu-button .icon-bars,
#mobile-menu-button .icon-close {
  transition: transform .3s ease, opacity .3s ease;
  position: absolute;
}
#mobile-menu-button.is-active .icon-bars { transform: rotate(90deg) scale(0.8); opacity: 0; }
#mobile-menu-button.is-active .icon-close { transform: rotate(0deg) scale(1); opacity: 1; }
/* ===== End Shared Header/Nav/CTA styles ===== */


  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}
  display: inline-block;
  padding: 12px 16px;
  background: #0a84ff;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
@media (max-width: 480px){
}

.cta-floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}
.cta-floating .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  font-size: 22px;
}
.cta-floating .cta-button:hover,
.cta-floating .cta-button:focus {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.28);
  outline: none;
}
@media (max-width: 480px){
  .cta-floating { right: 14px; bottom: 14px; }
  .cta-floating .cta-button { width: 52px; height: 52px; font-size: 20px; }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 1px, 1px);
  border: 0;
}


/* === Floating CTA (WhatsApp + Back-to-Top) === */
.cta-floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-floating .cta-button {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, opacity .2s ease;
  font-size: 22px;
  line-height: 1;
  border: none;
  cursor: pointer;
}

.cta-floating .cta-button:hover, .cta-floating .cta-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
}

.cta-floating .cta-whatsapp {
  background: #25D366; /* WhatsApp green */
  color: #fff;
}
.cta-floating .cta-whatsapp:hover, .cta-floating .cta-whatsapp:focus {
  background: #1EBE5A;
}

/* Frosted glass style for Back-to-Top */
.cta-floating .back-to-top.glass {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}
.cta-floating .back-to-top.glass:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
}

.cta-floating .back-to-top[hidden] {
  display: none !important;
}

@media (max-width: 480px) {
  .cta-floating { right: 14px; bottom: 14px; gap: 10px; }
  .cta-floating .cta-button { width: 52px; height: 52px; font-size: 20px; }
}
