:root {
    --ck-orange: #ff7900;
    --ck-orange-dark: #e86800;
    --ck-navy: #0b1c2c;
    --ck-text: #1b2026;
    --ck-muted: #66717d;
    --ck-line: #e8edf1;
    --ck-bg: #f6f8fa;
    --ck-white: #fff;
    --ck-radius: 14px;
    --ck-shadow: 0 14px 40px rgba(13, 31, 48, .08);
}

.ck-contact-wrap,
.ck-contact-wrap * {
    box-sizing: border-box;
}

.ck-contact-wrap {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    color: var(--ck-text);
    background: var(--ck-bg);
    font-family: inherit;
}

.ck-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ck-contact-hero {
    padding: 46px 0 10px;
    background:
        radial-gradient(circle at top left, rgba(255, 121, 0, .10), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fa 100%);
}

.ck-contact-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: 30px;
    align-items: center;
}

.ck-contact-hero__content {
    padding: 18px 0 26px;
}

.ck-contact-hero__media {
    position: relative;
    overflow: hidden;
    min-height: 340px;
    border: 1px solid var(--ck-line);
    border-radius: 18px;
    background: linear-gradient(180deg, #f7f7f7 0%, #eceef1 100%);
    box-shadow: var(--ck-shadow);
}

.ck-contact-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none !important;
    object-fit: cover;
    object-position: right center;
}

.ck-contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ck-contact-hero h1 {
    max-width: 620px;
    margin: 0 0 14px;
    color: var(--ck-text);
    font-size: clamp(34px, 4.4vw, 58px);
    line-height: 1.04;
    letter-spacing: -.035em;
}

.ck-contact-hero p {
    max-width: 640px;
    margin: 0 0 28px;
    color: var(--ck-muted);
    font-size: 17px;
    line-height: 1.75;
}

.ck-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 23px;
    border: 0;
    border-radius: 7px;
    text-decoration: none !important;
    font-weight: 750;
    line-height: 1;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.ck-btn:hover {
    transform: translateY(-2px);
}

.ck-btn--primary {
    color: #fff !important;
    background: var(--ck-orange);
    box-shadow: 0 10px 24px rgba(255, 121, 0, .22);
}

.ck-btn--primary:hover {
    background: var(--ck-orange-dark);
    box-shadow: 0 14px 28px rgba(255, 121, 0, .3);
}

.ck-btn--outline {
    color: var(--ck-navy) !important;
    border: 1px solid #d8e0e6;
    background: #fff;
}

.ck-contact-content {
    padding: 48px 0 72px;
}

.ck-contact-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.ck-contact-sidebar,
.ck-contact-main {
    display: grid;
    gap: 24px;
}

.ck-card {
    border: 1px solid var(--ck-line);
    border-radius: var(--ck-radius);
    background: var(--ck-white);
    box-shadow: var(--ck-shadow);
}

.ck-info-card {
    padding: 28px 25px 18px;
}

.ck-info-card h2,
.ck-map-card h2,
.ck-form-card h2,
.ck-side-cta h2 {
    margin: 0;
    color: var(--ck-text);
    letter-spacing: -.02em;
}

.ck-info-card h2 {
    margin-bottom: 22px;
    font-size: 21px;
}

.ck-info-row {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 13px;
    padding: 17px 0;
    border-top: 1px solid var(--ck-line);
}

.ck-info-row:first-of-type {
    border-top: 0;
}

.ck-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ck-orange);
}

.ck-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ck-info-row strong {
    display: block;
    margin: 0 0 5px;
    font-size: 14px;
}

.ck-info-row p {
    margin: 0;
    color: var(--ck-muted);
    font-size: 14px;
    line-height: 1.62;
}

.ck-info-row a {
    color: var(--ck-text);
    text-decoration: none;
}

.ck-info-row a:hover {
    color: var(--ck-orange);
}

.ck-info-row small {
    color: var(--ck-muted);
    font-size: 12px;
}

.ck-side-cta {
    padding: 34px 26px;
    text-align: center;
    background: linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}

