/* ==================================================
   İLETİŞİM SAYFASI
================================================== */

.contact-section {
    width: 100%;
    padding: 70px 0 100px;
    background-color: #f6f7f9;
}

.contact-section .container {
    max-width: 1280px;
}

/* Üst bilgi */

.contact-heading {
    margin-bottom: 30px;
    padding: 28px 30px;
    background-color: #ffffff;
    border-top: 4px solid #174b9b;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.contact-heading h2 {
    margin: 0 0 15px;
    color: #174b9b;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.45;
}

.contact-heading p {
    margin: 0;
    color: #555555;
    font-size: 14px;
    line-height: 1.8;
}

.contact-heading strong {
    color: #333333;
    font-weight: 700;
}

/* Harita ve form */

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 30px;
}

/* Harita */

.contact-map {
    min-height: 620px;
    overflow: hidden;
    background-color: #e8e8e8;
    border-top: 4px solid #174b9b;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    border: 0;
}

/* Form kartı */

.contact-form-card {
    padding: 30px;
    background-color: #ffffff;
    border-top: 4px solid #174b9b;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}

.contact-form-card h2 {
    margin: 0 0 24px;
    padding-bottom: 12px;
    color: #174b9b;
    border-bottom: 2px solid #174b9b;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
}

/* Form alanları */

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-form-group {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.contact-form-group-full {
    grid-column: 1 / -1;
}

.contact-form-group label {
    margin-bottom: 8px;
    color: #444444;
    font-size: 14px;
    font-weight: 500;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    display: block;
    width: 100%;
    color: #444444;
    background-color: #f7f8fa;
    border: 1px solid #d8dde3;
    border-radius: 0;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.contact-form-group input,
.contact-form-group select {
    height: 48px;
    padding: 0 14px;
}

.contact-form-group textarea {
    min-height: 145px;
    padding: 14px;
    resize: vertical;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    background-color: #ffffff;
    border-color: #174b9b;
    box-shadow: 0 0 0 3px rgba(23, 75, 155, 0.12);
}

/* Gönder butonu */

.contact-submit-button {
    display: flex;
    width: 100%;
    min-height: 50px;
    margin-top: 24px;
    padding: 12px 25px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    cursor: default;
    color: #ffffff;
    background-color: #174b9b;
    border: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
}

.contact-submit-button i {
    font-size: 15px;
}

/* Tablet */

@media (max-width: 1099.98px) {
    .contact-section {
        padding: 55px 0 80px;
    }

    .contact-section .container {
        padding-right: 25px;
        padding-left: 25px;
    }

    .contact-layout {
        gap: 25px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 580px;
    }

    .contact-heading,
    .contact-form-card {
        padding: 25px;
    }
}

/* Harita ve form alt alta geçer */

@media (max-width: 899.98px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 450px;
    }
}

/* Telefon */

@media (max-width: 575.98px) {
    .contact-section {
        padding: 40px 0 60px;
    }

    .contact-section .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .contact-heading {
        margin-bottom: 22px;
        padding: 20px 18px;
    }

    .contact-heading h2 {
        font-size: 17px;
    }

    .contact-heading p {
        font-size: 13px;
    }

    .contact-layout {
        gap: 22px;
    }

    .contact-map,
    .contact-map iframe {
        min-height: 340px;
    }

    .contact-form-card {
        padding: 20px 18px;
    }

    .contact-form-card h2 {
        font-size: 18px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .contact-form-group-full {
        grid-column: auto;
    }
}

/* İletişim formu durum ve doğrulama mesajları */

.contact-form-status {
    margin-bottom: 24px;
    padding: 14px 18px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-status.is-success {
    color: #155724;
    border-color: #b7dfc1;
    background-color: #dff2e3;
}

.contact-form-status.is-error {
    color: #842029;
    border-color: #f1aeb5;
    background-color: #f8d7da;
}

.contact-form .field-validation-error {
    display: block;
    margin-top: 7px;
    color: #c62828;
    font-size: 12px;
    line-height: 1.4;
}

.contact-form .input-validation-error {
    border-color: #c62828 !important;
}