/* ==========================================================================
   STICKY-CTA.CSS — CV-Ketel Onderhoud
   Mobiele sticky balk — alleen zichtbaar op mobiel (max-width: 768px)
   Premium design met gradient knoppen
   ========================================================================== */

.sticky-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(60px + env(safe-area-inset-bottom));
    display: flex;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08), 0 -1px 3px rgba(0, 0, 0, 0.04);
    padding: 6px 6px calc(6px + env(safe-area-inset-bottom));
    gap: 6px;
  }

  .sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-decoration: none;
    font-family: var(--font-body, 'Open Sans', sans-serif);
    font-size: 14px;
    gap: 8px;
    border-radius: 10px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .sticky-cta a:active {
    transform: scale(0.97);
  }

  .sticky-cta .btn-call {
    background: linear-gradient(135deg, #E63946 0%, #c62828 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.3);
  }

  .sticky-cta .btn-call:active {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
  }

  .sticky-cta .btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
  }

  .sticky-cta .btn-wa:active {
    background: linear-gradient(135deg, #128C7E 0%, #0e7a6e 100%);
  }

  .sticky-cta svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
}
