/* --- İletişim Sayfası Stilleri --- */

/* Genel Sayfa Başlığı Alanı (Hizmetler sayfasıyla aynı) */
.page-header-section {
    background: linear-gradient(rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.8)), url('../uploads/iletisim.png') no-repeat center center/cover;
    padding-top: calc(6rem + 118px);
    padding-bottom: 6rem;
    text-align: center;
    color: #ffffff;
}

.page-header-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.breadcrumb a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #f97116;
}

/* İletişim İçerik Alanı */
.contact-page-section {
    padding: 6rem 0;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    display: inline-block;
    color: #f97116;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

/* Ana Grid Yapısı */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobilde tek sütun */
    gap: 3rem;
}

/* Form Alanı */
.contact-form-container {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97116;
    box-shadow: 0 0 0 3px #fce8db;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #f97116;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
    background-color: #fb923c;
    transform: translateY(-2px);
}

/* Bilgi ve Harita Alanı */
.contact-info-container {
    background-color: #1f2937; /* Koyu arka plan */
    border-radius: 12px;
    color: #e5e7eb;
    overflow: hidden;
}

.contact-info-box {
    padding: 2.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.icon-wrapper {
    background-color: #374151;
    border-radius: 50%;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
    color: #f97116;
}

.contact-info-item strong {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}
.contact-info-item a:hover {
    color: #f97116;
}

.map-container {
    width: 100%;
    height: 300px; /* Mobilde harita yüksekliği */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Tablet ve Masaüstü (992px ve üstü) */
@media screen and (min-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1.2fr 1fr;
    }
    .form-row {
        flex-direction: row;
    }
    .map-container {
        height: 100%; /* Bilgi kutusunun kalanını kapla */
    }
    .contact-info-container{
        display: flex;
        flex-direction: column;
    }
}

