/* Kankacım, İletişim Sayfası - MAVİ & TURUNCU KONSEPT */

/* --- SAYFA BAŞLIĞI --- */
.page-header {
    background-color: #111;
    /* KANKACIM GÖRSEL YOLUNU BURAYA EKLEDİK */
    background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../uploads/genelicerik/iletisim.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
    margin-bottom: 80px;
    background-attachment: fixed;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb {
    font-size: 1.1rem;
    color: #ddd;
    background-color: rgba(0,0,0,0.6);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.breadcrumb a {
    /* Linkler TURUNCU (#e68f23) */
    color: #e68f23;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb span {
    margin: 0 10px;
    color: #fff;
}

/* --- KONTEYNER --- */
.contact-page-section {
    padding-bottom: 100px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Üst Metin */
.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-intro h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* --- İLETİŞİM KARTLARI VE HARİTA DÜZENİ --- */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

/* Sol Taraf: Bilgi Kartları */
.contact-info-col {
    flex: 1;
    min-width: 350px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Bilgi Kartı */
.contact-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    /* Sol taraf çizgisi MAVİ (#317da8) */
    border-left: 5px solid #317da8;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    
    /* Animasyon */
    opacity: 0;
    transform: translateX(-30px);
}

.contact-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.c-icon {
    width: 60px;
    height: 60px;
    /* İkon arka planı MAVİ tint */
    background-color: rgba(49, 125, 168, 0.1);
    /* İkon rengi MAVİ (#317da8) */
    color: #317da8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.c-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.c-content p, .c-content a {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s;
}

.c-content a:hover {
    /* Link hover rengi TURUNCU (#e68f23) */
    color: #e68f23;
}

/* Özel WhatsApp Kartı (Marka rengini koruyoruz ama istenirse değiştirebiliriz) */
.contact-card.whatsapp-card {
    border-left-color: #25D366;
    background-color: #f0fff4; /* Hafif yeşilimsi zemin */
}

.contact-card.whatsapp-card .c-icon {
    background-color: #dcf8c6;
    color: #128C7E;
}

.btn-contact-wp {
    display: inline-block;
    margin-top: 10px;
    background-color: #25D366;
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-contact-wp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

/* Sağ Taraf: Harita */
.contact-map-col {
    flex: 1.5; /* Harita biraz daha geniş olsun */
    min-width: 350px;
    height: 500px;
    background-color: #eee;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    
    /* Animasyon */
    opacity: 0;
    transform: translateX(30px);
}

.contact-map-col.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Iframe'i responsive yap */
.contact-map-col iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-map-col {
        height: 400px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
}