/* === İLETİŞİM SAYFASI ÖZEL STİLLERİ === */
/* === HAKKIMIZDA SAYFASI ÖZEL STİLLERİ === */
.page-content {
    padding: 48px 0;
}
.page-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

/* --- İletişim Kartları --- */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.contact-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.07);
}

.contact-card__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #e0f2f1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px auto;
    color: var(--primary-color);
}

.contact-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-card__info {
    font-size: 16px;
    color: #555;
    text-decoration: none;
    display: block;
    line-height: 1.5;
}

.contact-card__info:hover {
    color: var(--primary-color);
}

/* --- Harita --- */
.map-section {
    margin-bottom: 64px;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

/* --- Çalışma Saatleri (GÜNCELLENDİ) --- */
.hours-section {
    max-width: 800px;
    margin: 0 auto 64px auto;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
}

.hours-section .section-title {
    margin-bottom: 24px;
}

.hours-list {
    margin-bottom: 24px;
}

.hours-list__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-list__row:last-child {
    border-bottom: none;
}

.hours-list__day {
    color: #555;
}

.hours-list__time {
    font-weight: 500;
}

.hours__footer {
    text-align: center;
}

.hours__badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
}

.hours__badge--closed {
    background-color: #fee2e2;
    color: #b91c1c;
}

.hours__badge--special {
    background-color: #dbeafe;
    color: #1e40af;
    display: inline-block;
}

/* --- Sosyal Medya ve Whatsapp (GÜNCELLENDİ) --- */
.social-section {
    display: flex; /* YENİ */
    flex-direction: column; /* YENİ */
    align-items: center; /* YENİ */
    gap: 24px; /* YENİ */
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25d366;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    /* margin-bottom kaldırıldı, gap ile yönetiliyor */
    transition: background-color 0.3s ease;
}

.whatsapp-button svg {
    width: 24px; /* YENİ */
    height: 24px; /* YENİ */
    fill: white; /* YENİ */
}

.whatsapp-button:hover {
    background-color: #128c7e;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* --- Mobil UYUMLULUK --- */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}