/* =========================================
   page.css - İç Sayfalar İçin Ortak Stiller
   ========================================= */

/* İç Sayfa Üst Başlık Alanı (Hakkımızda, İletişim, Galeri vb. için ortak) */
.page-header {
    position: relative;
    padding: 120px 0 80px 0;
    margin-top: 76px; /* Navbar yüksekliği */
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.95)), url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    text-align: center;
    border-bottom: 1px solid rgba(216, 159, 90, 0.2); /* Gold rengin saydam hali */
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Sayfa İçi Ekmek Kırıntısı (Breadcrumb) */
.custom-breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}
.custom-breadcrumb li {
    color: var(--text-muted);
}
.custom-breadcrumb li a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s;
}
.custom-breadcrumb li a:hover {
    color: var(--text-light);
}
.custom-breadcrumb li + li::before {
    content: "/";
    padding: 0 10px;
    color: var(--text-muted);
}

/* İç Sayfa İçerik Alanı Boşlukları */
.content-section {
    padding: 80px 0;
}

/* Ortak Bilgi Kutuları (İletişim adresleri, Şube bilgileri vb. için) */
.info-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: 0.3s;
}
.info-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}
.info-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(216, 159, 90, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}
.info-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

/* Ortak Koyu Tema Form Elemanları */
.custom-input {
    background-color: #121212;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    padding: 12px 20px;
    border-radius: 5px;
    width: 100%;
    transition: 0.3s;
}
.custom-input:focus {
    background-color: #1a1a1a;
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(216, 159, 90, 0.2);
    color: #fff;
}
.custom-input::placeholder {
    color: #666;
}
.form-label-custom {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Google Maps Iframe Kapsayıcısı */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}