/* ======================================
   CONTACT BALLOON – POSITIONERING
   ====================================== */

.contact-balloon {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) translateX(150%);
    opacity: 0;
    pointer-events: none;
    z-index: 900;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-balloon.is-visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
    pointer-events: auto;
}


/* ======================================
   BALLOON CONTAINER / CARD
   ====================================== */

.contact-balloon-inner {
    position: relative;
    min-width: 260px;
    max-width: 300px;
    background: #fffdf9;
    border-radius: 14px;
    padding: 14px 18px 16px 18px;
    border: 1px solid #c7a34b;
    box-shadow: 0 12px 30px rgba(0,0,0,0.16);
    font-family: inherit;
}

/* Pointer (rand + binnenkant) */
.contact-balloon-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 16px solid #c7a34b;
}

.contact-balloon-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 14px solid #fffdf9;
}


/* ======================================
   HEADER: FOTO + TEKST
   ====================================== */

.contact-balloon-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* GROTERE RONDE AVATAR – ZONDER RANDJE */
.contact-balloon-avatar-wrap {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-balloon-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Tekst rechts van avatar */
.contact-balloon-text {
    flex: 1;
}

/* Titel bovenaan */
.contact-balloon-text h4 {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
    color: #333;
}

.contact-balloon-text h4::after {
    content: "";
    display: block;
    width: 26px;
    height: 2px;
    margin-top: 4px;
    border-radius: 999px;
    background: #c7a34b;
}


/* ======================================
   NAAM + FUNCTIE (2 REGELS)
   ====================================== */

.contact-balloon-person {
    margin: 0 0 8px;
    padding: 0;
}

.contact-balloon-person-name {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #222;
    margin-bottom: -5px;
}

.contact-balloon-person-role {
    display: block;
    font-size: 12.5px;
    font-weight: 400;
    opacity: 0.75;
    line-height: 0.6;
    margin-bottom: 12px;
}

/* Geen dash meer */
.contact-balloon-person-role::before {
    content: "";
}


/* ======================================
   TELEFOON + EMAIL
   ====================================== */

.contact-balloon-text p {
    margin: 2px 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: #444;
}

.contact-balloon-text a {
    color: #c7a34b;
    text-decoration: none;
    font-weight: 500;
}

.contact-balloon-text a:hover {
    text-decoration: underline;
}


/* ======================================
   SLUITKNOP
   ====================================== */

.contact-balloon-close {
    position: absolute;
    top: 6px;
    right: 8px;
    border: none;
    background: transparent;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    color: #999;
    transition: color 0.15s ease;
}

.contact-balloon-close:hover {
    color: #333;
}


/* ======================================
   MOBILE RESPONSIVE
   ====================================== */

@media (max-width: 768px) {

    .contact-balloon {
        right: 10px;
        top: auto;
        bottom: 20px;
        transform: translateX(150%);
    }

    .contact-balloon.is-visible {
        transform: translateX(0);
    }

    .contact-balloon-inner {
        min-width: 230px;
        max-width: 260px;
        padding: 12px 14px 14px 14px;
    }

    .contact-balloon-avatar-wrap {
        width: 52px;
        height: 52px;
    }

    .contact-balloon-text h4 {
        font-size: 11px;
    }

    .contact-balloon-person-name {
        font-size: 13px;
    }

    .contact-balloon-person-role {
        font-size: 12px;
    }

    .contact-balloon-text p {
        font-size: 12px;
    }
}
