/* Call button – skjult som standard (desktop) */
.call-button {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 3; /* Over hero og alt annet */
    background: #FFB703;
    color: black;
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Vis kun på mobil */
@media (max-width: 768px) {
    .call-button {
        display: inline-block;
    }
}
