/* ==========================================================
   İLETİŞİM & BAYİLİK SAYFASI - CLEAN PRO SYSTEM
   ==========================================================

   BU DOSYANIN AMACI:

   - Kurumsal iletişim sayfası tasarımı
   - 2 sütunlu modern layout
   - Sol taraf: firma bilgileri
   - Sağ taraf: iletişim formu
   - Mobil uyumlu yapı

   NOT:
   Eski .iletisim-kutu sistemi kaldırılmıştır
   çünkü .contact-wrapper daha modern ve stabil bir yapı sağlar.

========================================================== */


/* ==========================================================
   SAYFA GENEL ALAN
========================================================== */

.iletisim{
    max-width:1000px;
    margin:60px auto;
    padding:20px;
}


/* ==========================================================
   SAYFA BAŞLIĞI
========================================================== */

.iletisim h1{
    text-align:center;
    font-size:32px;
    color:#13315C;
    margin-bottom:30px;
    font-weight:700;
}


/* ==========================================================
   2 SÜTUNLU ANA LAYOUT
========================================================== */

.contact-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    max-width:1100px;
    margin:50px auto;
    padding:20px;
}


/* ==========================================================
   SOL PANEL - FİRMA BİLGİLERİ
========================================================== */

.contact-info{
    background:linear-gradient(135deg,#13315C,#1f3b57);
    color:#fff;
    padding:30px;
    border-radius:16px;
}


/* Başlık */
.contact-info h2{
    font-size:26px;
}


/* Alt açıklama */
.contact-info .sub{
    opacity:0.8;
    margin-bottom:20px;
}


/* ==========================================================
   BİLGİ KUTULARI
========================================================== */

.info-box{
    background:rgba(255,255,255,0.08);
    padding:12px;
    border-radius:10px;
    margin-bottom:12px;
}

.info-box span{
    font-size:12px;
    opacity:0.8;
}

.info-box p{
    margin-top:4px;
    font-weight:bold;
}


/* =========================================
   WHATSAPP BUTTON (PROTECTED STYLE)
========================================= */

.whatsapp-btn{
    display:block;
    text-align:center;

    background:#25D366 !important;
    color:#fff !important;

    padding:12px;
    border-radius:10px;

    margin-top:20px;

    text-decoration:none;
    font-weight:bold;

    transition:0.3s;
}

.whatsapp-btn:hover{
    background:#1ebe5d !important;
    transform:translateY(-2px);
}


/* ==========================================================
   SAĞ PANEL - İLETİŞİM FORMU
========================================================== */

.contact-form{
    background:#fff;
    padding:30px;
    border-radius:16px;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
}

.contact-form h2{
    margin-bottom:20px;
    color:#13315C;
}


/* ==========================================================
   FORM INPUT TASARIMI
========================================================== */

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:10px;
    transition:0.3s;
}


/* INPUT FOCUS */
.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#29ABE2;
    outline:none;
}


/* ==========================================================
   FORM BUTONU
========================================================== */

.contact-form button{
    width:100%;
    padding:14px;
    background:#13315C;
    color:#fff;
    border:none;
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#29ABE2;
}


/* ==========================================================
   KVKK METİN ALANI
========================================================== */

.kvkk{
    font-size:12px;
    color:#666;
}


/* ==========================================================
   KVKK LINK STILI
========================================================== */

.kvkk-link{
    color:#13315C;
    font-weight:600;
    text-decoration:none;
    border-bottom:2px solid #13315C;
    padding-bottom:2px;
    transition:0.3s;
}

.kvkk-link:hover{
    color:#29ABE2;
    border-bottom-color:#29ABE2;
}


/* ==========================================================
   BAŞARILI MESAJ
========================================================== */

.basarili-mesaj{
    background:#eaf7ea;
    color:#1e7a3d;
    padding:12px;
    border-radius:10px;
    margin-bottom:20px;
    text-align:center;
}
/* ==========================================
   İLETİŞİM BİLGİ KARTI
========================================== */

.contact-card{
    margin-top:25px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:14px;
    padding:20px;
}

.contact-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:20px;
}

.contact-line{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.10);
}

.contact-line:last-child{
    border-bottom:none;
}

.contact-line strong{
    color:#fff;
    font-size:14px;
}

.contact-line span{
    color:rgba(255,255,255,0.85);
    line-height:1.6;
    font-size:15px;
}
.contact-card{

    max-width:1080px;
    margin:40px auto;

    background:#fff;

    padding:30px;

    border-radius:16px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    text-align:center;
}

.contact-card h3{

    color:#13315C;
    margin-bottom:25px;
    font-size:28px;
}

.card-item{

    padding:12px 0;
    border-bottom:1px solid #e5e5e5;
}

.card-item:last-child{
    border-bottom:none;
}

.card-item strong{

    display:block;
    color:#13315C;
    margin-bottom:5px;
}

.card-item p{

    margin:0;
    color:#555;
}
/* ==========================================================
   RESPONSIVE (MOBİL UYUM)
========================================================== */
@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-bottom{
        grid-column:auto;
        margin-top:20px;
    }

    .iletisim h1{
        font-size:26px;
    }

}
@media(max-width:768px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .iletisim h1{
        font-size:26px;
    }
}