/**
 * =============================================================================
 * NUR ENERJİ — KURUMSAL İLETİŞİM & MÜHENDİSLİK MASASI MİKRO-MODÜLÜ
 * -----------------------------------------------------------------------------
 * @module      : iletisim.css
 * @description : Departman kartları, iletişim formu ve interaktif harita stilleri.
 * @version     : 1.0.0
 * =============================================================================
 */

.contact-section-wrap {
    padding: 60px 0 90px;
    background: #f8fafc;
}

/* Departman Kartları */
.dept-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.dept-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: #059669;
}

.dept-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.dept-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.dept-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 16px;
}

.dept-card-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.86rem;
}

.dept-card-contact a {
    color: #334155;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dept-card-contact a:hover {
    color: #059669;
}

/* İletişim Formu Kutusu */
.contact-form-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-form-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 25px;
}

.contact-input {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.contact-input:focus {
    outline: none;
    background: #ffffff;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.btn-contact-submit {
    background: #059669;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.35);
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-contact-submit:hover {
    background: #047857;
    transform: translateY(-2px);
}

/* Harita ve Konum Çerçevesi */
.contact-map-frame {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 420px;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
