﻿/* Contact sayfası (header + hero + footer arası ekrana sığsın) */
.contact-section {
    padding: 28px 24px;
    min-height: calc(100dvh - var(--header-h, 96px) - var(--pagehero-h, 160px) - 70px);
    display: flex;
    align-items: center; /* dikey ortalama istersen center */
    /* align-items: flex-start;  üstten başlasın istersen bunu aç, center'ı kapat */
}

/* Grid */
.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

/* Başlık */
.contact-info h2 {
    margin: 0 0 18px;
    font-size: 34px;
    font-weight: 900;
}

/* Yazılar */
.contact-item strong {
    display: block;
    margin-bottom: 6px;
    font-weight: 800;
}

.contact-item p {
    margin: 0 0 16px;
    line-height: 1.7;
    font-size: 16px;
}

/* Link */
.contact-link {
    color: #111;
    text-decoration: none;
    border-bottom: 1px dashed rgba(0,0,0,.35);
}

    .contact-link:hover {
        border-bottom-style: solid;
    }

/* Buton */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    background: #2f2f2f;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

/* Harita */
.contact-map {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

    .contact-map iframe {
        width: 100%;
        height: clamp(320px, 44vh, 520px);
        border: 0;
        display: block;
    }

/* Mobil */
@media (max-width: 880px) {
    .contact-section {
        min-height: auto;
        align-items: stretch;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-map iframe {
        height: 320px;
    }
}
