/* home public sayfasına özel stiller. */
.ge-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(90deg, rgba(32, 17, 19, 0.97) 0%, rgba(50, 25, 28, 0.91) 39%, rgba(50, 25, 28, 0.3) 72%, rgba(32, 17, 19, 0.34) 100%),
        var(--ge-page-hero-image, url("../../images/hero-elektrik-pano.webp")) center / cover no-repeat;
    color: var(--ge-white);
}

.ge-hero h1 {
    margin-bottom: 25px;
    font-size: clamp(3rem, 6vw, 4.8rem);
    font-weight: 820;
    letter-spacing: -0.058em;
    line-height: 0.98;
}

.ge-hero h1 em {
    color: var(--ge-brand-red-light);
    font-style: normal;
}

.ge-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to right, #000, transparent 75%);
}

.ge-hero__inner {
    flex: 1;
    display: flex;
    align-items: center;
    padding-block: 86px 130px;
}

.ge-hero__content {
    width: min(660px, 60%);
}

.ge-hero__lead {
    max-width: 610px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.72;
}

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

.ge-hero__note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.ge-hero__note .ge-icon {
    color: var(--ge-brand-red-light);
}

.ge-trust-strip {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-radius: var(--ge-radius-lg) var(--ge-radius-lg) 0 0;
    overflow: hidden;
    background: var(--ge-white);
    color: var(--ge-text);
    box-shadow: var(--ge-shadow-lg);
}

.ge-trust-strip article {
    min-height: 104px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 30px;
}

.ge-trust-strip article + article {
    border-left: 1px solid var(--ge-line);
}

.ge-trust-strip__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    border-radius: 14px;
    background: var(--ge-brand-red-soft);
    color: var(--ge-brand-red);
    line-height: 0;
}

.ge-trust-strip__icon .ge-icon {
    width: 25px;
    height: 25px;
    font-size: 25px;
}

.ge-trust-strip strong,
.ge-trust-strip article div > span {
    display: block;
}

.ge-trust-strip strong {
    margin-bottom: 2px;
    color: var(--ge-navy-900);
    font-size: 16px;
}

.ge-trust-strip article div > span {
    color: var(--ge-muted);
    font-size: 12px;
}

.ge-service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ge-service-card {
    position: relative;
    min-height: 360px;
    padding: 28px;
    border: 1px solid var(--ge-line);
    border-radius: var(--ge-radius);
    overflow: hidden;
    background: var(--ge-white);
    transition:
        transform var(--ge-transition),
        border-color var(--ge-transition),
        box-shadow var(--ge-transition);
}

.ge-service-card:hover {
    border-color: rgba(166, 72, 73, 0.24);
    box-shadow: var(--ge-shadow);
    transform: translateY(-6px);
}

.ge-service-card-link {
    display: block;
    border-radius: var(--ge-radius);
}

.ge-service-card-link .ge-service-card {
    height: 100%;
}

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

.ge-service-card__number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #9a7072;
    font-size: 35px;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.ge-service-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 50px;
    border-radius: 17px;
    background: var(--ge-navy-900);
    color: var(--ge-yellow);
}

.ge-service-card__icon .ge-icon {
    width: 29px;
    height: 29px;
    font-size: 29px;
}

.ge-service-card h3 {
    margin: 0 0 13px;
    color: var(--ge-navy-900);
    font-size: 20px;
    letter-spacing: -0.025em;
}

.ge-service-card p {
    margin-bottom: 28px;
    color: var(--ge-muted);
    font-size: 14px;
}

.ge-service-card__link {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ge-navy-800);
    font-size: 13px;
    font-weight: 820;
}

.ge-service-card__link .ge-icon {
    transition: transform var(--ge-transition);
}

.ge-service-card a.ge-service-card__link:hover .ge-icon,
.ge-service-card-link:hover .ge-service-card__link .ge-icon {
    transform: translateX(4px);
}

.ge-service-card--accent {
    border-color: var(--ge-yellow);
    background: var(--ge-yellow);
    color: var(--ge-white);
}

.ge-service-card--accent .ge-service-card__number {
    color: #e8cccc;
}

.ge-service-card--accent .ge-service-card__icon {
    background: var(--ge-white);
    color: var(--ge-brand-red);
}

.ge-service-card--accent p {
    color: #f3e4e4;
}

