/* =========================================
   İLETİŞİM SAYFASI (contact.css)
   ========================================= */

/* --- GENEL FONT ZORLAMASI --- */
.contact-map, .contact-section, .contact-card,
h1, h2, h3, h4, h5, h6, p, span, a, li, label, input, select, textarea, button {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* =========================================
   HARİTA ALANI (BANNER STANDARDINA GETİRİLDİ)
   ========================================= */
.contact-map {
    width: 95%;
    margin: 100px auto 0 auto;
    aspect-ratio: 21 / 7;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* =========================================
   İÇERİK BÖLÜMÜ
   ========================================= */
.contact-section {
    padding: 4rem 0 6rem 0;
    background-color: #fcfcfc;
}

/* Şirket Başlığı */
.company-title {
    text-align: center;
    margin-bottom: 3rem;
}

.company-title h2 {
    color: #555555 !important;
    font-size: 1.8rem;
    font-weight: 700 !important;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

/* Grid Yapısı */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: stretch !important;
}

/* =========================================
   KART TASARIMLARI
   ========================================= */
.contact-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100% !important;
}

.contact-card > *:first-child {
    margin-top: 0 !important;
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #555555 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}

/* --- SOL: FORM TASARIMI --- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700 !important;
    color: #555555 !important;
    font-size: 0.9rem;
    text-transform: none;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #333;
    outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus {
    border-color: #d31212;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(211, 18, 18, 0.1);
    transform: translateY(-2px);
}

.contact-card textarea {
    height: 120px;
    resize: vertical;
}

::placeholder {
    color: #a0aec0;
    opacity: 1;
}

/* Gönder Butonu */
.submit-btn {
    background-color: #d31212;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    margin-top: auto;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #b00e0e;
    transform: translateY(-2px);
}

/* --- SAĞ: BİLGİ KARTI --- */
.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-card .info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.icon-box {
    width: 45px;
    height: 45px;
    background-color: rgba(211, 18, 18, 0.1);
    color: #d31212;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-content .label {
    font-size: 0.85rem;
    color: #555555 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.info-content p,
.info-content span,
.info-content a {
    color: #7a7a7a !important;
    font-size: 1rem;
    font-weight: 400 !important;
    line-height: 1.5;
    text-decoration: none;
}

.info-content a:hover {
    color: #d31212 !important;
}

/* =========================================
   MOBİL UYUMLULUK
   ========================================= */
@media (max-width: 991px) {
    .contact-map {
        aspect-ratio: 21 / 9;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        height: auto !important;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}