.elementor-24 .elementor-element.elementor-element-56f76c1{--display:flex;}.elementor-24 .elementor-element.elementor-element-cfe0f39{width:100%;max-width:100%;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-cfe0f39 *//* Desktop Menu Rechts Uitlijnen & Verticaal Centreren */
@media (min-width: 992px) {
    .header-container {
        display: flex;
        justify-content: space-between; /* Logo links, Menu rechts */
        align-items: center; /* Verticaal centreren */
        height: 80px; /* Match je header hoogte */
    }

    .nav-desktop {
        display: flex;
        align-items: center; /* Verticaal centreren van links */
        list-style: none;
        margin: 0;
        padding: 0;
        margin-left: auto; /* Menu naar rechts duwen */
        gap: 34px; /* Ruimte tussen menu-items */
    }

    .nav-desktop li {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .nav-desktop a {
        display: flex;
        align-items: center;
        text-decoration: none;
        height: 100%;
        line-height: 1; /* Voorkomt tekstverschuiving */
        padding: 10px 0;
        position: relative; /* Nodig voor underline effect */
        transition: color 0.3s ease;
    }

    /* Smart Underline Effect voor Desktop Links (behalve Contact knop) */
    .nav-desktop a:not(.cta-button)::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: #5ece0f;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }
    .nav-desktop a:not(.cta-button):hover::after {
        width: 80%;
    }

    /* De groene Contact knop specifiek centreren en pulse effect */
    .cta-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 46px; /* Vaste hoogte */
        margin-left: 10px;
        background: linear-gradient(135deg, #5ece0f, #4ab80c);
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 10px;
        font-weight: 700;
        box-shadow: 0 6px 22px rgba(94, 206, 15, 0.18);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(94, 206, 15, 0.4);
        filter: brightness(1.05);
    }
}/* End custom CSS */