.ge-service-card--accent h3,
.ge-service-card--accent .ge-service-card__link {
    color: var(--ge-white);
}

.ge-process {
    position: relative;
    overflow: hidden;
    background: var(--ge-navy-900);
    color: var(--ge-white);
}

.ge-process::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -220px;
    width: 480px;
    height: 480px;
    border: 100px solid rgba(166, 72, 73, 0.12);
    border-radius: 50%;
}

.ge-process__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}

.ge-process h2 {
    color: var(--ge-white);
}

.ge-process__intro > p:not(.ge-kicker) {
    margin: 25px 0 28px;
    color: rgba(255, 255, 255, 0.62);
}

.ge-text-link--light {
    color: var(--ge-brand-red-light);
}

.ge-process__steps {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ge-process__steps li {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 22px;
    padding: 8px 0 34px;
}

.ge-process__steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 64px;
    bottom: 0;
    left: 31px;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.ge-process__steps li > span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--ge-yellow);
    font-weight: 850;
}

.ge-process__steps h3 {
    margin: 5px 0 7px;
    color: var(--ge-white);
    font-size: 20px;
}

.ge-process__steps p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 14px;
}

.ge-work-preview {
    background: var(--ge-bg);
}

.ge-work-grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: repeat(2, 245px);
    gap: 18px;
}

.ge-work-card {
    position: relative;
    display: block;
    border-radius: var(--ge-radius);
    overflow: hidden;
    background: var(--ge-navy-900);
    color: var(--ge-white);
}

.ge-work-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(32, 17, 19, 0.92), transparent 65%);
}

.ge-work-card--large {
    grid-row: 1 / 3;
}

.ge-work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.ge-work-card:hover img {
    transform: scale(1.035);
}

.ge-work-card__tag,
.ge-work-card > div {
    position: absolute;
    z-index: 2;
}

.ge-work-card__tag {
    top: 20px;
    left: 20px;
    padding: 7px 10px;
    border-radius: 8px;
    background: var(--ge-yellow);
    color: var(--ge-white);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ge-work-card > div {
    right: 24px;
    bottom: 22px;
    left: 24px;
}

.ge-work-card strong,
.ge-work-card > div span {
    display: block;
}

.ge-work-card strong {
    margin-bottom: 3px;
    font-size: 19px;
}

.ge-work-card > div span {
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
}

.ge-reviews__headline {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-bottom: 45px;
}

.ge-rating-badge {
    width: 108px;
    height: 108px;
    display: grid;
    place-items: center;
    align-content: center;
    border-radius: 50%;
    background: var(--ge-yellow);
    color: var(--ge-white);
}

.ge-rating-badge .ge-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 1px;
    font-size: 24px;
}

.ge-rating-badge strong {
    font-size: 30px;
    line-height: 1;
}

.ge-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.ge-review-grid blockquote {
    position: relative;
    min-height: 190px;
    margin: 0;
    padding: 34px;
    border: 1px solid var(--ge-line);
    border-radius: var(--ge-radius);
    background: var(--ge-white);
}

.ge-review-grid blockquote::before {
    content: "“";
    position: absolute;
    top: 9px;
    right: 25px;
    color: rgba(166, 72, 73, 0.24);
    font-family: Georgia, serif;
    font-size: 84px;
    line-height: 1;
}

.ge-review-grid blockquote p {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    color: var(--ge-navy-900);
    font-size: 18px;
    font-weight: 720;
    line-height: 1.5;
}

.ge-review-grid blockquote footer {
    color: var(--ge-muted);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ge-reviews__source {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 28px;
    color: var(--ge-navy-700);
    font-size: 13px;
    font-weight: 800;
}

.ge-local-area {
    background:
        radial-gradient(circle at 8% 18%, rgba(166, 72, 73, 0.1), transparent 32%),
        var(--ge-bg-warm);
}

.ge-local-area__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    gap: 30px;
    margin-top: 48px;
}

.ge-local-area__content,
.ge-local-area__neighborhoods {
    border: 1px solid var(--ge-line);
    border-radius: var(--ge-radius-lg);
    background: var(--ge-white);
    box-shadow: var(--ge-shadow-sm);
}

.ge-local-area__content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 42px;
}

