

.bp9s__modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(44, 35, 43, 0.8);
        /* варіація --bp9s__main_dark */
        backdrop-filter: blur(6px);
        display: none;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .bp9s__loader-wrapper {
        background: var(--bp9s__main_white);
        padding: 30px 40px;
        border-radius: 14px;
        border: 1px solid var(--bp9s__main_border_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        max-width: 340px;
        width: 100%;
        font-family: var(--bp9s__font_family), sans-serif;
        color: var(--bp9s__pastel_dark);
        animation: modalFadeIn 0.3s ease-out;
        text-align: center;
    }

    @keyframes modalFadeIn {
        from {
            transform: scale(0.95);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .bp9s__spinner {
        width: 36px;
        height: 36px;
        border: 4px solid var(--bp9s__pastel_white);
        border-top: 4px solid var(--bp9s__main_color);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    ._lang__modal_message_loading {
        font-size: 16px;
        font-weight: 500;
        color: var(--bp9s__dark_accent);
        margin: 0;
    }

    ._lang__modal_message_success {
        font-size: 18px;
        font-weight: bold;
        color: var(--bp9s__info);
        margin: 0;
    }

    .bp9s__spinner-dots {
        display: flex;
        gap: 8px;
        align-items: flex-end;
        height: 24px;
    }

    .bp9s__spinner-dots span {
        width: 8px;
        height: 8px;
        background-color: var(--bp9s__main_color);
        border-radius: 50%;
        display: inline-block;
        animation: bounce 1s infinite ease-in-out;
    }

    .bp9s__spinner-dots span:nth-child(2) {
        animation-delay: 0.2s;
    }

    .bp9s__spinner-dots span:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bounce {

        0%,
        80%,
        100% {
            transform: translateY(0);
        }

        40% {
            transform: translateY(-10px);
        }
    }
.vital-hero-section {
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .vital-hero-section .content {
    background-color: rgba(33, 37, 41, 0.75); /* bg-secondary + opacity */
    padding: 3rem;
    border-radius: 0.5rem;
  }

  .vital-hero-section .title-highlight {
    color: var(--bs-primary);
    text-transform: uppercase;
  }

.contact-luzern-section .form-control {
    border-radius: 0;
  }

  .contact-luzern-section .btn {
    text-transform: uppercase;
  }

  .contact-luzern-section .icon svg {
    width: 24px;
    height: 24px;
  }












