/* ==================================================
   KURUMSAL İÇERİK
   ================================================== */

.corporate-content-section {
    width: 100%;
    padding: 80px 0 100px;
    background-color: #fff;
}

.corporate-content-section .container {
    max-width: 1200px;
}

.corporate-content-image {
    width: 100%;
    overflow: hidden;
    background-color: #eee;
}

.corporate-content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.corporate-content-text {
    color: #555;
}

.corporate-content-text p {
    margin: 0 0 18px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
}

.corporate-content-text p:last-child {
    margin-bottom: 0;
}

/* Tablet */

@media (max-width: 991.98px) {
    .inner-page-header {
        min-height: 155px;
    }

    .inner-page-header h1 {
        font-size: 31px;
    }

    .corporate-content-section {
        padding: 60px 0 75px;
    }

    .corporate-content-image {
        max-width: 650px;
        margin: 0 auto;
    }
}

/* Telefon */

@media (max-width: 575.98px) {
    .inner-page-header {
        min-height: 135px;
    }

    .inner-page-header .container,
    .corporate-content-section .container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .inner-page-header h1 {
        margin-bottom: 11px;
        font-size: 27px;
    }

    .page-breadcrumb {
        gap: 6px;
        font-size: 11px;
    }

    .corporate-content-section {
        padding: 45px 0 60px;
    }

    .corporate-content-text p {
        font-size: 14px;
        line-height: 1.75;
    }
}

/* Hedef ve İlkelerimiz */

.corporate-principle {
    margin-bottom: 30px;
}

.corporate-principle:last-child {
    margin-bottom: 0;
}

.corporate-principle h2 {
    position: relative;
    margin: 0 0 14px;
    padding-bottom: 11px;
    color: var(--mge-blue);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    text-transform: uppercase;
}

.corporate-principle h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    content: "";
    background-color: var(--mge-blue);
}

.corporate-principle p {
    margin-bottom: 14px;
}

@media (max-width: 575.98px) {
    .corporate-principle {
        margin-bottom: 25px;
    }

    .corporate-principle h2 {
        font-size: 18px;
    }
}

/* Politika sayfası imza alanı */

.policy-signature {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 38px;
    padding-top: 22px;
    border-top: 1px solid #dedede;
}

.policy-signature strong {
    color: var(--mge-blue);
    font-size: 16px;
    font-weight: 600;
}

.policy-signature span {
    margin-top: 3px;
    color: #777;
    font-size: 13px;
}

/* ==================================================
   FAALİYET BELGELERİ
   ================================================== */

.certificates-section {
    width: 100%;
    padding: 80px 0 100px;
    background-color: #fff;
}

.certificates-section .container {
    max-width: 1100px;
}

.certificates-intro {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.certificates-intro h2 {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 14px;
    color: var(--mge-blue);
    font-size: 28px;
    font-weight: 600;
}

.certificates-intro h2::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 2px;
    content: "";
    background-color: var(--mge-blue);
    transform: translateX(-50%);
}

.certificates-intro p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
}

.certificate-card {
    display: flex;
    height: 100%;
    min-height: 240px;
    padding: 34px;
    border: 1px solid #e6e6e6;
    background-color: #f8f8f8;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.certificate-card:hover {
    border-color: rgba(23, 71, 151, 0.3);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}

.certificate-icon {
    display: flex;
    width: 70px;
    flex: 0 0 70px;
    justify-content: flex-start;
    margin-right: 22px;
    color: var(--mge-blue);
}

.certificate-icon i {
    font-size: 55px;
    line-height: 1;
}

.certificate-content {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    flex-direction: column;
}

.certificate-language {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 5px 10px;
    color: var(--mge-blue);
    background-color: rgba(23, 71, 151, 0.09);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.certificate-content h3 {
    margin: 0 0 10px;
    color: #262626;
    font-size: 19px;
    font-weight: 600;
    line-height: 1.35;
}

.certificate-content p {
    margin: 0 0 22px;
    color: #777;
    font-size: 13px;
    line-height: 1.6;
}

.certificate-button {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 10px 17px;
    color: #fff;
    background-color: var(--mge-blue);
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.certificate-button:hover,
.certificate-button:focus {
    color: #fff;
    background-color: var(--mge-dark-blue);
}

/* Mobil */

@media (max-width: 575.98px) {
    .certificates-section {
        padding: 50px 0 65px;
    }

    .certificates-section .container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .certificates-intro {
        margin-bottom: 32px;
    }

    .certificates-intro h2 {
        font-size: 24px;
    }

    .certificate-card {
        min-height: 0;
        padding: 26px 22px;
    }

    .certificate-icon {
        width: 52px;
        flex-basis: 52px;
        margin-right: 15px;
    }

    .certificate-icon i {
        font-size: 43px;
    }

    .certificate-content h3 {
        font-size: 17px;
    }
}

/* ==================================================
   İNSAN KAYNAKLARI
   ================================================== */

.career-section {
    width: 100%;
    padding: 80px 0 100px;
    background-color: #fff;
}

.career-section .container {
    max-width: 1100px;
}

.career-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    box-shadow: 0 15px 38px rgba(0, 0, 0, 0.07);
}

.career-info {
    padding: 50px 44px;
    color: #fff;
    background:
        linear-gradient(
            145deg,
            var(--mge-blue),
            var(--mge-dark-blue)
        );
}

.career-small-title {
    display: inline-block;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.career-info h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 29px;
    font-weight: 600;
    line-height: 1.3;
}

.career-info > p {
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.75;
}

.career-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 27px;
}

