/* --- İletişim Sayfası Tasarımı --- */

/* 1. Page Header */
.page-header-section {
    background: linear-gradient(rgba(0, 43, 92, 0.8), rgba(0, 43, 92, 0.9)), url('https://source.unsplash.com/1600x400/?sailing,sea');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
}

.page-header-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header-section p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 2. Grid Yapısı (Sol ve Sağ Kutu) */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Sol daha dar, Sağ (Form) daha geniş */
    gap: 40px;
    align-items: start;
}

/* Ortak Kutu Stilleri */
.contact-info-box, .contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.box-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.box-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

/* Sol Taraf: Bilgiler */
.box-desc {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item .icon {
    width: 45px;
    height: 45px;
    background: #f0f4f8; /* Açık mavi zemin */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: 0.3s;
}

.info-item:hover .icon {
    background: var(--primary-color);
    color: #fff;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.info-item p, .info-item a {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    text-decoration: none;
}

.info-item a:hover {
    color: var(--accent-color);
}

/* Sosyal Medya */
.social-connect h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Sağ Taraf: Form Stilleri (CF7 Uyumlu) */
/* CF7'nin oluşturduğu inputlara stil veriyoruz */
.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 20px;
}

.wpcf7-text, .wpcf7-textarea, .wpcf7-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
    background: #fcfcfc;
}

.wpcf7-text:focus, .wpcf7-textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 43, 92, 0.1);
}

.wpcf7-submit {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}

.wpcf7-submit:hover {
    background: #e03e00;
}

/* 3. Harita */
.contact-map-section iframe {
    display: block; /* Alt boşluk oluşmaması için */
    filter: grayscale(20%); /* Haritayı biraz grileştirip siteye uydurma (Opsiyonel) */
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Mobilde alt alta */
    }
    
    .page-header-section {
        padding: 50px 0;
    }
}