.ge-local-area__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--ge-brand-red-soft);
    color: var(--ge-brand-red);
}

.ge-local-area__icon .ge-icon {
    width: 27px;
    height: 27px;
    font-size: 27px;
}

.ge-local-area h3 {
    margin-bottom: 14px;
    color: var(--ge-navy-900);
    font-size: 24px;
    line-height: 1.25;
}

.ge-local-area__content p {
    color: var(--ge-muted);
}

.ge-local-area__links {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.ge-local-area__neighborhoods {
    padding: 38px;
}

.ge-local-area__all-regions {
    margin-top: 20px;
}

.ge-local-area__neighborhoods > p {
    color: var(--ge-muted);
}
@media (max-width: 1024px) {
.ge-service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .ge-service-card {
        min-height: 330px;
    }
}

@media (max-width: 1024px) {
.ge-hero {
        min-height: 700px;
        background-position: 64% center;
    }

    .ge-process__grid,
    .ge-local-area__grid {
        grid-template-columns: 1fr;
    }

    .ge-process__grid {
        gap: 55px;
    }

    .ge-hero__content {
        width: min(650px, 76%);
    }

    .ge-trust-strip article {
        padding-inline: 20px;
    }

    .ge-work-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 390px 260px;
    }

    .ge-work-card--large {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .ge-review-grid {
        grid-template-columns: 1fr;
    }

    .ge-review-grid blockquote {
        min-height: 0;
    }
}

@media (max-width: 768px) {
.ge-hero {
        min-height: 760px;
        background-position: 70% center;
    }

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

    .ge-hero::after {
        content: "";
        position: absolute;
        z-index: -1;
        inset: 0;
        background: rgba(32, 17, 19, 0.25);
    }

    .ge-hero__inner {
        align-items: flex-start;
        padding-block: 68px 260px;
    }

    .ge-hero__content {
        width: 100%;
    }

    .ge-hero__lead {
        font-size: 16px;
    }

    .ge-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ge-trust-strip {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        border-radius: var(--ge-radius) var(--ge-radius) 0 0;
    }

    .ge-trust-strip article {
        min-height: 76px;
        padding: 12px 17px;
    }

    .ge-trust-strip article + article {
        border-top: 1px solid var(--ge-line);
        border-left: 0;
    }

    .ge-trust-strip__icon {
        width: 42px;
        height: 42px;
    }

    .ge-service-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .ge-service-card {
        min-height: 0;
        padding: 20px;
    }

    .ge-service-card__number {
        top: 17px;
        right: 19px;
        font-size: 28px;
    }

    .ge-service-card__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 24px;
        border-radius: 14px;
    }

    .ge-service-card__icon .ge-icon {
        width: 24px;
        height: 24px;
        font-size: 24px;
    }

    .ge-service-card h3 {
        margin-bottom: 9px;
        font-size: 18px;
    }

    .ge-service-card p {
        margin-bottom: 20px;
    }

    .ge-service-card__link {
        position: static;
    }

    .ge-process__grid {
        gap: 45px;
    }

    .ge-process__steps li {
        grid-template-columns: 54px 1fr;
        gap: 17px;
    }

    .ge-process__steps li > span {
        width: 54px;
        height: 54px;
    }

    .ge-process__steps li:not(:last-child)::after {
        top: 54px;
        left: 26px;
    }

    .ge-work-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .ge-work-card,
    .ge-work-card--large {
        grid-column: auto;
        grid-row: auto;
        height: 290px;
    }

    .ge-reviews__headline {
        align-items: flex-start;
    }

    .ge-rating-badge {
        width: 86px;
        height: 86px;
        flex: 0 0 auto;
    }

    .ge-rating-badge strong {
        font-size: 25px;
    }
}

@media (max-width: 480px) {
.ge-hero {
        min-height: 790px;
    }

    .ge-hero__inner {
        padding-top: 52px;
    }

    .ge-reviews__headline {
        display: grid;
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 12px;
    }

    .ge-rating-badge {
        width: 70px;
        height: 70px;
    }

    .ge-rating-badge strong {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
.ge-local-area__grid {
        margin-top: 32px;
    }

    .ge-local-area__content {
        grid-template-columns: 1fr;
        padding: 27px 22px;
    }

    .ge-local-area__neighborhoods {
        padding: 27px 22px;
    }
}
