/* contact public sayfasına özel stiller. */
.ge-button--full {
    width: 100%;
}

.ge-contact-hero {
    padding-block: 48px 74px;
    background: var(--ge-bg);
}

.has-page-hero .ge-contact-hero {
    background:
        linear-gradient(90deg, rgba(246, 247, 249, 0.98), rgba(246, 247, 249, 0.82)),
        var(--ge-page-hero-image) center / cover;
}

.ge-breadcrumb--dark {
    margin-bottom: 56px;
    color: var(--ge-muted);
}

.ge-breadcrumb--dark a:hover {
    color: var(--ge-navy-900);
}

.ge-contact-hero__heading {
    display: grid;
    grid-template-columns: 1.4fr 0.72fr;
    align-items: end;
    gap: 80px;
}

.ge-contact-hero h1 {
    margin-bottom: 0;
    color: var(--ge-navy-900);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 820;
    letter-spacing: -0.058em;
    line-height: 0.98;
}

.ge-contact-hero h1 em {
    color: var(--ge-navy-700);
    font-style: normal;
}

.ge-contact-hero__heading > p {
    margin-bottom: 6px;
    color: var(--ge-muted);
    font-size: 17px;
}

.ge-map-section {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #e3d8d7;
}

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

.ge-map-section__directions {
    position: absolute;
    right: max(20px, calc((100vw - var(--ge-container)) / 2));
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 18px;
    border-radius: 13px;
    background: var(--ge-navy-900);
    color: var(--ge-white);
    box-shadow: var(--ge-shadow);
    font-size: 13px;
    font-weight: 800;
}

.ge-contact-section {
    background: var(--ge-white);
}

.ge-contact-section h2 {
    margin-bottom: 0;
    color: var(--ge-navy-900);
    font-size: clamp(2.15rem, 4vw, 3.45rem);
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.ge-contact-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 88px;
}

.ge-contact-details > p:not(.ge-kicker) {
    margin: 24px 0 34px;
    color: var(--ge-muted);
}

.ge-contact-cards {
    display: grid;
    gap: 12px;
}

.ge-contact-card {
    min-height: 98px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 17px 19px;
    border: 1px solid var(--ge-line);
    border-radius: var(--ge-radius);
    background: var(--ge-white);
    transition:
        transform var(--ge-transition),
        border-color var(--ge-transition),
        box-shadow var(--ge-transition);
}

.ge-contact-card:focus-visible {
    outline: 3px solid rgba(166, 72, 73, 0.48);
    outline-offset: 3px;
}

a.ge-contact-card:hover {
    border-color: rgba(166, 72, 73, 0.24);
    box-shadow: var(--ge-shadow-sm);
    transform: translateX(4px);
}

.ge-contact-card > span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--ge-bg);
    color: var(--ge-navy-700);
}

.ge-contact-card > span .ge-icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
}

.ge-contact-card div {
    min-width: 0;
}

.ge-contact-card small,
.ge-contact-card strong,
.ge-contact-card em {
    display: block;
}

.ge-contact-card small {
    margin-bottom: 1px;
    color: var(--ge-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ge-contact-card strong {
    overflow-wrap: anywhere;
    color: var(--ge-navy-900);
    font-size: 16px;
}

.ge-contact-card em {
    margin-top: 2px;
    color: var(--ge-muted);
    font-size: 11px;
    font-style: normal;
}

.ge-contact-card > .ge-icon {
    color: var(--ge-muted);
}

.ge-contact-card--phone {
    border-color: var(--ge-yellow);
    background: var(--ge-brand-red-soft);
}

.ge-contact-card--phone > span {
    background: var(--ge-yellow);
    color: var(--ge-white);
}

.ge-contact-card--static {
    background: var(--ge-bg);
}

.ge-contact-form-wrap {
    padding: 44px;
    border-radius: var(--ge-radius-lg);
    background: var(--ge-navy-900);
    color: var(--ge-white);
    box-shadow: var(--ge-shadow-lg);
}

.ge-contact-form__heading {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ge-contact-form__heading > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--ge-yellow);
    color: var(--ge-white);
}

.ge-contact-form__heading h2 {
    color: var(--ge-white);
    font-size: 32px;
}

.ge-contact-form-wrap > p {
    margin: 20px 0 26px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.ge-form-alert {
    margin-bottom: 22px;
    padding: 15px 17px;
    border: 1px solid #e5b8b4;
    border-radius: 12px;
    background: #fbecea;
    color: #7d2e31;
    font-size: 13px;
}

.ge-form-alert ul {
    margin: 7px 0 0;
    padding-left: 18px;
}

.ge-contact-form {
    display: grid;
    gap: 17px;
}

.ge-field {
    display: grid;
    gap: 7px;
}

.ge-field label {
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 760;
}

.ge-field input,
.ge-field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    color: var(--ge-white);
    transition:
        border-color var(--ge-transition),
        background-color var(--ge-transition),
        box-shadow var(--ge-transition);
}

.ge-field textarea {
    min-height: 130px;
    resize: vertical;
}

.ge-field input::placeholder,
.ge-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.34);
}

.ge-field input:focus,
.ge-field textarea:focus {
    border-color: var(--ge-yellow);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 3px rgba(166, 72, 73, 0.2);
}

.ge-field small {
    color: rgba(255, 255, 255, 0.42);
    font-size: 10px;
}

.ge-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
@media (max-width: 1024px) {
.ge-contact-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .ge-contact-hero__heading {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ge-contact-hero__heading > p {
        max-width: 670px;
    }
}

@media (max-width: 768px) {
.ge-contact-hero {
        padding-block: 34px 58px;
    }

    .ge-contact-hero h1 {
        font-size: clamp(2.65rem, 12vw, 4rem);
    }

    .ge-contact-section h2 {
        font-size: clamp(2rem, 10vw, 2.65rem);
    }

    .ge-map-section {
        height: 420px;
    }

    .ge-map-section__directions {
        right: 14px;
        bottom: 14px;
        left: 14px;
        justify-content: center;
    }

    .ge-contact-form-wrap {
        padding: 28px 20px;
        border-radius: var(--ge-radius);
    }

    .ge-contact-card {
        grid-template-columns: auto 1fr;
    }

    .ge-contact-card > .ge-icon {
        display: none;
    }
}

@media (max-width: 480px) {
.ge-contact-form__heading h2 {
        font-size: 27px;
    }
}


.ge-consent {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: var(--ge-muted, #625a5b);
    font-size: .83rem;
    line-height: 1.45;
}

.ge-consent input {
    width: 1rem;
    height: 1rem;
    margin-top: .15rem;
    accent-color: #a6202a;
}

.ge-consent a {
    color: var(--ge-navy-800);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}
