/* Bu dosya assets/iletisim.css
  "İletişim" sayfasına özel stiller.
  Ana Renk: #4b975f
*/

/* Ana sayfa fontuyla tutarlılık */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

/* Sayfa Başlığı ve Breadcrumb (hakkimizda.css ile aynı)
*/
.page-hero {
    background-color: #f8fdf9; 
    padding: 3rem 1rem;
    text-align: center;
    border-bottom: 1px solid #e6f7eb;
}

.breadcrumb {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.breadcrumb a {
    color: #4b975f;
    text-decoration: none;
    font-weight: 500;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.7rem;
    margin: 0 0.5rem;
    color: #aaa;
}

.page-hero h1 {
    font-size: 3rem; /* SEO H1 */
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* Ana İletişim Alanı (Form + Bilgiler)
*/
.contact-main {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    /* Metin (1.2fr) Formdan (1fr) biraz daha geniş */
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-start; /* Sütunları yukarıdan başlat */
}

/* Sol Sütun: İletişim Bilgileri */
.contact-info-col .section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b975f;
    background-color: #e6f7eb;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.contact-info-col h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.contact-info-col p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* Bilgi Listesi (Adres, Tel, Mail) */
.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.info-list li i {
    font-size: 1.3rem;
    color: #4b975f;
    margin-top: 0.3rem;
    width: 25px;
    text-align: center;
}

.info-list li strong {
    display: block;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.info-list li span,
.info-list li a {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-decoration: none;
}
.info-list li a:hover {
    color: #4b975f;
}

.contact-info-col h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1.5rem;
}

/* Sosyal Medya İkonları (Footer'dakiyle aynı stil) */
.contact-social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-social-links a {
    width: 40px;
    height: 40px;
    background-color: #e6f7eb; 
    color: #4b975f; 
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background-color: #4b975f; 
    color: #ffffff;
    transform: scale(1.1);
}

/* Sağ Sütun: İletişim Formu */
.contact-form-col {
    background-color: #f8fdf9; /* Formu hafifçe ayır */
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #e6f7eb;
}

/* Form stilleri (label, input, textarea, btn)
  franchisebasvuruform.css dosyasından çekilir.
  Aşağıdaki sınıflar o dosyada zaten tanımlı:
  .form-group-row
  .form-group
  .form-group label
  .form-group input
  .form-group textarea
  .submit-btn
  .form-mesaj (success/error)
*/


/* Google Haritası */
.contact-map {
    /* Haritanın üstünde ve altında çizgi/boşluk olmasın */
    line-height: 0; 
}

.contact-map iframe {
    width: 100%; /* Zaten %100'dü ama garanti olsun */
    height: 450px;
}


/* --- MOBİL UYUMLULUK --- */
@media (max-width: 992px) {
    .contact-main {
        padding: 4rem 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr; /* Tablette 1 sütun */
        gap: 3rem;
    }
    
    .contact-form-col {
        /* Formu üste al */
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-main {
        padding: 3rem 1rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-info-col h2 {
        font-size: 2rem;
    }
    .contact-info-col p {
        font-size: 1rem;
    }
    
    .contact-form-col {
        padding: 1.5rem;
    }
}