/* =========================
   İLETİŞİM SAYFASI STİLLERİ
========================= */

.contact-page-wrapper {
    padding: 200px 0;
    background-color: #E8F6FF;
    font-family: 'Inter', sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Sol Taraf: İletişim Detayları */
.contact-details h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0F2A6B;
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-details p.subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 45px;
    line-height: 1.6;
}

.info-box {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(15, 42, 107, 0.03);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.info-box:hover {
    transform: translateX(10px);
    border-color: #F57C22;
    box-shadow: 0 15px 40px rgba(245, 124, 34, 0.1);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(245, 124, 34, 0.1);
    color: #F57C22;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 24px;
    margin-right: 20px;
    transition: 0.3s;
}

.info-box:hover .info-icon {
    background: #0F2A6B;
    color: #fff;
}

.info-content h4 {
    margin: 0 0 5px 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #F57C22;
    font-weight: 700;
}

.info-content p {
    margin: 0;
    font-size: 16px;
    color: #0F2A6B;
    font-weight: 600;
}

/* Sosyal Medya */
.social-side {
    margin-top: 40px;
    padding-left: 10px;
}

.follow-text {
    font-weight: 700;
    color: #0F2A6B;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #0F2A6B;
    font-size: 22px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #F57C22;
    transform: translateY(-3px);
}

/* Sağ Taraf: Form Kartı */
.form-holder {
    position: relative;
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(15, 42, 107, 0.08);
    border: 1px solid rgba(245, 124, 34, 0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 800;
    color: #0F2A6B;
    margin-bottom: 35px;
}

.form-circle-icon {
    position: absolute;
    top: -45px;
    right: 40px;
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(245, 124, 34, 0.2);
    z-index: 10;
    border: 2px solid #F57C22;
}

.form-circle-icon i {
    font-size: 35px;
    color: #F57C22;
}

/* Harita */
.map-wrapper {
    width: 100%;
    height: 450px;
    filter: grayscale(100%) opacity(0.8);
    transition: 0.5s ease;
    border-top: 1px solid #e2e8f0;
}

.map-wrapper:hover {
    filter: grayscale(0%) opacity(1);
}

/* CF7 Input Özelleştirme */
.clemix-form-wrapper input:not([type="submit"]),
.clemix-form-wrapper textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 15px;
    color: #0F2A6B;
    transition: 0.3s;
}

.clemix-form-wrapper input:focus,
.clemix-form-wrapper textarea:focus {
    border-color: #F57C22;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 124, 34, 0.1);
}

.clemix-form-wrapper input[type="submit"] {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #F57C22 0%, #0F2A6B 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.clemix-form-wrapper input[type="submit"]:hover {
    box-shadow: 0 10px 20px rgba(245, 124, 34, 0.35);
    transform: translateY(-2px);
}
















/* ================================================================
   İLETİŞİM SAYFASI MOBİL DÜZENLEME (768px VE ALTI)
   ================================================================ */
@media screen and (max-width: 768px) {
    
    /* 1. Genel Boşlukları ve Grid Yapısını Ayarla */
    .contact-page-wrapper {
        padding: 80px 0 50px 0 !important; /* 200px mobilde çok devasa */
    }

    .contact-container {
        grid-template-columns: 1fr !important; /* Yan yana yapıyı alt alta yap */
        gap: 40px !important;
        padding: 0 15px !important;
    }

    /* 2. Sol Taraf: İletişim Detayları */
    .contact-details {
        text-align: center !important;
    }

    .contact-details h2 {
        font-size: 28px !important; /* 42px çok büyüktü */
        margin-bottom: 15px !important;
    }

    .contact-details p.subtitle {
        font-size: 15px !important;
        margin-bottom: 30px !important;
    }

    .info-box {
        flex-direction: column !important; /* İkon ve yazıyı alt alta al */
        text-align: center !important;
        padding: 20px !important;
        margin-bottom: 15px !important;
    }

    .info-icon {
        margin: 0 auto 15px !important; /* İkonu ortala */
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }

    /* 3. Sağ Taraf: Form Kartı */
    .form-holder {
        padding: 40px 20px 30px !important; /* İç boşluğu daralt */
        border-radius: 20px !important;
    }

    .form-title {
        font-size: 22px !important;
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    /* O meşhur yuvarlak ikonu mobilde biraz küçült veya ortala */
    .form-circle-icon {
        width: 70px !important;
        height: 70px !important;
        top: -35px !important;
        right: 50% !important;
        transform: translateX(50%) !important; /* Tam ortaya sabitle */
    }

    .form-circle-icon i {
        font-size: 28px !important;
    }

    /* 4. Sosyal Medya */
    .social-side {
        text-align: center !important;
        padding-left: 0 !important;
    }

    .social-links {
        justify-content: center !important;
    }

    /* 5. Harita */
    .map-wrapper {
        height: 300px !important; /* Mobilde haritayı biraz daha kısa tutabiliriz */
        filter: grayscale(0%) !important; /* Mobilde direkt renkli görünsün (hover zor olduğu için) */
    }

    /* 6. Form Giriş Alanları (Touch-friendly) */
    .clemix-form-wrapper input:not([type="submit"]),
    .clemix-form-wrapper textarea {
        font-size: 16px !important; /* Mobilde inputa odaklanınca ekranın zoom yapmasını engeller */
        padding: 12px 15px !important;
    }
}















/* =========================
   CF7 BİLDİRİM ÖZELLEŞTİRME
========================= */

/* Genel Mesaj Kutusu Yapısı */
div.wpcf7-response-output {
    margin: 20px 0 0 0 !important;
    padding: 15px 25px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    border: 2px solid transparent !important;
    text-align: center !important;
    transition: all 0.3s ease-in-out;
}

/* Başarıyla Gönderildiğinde (Yeşil/Mavi Tonları) */
/* Sizin tasarımınıza uygun olması için hafif bir mavi-yeşil tercih ettim */
.wpcf7-mail-sent-ok {
    background-color: #ecfdf5 !important;
    border-color: #10b981 !important;
    color: #065f46 !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

/* Hata Oluştuğunda veya Boş Alan Varsa (Turuncu/Kırmızı) */
.wpcf7-validation-errors, 
.wpcf7-acceptance-missing,
.wpcf7-aborted,
.wpcf7-spam-blocked {
    background-color: #fff7ed !important;
    border-color: #F57C22 !important;
    color: #c2410c !important;
    box-shadow: 0 4px 12px rgba(245, 124, 34, 0.1);
}

/* Form İçindeki Spesifik Hata Mesajları (Input altındaki küçük yazılar) */
span.wpcf7-not-valid-tip {
    color: #dc2626 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-top: -10px !important;
    margin-bottom: 15px !important;
    display: block !important;
}

/* Yükleniyor (Spinner) İkonu Rengi */
.wpcf7 .wpcf7-spinner {
    background-color: #F57C22 !important;
    margin: 10px auto !important;
    display: block !important;
}