/* ========================================== */
/* === SAYFA ÜST BAŞLIK (BREADCRUMB) ALANI == */
/* ========================================== */
.page-header-section {
    position: relative;
    background-color: #121212;
    padding: 120px 20px 70px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: -50%; 
    left: 50%; 
    transform: translateX(-50%);
    width: 80%; 
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(251, 167, 7, 0.08) 0%, rgba(18, 18, 18, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.page-header-content { position: relative; z-index: 2; }

.page-title {
    color: #fff;
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.breadcrumb {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
}

.breadcrumb a { color: #aaa; text-decoration: none; transition: 0.3s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb i { color: #555; font-size: 11px; }
.breadcrumb .active { color: var(--yellow); }

/* ========================================== */
/* === İLETİŞİM BİLGİLERİ (TELEFONLAR) ====== */
/* ========================================== */
.iletisim-bilgileri-bolumu {
    background-color: #0a0a0a;
    padding: 80px 20px 40px 20px;
}

.iletisim-container {
    max-width: 1600px;
    margin: 0 auto;
}

.telefon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* İki numara yan yana */
    gap: 30px;
    max-width: 1000px; /* Çok fazla yayılmasınlar, derli toplu dursunlar */
    margin: 0 auto;
}

.telefon-karti {
    background-color: #161616;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s ease;
}

.telefon-karti:hover {
    transform: translateY(-10px);
    border-color: rgba(251, 167, 7, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.tel-ikon {
    width: 80px;
    height: 80px;
    background-color: rgba(251, 167, 7, 0.05);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 25px;
    border: 1px solid var(--yellow);
    transition: all 0.3s ease;
}

.telefon-karti:hover .tel-ikon {
    background-color: var(--yellow);
    color: #000;
}

.telefon-karti h3 {
    color: #aaa;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.telefon-karti p {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.telefon-karti:hover p {
    color: var(--yellow);
}

.btn-text {
    color: var(--yellow);
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text::after {
    content: '\f061'; /* FontAwesome sağ ok ikonu */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.telefon-karti:hover .btn-text::after {
    transform: translateX(8px); /* Üzerine gelince ok sağa kaysın */
}

/* ========================================== */
/* === HARİTA BÖLÜMÜ ======================== */
/* ========================================== */
.iletisim-harita-bolumu {
    background-color: #0a0a0a;
    padding: 20px 20px 100px 20px;
}

.harita-merkez {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.harita-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.turkiye-haritasi {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(251, 167, 7, 0.15));
}

.harita-rozet {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(30, 30, 30, 0.6);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

/* ========================================== */
/* === MOBİL VE TABLET TASARIMI ============= */
/* ========================================== */
@media (max-width: 992px) {
    .telefon-grid {
        grid-template-columns: 1fr; /* Tablet ve mobilde alt alta geçsin */
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .page-header-section { padding: 90px 15px 50px; }
    .page-title { font-size: 36px; }
    
    .iletisim-bilgileri-bolumu { padding: 50px 15px 20px; }
    .iletisim-harita-bolumu { padding: 20px 15px 80px; }
    
    .telefon-karti { padding: 40px 20px; }
    .telefon-karti p { font-size: 28px; }
    .tel-ikon { width: 65px; height: 65px; font-size: 28px; margin-bottom: 20px; }
    
    .harita-rozet {
        font-size: 12px;
        padding: 12px 20px;
        bottom: -10px;
    }
}