﻿/* =========================
   GLOBAL METAL
   ANA SAYFA STİLLERİ
========================= */

:root {
    --teal: #08797c;
    --teal-dark: #055e61;
    --black: #111313;
    --dark: #191c1c;
    --gray: #697172;
    --light-gray: #dfe4e4;
    --background: #f5f7f6;
    --white: #ffffff;
    --container: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--black);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

    body.menu-open {
        overflow: hidden;
    }

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}


/* =========================
   GENEL BİLEŞENLER
========================= */

.eyebrow {
    margin-bottom: 20px;
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    min-height: 50px;
    padding: 14px 25px;
    color: var(--white);
    background: var(--teal);
    border: 1px solid var(--teal);
    font-size: 13px;
    font-weight: 700;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

    .button:hover {
        background: var(--teal-dark);
        border-color: var(--teal-dark);
        transform: translateY(-2px);
    }

.button-small {
    min-height: 42px;
    padding: 10px 19px;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    padding: 10px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 13px;
    font-weight: 700;
}

    .text-button span:last-child {
        color: var(--teal);
        font-size: 18px;
    }

    .text-button.dark {
        margin-top: 18px;
        color: var(--black);
        border-color: var(--light-gray);
    }

.section {
    padding-block: 120px;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 55px;
}

    .section-heading > p {
        max-width: 390px;
        color: var(--gray);
        font-size: 14px;
    }

.section h2,
.cta h2 {
    max-width: 720px;
    font-size: clamp(35px, 4vw, 45px);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

    .section h2 span,
    .cta h2 span {
        display: block;
        color: var(--teal);
    }


/* =========================
   HEADER
========================= */

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    height: 88px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

    .site-header.scrolled {
        height: 74px;
        background: rgba(255, 255, 255, 0.97);
        border-color: var(--light-gray);
        box-shadow: 0 8px 30px rgba(10, 30, 30, 0.08);
    }

.header-inner {
    display: flex;
    align-items: center;
    gap: 38px;
    height: 100%;
}


.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
}

    .main-nav a,
    .main-nav button {
        position: relative;
        padding-block: 10px;
        color: var(--white);
        font-size: 13px;
        font-weight: 700;
    }

        .main-nav a::after,
        .main-nav button::after {
            position: absolute;
            right: 100%;
            bottom: 3px;
            left: 0;
            height: 2px;
            background: var(--teal);
            content: "";
            transition: right 0.25s ease;
        }

        .main-nav a:hover::after,
        .main-nav button:hover::after {
            right: 0;
        }

.scrolled .main-nav a,
.scrolled .main-nav button {
    color: var(--black);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.language {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.lang-btn {
    padding-block: 5px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
}

    .lang-btn.active {
        color: var(--white);
    }

.scrolled .language {
    color: #aaa;
}

.scrolled .lang-btn {
    color: #777;
}

    .scrolled .lang-btn.active {
        color: var(--teal);
    }

.menu-toggle {
    display: none;
    padding: 8px;
}

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        margin: 5px;
        background: var(--white);
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

.scrolled .menu-toggle span {
    background: var(--black);
}


/* =========================
   HERO
========================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 760px;
    height: 100vh;
    overflow: hidden;
    background: #111313;
}

.hero-background-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .hero-background-image img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center center;
    }

/* Görselin üzerindeki karartma */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient( 90deg, rgba(5, 10, 10, 0.88) 0%, rgba(5, 10, 10, 0.65) 40%, rgba(5, 10, 10, 0.12) 100% );
}

.hero-inner {
    position: relative;
    z-index: 2;
    min-height: 760px;
    height: 100%;
}

.hero-content {
    padding-top: 60px;
}

.hero h1 {
    max-width: 750px;
    margin-bottom: 24px;
    font-size: clamp(43px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

    .hero h1 span {
        display: block;
        color: var(--teal);
    }

.hero-description {
    max-width: 630px;
    color: #aeb6b6;
    font-size: 17px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 38px;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: 24px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    transform: translateX(-50%);
}

    .hero-scroll span {
        width: 1px;
        height: 28px;
        background: var(--teal);
    }

    .hero-scroll small {
        color: #8e9898;
        font-size: 8px;
        letter-spacing: 0.2em;
    }


/* =========================
   AVANTAJLAR
========================= */

.advantages {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.advantage-item {
    display: flex;
    gap: 18px;
    padding: 32px 28px;
    border-right: 1px solid var(--light-gray);
}

    .advantage-item:first-child {
        border-left: 1px solid var(--light-gray);
    }

.advantage-number {
    color: var(--teal);
    font-size: 11px;
    font-weight: 800;
}

.advantage-item h2 {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 1.4;
}

.advantage-item p {
    color: var(--gray);
    font-size: 11px;
    line-height: 1.5;
}


/* =========================
   HİZMETLER
========================= */

.services {
    background: var(--background);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--light-gray);
}

.service-card {
    position: relative;
    min-height: 410px;
    padding: 30px;
    overflow: hidden;
    background: var(--white);
    border-right: 1px solid var(--light-gray);
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

    .service-card:last-child {
        border-right: 0;
    }

    .service-card:hover,
    .service-card.featured {
        z-index: 2;
        color: var(--white);
        background: var(--dark);
        box-shadow: 0 24px 60px rgba(15, 25, 25, 0.16);
        transform: translateY(-8px);
    }

.service-number {
    position: relative;
    z-index: 2;
    color: #8a9292;
    font-size: 10px;
    font-weight: 800;
}

.service-card {
    position: relative;
    min-height: 410px;
    padding: 30px;
    overflow: hidden;
    color: #ffffff;
    background: #191c1c;
    border-right: 1px solid #dfe4e4;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    overflow: hidden;
}

    /* Img etiketi kullanıyorsan */
    .service-image img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
        transition: transform 0.7s ease;
    }

    /* Metinlerin okunması için karartma */
    .service-image::after {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient( 180deg, rgba(10, 15, 15, 0.08) 0%, rgba(10, 15, 15, 0.25) 40%, rgba(10, 15, 15, 0.94) 100% );
        content: "";
        pointer-events: none;
    }

.service-number {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.72);
}

.service-content {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 30px;
    left: 30px;
}

    .service-content h3 {
        color: #ffffff;
    }

    .service-content p {
        color: rgba(255, 255, 255, 0.72);
    }

.service-card:hover {
    z-index: 2;
    box-shadow: 0 24px 60px rgba(15, 25, 25, 0.25);
    transform: translateY(-8px);
}

    .service-card:hover .service-image img {
        transform: scale(1.07);
    }

    .service-card:hover .service-content p {
        color: rgba(255, 255, 255, 0.82);
    }


.service-card:nth-child(1) .service-image {
    background-image: url("img/d1.png");
}

.service-card:nth-child(2) .service-image {
    background-image: url("img/d2.png");
}

.service-card:nth-child(3) .service-image {
    background-image: url("img/d3.png");
}

.service-card:nth-child(4) .service-image {
    background-image: url("img/d4.png");
}


.service-content {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 30px;
    left: 30px;
}

    .service-content h3 {
        margin-bottom: 15px;
        font-size: 19px;
        line-height: 1.4;
    }

    .service-content p {
        max-width: 260px;
        color: var(--gray);
        font-size: 12px;
        line-height: 1.75;
    }

.service-card:hover .service-content p,
.service-card.featured .service-content p {
    color: #a2aaaa;
}

.service-button {
    display: grid;
    width: 40px;
    height: 40px;
    margin-top: 25px;
    color: var(--teal);
    border: 1px solid rgba(140, 150, 150, 0.4);
    place-items: center;
    transition: color 0.25s ease, background 0.25s ease;
}

    .service-button:hover {
        color: var(--white);
        background: var(--teal);
    }


/* =========================
   HAKKIMIZDA
========================= */

.about {
    overflow: hidden;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 100px;
}

.about-image {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: radial-gradient( circle at center, rgba(8, 121, 124, 0.45), transparent 30% ), linear-gradient(135deg, #111414, #222828);
    background-position: center;
    background-size: cover;
}

    .about-image::before,
    .about-image::after {
        position: absolute;
        top: 50%;
        left: 50%;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        content: "";
        transform: translate(-50%, -50%);
    }

    .about-image::before {
        width: 450px;
        height: 450px;
    }

    .about-image::after {
        width: 280px;
        height: 280px;
        border-color: rgba(8, 121, 124, 0.5);
    }

/*
Hakkımızda görselini eklediğinde:

.about-image {
    background-image:
        linear-gradient(rgba(17, 20, 20, 0.25), rgba(17, 20, 20, 0.25)),
        url("images/hakkimizda.jpg");
}
*/


.about-content > p:not(.eyebrow) {
    max-width: 600px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.stat-item strong {
    font-size: 36px;
    line-height: 1;
}

    .stat-item strong span {
        color: var(--teal);
    }

.stat-item p {
    margin-top: 7px;
    color: var(--gray);
    font-size: 11px;
}


/* =========================
   CTA
========================= */

.cta {
    padding-block: 80px;
    color: var(--white);
    background: var(--teal);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta .eyebrow {
    color: #b4e0e1;
}

.cta h2 {
    font-size: clamp(34px, 4vw, 45px);
}

    .cta h2 span {
        color: var(--white);
    }

.button-light {
    min-width: 210px;
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

    .button-light:hover {
        color: var(--white);
        background: var(--dark);
        border-color: var(--dark);
    }


/* =========================
   FOOTER
========================= */

.footer {
    padding-top: 65px;
    color: var(--white);
    background: #111414;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
    gap: 50px;
    padding-bottom: 55px;
}


.footer-brand > p {
    max-width: 280px;
    margin-top: 22px;
    color: #7f8989;
    font-size: 12px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    .footer-column h2 {
        margin: 7px 0 20px;
        color: var(--white);
        font-size: 12px;
    }

    .footer-column a,
    .footer-column button,
    .footer-column span,
    .footer-column p {
        margin-bottom: 10px;
        color: #899292;
        font-size: 11px;
        text-align: left;
    }

        .footer-column a:hover,
        .footer-column button:hover {
            color: var(--white);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding-block: 22px;
    border-top: 1px solid #2c3131;
}

    .footer-bottom p,
    .footer-bottom button {
        color: #899292;
        font-size: 11px;
    }

        .footer-bottom button:hover {
            color: var(--white);
        }


/* =========================
   TABLET
========================= */

@media (max-width: 1020px) {
    .header-inner {
        gap: 20px;
    }

    .brand {
        width: 160px;
    }

    .main-nav {
        gap: 16px;
    }

    .header-actions .button {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr 420px;
    }

    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-item:nth-child(2) {
        border-right: 1px solid var(--light-gray);
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card:nth-child(2) {
        border-right: 0;
    }

    .service-card {
        border-bottom: 1px solid var(--light-gray);
    }

    .about-grid {
        gap: 50px;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / -1;
    }
}


/* =========================
   MOBİL
========================= */

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .site-header,
    .site-header.scrolled {
        height: 72px;
    }

    .brand {
        width: 150px;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

        .menu-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

    .main-nav {
        position: fixed;
        top: 72px;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin: 0;
        padding: 45px 30px;
        background: #121515;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

        .main-nav.open {
            transform: translateX(0);
        }

        .main-nav a,
        .main-nav button,
        .scrolled .main-nav a,
        .scrolled .main-nav button {
            color: var(--white);
            font-size: 18px;
        }

    .header-actions {
        gap: 8px;
    }

    .language {
        font-size: 11px;
    }

    .hero {
        min-height: 800px;
        height: auto;
    }

    .hero-inner {
        display: block;
        min-height: 800px;
        padding-top: 160px;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-visual {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .advantage-grid {
        grid-template-columns: 1fr;
    }

    .advantage-item {
        border-left: 1px solid var(--light-gray);
    }

    .section {
        padding-block: 80px;
    }

    .section-heading {
        display: block;
    }

        .section-heading > p {
            margin-top: 22px;
        }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 370px;
        border-right: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 390px;
    }

    .stats {
        gap: 10px;
    }

    .stat-item strong {
        font-size: 28px;
    }

    .cta-inner {
        display: block;
    }

    .cta .button {
        margin-top: 30px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }
}


/* =========================
   KÜÇÜK MOBİL
========================= */

@media (max-width: 460px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--light-gray);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        display: block;
    }

        .footer-bottom button {
            margin-top: 10px;
        }
}


/* Hareket azaltma tercihi */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
    }
}
/* =========================
   HEADER LOGO
========================= */

.brand {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 250px;
    height: 64px;
    padding: 0;
    background: transparent;
}

.brand-logo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 72px;
    object-fit: contain;
    object-position: left center;
    background: transparent;
    transform: translateY(-50%);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* Şeffaf/koyu menüde beyaz logo */
.logo-white {
    visibility: visible;
    opacity: 1;
}

/* Başlangıçta koyu logo gizli */
.logo-dark {
    visibility: hidden;
    opacity: 0;
}

/* Header beyaz olduğunda logoları değiştir */
.site-header.scrolled .logo-white {
    visibility: hidden;
    opacity: 0;
}

.site-header.scrolled .logo-dark {
    visibility: visible;
    opacity: 1;
}


/* =========================
   FOOTER LOGO
========================= */

.footer-brand a {
    display: inline-block;
}

.footer-brand img {
    width: 250px;
    height: auto;
    padding: 0;
    background: transparent;
    object-fit: contain;
    object-position: left center;
}


/* =========================
   TABLET LOGO
========================= */

@media (max-width: 1020px) {
    .brand {
        width: 220px;
        height: 58px;
    }

    .brand-logo {
        height: 52px;
    }
}


/* =========================
   MOBİL LOGO
========================= */

@media (max-width: 760px) {
    .brand {
        width: 190px;
        height: 54px;
    }

    .brand-logo {
        height: 48px;
    }

    .footer-brand img {
        width: 220px;
    }
}


@media (max-width: 400px) {
    .brand {
        width: 170px;
    }

    .brand-logo {
        height: 43px;
    }
}
/* =========================
   MODERN HİZMETLER
========================= */

.modern-services {
    padding: 110px 0;
    overflow: hidden;
    background: #f4f6f5;
}

    .modern-services .container {
        width: calc(100% - 48px);
        max-width: 1180px;
        margin-right: auto;
        margin-left: auto;
    }


/* =========================
   BAŞLIK
========================= */

.modern-services-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 55px;
}

.modern-services-eyebrow {
    margin: 0 0 18px;
    color: #08797c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.modern-services-heading h2 {
    max-width: 680px;
    margin: 0;
    color: #111313;
    font-size: clamp(36px, 4vw, 55px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

    .modern-services-heading h2 span {
        display: block;
        color: #08797c;
    }

.modern-services-heading > p {
    max-width: 370px;
    margin: 0 0 5px;
    color: #697172;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   ANA YERLEŞİM
========================= */

.services-showcase {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 650px;
    background: #ffffff;
    border: 1px solid #dfe4e4;
    box-shadow: 0 25px 70px rgba(10, 30, 30, 0.08);
}


/* =========================
   SOL HİZMET LİSTESİ
========================= */

.services-list {
    position: relative;
    z-index: 3;
    background: #ffffff;
}

.service-item {
    position: relative;
    display: grid;
    grid-template-columns: 38px 1fr 35px;
    align-items: center;
    gap: 17px;
    width: 100%;
    min-height: 162px;
    padding: 25px 27px;
    overflow: hidden;
    color: #111313;
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid #dfe4e4;
    text-align: left;
    cursor: pointer;
    transition: color 0.35s ease, background 0.35s ease;
}

    .service-item:last-child {
        border-bottom: 0;
    }

    .service-item::before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 4px;
        background: #08797c;
        content: "";
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.35s ease;
    }

.service-item-number {
    align-self: start;
    padding-top: 3px;
    color: #08797c;
    font-size: 11px;
    font-weight: 800;
    transition: color 0.35s ease;
}

.service-item-content {
    display: block;
}

    .service-item-content small {
        display: block;
        margin-bottom: 7px;
        color: #8a9292;
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 0.16em;
        transition: color 0.35s ease;
    }

    .service-item-content strong {
        display: block;
        margin-bottom: 8px;
        font-size: 21px;
        line-height: 1.25;
        letter-spacing: -0.025em;
    }

    .service-item-content > span {
        display: block;
        max-width: 360px;
        color: #697172;
        font-size: 11px;
        line-height: 1.65;
        transition: color 0.35s ease;
    }

.service-item-arrow {
    display: grid;
    width: 34px;
    height: 34px;
    color: #08797c;
    border: 1px solid #d3d9d8;
    font-size: 15px;
    place-items: center;
    transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}


/* Aktif hizmet */

.service-item.active {
    color: #ffffff;
    background: #151919;
}

    .service-item.active::before {
        transform: scaleY(1);
    }

    .service-item.active .service-item-number,
    .service-item.active .service-item-content small {
        color: #35b7ba;
    }

    .service-item.active .service-item-content > span {
        color: rgba(255, 255, 255, 0.6);
    }

    .service-item.active .service-item-arrow {
        color: #ffffff;
        background: #08797c;
        border-color: #08797c;
        transform: rotate(45deg);
    }


/* Hover */

.service-item:not(.active):hover {
    background: #eef3f2;
}

    .service-item:not(.active):hover::before {
        transform: scaleY(1);
    }

    .service-item:not(.active):hover .service-item-arrow {
        color: #ffffff;
        background: #08797c;
        border-color: #08797c;
        transform: translate(2px, -2px);
    }


/* =========================
   SAĞ GÖRSEL
========================= */

.services-preview {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #111414;
}

.services-preview-image {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.65s ease, transform 1s cubic-bezier(0.2, 0.65, 0.3, 1);
}

    .services-preview-image.active {
        opacity: 1;
        transform: scale(1);
    }

    .services-preview-image img {
        display: block;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
    }

.services-preview-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient( 180deg, rgba(5, 12, 12, 0.18) 0%, rgba(5, 12, 12, 0.05) 45%, rgba(5, 12, 12, 0.88) 100% );
}


/* Görsel üzerindeki üst bilgi */

.services-preview-top {
    position: absolute;
    z-index: 3;
    top: 25px;
    right: 27px;
    left: 27px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.72);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.16em;
}


/* Görsel üzerindeki alt bilgi */

.services-preview-bottom {
    position: absolute;
    z-index: 3;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: flex-end;
    gap: 22px;
    color: #ffffff;
}

.preview-current-number {
    color: #32b6b9;
    font-size: 45px;
    font-weight: 300;
    line-height: 1;
}

.services-preview-bottom small {
    display: block;
    margin-bottom: 6px;
    color: #39b9bc;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.17em;
}

.preview-current-title {
    display: block;
    font-size: clamp(24px, 2.5vw, 38px);
    line-height: 1.15;
    letter-spacing: -0.035em;
}


/* =========================
   TABLET
========================= */

@media (max-width: 950px) {
    .modern-services {
        padding: 85px 0;
    }

    .modern-services-heading {
        display: block;
    }

        .modern-services-heading > p {
            max-width: 600px;
            margin-top: 22px;
        }

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .services-preview {
        grid-row: 1;
        min-height: 470px;
    }

    .services-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item {
        min-height: 175px;
        border-right: 1px solid #dfe4e4;
    }

        .service-item:nth-child(2n) {
            border-right: 0;
        }
}


/* =========================
   MOBİL
========================= */

@media (max-width: 650px) {
    .modern-services {
        padding: 70px 0;
    }

        .modern-services .container {
            width: calc(100% - 32px);
        }

    .modern-services-heading {
        margin-bottom: 35px;
    }

        .modern-services-heading h2 {
            font-size: 35px;
        }

    .services-preview {
        min-height: 370px;
    }

    .services-preview-top {
        top: 18px;
        right: 18px;
        left: 18px;
    }

        .services-preview-top span:last-child {
            display: none;
        }

    .services-preview-bottom {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .preview-current-number {
        font-size: 34px;
    }

    .preview-current-title {
        font-size: 25px;
    }

    .services-list {
        display: block;
    }

    .service-item {
        min-height: 145px;
        padding: 22px 20px;
        border-right: 0;
    }

    .service-item-content strong {
        font-size: 19px;
    }
}

/* =========================
   HERO YAZI KONUMU DÜZELTME
========================= */

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100vh;
    height: 100%;
    /* Header yüksekliğini dengeler */
    padding-top: 110px;
    padding-bottom: 70px;
}

.hero-content {
    width: 100%;
    max-width: 690px;
    padding: 0;
    /* İçeriği biraz aşağı indirir */
    margin-top: 35px;
}


/* İlk başlık mutlaka beyaz */

.hero h1 {
    margin: 0 0 28px;
    color: #ffffff !important;
    font-size: clamp(52px, 5vw, 76px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.055em;
}


    /* Vurgulu bölüm teal */

    .hero h1 span {
        display: block;
        color: #078b8e !important;
    }


/* Üst küçük başlık */

.hero .eyebrow {
    margin-bottom: 24px;
    color: #14a5a8;
}


/* Açıklama */

.hero-description {
    max-width: 620px;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}


/* Butonlar */

.hero-actions {
    margin-top: 38px;
}
@media (max-width: 760px) {
    .hero {
        min-height: 760px;
        height: 100svh;
    }

    .hero-inner {
        align-items: center;
        min-height: 760px;
        padding-top: 105px;
        padding-bottom: 50px;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 15px;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.06;
    }

    .hero-description {
        max-width: 520px;
        font-size: 14px;
        line-height: 1.7;
    }
}