/* SAYFAYI ALTTA FOOTER SABİT KALACAK ŞEKİLDE AYARLA */
.page-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-footer {
    margin-top: auto;
}



.contact-hero {
    background: #f4f7fa;
    padding: 60px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 32px;
    font-weight: 700;
}

.contact-hero p {
    color: #6b7280;
    margin-top: 8px;
}

.contact-content {
    padding: 50px 0;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info a {
    color: #0077cc;
    font-weight: bold;
    text-decoration: none;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
}

/* Geri Butonu */
.back-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-ghost {
    padding: 10px 18px;
    border: 1px solid #0077cc;
    background: transparent;
    color: #0077cc;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
    text-decoration: none;
}

.btn-ghost:hover {
    background: #0077cc;
    color: white;
}

/* 📱 Mobil */
@media (max-width: 768px) {
    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        height: 250px;
    }
}