/**
 * Sapanca Gazetesi
 * Software developed by ArpSoft
 * Copyright © 2026 ArpSoft. All rights reserved.
 * Developer: Murat Arapoğlu
 */
.contact-page {
    min-height: 520px;
    background: var(--bg);
    padding-bottom: 48px;
}

.contact-page__inner {
    width: min(100% - 32px, 1100px);
    margin: 26px auto 0;
}

.contact-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    padding: 28px 30px;
}

.contact-card__header {
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
    padding-bottom: 20px;
}

.contact-card__header > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: var(--red);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .05em;
}

.contact-card__header h1 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    font-weight: 900;
    line-height: 1.12;
}

.contact-card__header p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.contact-notice {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 750;
}

.contact-notice i {
    font-size: 20px;
}

.contact-notice--success {
    border-color: color-mix(in srgb, var(--green) 35%, var(--line));
    background: color-mix(in srgb, var(--green) 8%, var(--surface));
    color: var(--green);
}

.contact-notice--error {
    border-color: color-mix(in srgb, var(--red) 35%, var(--line));
    background: color-mix(in srgb, var(--red) 8%, var(--surface));
    color: var(--red);
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 7px;
}

.contact-form label > span {
    color: var(--text);
    font-size: 13px;
    font-weight: 850;
}

.contact-form label > span b,
.contact-form__actions small b {
    color: var(--red);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
    color: var(--text);
    font: inherit;
    outline: 0;
}

.contact-form input {
    min-height: 46px;
    padding: 0 12px;
}

.contact-form textarea {
    min-height: 190px;
    resize: vertical;
    padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: color-mix(in srgb, var(--red) 55%, var(--line));
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--red) 10%, transparent);
}

.contact-form__message {
    grid-column: 1 / -1;
}

.contact-form__turnstile {
    margin-top: 18px;
}

.contact-form__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.contact-form__actions small {
    color: var(--muted);
    font-size: 12px;
}

.contact-form__actions button {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--red);
    border-radius: var(--radius);
    background: var(--red);
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    padding: 0;
}

.contact-form__actions button:hover {
    filter: brightness(.95);
}

@media (max-width: 700px) {
    .contact-page__inner {
        width: min(100% - 18px, 1100px);
        margin-top: 18px;
    }

    .contact-card {
        padding: 22px 18px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__message {
        grid-column: auto;
    }
}


.contact-form__status {
    display: grid;
    gap: 5px;
}

.contact-form__security {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
}

.contact-form__security--dev {
    color: var(--muted);
}

.contact-form__security--active {
    color: var(--green);
}

.contact-form__security i {
    font-size: 15px;
}

@media (max-width: 700px) {
    .contact-form__status {
        gap: 7px;
    }
}
