/* =========================================
   İLETİŞİM SAYFASI STİLLERİ (CONTACT PAGE)
   ========================================= */

/* Hero Section */
.contact-header-section {
    padding-top: 20vh;
    padding-bottom: 8rem;
}

.contact-main-title {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -3px;
    color: var(--text-main);
    margin: 0;
}

.contact-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
}

/* Boşluklar */
.mb-10 { margin-bottom: 8rem; }
@media (min-width: 992px) {
    .border-start-lg { border-left: 1px solid rgba(0,0,0,0.1); }
}

/* İletişim Bilgileri (Sol Taraf) */
.info-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.info-text, .info-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.info-link {
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.info-link:hover {
    color: #e95332;
    border-bottom-color: #e95332;
}

.contact-social-links a {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.contact-social-links a:hover {
    color: #e95332;
}

/* İletişim Formu (Sağ Taraf) */
.premium-contact-form .form-group {
    margin-bottom: 2.5rem;
}

.premium-contact-form label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.8rem;
    display: block;
}

.premium-input, .premium-select, .premium-textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0,0,0,0.2);
    border-radius: 0;
    padding: 0.8rem 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main);
    transition: border-color 0.3s ease;
}

.premium-input::placeholder, .premium-textarea::placeholder {
    color: #cccccc;
}

.premium-input:focus, .premium-select:focus, .premium-textarea:focus {
    outline: none;
    box-shadow: none;
    border-bottom-color: var(--text-main);
    background: transparent;
}

/* Özel Gönder Butonu */
.submit-pill-btn {
    display: inline-flex;
    padding: 1.2rem 4rem;
    background: var(--text-main);
    color: var(--bg-color);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.submit-pill-btn:hover {
    background: #e95332;
    color: #ffffff;
}

/* Harita Bölümü */
.map-wrapper {
    height: 60vh;
    width: 100%;
    background: #e0e0e0;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .contact-header-section { padding-top: 15vh; padding-bottom: 4rem; }
    .mb-10 { margin-bottom: 4rem; }
    .map-wrapper { height: 40vh; border-radius: 1.5rem !important; }
    .info-text, .info-link, .premium-input, .premium-select, .premium-textarea { font-size: 1.2rem; }
}
