.contact-hero {
    padding: 80px 0 40px;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}

.contact-title {
    font-size: 44px;
    line-height: 1.15;
    color: #111;
    margin-bottom: 14px;
}

.contact-lead {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
    max-width: 900px;
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.contact-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    background: #111;
    color: #fff;
}

.contact-content {
    padding: 40px 0 90px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
}

.contact-card {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.contact-card-title {
    font-size: 22px;
    margin-bottom: 18px;
    color: #111;
}

.contact-info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed #e8edf3;
}

.contact-info-row:last-child {
    border-bottom: none;
}

.contact-info-label {
    color: #666;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .2px;
}

.contact-info-value {
    color: #222;
    font-size: 16px;
    line-height: 1.6;
}

.contact-link {
    color: #004aad;
    text-decoration: none;
    font-weight: 700;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-map {
    margin-top: 18px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eef2f6;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: 0;
    display: block;
}

.contact-alert {
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 700;
    margin-bottom: 14px;
}

.contact-alert-success {
    background: #ecfdf3;
    color: #0f5132;
    border: 1px solid #bfe7d1;
}

.contact-alert-error {
    background: #fff1f2;
    color: #7f1d1d;
    border: 1px solid #f3b4bb;
}

.contact-form {
    display: grid;
    gap: 12px;
    flex: 1;
}

.contact-field span {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid #e6ebf2;
    font-size: 16px;
    outline: none;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #004aad;
    box-shadow: 0 0 0 4px rgba(0, 74, 173, 0.12);
}

.contact-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-submit {
    display: inline-block;
    justify-self: start;
    background: #ffb400;
    color: #000;
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    transition: .2s;
}

.contact-submit:hover {
    background: #e0a300;
}

/* ============================= */
/* ŞUBELER / LOKASYONLAR */
/* ============================= */

.contact-branches {
    margin-top: 30px;
}

.contact-branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.contact-branch {
    background: #fafbfd;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 16px;
    transition: 0.2s;
}

.contact-branch:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.contact-branch h3 {
    font-size: 17px;
    margin-bottom: 8px;
    color: #111;
}

.contact-branch-address {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
}

.contact-branch-map {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eef2f6;
}

.contact-branch-map iframe {
    width: 100%;
    height: 160px;
    border: 0;
    display: block;
}

/* mobil uyum */

@media (max-width: 900px) {

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

    .contact-branch-map iframe {
        height: 200px;
    }

}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-title {
        font-size: 34px;
    }
}
