/* İletişim sayfası — gömülü harita + iletişim bilgileri + yön butonu.
   Tema renk değişkenlerini (store.css) kullanır → açık/koyu tema otomatik uyumlu. */

.contact-wrap {
    max-width: 860px;
    padding-top: 56px;
    padding-bottom: 80px;
}

/* ── İletişim bilgi satırları ─────────────────────────────────────────── */
.contact-info {
    margin-bottom: 36px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    margin: 0 0 14px;
    color: var(--text);
}

.contact-line:last-child {
    margin-bottom: 0;
}

.contact-line i {
    color: var(--amber);
    width: 22px;
    text-align: center;
    font-size: 17px;
    flex-shrink: 0;
}

.contact-line a {
    color: var(--text);
    text-decoration: none;
    transition: color .18s ease;
}

.contact-line a:hover {
    color: var(--amber);
}

/* ── Gömülü harita kartı ──────────────────────────────────────────────── */
.contact-map {
    position: relative;
    aspect-ratio: 16 / 9;
    border: 1px solid var(--bdr);
    border-radius: 16px;
    overflow: hidden;
    background: var(--surf);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

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

/* ── Yol Tarifi Al butonu (premium amber gradyan) ─────────────────────── */
.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 22px;
    padding: 11px 24px 11px 13px;       /* sol daha dar — ikon çipi boşluğu dengeler */
    /* Marka başlık-gradyanıyla aynı amber geçişi; 200% genişlik hover'da shine sağlar */
    background: linear-gradient(120deg, #E8950A 0%, #F7C842 50%, #E8950A 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: var(--on-amber);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .2px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 20px var(--amber-g), 0 1px 2px rgba(0, 0, 0, .15);
    transition: transform .2s ease, box-shadow .2s ease, background-position .45s ease;
}

/* İkon çipi — yarı saydam yuvarlak rozet */
.btn-directions .btn-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-size: 15px;
    transition: transform .2s ease;
}

.btn-directions:hover {
    transform: translateY(-2px);
    background-position: 100% 50%;
    box-shadow: 0 12px 30px var(--amber-g), 0 3px 8px rgba(0, 0, 0, .22);
}

.btn-directions:hover .btn-ico {
    transform: translateX(2px);
}

.btn-directions:active {
    transform: translateY(0);
    box-shadow: 0 4px 14px var(--amber-g), 0 1px 2px rgba(0, 0, 0, .18);
}

.btn-directions:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--amber-g), 0 6px 20px var(--amber-g);
}

/* Açık tema — beyaz üstünde AA kontrastlı koyu amber gradyan */
html[data-theme="light"] .btn-directions {
    background-image: linear-gradient(120deg, #B57208 0%, #D89A2A 50%, #B57208 100%);
}

/* ── Hareket kısıtı ───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .btn-directions,
    .btn-directions .btn-ico {
        transition: box-shadow .2s ease;
    }
    .btn-directions:hover {
        transform: none;
        background-position: 0% 50%;
    }
    .btn-directions:hover .btn-ico {
        transform: none;
    }
}

/* ── Mobil ────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .contact-wrap {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    .contact-map {
        aspect-ratio: 4 / 3;
        border-radius: 12px;
    }
    .btn-directions {
        width: 100%;
        justify-content: center;
    }
}