.career-info-item:last-child {
    margin-bottom: 0;
}

.career-info-item i {
    width: 42px;
    flex: 0 0 42px;
    margin-right: 14px;
    color: #fff;
    font-size: 30px;
    line-height: 1;
}

.career-info-item div {
    display: flex;
    flex-direction: column;
}

.career-info-item strong {
    margin-bottom: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.career-info-item span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    line-height: 1.6;
}

.career-form-wrapper {
    padding: 50px;
    background-color: #fff;
}

.career-form {
    width: 100%;
}

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.form-field label span {
    color: #c62828;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    outline: none;
    color: #333;
    background-color: #fff;
    font-size: 13px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--mge-blue);
    box-shadow: 0 0 0 3px rgba(23, 71, 151, 0.09);
}

.form-field input[type="file"] {
    padding: 8px;
}

.form-field input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 8px 13px;
    border: 0;
    color: #fff;
    background-color: var(--mge-blue);
    font-size: 12px;
    cursor: pointer;
}

.form-field small {
    display: block;
    margin-top: 7px;
    color: #888;
    font-size: 11px;
}

.career-consent {
    display: flex;
    align-items: flex-start;
    margin: 6px 0 25px;
}

.career-consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    margin: 2px 10px 0 0;
    accent-color: var(--mge-blue);
}

.career-consent label {
    color: #666;
    font-size: 11px;
    line-height: 1.6;
}

.form-submit-button {
    display: inline-flex;
    min-width: 145px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    color: #fff;
    background-color: var(--mge-blue);
    font-size: 13px;
    font-weight: 600;
    transition:
        gap 0.2s ease,
        background-color 0.2s ease;
}

.form-submit-button:hover,
.form-submit-button:focus {
    gap: 17px;
    background-color: var(--mge-dark-blue);
}

/* Tablet */

@media (max-width: 991.98px) {
    .career-section {
        padding: 60px 0 75px;
    }

    .career-layout {
        grid-template-columns: 1fr;
    }
}

/* Telefon */

@media (max-width: 575.98px) {
    .career-section {
        padding: 45px 0 60px;
    }

    .career-section .container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .career-info,
    .career-form-wrapper {
        padding: 34px 25px;
    }

    .career-info h2 {
        font-size: 24px;
    }

    .form-submit-button {
        width: 100%;
    }
}

/* ==================================================
   GRUP FİRMALARIMIZ
   ================================================== */

.companies-section {
    width: 100%;
    padding: 80px 0 100px;
    background-color: #fff;
}

.companies-section .container {
    max-width: 1100px;
}

.companies-intro {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.companies-intro h2 {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 14px;
    color: var(--mge-blue);
    font-size: 28px;
    font-weight: 600;
}

.companies-intro h2::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 2px;
    content: "";
    background-color: var(--mge-blue);
    transform: translateX(-50%);
}

.companies-intro p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.75;
}

.company-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.company-card:hover {
    border-color: rgba(23, 71, 151, 0.35);
    box-shadow: 0 15px 34px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.company-card > a {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.company-card-image {
    position: relative;
    overflow: hidden;
    background-color: #f4f4f4;
    aspect-ratio: 4 / 3;
}

.company-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.company-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background-color: rgba(13, 55, 126, 0.82);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-card-overlay i {
    font-size: 18px;
}

.company-card:hover .company-card-image img {
    transform: scale(1.05);
}

.company-card:hover .company-card-overlay {
    opacity: 1;
}

.company-card-footer {
    display: flex;
    min-height: 75px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 18px 23px;
    background-color: #fff;
}

.company-card-footer h3 {
    margin: 0;
    color: #262626;
    font-size: 18px;
    font-weight: 600;
}

.company-card-footer > i {
    color: var(--mge-blue);
    font-size: 21px;
    transition: transform 0.2s ease;
}

.company-card:hover .company-card-footer > i {
    transform: translateX(5px);
}

/* Mobil */

@media (max-width: 575.98px) {
    .companies-section {
        padding: 50px 0 65px;
    }

    .companies-section .container {
        padding-right: 24px;
        padding-left: 24px;
    }

    .companies-intro {
        margin-bottom: 32px;
    }

    .companies-intro h2 {
        font-size: 24px;
    }

    .company-card-footer {
        min-height: 65px;
        padding: 15px 18px;
    }

    .company-card-footer h3 {
        font-size: 16px;
    }
}

/* İK formu durum ve doğrulama mesajları */

.career-form-status {
    margin-bottom: 24px;
    padding: 14px 18px;
    border: 1px solid transparent;
    font-size: 14px;
    line-height: 1.6;
}

.career-form-status.is-success {
    color: #155724;
    border-color: #b7dfc1;
    background-color: #dff2e3;
}

.career-form-status.is-error {
    color: #842029;
    border-color: #f1aeb5;
    background-color: #f8d7da;
}

.field-validation-error {
    display: block;
    margin-top: 7px;
    color: #c62828;
    font-size: 12px;
    line-height: 1.4;
}

.input-validation-error {
    border-color: #c62828 !important;
}