.reference-logo-slider {
    overflow: hidden;
    padding: 20px 0 10px;
}

.reference-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    margin-bottom: 25px;
}

.reference-track-top {
    animation: logoSlideLeft 35s linear infinite;
}

.reference-track-bottom {
    animation: logoSlideRight 35s linear infinite;
}

.reference-logo-item {
    width: 220px;
    min-width: 220px;
    height: 120px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.reference-logo-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

@keyframes logoSlideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes logoSlideRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}
.reference-logo-item {
    width: 100%;
    min-height: 170px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.reference-logo-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.reference-logo-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.page-header {
    position: relative;
}

.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.page-header-box {
    position: relative;
    z-index: 2;
}
.page-header.parallaxie {
    background-size: cover;
    background-position: center center;
}
/* FORM KART */
.quote-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

/* INPUT STİL */
.quote-box .form-control,
.quote-box .form-select {
    height: 55px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    padding: 0 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* TEXTAREA */
.quote-box textarea {
    border-radius: 8px;
    padding: 15px;
}

/* FOCUS EFEKT */
.quote-box .form-control:focus,
.quote-box .form-select:focus {
    border-color: #0E0D1B;
    box-shadow: 0 0 0 3px rgba(14, 13, 27, 0.08);
}

/* BUTON */
.quote-box .btn-default {
    height: 55px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
}

/* FORM GENEL BOŞLUK */
.quote-page-section {
    background: #f7f8fa;
}