/**
 * Ana sayfa — müşteri odaklı teklif formu
 */

.sy-quote {
    position: relative;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    background: linear-gradient(180deg, #fff 0%, #f4f6fb 40%, #eef1f8 100%);
    overflow: hidden;
}

.sy-quote::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(254, 0, 11, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.sy-quote__wrap {
    width: min(100%, 1280px);
    margin-inline: auto;
    padding-inline: 15px;
    box-sizing: border-box;
}

.sy-quote__shell {
    position: relative;
    border-radius: clamp(20px, 3vw, 32px);
    overflow: hidden;
    box-shadow:
        0 4px 8px rgba(17, 25, 78, 0.04),
        0 32px 80px rgba(17, 25, 78, 0.16);
}

.sy-quote__shell-bg {
    position: absolute;
    inset: 0;
    background-image: var(--sy-quote-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 8s ease;
}

.sy-quote__shell:hover .sy-quote__shell-bg {
    transform: scale(1.06);
}

.sy-quote__shell-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(17, 25, 78, 0.94) 0%, rgba(17, 25, 78, 0.78) 42%, rgba(20, 36, 135, 0.55) 100%),
        linear-gradient(180deg, transparent 50%, rgba(17, 25, 78, 0.4) 100%);
    pointer-events: none;
}

.sy-quote__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

/* —— Form kartı —— */
.sy-quote__form-card {
    background: #fff;
    border-radius: clamp(18px, 2.5vw, 24px);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow:
        0 1px 2px rgba(17, 25, 78, 0.04),
        0 20px 50px rgba(17, 25, 78, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.sy-quote__form-head {
    margin-bottom: 1.5rem;
}

.sy-quote__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.65rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(254, 0, 11, 0.08);
    color: #FE000B;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sy-quote__form-title {
    margin: 0 0 0.5rem;
    font-family: "Geologica", sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 1.875rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #11194E;
}

.sy-quote__form-lead {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #5C677B;
}

.sy-quote__alert {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.sy-quote__alert i {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 1.1rem;
}

.sy-quote__alert ul {
    margin: 0;
    padding-left: 1rem;
}

.sy-quote__alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.sy-quote__alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.sy-quote__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.1rem;
}

.sy-quote__field--full {
    grid-column: 1 / -1;
}

.sy-quote__label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #11194E;
}

.sy-quote__label > span:not(.sy-quote__label-hint) {
    color: #FE000B;
}

.sy-quote__label-hint {
    margin-left: 0.35rem;
    font-size: 0.6875rem;
    font-weight: 500;
    color: #8b95a8;
}

fieldset.sy-quote__chips {
    border: 0;
    margin: 0;
    padding: 0;
    min-width: 0;
}

fieldset.sy-quote__chips .sy-quote__label {
    margin-bottom: 0.35rem;
}

.sy-quote__chip-hint {
    margin: 0 0 0.65rem;
    font-size: 0.75rem;
    line-height: 1.45;
    color: #8b95a8;
}

.sy-quote__meal-select {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    padding: 0.6rem;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.sy-quote__meal-select:focus-within {
    border-color: #142487;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(20, 36, 135, 0.1);
}

.sy-quote__meal-select-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
}

.sy-quote__meal-option {
    position: relative;
    margin: 0;
    min-width: 0;
    cursor: pointer;
}

.sy-quote__meal-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sy-quote__meal-option-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 4.75rem;
    padding: 0.7rem 0.45rem 0.65rem;
    border: 1.5px solid #e8edf4;
    border-radius: 10px;
    background: #fff;
    color: #11194E;
    text-align: center;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        color 0.2s ease;
}

.sy-quote__meal-option-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 10px;
    background: #f1f5f9;
    color: #64748b;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.sy-quote__meal-option-icon i {
    font-size: 1rem;
    line-height: 1;
}

.sy-quote__meal-option-text {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    word-break: break-word;
}

