/* =========================
   İNSAN KAYNAKLARI (İK) SAYFASI
========================= */

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

.ik-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: Detaylar */
.ik-details h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0F2A6B;
    margin-bottom: 25px;
    line-height: 1.2;
}

.ik-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-box i {
    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;
}

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

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

/* Sağ Taraf: Form Kartı */
.form-holder {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(15, 42, 107, 0.08);
    position: relative;
    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;
    padding: 0;
    border: 2px solid #F57C22;
    overflow: hidden;
}

.form-circle-icon img {
    width: 65%;
    height: 65%;
    object-fit: cover;
    display: block;
}

/* =========================
   CF7 FORM ÖZELLEŞTİRME
========================= */
.clemix-form-wrapper input:not([type="submit"]),
.clemix-form-wrapper select,
.clemix-form-wrapper textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    color: #0F2A6B;
    transition: all 0.3s ease;
}

.clemix-form-wrapper input:focus,
.clemix-form-wrapper select: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;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
}

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

/* Dosya Yükleme Alanı */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    min-height: 160px;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

.file-upload-wrapper .wpcf7-form-control-wrap {
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    z-index: 10;
}

.file-upload-wrapper input[type="file"] {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    cursor: pointer !important;
    display: block !important;
}

.file-upload-design {
    position: relative;
    z-index: 5;
    pointer-events: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
















/* ================================================================
   İNSAN KAYNAKLARI (İK) MOBİL DÜZENLEME (768px VE ALTI)
   ================================================================ */
@media screen and (max-width: 768px) {
    
    /* 1. Sayfa Boşluğunu Daralt */
    .ik-page-wrapper {
        padding: 80px 0 50px 0 !important;
    }

    .ik-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 0 15px !important;
    }

    /* 2. Sol Taraf Detayları */
    .ik-details {
        text-align: center !important;
    }

    .ik-details h2 {
        font-size: 28px !important;
        margin-bottom: 15px !important;
    }

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

    .info-box {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px !important;
    }

    .info-box i {
        margin: 0 auto 15px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }

    /* 3. Form Kartı ve İkon */
    .form-holder {
        padding: 40px 20px 30px !important;
        border-radius: 20px !important;
    }

    .form-circle-icon {
        width: 70px !important;
        height: 70px !important;
        top: -35px !important;
        right: 50% !important;
        transform: translateX(50%) !important; /* İkonu mobilde ortaladık */
    }

    /* 4. Dosya Yükleme (CV) Alanı */
    .file-upload-wrapper {
        min-height: 140px !important;
        padding: 20px !important;
    }

    .file-upload-design i {
        font-size: 30px !important;
        margin-bottom: 10px !important;
    }

    .file-upload-design span {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }

    /* 5. Form Elemanları */
    .clemix-form-wrapper input:not([type="submit"]),
    .clemix-form-wrapper select,
    .clemix-form-wrapper textarea {
        font-size: 16px !important; /* Zoom yapmasını engeller */
        padding: 12px 15px !important;
        margin-bottom: 15px !important;
    }

    .clemix-form-wrapper input[type="submit"] {
        padding: 15px !important;
        font-size: 15px !important;
    }
}