/* =========================================
   PAGE.CSS (İletişim / Alt Sayfa Stilleri)
========================================= */

/* Navbar & Footer İç Sayfa Özel Arka Plan (Sayfa başı siyah) */
.navbar, footer {
    background-color: var(--bg-dark); 
}

/* İletişim Özel Tasarımlar */
.page-header {
    padding: 80px 0 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-box {
    background-color: #161618;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.02);
}

.contact-box:hover {
    transform: translateY(-5px);
    border-color: rgba(248, 200, 34, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(248, 200, 34, 0.1);
    color: var(--brand-yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    height: 100%;
    min-height: 400px;
}

.section-padding { 
    padding: 80px 0; 
}