.sy-quote__meal-option-check {
    position: absolute;
    top: 0.4rem;
    right: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    border-radius: 999px;
    border: 1.5px solid #cbd5e1;
    background: #fff;
    color: transparent;
    opacity: 0;
    transform: scale(0.85);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.sy-quote__meal-option-check i {
    font-size: 0.625rem;
    line-height: 1;
}

.sy-quote__meal-option:hover .sy-quote__meal-option-inner {
    border-color: #c7d2e3;
    box-shadow: 0 4px 12px rgba(17, 25, 78, 0.05);
}

.sy-quote__meal-option input:focus-visible + .sy-quote__meal-option-inner {
    outline: 2px solid #142487;
    outline-offset: 2px;
}

.sy-quote__meal-option input:checked + .sy-quote__meal-option-inner {
    border-color: #142487;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
    box-shadow: inset 0 0 0 1px rgba(20, 36, 135, 0.08);
}

.sy-quote__meal-option input:checked + .sy-quote__meal-option-inner .sy-quote__meal-option-icon {
    background: rgba(20, 36, 135, 0.1);
    color: #142487;
}

.sy-quote__meal-option input:checked + .sy-quote__meal-option-inner .sy-quote__meal-option-check {
    opacity: 1;
    transform: scale(1);
    border-color: #142487;
    background: #142487;
    color: #fff;
}

.sy-quote__control {
    position: relative;
    display: flex;
    align-items: center;
}

.sy-quote__control > i {
    position: absolute;
    left: 0.95rem;
    z-index: 1;
    font-size: 1rem;
    color: #8b95a8;
    pointer-events: none;
    transition: color 0.2s ease;
}

.sy-quote__control:focus-within > i {
    color: #142487;
}

.sy-quote__control input,
.sy-quote__control select {
    width: 100%;
    min-height: 48px;
    padding: 0.65rem 0.95rem 0.65rem 2.65rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 0.9375rem;
    color: #11194E;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
    box-sizing: border-box;
}

.sy-quote__control input::placeholder {
    color: #94a3b8;
}

.sy-quote__control input:hover,
.sy-quote__control select:hover {
    border-color: #cbd5e1;
    background: #fff;
}

.sy-quote__control input:focus,
.sy-quote__control select:focus {
    outline: none;
    border-color: #142487;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(20, 36, 135, 0.1);
}

.sy-quote__control input.is-invalid,
.sy-quote__control select.is-invalid {
    border-color: #ef4444;
    background: #fff5f5;
}

.sy-quote__control--select select {
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235C677B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.sy-quote__chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sy-quote__chip {
    position: relative;
    cursor: pointer;
    margin: 0;
}

.sy-quote__chip input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.sy-quote__chip span {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #5C677B;
    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.sy-quote__chip input:checked + span {
    border-color: #11194E;
    background: linear-gradient(135deg, #11194E 0%, #142487 100%);
    color: #fff;
    box-shadow: 0 6px 18px rgba(17, 25, 78, 0.22);
}

.sy-quote__chip input:focus-visible + span {
    outline: 2px solid #142487;
    outline-offset: 2px;
}

.sy-quote__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1.35rem;
    min-height: 54px;
    padding: 0.9rem 1.5rem;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, #FE000B 0%, #c90009 100%);
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(254, 0, 11, 0.32);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease;
}

.sy-quote__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(254, 0, 11, 0.38);
    background: linear-gradient(135deg, #ff1a22 0%, #FE000B 100%);
}

.sy-quote__submit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transition: transform 0.22s ease;
}

.sy-quote__submit:hover .sy-quote__submit-icon {
    transform: translateX(4px);
}

.sy-quote__privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 1rem 0 0;
    font-size: 0.75rem;
    line-height: 1.55;
    color: #8b95a8;
}

.sy-quote__privacy i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: #94a3b8;
}

.sy-quote .form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* —— Sağ promo alanı —— */
.sy-quote__promo {
    display: flex;
    align-items: center;
    min-height: 100%;
    padding: clamp(0.5rem, 2vw, 1.5rem) 0;
}

.sy-quote__promo-inner {
    max-width: 520px;
}

.sy-quote__promo-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.sy-quote__promo-title {
    margin: 0 0 1rem;
    font-family: "Geologica", sans-serif;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #fff;
}

.sy-quote__promo-lead {
    margin: 0 0 1.75rem;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.sy-quote__trust {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.sy-quote__trust li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.sy-quote__trust-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.1rem;
}

.sy-quote__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sy-quote__contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.1rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        background 0.22s ease,
        border-color 0.22s ease,
        transform 0.22s ease;
}

a.sy-quote__contact:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateX(4px);
}

.sy-quote__contact-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #FE000B 0%, #c90009 100%);
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(254, 0, 11, 0.35);
}

.sy-quote__contact-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.sy-quote__contact-copy small {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.sy-quote__contact-copy strong {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    word-break: break-word;
}

.sy-quote__contact--static {
    cursor: default;
}

/* —— Responsive —— */
@media (max-width: 1099px) {
    .sy-quote__grid {
        grid-template-columns: 1fr;
    }

    .sy-quote__promo {
        padding-top: 0;
    }

    .sy-quote__promo-inner {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .sy-quote__fields {
        grid-template-columns: 1fr;
    }

    .sy-quote__field--half {
        grid-column: 1 / -1;
    }

    .sy-quote__form-card {
        padding: 1.35rem 1.2rem 1.5rem;
    }

    .sy-quote__grid {
        padding: 1.15rem;
    }

    .sy-quote__chip-list {
        gap: 0.4rem;
    }

    .sy-quote__chip span {
        font-size: 0.75rem;
        padding-inline: 0.75rem;
    }

    .sy-quote__meal-select-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 479px) {
    .sy-quote {
        padding: 2.5rem 0;
    }

    .sy-quote__shell {
        border-radius: 18px;
    }
}

/* Eski carryon sınıflarıyla çakışmayı önle */
.carryon-home-body .carryon-home-quote {
    margin-top: 0;
}