.ck-side-cta__icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin: 0 auto 17px;
    border-radius: 50%;
    color: var(--ck-orange);
    background: rgba(255, 121, 0, .08);
}

.ck-side-cta__icon svg {
    width: 52px;
    height: 52px;
    fill: currentColor;
}

.ck-side-cta h2 {
    font-size: 20px;
    line-height: 1.35;
}

.ck-side-cta p {
    margin: 15px 0;
    color: var(--ck-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ck-side-cta strong {
    display: block;
    margin-bottom: 20px;
    color: var(--ck-navy);
    line-height: 1.55;
}

.ck-card-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px 18px;
}

.ck-card-heading .ck-eyebrow {
    margin-bottom: 5px;
}

.ck-card-heading h2 {
    font-size: 24px;
}

.ck-card-heading > a {
    color: var(--ck-orange);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.ck-map-frame {
    height: 390px;
    overflow: hidden;
    border-radius: 0 0 var(--ck-radius) var(--ck-radius);
}

.ck-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.ck-form-card {
    padding-bottom: 30px;
    overflow: visible;
    scroll-margin-top: 100px;
}

.ck-card-heading--form {
    align-items: flex-start;
    padding-bottom: 8px;
}

.ck-card-heading--form p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--ck-muted);
    font-size: 14px;
    line-height: 1.7;
}

.ck-elementor-form-slot {
    padding: 12px 26px 0;
    min-height: 80px;
}

/* Elementor formunun kendi CSS ve JavaScript yapısına müdahale edilmez. */
.ck-elementor-form-slot .elementor,
.ck-elementor-form-slot .elementor-widget-wrap,
.ck-elementor-form-slot .elementor-element {
    max-width: 100%;
}

.ck-elementor-form-slot .elementor-section,
.ck-elementor-form-slot .e-con {
    margin-left: 0;
    margin-right: 0;
}

.ck-form-admin-notice,
.ck-form-public-fallback {
    padding: 20px;
    border: 1px dashed #d8e0e6;
    border-radius: 10px;
    background: #fbfcfd;
}

.ck-form-admin-notice strong {
    color: var(--ck-navy);
}

.ck-form-admin-notice p,
.ck-form-public-fallback p {
    margin: 8px 0 0;
    color: var(--ck-muted);
    line-height: 1.65;
}

.ck-form-public-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

@media (max-width: 980px) {
    .ck-contact-hero__grid {
        grid-template-columns: 1fr;
    }

    .ck-contact-hero__content {
        padding-bottom: 0;
    }

    .ck-contact-hero__media {
        min-height: 300px;
    }

    .ck-contact-grid {
        grid-template-columns: 1fr;
    }

    .ck-contact-sidebar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ck-contact-main {
        order: -1;
    }
}

@media (max-width: 700px) {
    .ck-contact-wrap {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
    }

    .ck-container {
        width: min(100% - 28px, 1180px);
    }

    .ck-contact-hero {
        min-height: 350px;
    }

    .ck-contact-hero__image {
        object-position: 64% center;
    }

    .ck-contact-hero__overlay {
        background: linear-gradient(90deg, rgba(7, 13, 19, .95), rgba(7, 13, 19, .60));
    }

    .ck-contact-hero__inner {
        padding: 58px 0;
    }

    .ck-contact-hero h1 {
        font-size: clamp(36px, 12vw, 48px);
    }

    .ck-contact-hero p {
        font-size: 15px;
        line-height: 1.65;
    }

    .ck-contact-content {
        padding: 30px 0 48px;
    }

    .ck-contact-sidebar {
        grid-template-columns: 1fr;
    }

    .ck-card-heading {
        align-items: flex-start;
        padding: 22px 20px 16px;
    }

    .ck-card-heading > a {
        margin-top: 9px;
        white-space: nowrap;
    }

    .ck-map-frame {
        height: 310px;
    }

    .ck-elementor-form-slot {
        padding: 10px 20px 0;
    }
}
