/* ============================================================
   Kurumsal Hesap Talep Sayfası — /corporations/request
   ============================================================ */

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #070026;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.corp-request-page {
    background: #fff;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.corp-request-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
}
.corp-request-grid > * {
    min-width: 0;
}

/* ----- Sol kolon ----- */
.corp-request-left {
    background: #f1f3f5;
    padding: 100px 80px 60px;
    display: flex;
    flex-direction: column;
}

.corp-request-left-inner {
    max-width: 520px;
    margin-left: auto;
    width: 100%;
}

.corp-request-logo {
    display: inline-block;
    padding-bottom: 30px;
}

.corp-request-logo img {
    display: block;
    width: 200px;
    height: auto;
}

.corp-request-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    color: #070026;
    margin: 0 0 28px;
}

.corp-request-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #3d4148;
    margin: 0 0 48px;
    max-width: 440px;
}

.corp-request-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 60px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.corp-request-step {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 16px;
    align-items: start;
}

.corp-request-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 2px;
}

.corp-request-step-title {
    font-size: 15px;
    font-weight: 700;
    color: #070026;
    margin: 0 0 8px;
}

.corp-request-step-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #5c6370;
    margin: 0;
    max-width: 420px;
}

/* ----- Marka rozetleri (kayan slider) ----- */
.corp-request-brands {
    margin-top: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.corp-request-brands-marquee {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.corp-request-brands-track {
    display: flex;
    align-items: center;
    gap: 36px;
    width: max-content;
    animation: corp-request-marquee 36s linear infinite;
    will-change: transform;
}

.corp-request-brands-marquee:hover .corp-request-brands-track {
    animation-play-state: paused;
}

@keyframes corp-request-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.corp-request-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 48px;
    flex-shrink: 0;
}

.corp-request-brand img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: opacity 0.2s ease, filter 0.2s ease;
}

.corp-request-brand img:hover {
    opacity: 1;
    filter: grayscale(0);
}

@media (prefers-reduced-motion: reduce) {
    .corp-request-brands-track { animation: none; }
}

/* ----- Sağ kolon / Form ----- */
.corp-request-right {
    background: #fff;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.corp-request-back {
    position: fixed;
    top: 22px;
    right: 26px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: #6a6f78;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    z-index: 50;
}
.corp-request-back:hover {
    background: rgba(7, 0, 38, 0.06);
    color: #070026;
}
.corp-request-back i { line-height: 1; }

.corp-request-form-wrap {
    width: 100%;
    max-width: 420px;
}

.corp-request-flash {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.corp-request-flash-success {
    background: #e6f4ea;
    color: #0b7d4a;
    border: 1px solid #b7e2c4;
}

.corp-request-flash-error {
    background: #fdeaea;
    color: #9a2a2a;
    border: 1px solid #f3b9b9;
}

.corp-request-form-label {
    font-size: 15px;
    font-weight: 600;
    color: #070026;
    margin-bottom: 10px;
    display: block;
}

.corp-request-form input[type="email"],
.corp-request-form input[type="text"],
.corp-request-form input[type="tel"],
.corp-request-form select.corp-request-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: #070026;
    background: #fff;
    border: 1px solid #d7dbe0;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.corp-request-form input[type="email"]:focus,
.corp-request-form input[type="text"]:focus,
.corp-request-form input[type="tel"]:focus,
.corp-request-form select.corp-request-select:focus {
    border-color: #070026;
    box-shadow: 0 0 0 3px rgba(7, 0, 38, 0.08);
}

.corp-request-form select.corp-request-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236a6f78' d='M6 8L0 1.4 1.4 0 6 4.6 10.6 0 12 1.4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

/* intl-tel-input: input genişliğini düzelt ve dial-code ile align */
.corp-request-form .iti { width: 100%; display: block; }
.corp-request-form .iti input[type="tel"] { width: 100%; }

.iti .iti__selected-dial-code {
    margin-left: 4px;
    font-size: 12px;
}

/* ----- Onay (consent) ----- */
.corp-request-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 20px;
}
.corp-request-consent input[type="checkbox"] {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    accent-color: #070026;
    cursor: pointer;
}
.corp-request-consent label {
    font-size: 12px;
    line-height: 1.55;
    color: #555;
    cursor: pointer;
    margin: 0;
}
.corp-request-consent label a {
    color: #070026;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.corp-request-consent label a:hover {
    color: #DAB668;
}

.corp-request-form-hint {
    font-size: 13px;
    color: #6a6f78;
    margin: 10px 0 22px;
}

.corp-request-submit {
    width: 100%;
    padding: 14px 20px;
    background: #070026;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.corp-request-submit:hover {
    background: #1a1040;
}

.corp-request-benefits {
    margin-top: 22px;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.corp-request-benefits-item {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: #2c3e50;
}

.corp-request-benefits-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0b7d6b;
    font-weight: 700;
}

/* ----- Responsive ----- */
@media (max-width: 991px) {
    .corp-request-grid {
        grid-template-columns: minmax(0, 1fr);
        min-height: auto;
    }

    .corp-request-left,
    .corp-request-right {
        padding: 60px 32px;
    }

    .corp-request-left-inner {
        margin-left: 0;
        max-width: none;
    }

    .corp-request-title {
        font-size: 38px;
    }

    .corp-request-form-wrap {
        margin-top: 0;
        max-width: none;
    }
}

@media (max-width: 576px) {
    .corp-request-left,
    .corp-request-right {
        padding: 40px 20px;
    }

    .corp-request-title {
        font-size: 30px;
    }

    .corp-request-brands-track {
        gap: 24px;
        animation-duration: 28s;
    }
    .corp-request-brand {
        width: 90px;
        height: 40px;
    }
}
