.partner-bar {
    width: 100%;
    height: 100px;
    background-color: #f94735;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.partner-track {
    display: flex;
    width: fit-content;
    animation: scroll-left 40s linear infinite;
}

.partner-track img {
    height: 60px;
    margin-right: 60px;
    filter: brightness(0) invert(1); /* zorgt voor witte logos */
    opacity: 0.9;
    transition: opacity 0.3s;
}

.partner-track img:hover {
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.typed-line {
        white-space: nowrap;
        overflow: hidden;
        display: inline-block;
        border-right: 0.1em solid white;
        animation: blink 0.7s steps(1) infinite;
        min-height: 1.2em;
    }

.typed-line-multiline {
    display: block;
    white-space: normal;
    overflow: hidden;
    border-right: 0.1em solid white;
    animation: blink 0.7s steps(1) infinite;
    color: white;
    opacity: 0;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

p.typed-line {
    display: block;
    white-space: normal;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: white; }
}

.description-text {
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
    color: white;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    white-space: normal;
}

.text-primary-orange {
    color: #f04727;
}

.custom-orange-btn {
    background-color: #f04727;
    color: white;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.custom-orange-btn:hover {
    background-color: white;
    color: #f04727;
    border: 2px solid #f04727;
    transform: translateY(-2px);
}

.fly-in-left.show {
    animation: flyLeft 0.5s ease-out forwards;
}

.fly-in-right.show {
    animation: flyRight 0.5s ease-out forwards;
}

@keyframes flyLeft {
    0% { opacity: 0; transform: translateX(-60px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes flyRight {
    0% { opacity: 0; transform: translateX(60px); }
    100% { opacity: 1; transform: translateX(0); }
}

.btn {
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-orange {
    background-color: #f04727 !important;
    color: white !important;
    border: 2px solid #f04727 !important;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.btn-orange:hover {
    background-color: #d93f20 !important;
    color: white !important;
    box-shadow: 0 4px 10px rgba(240, 71, 39, 0.3);
    transform: translateY(-2px);
}

.btn-white {
    background-color: white !important;
    color: #f04727 !important;
    border: 2px solid #f04727 !important;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.btn-white:hover {
    box-shadow: 0 0 10px rgba(240, 71, 39, 0.6);
    transform: none;
    background-color: white !important;
    color: #f04727 !important;
}

#submit-btn {
    position: relative;
    transition: all 0.3s ease;
    min-width: 150px;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    color: inherit;
}

.fa-spinner {
    animation: spin 1s linear infinite;
    margin-right: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fas.fa-spinner {
    display: inline-block;
    animation: spin 1s linear infinite;
}
