/**
 * İletişim sayfası
 */

.sy-contact-page {
    --sy-contact-navy: #11194e;
    --sy-contact-red: #fe000b;
    --sy-contact-surface: #f4f6fb;
    --sy-contact-border: rgba(17, 25, 78, 0.09);
    --sy-contact-radius: 20px;
}

.sy-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: start;
}

.sy-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sy-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sy-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--sy-contact-border);
    box-shadow: 0 4px 18px rgba(17, 25, 78, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sy-contact-card:hover {
    border-color: rgba(17, 25, 78, 0.14);
    box-shadow: 0 8px 28px rgba(17, 25, 78, 0.07);
}

.sy-contact-card__icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--sy-contact-navy) 0%, #1a2870 100%);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 6px 18px rgba(17, 25, 78, 0.18);
}

.sy-contact-card__label {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(17, 25, 78, 0.45);
}

.sy-contact-card__value {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--sy-contact-navy);
    font-family: "Geologica", sans-serif;
}

.sy-contact-card__value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sy-contact-card__value a:hover {
    color: var(--sy-contact-red);
}

.sy-contact-hours {
    padding: 1.15rem 1.25rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--sy-contact-border);
    box-shadow: 0 4px 18px rgba(17, 25, 78, 0.04);
}

.sy-contact-hours__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.85rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--sy-contact-navy);
    font-family: "Geologica", sans-serif;
}

.sy-contact-hours__title i {
    color: var(--sy-contact-red);
}

.sy-contact-hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.sy-contact-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8125rem;
    color: rgba(17, 25, 78, 0.68);
}

.sy-contact-hours li span {
    font-weight: 600;
    color: rgba(17, 25, 78, 0.82);
}

.sy-contact-aside-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.sy-contact-aside-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--sy-contact-border);
    background: var(--sy-contact-surface);
    color: var(--sy-contact-navy);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sy-contact-aside-link:hover {
    background: #fff;
    border-color: rgba(17, 25, 78, 0.16);
    color: var(--sy-contact-navy);
}

.sy-contact-aside-link--accent {
    background: linear-gradient(135deg, #fe000b 0%, #c90009 100%);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(254, 0, 11, 0.22);
}

.sy-contact-aside-link--accent:hover {
    background: linear-gradient(135deg, #e0000a 0%, #b00008 100%);
    border-color: transparent;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(254, 0, 11, 0.3);
}

.sy-contact-form-panel {
    padding: clamp(1.35rem, 2.5vw, 1.75rem);
    border-radius: var(--sy-contact-radius);
    background: #fff;
    border: 1px solid var(--sy-contact-border);
    box-shadow:
        0 1px 2px rgba(17, 25, 78, 0.04),
        0 12px 40px rgba(17, 25, 78, 0.06);
    scroll-margin-top: 6rem;
}

.sy-contact-form-panel__head {
    margin-bottom: 1.35rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid var(--sy-contact-border);
}

.sy-contact-form-panel__eyebrow {
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sy-contact-red);
}

.sy-contact-form-panel__title {
    margin: 0 0 0.45rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sy-contact-navy);
    font-family: "Geologica", sans-serif;
}

.sy-contact-form-panel__lead {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.65;
    color: rgba(17, 25, 78, 0.62);
}

.sy-contact-form .form-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(17, 25, 78, 0.72);
}

.sy-contact-form .form-label .sy-required {
    color: var(--sy-contact-red);
}

.sy-contact-form .form-control {
    height: 46px;
    padding: 0.65rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--sy-contact-border);
    background: var(--sy-contact-surface);
    font-size: 0.875rem;
    color: var(--sy-contact-navy);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sy-contact-form textarea.form-control {
    height: auto;
    min-height: 9rem;
    resize: vertical;
}

.sy-contact-form .form-control:focus {
    border-color: rgba(20, 36, 135, 0.35);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(20, 36, 135, 0.08);
}

.sy-contact-form .form-group {
    margin-bottom: 1rem;
}

.sy-contact-form__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.sy-contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    width: 100%;
    padding: 0 1.5rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #fe000b 0%, #c90009 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(254, 0, 11, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sy-contact-form__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(254, 0, 11, 0.28);
}

.sy-contact-form__note {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.55;
    color: rgba(17, 25, 78, 0.48);
    text-align: center;
}

.sy-contact-alert {
    padding: 0.85rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.sy-contact-alert--success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #166534;
}

.sy-contact-alert--error {
    background: rgba(254, 0, 11, 0.06);
    border: 1px solid rgba(254, 0, 11, 0.18);
    color: #991b1b;
}

.sy-contact-field-error {
    margin: 0.35rem 0 0;
    font-size: 0.75rem;
    color: var(--sy-contact-red);
}

.sy-contact-map {
    margin-top: 1.75rem;
    border-radius: var(--sy-contact-radius);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--sy-contact-border);
    box-shadow: 0 8px 28px rgba(17, 25, 78, 0.05);
}

.sy-contact-map--sidebar {
    margin-top: 0;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(17, 25, 78, 0.04);
}

.sy-contact-map__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--sy-contact-border);
}

.sy-contact-map__title {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--sy-contact-navy);
    font-family: "Geologica", sans-serif;
}

.sy-contact-map__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--sy-contact-red);
    text-decoration: none;
}

.sy-contact-map__link:hover {
    text-decoration: underline;
}

.sy-contact-map__frame {
    position: relative;
    aspect-ratio: 21 / 9;
    min-height: 260px;
    background: var(--sy-contact-surface);
}

.sy-contact-map__frame--sidebar {
    aspect-ratio: 4 / 3;
    min-height: 220px;
}

.sy-contact-map__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .sy-contact-grid {
        grid-template-columns: 1fr;
    }

    .sy-contact-form-panel {
        order: -1;
    }
}

@media (max-width: 767px) {
    .sy-contact-map__frame {
        aspect-ratio: 4 / 3;
    }
}
