﻿@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
    --brand-blue: #0b3d88;
    --brand-blue-dark: #061b42;
    --brand-blue-soft: #154f9e;
    --brand-red: #E30314;
    --brand-red-dark: #c80010;
    --white: #ffffff;
    --text-dark: #07142c;
    --text-light: #d7e0ee;
    --header-height: 100px;
    --header-scroll-height: 78px;
    --container-width: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text-dark);
    background: #ffffff;
    font-family: "Manrope", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

    body.menu-open {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

/* ÜST MENÜ */

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: var(--header-height);
    background: #ffffff;
    border-top: 3px solid var(--brand-red);
    transition: height 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

    /* Sayfa aşağı kaydırıldığında buzlu cam */

    .site-header.scrolled {
        height: var(--header-scroll-height);
        background: rgba(255, 255, 255, 0.72);
        border-top-color: rgba(237, 11, 27, 0.9);
        box-shadow: 0 12px 40px rgba(4, 24, 57, 0.14), inset 0 -1px 0 rgba(255, 255, 255, 0.65);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
        backdrop-filter: blur(18px) saturate(150%);
    }

        .site-header.scrolled::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            pointer-events: none;
            background: linear-gradient( 110deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08) );
        }

.nav-wrap {
    width: min(var(--container-width), calc(100% - 48px));
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 38px;
}

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: auto;
}

    .brand img {
        display: block;
        width: 190px;
        height: auto;
        transition: width 0.35s ease;
    }

.site-header.scrolled .brand img {
    width: 165px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    height: 100%;
}

    .main-nav a {
        position: relative;
        display: flex;
        align-items: center;
        height: 100%;
        color: var(--text-dark);
        font-size: 14px;
        font-weight: 700;
        white-space: nowrap;
        transition: color 0.25s ease;
    }

        .main-nav a::after {
            content: "";
            position: absolute;
            right: 100%;
            bottom: 25px;
            left: 0;
            height: 2px;
            background: var(--brand-red);
            transition: right 0.25s ease;
        }

.site-header.scrolled .main-nav a::after {
    bottom: 16px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--brand-blue);
}

    .main-nav a:hover::after,
    .main-nav a.active::after {
        right: 0;
    }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.social-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--brand-blue);
    background: rgba(255, 255, 255, 0.48);
    border: 1px solid rgba(11, 61, 136, 0.14);
    border-radius: 50%;
    transition: color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

    .social-link:hover {
        color: #ffffff;
        background: var(--brand-blue);
        border-color: var(--brand-blue);
        transform: translateY(-2px);
    }

    .social-link svg {
        width: 19px;
        height: 19px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
    }

.header-cta {
    min-height: 44px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--brand-blue);
    border-radius: 4px;
    box-shadow: inset 4px 0 0 var(--brand-red);
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

    .header-cta:hover {
        background: var(--brand-blue-dark);
        box-shadow: inset 4px 0 0 var(--brand-red), 0 10px 24px rgba(6, 27, 66, 0.18);
        transform: translateY(-2px);
    }

.menu-toggle {
    display: none;
    padding: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

    .menu-toggle span {
        display: block;
        width: 27px;
        height: 2px;
        margin: 5px;
        background: var(--brand-blue-dark);
        transition: transform 0.25s ease, opacity 0.25s ease;
    }


/* GİRİŞ ANİMASYONU */

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

    [data-reveal].visible {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes heroScale {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1.025);
    }
}

/* TABLET */

@media (max-width: 1080px) {
    .main-nav {
        gap: 21px;
    }

        .main-nav a {
            font-size: 13px;
        }

    .social-link {
        display: none;
    }
}

/* MOBİL MENÜ */

@media (max-width: 860px) {
    :root {
        --header-height: 76px;
        --header-scroll-height: 70px;
    }

    .nav-wrap {
        width: calc(100% - 32px);
    }

    .brand img,
    .site-header.scrolled .brand img {
        width: 155px;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .nav-actions {
        margin-left: auto;
    }

    .main-nav {
        position: fixed;
        top: var(--header-scroll-height);
        right: 0;
        left: 0;
        height: auto;
        padding: 18px 24px 28px;
        display: grid;
        gap: 0;
        background: rgba(255, 255, 255, 0.88);
        border-top: 1px solid rgba(11, 61, 136, 0.1);
        box-shadow: 0 20px 40px rgba(2, 20, 55, 0.16);
        -webkit-backdrop-filter: blur(20px) saturate(150%);
        backdrop-filter: blur(20px) saturate(150%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-18px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

        .main-nav.open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
        }

        .main-nav a {
            height: auto;
            padding: 14px 0;
            font-size: 15px;
        }

            .main-nav a::after,
            .site-header.scrolled .main-nav a::after {
                bottom: 7px;
            }

    .menu-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-container {
        width: calc(100% - 40px);
        padding-top: 82px;
    }

    .hero h1 {
        font-size: clamp(3.1rem, 12vw, 5rem);
    }

    .hero-description {
        max-width: 560px;
        font-size: 16px;
    }

    .slider-controls {
        min-height: 68px;
        padding: 0 22px;
    }
}

/* KÜÇÜK TELEFONLAR */

@media (max-width: 540px) {
    .header-cta {
        display: none;
    }

    .hero-background {
        background-position: 62% center;
    }

    .hero-overlay {
        background: linear-gradient( 90deg, rgba(3, 20, 52, 0.97), rgba(4, 29, 72, 0.72) ), linear-gradient( 0deg, rgba(2, 15, 38, 0.85), rgba(2, 15, 38, 0.1) );
    }

    .hero-container {
        align-items: flex-start;
        padding-top: 100px;
        padding-bottom: 135px;
    }

    .hero-label {
        align-items: flex-start;
        font-size: 10px;
        line-height: 1.6;
    }

        .hero-label span {
            margin-top: 6px;
        }

    .hero h1 {
        font-size: clamp(2.9rem, 13vw, 4rem);
    }

    .hero-description {
        margin: 26px 0 32px;
        line-height: 1.6;
    }

    .hero-buttons {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .slider-controls {
        right: 50%;
        transform: translateX(50%);
        width: 100%;
        justify-content: center;
    }
}

/* HAREKET AZALTMA TERCİHİ */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* HİZMETLER ALANI */

.services-section {
    position: relative;
    padding: 115px 24px 125px;
    overflow: hidden;
    background: radial-gradient( circle at 50% 0%, rgba(11, 61, 136, 0.045), transparent 36% ), #ffffff;
}

    .services-section::before {
        content: "";
        position: absolute;
        top: 110px;
        left: -120px;
        width: 280px;
        height: 280px;
        border: 55px solid rgba(11, 61, 136, 0.025);
        border-radius: 50%;
        pointer-events: none;
    }

    .services-section::after {
        content: "";
        position: absolute;
        right: -100px;
        bottom: 80px;
        width: 220px;
        height: 220px;
        border: 45px solid rgba(237, 11, 27, 0.025);
        border-radius: 50%;
        pointer-events: none;
    }

.services-container {
    position: relative;
    z-index: 1;
    width: min(1120px, 100%);
    margin-inline: auto;
}

.services-heading {
    max-width: 680px;
    margin: 0 auto 58px;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--brand-red, #E30314);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

    .section-kicker::before,
    .section-kicker::after {
        content: "";
        width: 22px;
        height: 2px;
        background: var(--brand-red, #E30314);
    }

.services-heading h2 {
    margin: 0;
    color: var(--brand-blue-dark, #061b42);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.services-heading p {
    max-width: 570px;
    margin: 17px auto 0;
    color: #647087;
    font-size: 15px;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.service-card {
    position: relative;
    min-height: 265px;
    padding: 28px 28px 25px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid #e4eaf2;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(6, 27, 66, 0.06), 0 3px 8px rgba(6, 27, 66, 0.025);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        right: 100%;
        left: 0;
        height: 3px;
        background: linear-gradient( 90deg, var(--brand-red, #E30314), var(--brand-blue, #0b3d88) );
        transition: right 0.4s ease;
    }

    .service-card::after {
        content: "";
        position: absolute;
        right: -50px;
        bottom: -60px;
        width: 130px;
        height: 130px;
        background: rgba(11, 61, 136, 0.035);
        border-radius: 50%;
        transition: width 0.4s ease, height 0.4s ease, background-color 0.4s ease;
    }

    .service-card:hover {
        border-color: rgba(11, 61, 136, 0.2);
        box-shadow: 0 24px 50px rgba(6, 27, 66, 0.12), 0 5px 12px rgba(6, 27, 66, 0.05);
        transform: translateY(-8px);
    }

        .service-card:hover::before {
            right: 0;
        }

        .service-card:hover::after {
            width: 160px;
            height: 160px;
            background: rgba(11, 61, 136, 0.055);
        }

.service-icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    margin-bottom: 19px;
    display: grid;
    place-items: center;
    color: var(--brand-red, #E30314);
    background: #f5f7fa;
    border: 1px solid #edf0f5;
    border-radius: 10px;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

    .service-icon svg {
        width: 22px;
        height: 22px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.service-card:hover .service-icon {
    color: #ffffff;
    background: var(--brand-blue, #0b3d88);
    border-color: var(--brand-blue, #0b3d88);
    transform: rotate(-4deg) scale(1.06);
}

.service-card.featured .service-icon {
    color: #ffffff;
    background: var(--brand-blue, #0b3d88);
    border-color: var(--brand-blue, #0b3d88);
    box-shadow: 4px 4px 0 rgba(237, 11, 27, 0.9);
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 11px;
    color: var(--brand-blue-dark, #061b42);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

.service-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    color: #647087;
    font-size: 13px;
    line-height: 1.7;
}

.service-link {
    position: relative;
    z-index: 1;
    width: max-content;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-red, #E30314);
    font-size: 12px;
    font-weight: 800;
    transition: color 0.25s ease, gap 0.25s ease;
}

    .service-link span {
        font-size: 17px;
        line-height: 1;
    }

    .service-link:hover {
        gap: 13px;
        color: var(--brand-blue, #0b3d88);
    }

@media (max-width: 960px) {
    .services-section {
        padding: 90px 24px 100px;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .services-section {
        padding: 75px 20px 80px;
    }

    .services-heading {
        margin-bottom: 40px;
    }

        .services-heading h2 {
            font-size: 2rem;
        }

        .services-heading p {
            font-size: 14px;
        }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card {
        min-height: auto;
        padding: 25px 24px;
    }

        .service-card:hover {
            transform: translateY(-4px);
        }
}

.simple-about {
    padding: 100px 24px;
    overflow: hidden;
    color: #ffffff;
    background: #061b42;
}

.simple-about__container {
    width: min(1240px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 520px);
    align-items: center;
    gap: 80px;
}

.simple-about__content {
    max-width: 680px;
}

.simple-about__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #ed0b1b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

    .simple-about__label::before {
        content: "";
        width: 34px;
        height: 3px;
        background: #ed0b1b;
    }

.simple-about h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.5rem, 4.3vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

    .simple-about h2 strong {
        color: #ed0b1b;
        font-weight: 800;
    }

.simple-about p {
    max-width: 630px;
    margin: 26px 0 35px;
    color: #d4deec;
    font-size: 17px;
    line-height: 1.75;
}

.simple-about__button {
    min-height: 56px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    color: #ffffff;
    background: #ed0b1b;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

    .simple-about__button span {
        font-size: 21px;
        font-weight: 400;
    }

    .simple-about__button:hover {
        background: #c90010;
        box-shadow: 0 14px 30px rgba(237, 11, 27, 0.24);
        transform: translateY(-3px);
    }

.simple-about__image {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.28);
}

    .simple-about__image::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient( 90deg, rgba(6, 27, 66, 0.22), transparent 55% );
    }

    .simple-about__image::after {
        content: "";
        position: absolute;
        top: 25px;
        right: 0;
        z-index: 2;
        width: 5px;
        height: 100px;
        background: #ed0b1b;
    }

    .simple-about__image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .simple-about__image:hover img {
        transform: scale(1.04);
    }

@media (max-width: 900px) {
    .simple-about {
        padding: 80px 24px;
    }

    .simple-about__container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .simple-about__image {
        width: 100%;
        height: 400px;
    }
}

@media (max-width: 560px) {
    .simple-about {
        padding: 65px 20px;
    }

        .simple-about h2 {
            font-size: 2.5rem;
        }

        .simple-about p {
            font-size: 15px;
        }

    .simple-about__image {
        height: 290px;
    }
}
/* YAPTIĞIMIZ İŞLER */

.projects-section {
    padding: 110px 24px 120px;
    background: #ffffff;
}

.projects-container {
    width: min(1240px, 100%);
    margin-inline: auto;
}

.projects-heading {
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}

.projects-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #ed0b1b;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

    .projects-kicker::before,
    .projects-kicker::after {
        content: "";
        width: 23px;
        height: 2px;
        background: #ed0b1b;
    }

.projects-heading h2 {
    margin: 0;
    color: #061b42;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.projects-heading p {
    margin: 16px 0 0;
    color: #68758a;
    font-size: 15px;
    line-height: 1.7;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.project-card {
    position: relative;
    height: 330px;
    display: block;
    overflow: hidden;
    background: #061b42;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(6, 27, 66, 0.1);
}

    .project-card:nth-child(2),
    .project-card:nth-child(5) {
        transform: translateY(24px);
    }

    .project-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.3, 1);
    }

    .project-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(6, 27, 66, 0.03) 25%, rgba(6, 27, 66, 0.9) 100% );
        transition: background-color 0.35s ease;
    }

.project-overlay {
    position: absolute;
    right: 25px;
    bottom: 24px;
    left: 25px;
    z-index: 2;
    display: grid;
    gap: 7px;
    color: #ffffff;
    transform: translateY(8px);
    transition: transform 0.35s ease;
}

.project-category {
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

    .project-category::before {
        content: "";
        width: 23px;
        height: 2px;
        margin-right: 8px;
        display: inline-block;
        vertical-align: middle;
        background: #ed0b1b;
    }

.project-overlay strong {
    max-width: calc(100% - 50px);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.project-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #ed0b1b;
    border-radius: 50%;
    font-size: 18px;
    transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.075);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-card:hover .project-arrow {
    color: #061b42;
    background: #ffffff;
    transform: rotate(45deg);
}

.projects-footer {
    margin-top: 75px;
    text-align: center;
}

.projects-button {
    min-height: 55px;
    padding: 0 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: #ffffff;
    background: #0b3d88;
    border-radius: 4px;
    box-shadow: inset 4px 0 0 #ed0b1b;
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

    .projects-button:hover {
        background: #061b42;
        transform: translateY(-3px);
    }

    .projects-button span {
        font-size: 20px;
    }

/* TEKLİF ALANI */

.project-cta {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto 110px;
    padding: 67px 24px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient( 120deg, #ed0b1b 0%, #d90918 55%, #0b3d88 140% );
    border-radius: 10px;
    box-shadow: 0 22px 50px rgba(237, 11, 27, 0.2);
}

    .project-cta::before {
        content: "";
        position: absolute;
        top: -120px;
        right: -90px;
        width: 330px;
        height: 330px;
        border: 65px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

.project-cta__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: auto;
    text-align: center;
}

    .project-cta__content > span {
        display: block;
        margin-bottom: 13px;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.15em;
    }

.project-cta h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.project-cta p {
    max-width: 610px;
    margin: 17px auto 29px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.7;
}

.project-cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-button {
    min-height: 49px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

    .cta-button:hover {
        transform: translateY(-3px);
    }

.cta-button--white {
    color: #ed0b1b;
    background: #ffffff;
}

.cta-button--outline {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
}

    .cta-button--outline:hover {
        background: rgba(255, 255, 255, 0.12);
    }

.cta-button svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-card:nth-child(2),
    .project-card:nth-child(5) {
        transform: none;
    }

    .projects-footer {
        margin-top: 45px;
    }
}

@media (max-width: 580px) {
    .projects-section {
        padding: 80px 20px 85px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        height: 300px;
    }

    .project-cta {
        width: calc(100% - 40px);
        margin-bottom: 80px;
        padding: 52px 20px;
    }

    .project-cta__buttons {
        display: grid;
    }

    .cta-button {
        width: 100%;
    }
}

/* POLO PRINT FOOTER */

.site-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #061b42;
}

    .site-footer::before {
        content: "";
        position: absolute;
        top: -220px;
        left: -160px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(11, 61, 136, 0.22);
        filter: blur(15px);
        pointer-events: none;
    }

    .site-footer::after {
        content: "";
        position: absolute;
        right: -160px;
        bottom: -260px;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(237, 11, 27, 0.08);
        filter: blur(20px);
        pointer-events: none;
    }

.footer-accent {
    width: 100%;
    height: 4px;
    background: linear-gradient( 90deg, #ed0b1b 0%, #ed0b1b 24%, #0b3d88 24%, #0b3d88 100% );
}

.footer-container {
    position: relative;
    z-index: 1;
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.footer-main {
    min-height: 315px;
    padding: 68px 0 55px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 100px;
}

.footer-company {
    max-width: 590px;
}

.footer-logo {
    width: 190px;
    display: block;
    margin-bottom: 25px;
    padding: 10px 13px;
    background: #ffffff;
    border-radius: 5px;
}

    .footer-logo img {
        width: 100%;
        height: auto;
        display: block;
    }

.footer-description {
    max-width: 530px;
    margin: 0 0 23px;
    color: #d5deec;
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact {
    display: grid;
    gap: 9px;
    margin: 0;
    font-style: normal;
}

    .footer-contact a {
        width: max-content;
        max-width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #91a9cc;
        font-size: 13px;
        line-height: 1.5;
        transition: color 0.25s ease, transform 0.25s ease;
    }

        .footer-contact a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

    .footer-contact svg {
        width: 16px;
        height: 16px;
        margin-top: 2px;
        flex: 0 0 auto;
        fill: none;
        stroke: #ed0b1b;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(145px, auto));
    gap: 70px;
}

.footer-column h3 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

    .footer-column h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 28px;
        height: 2px;
        background: #ed0b1b;
    }

.footer-column nav {
    display: grid;
    gap: 14px;
}

.footer-column a {
    width: max-content;
    position: relative;
    color: #91a9cc;
    font-size: 13px;
    transition: color 0.25s ease, transform 0.25s ease;
}

    .footer-column a::before {
        content: "";
        position: absolute;
        top: 50%;
        left: -15px;
        width: 0;
        height: 2px;
        background: #ed0b1b;
        transform: translateY(-50%);
        transition: width 0.25s ease;
    }

    .footer-column a:hover {
        color: #ffffff;
        transform: translateX(15px);
    }

        .footer-column a:hover::before {
            width: 8px;
        }

.footer-bottom {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

    .footer-bottom p {
        margin: 0;
        color: #6f88ad;
        font-size: 12px;
    }

.footer-legal {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .footer-legal a {
        color: #6f88ad;
        font-size: 12px;
        transition: color 0.25s ease;
    }

        .footer-legal a:hover {
            color: #ffffff;
        }

@media (max-width: 860px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-navigation {
        justify-content: start;
    }
}

@media (max-width: 560px) {
    .footer-container {
        width: calc(100% - 40px);
    }

    .footer-main {
        padding: 55px 0 45px;
    }

    .footer-logo {
        width: 170px;
    }

    .footer-navigation {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        padding: 25px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 17px;
    }

    .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}
/* MASAÜSTÜ WHATSAPP BUTONU */

.desktop-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 999;
    min-width: 245px;
    min-height: 68px;
    padding: 10px 20px 10px 10px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #ffffff;
    background: linear-gradient(135deg, #128c4a, #25d366);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 40px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22), 0 5px 15px rgba(37, 211, 102, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

    .desktop-whatsapp:hover {
        color: #ffffff;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25), 0 8px 22px rgba(37, 211, 102, 0.35);
        transform: translateY(-5px);
    }

.desktop-whatsapp__icon {
    position: relative;
    z-index: 2;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

    .desktop-whatsapp__icon svg {
        width: 28px;
        height: 28px;
        fill: currentColor;
    }

.desktop-whatsapp__text {
    display: grid;
    gap: 3px;
}

    .desktop-whatsapp__text small {
        color: rgba(255, 255, 255, 0.78);
        font-size: 10px;
        font-weight: 600;
    }

    .desktop-whatsapp__text strong {
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
    }

.desktop-whatsapp__pulse {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 48px;
    height: 48px;
    border: 2px solid rgba(37, 211, 102, 0.7);
    border-radius: 50%;
    animation: whatsappPulse 2.2s infinite;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    75%, 100% {
        opacity: 0;
        transform: scale(1.65);
    }
}

/* MOBİL ALT İLETİŞİM ÇUBUĞU */

.mobile-contact-bar {
    display: none;
}

@media (max-width: 768px) {
    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
    }

    .desktop-whatsapp {
        display: none;
    }

    .mobile-contact-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1200;
        height: calc(68px + env(safe-area-inset-bottom));
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        background: rgba(255, 255, 255, 0.86);
        border-top: 1px solid rgba(6, 27, 66, 0.1);
        box-shadow: 0 -10px 30px rgba(6, 27, 66, 0.13);
        -webkit-backdrop-filter: blur(18px) saturate(150%);
        backdrop-filter: blur(18px) saturate(150%);
    }

    .mobile-contact-button {
        min-width: 0;
        height: 52px;
        padding: 0 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #ffffff;
        border-radius: 7px;
        box-shadow: 0 5px 13px rgba(6, 27, 66, 0.12);
        transition: transform 0.2s ease, filter 0.2s ease;
    }

        .mobile-contact-button:active {
            transform: scale(0.97);
        }

    .mobile-contact-button--call {
        background: linear-gradient(135deg, #061b42, #0b3d88);
        box-shadow: inset 3px 0 0 #ed0b1b;
    }

    .mobile-contact-button--whatsapp {
        background: linear-gradient(135deg, #128c4a, #25d366);
    }

    .mobile-contact-button svg {
        width: 23px;
        height: 23px;
        flex: 0 0 auto;
    }

    .mobile-contact-button--call svg {
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-contact-button--whatsapp svg {
        fill: currentColor;
    }

    .mobile-contact-button > span {
        min-width: 0;
        display: grid;
        gap: 1px;
        text-align: left;
    }

    .mobile-contact-button small {
        overflow: hidden;
        color: rgba(255, 255, 255, 0.75);
        font-size: 9px;
        font-weight: 600;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .mobile-contact-button strong {
        color: #ffffff;
        font-size: 13px;
        font-weight: 800;
        white-space: nowrap;
    }
}

@media (max-width: 370px) {
    .mobile-contact-bar {
        padding-right: 6px;
        padding-left: 6px;
        gap: 6px;
    }

    .mobile-contact-button {
        padding: 0 9px;
        gap: 7px;
    }

        .mobile-contact-button svg {
            width: 20px;
            height: 20px;
        }

        .mobile-contact-button strong {
            font-size: 12px;
        }
}

@media (prefers-reduced-motion: reduce) {
    .desktop-whatsapp__pulse {
        animation: none;
    }
}
/* POLO PRINT HERO SLIDER */

.hero {
    --hero-blue: #0b3d88;
    --hero-dark-blue: #061b42;
    --hero-red: #ed0b1b;
    --header-height: 100px;
    position: relative;
    height: 740px;
    min-height: calc(100svh - var(--header-height));
    max-height: 860px;
    overflow: hidden;
    color: #ffffff;
    background: var(--hero-dark-blue);
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

    .hero-slide.active {
        z-index: 1;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.06);
    transition: transform 7s ease;
}

.hero-slide.active .hero-background {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient( 90deg, rgba(3, 16, 42, 0.96) 0%, rgba(4, 23, 58, 0.88) 34%, rgba(4, 24, 59, 0.58) 62%, rgba(3, 18, 45, 0.28) 100% ), linear-gradient( 0deg, rgba(2, 14, 36, 0.88) 0%, transparent 55% );
}

.hero-container {
    width: min(1240px, calc(100% - 48px));
    height: 100%;
    margin-inline: auto;
    padding: 80px 0 115px;
    display: flex;
    align-items: center;
}

.hero-content {
    width: min(100%, 800px);
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide.active .hero-content {
    animation: heroContentIn 0.8s 0.2s ease forwards;
}

.hero-label {
    width: max-content;
    max-width: 100%;
    margin: 0 0 27px;
    padding: 9px 17px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #e9eef7;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 40px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.01em;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

    .hero-label span {
        width: 7px;
        height: 7px;
        flex: 0 0 auto;
        background: var(--hero-red);
        border-radius: 50%;
    }

.hero h1,
.hero h2 {
    max-width: 950px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.5rem, 5.2vw, 5.7rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.hero-description {
    max-width: 650px;
    margin: 31px 0 38px;
    color: #e0e6ef;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-button {
    min-height: 59px;
    padding: 0 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

    .hero-button:hover {
        transform: translateY(-3px);
    }

.hero-button--primary {
    color: #ffffff;
    background: var(--hero-red);
    box-shadow: 0 13px 30px rgba(237, 11, 27, 0.2);
}

    .hero-button--primary:hover {
        background: #c90010;
        box-shadow: 0 16px 35px rgba(237, 11, 27, 0.3);
    }

    .hero-button--primary span {
        font-size: 23px;
        font-weight: 400;
        line-height: 1;
    }

.hero-button--outline {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.45);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

    .hero-button--outline:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: #ffffff;
    }

/* SOLDAN GELEN KIRMIZI ÇİZGİ */

.hero-side-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 5px;
    background: var(--hero-red);
}

/* SLIDER KONTROLLERİ */

.slider-controls {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 13px;
    transform: translateX(-50%);
}

.slider-pagination {
    display: flex;
    align-items: center;
    gap: 9px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(255, 255, 255, 0.55);
    border: 0;
    border-radius: 30px;
    cursor: pointer;
    transition: width 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

    .slider-dot:hover {
        background: #ffffff;
        transform: scale(1.15);
    }

    .slider-dot.active {
        width: 32px;
        background: var(--hero-red);
    }

.slider-arrow {
    width: 37px;
    height: 37px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: rgba(6, 27, 66, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

    .hero:hover .slider-arrow,
    .slider-arrow:focus-visible {
        opacity: 1;
        transform: scale(1);
    }

    .slider-arrow:hover {
        background: var(--hero-red);
        border-color: var(--hero-red);
    }

/* ANİMASYON */

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* TABLET */

@media (max-width: 1024px) {
    .hero {
        height: 690px;
    }

    .hero-container {
        padding-top: 70px;
    }

    .hero-content {
        width: min(100%, 720px);
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(3.4rem, 7vw, 5rem);
    }
}

/* MOBİL */

@media (max-width: 768px) {
    .hero {
        --header-height: 76px;
        height: calc(100svh - var(--header-height));
        min-height: 615px;
        max-height: 720px;
    }

    .hero-background {
        background-position: 66% center;
    }

    .hero-overlay {
        background: linear-gradient( 90deg, rgba(3, 17, 44, 0.94) 0%, rgba(4, 25, 61, 0.74) 75%, rgba(4, 24, 58, 0.56) 100% ), linear-gradient( 0deg, rgba(2, 14, 36, 0.91) 0%, rgba(2, 14, 36, 0.08) 68% );
    }

    .hero-container {
        width: calc(100% - 28px);
        padding: 108px 0 96px;
        align-items: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-label {
        margin-bottom: 26px;
        padding: 8px 14px;
        font-size: 10px;
        white-space: normal;
    }

    .hero h1,
    .hero h2 {
        max-width: 470px;
        font-size: clamp(2.25rem, 9.3vw, 3.6rem);
        line-height: 1.13;
        letter-spacing: -0.045em;
    }

    .hero-description {
        max-width: 460px;
        margin: 27px 0 38px;
        font-size: 16px;
        line-height: 1.75;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .hero-button {
        width: 100%;
        min-height: 59px;
        padding: 0 18px;
        gap: 15px;
        text-align: center;
        font-size: 13px;
    }

    .slider-controls {
        bottom: 27px;
    }

    .slider-arrow {
        display: none;
    }

    .hero-side-line {
        width: 4px;
    }
}

/* DAR MOBİL EKRANLAR */

@media (max-width: 430px) {
    .hero {
        min-height: 615px;
    }

    .hero-container {
        padding-top: 90px;
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(2rem, 9.5vw, 2.8rem);
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-button {
        padding: 0 12px;
        font-size: 12px;
    }

    .hero-button--primary span {
        font-size: 19px;
    }
}

@media (max-width: 360px) {
    .hero-buttons {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 700px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-background,
    .hero-slide,
    .hero-button,
    .slider-dot,
    .slider-arrow {
        transition: none;
    }

        .hero-slide.active .hero-content {
            opacity: 1;
            transform: none;
            animation: none;
        }
}

.desktop-whatsapp {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px);
}

    .desktop-whatsapp.whatsapp-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

/* MASAÜSTÜNDE SLIDER EKRANA TAM SIĞSIN */

@media (min-width: 769px) {
    .hero {
        --header-height: 100px;
        width: 100%;
        height: calc(100vh - var(--header-height));
        height: calc(100svh - var(--header-height));
        min-height: 600px;
        max-height: none;
    }

    .hero-slide {
        width: 100%;
        height: 100%;
    }

    .hero-background {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
    }

    .hero-container {
        width: min(1240px, calc(100% - 48px));
        height: 100%;
        min-height: 0;
        padding-top: 55px;
        padding-bottom: 90px;
        align-items: center;
    }

    .hero-content {
        width: min(100%, 850px);
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(3.5rem, 5vw, 5.6rem);
    }

    .slider-controls {
        bottom: 25px;
    }
}

@media (min-width: 769px) {
    body {
        padding-top: 100px;
    }

    .hero {
        height: calc(100vh - 100px);
    }
}

/* POLO PRINT HAKKIMIZDA SAYFASI */

.about-page {
    --about-blue: #0b3d88;
    --about-dark-blue: #061b42;
    --about-red: #ed0b1b;
    --about-text: #33435e;
    --about-light: #f4f7fb;
    overflow: hidden;
    background: #ffffff;
}

.about-hero {
    position: relative;
    padding: 120px 24px 110px;
    background: radial-gradient( circle at 90% 10%, rgba(11, 61, 136, 0.05), transparent 32% ), #ffffff;
}

    .about-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 180px;
        background: var(--about-red);
    }

.about-container {
    width: min(1280px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.95fr);
    align-items: center;
    gap: clamp(65px, 8vw, 120px);
}

.about-content {
    max-width: 660px;
}

.about-badge {
    width: max-content;
    margin-bottom: 32px;
    padding: 9px 15px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--about-dark-blue);
    background: rgba(237, 11, 27, 0.08);
    border: 1px solid rgba(237, 11, 27, 0.12);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
}

    .about-badge i {
        width: 7px;
        height: 7px;
        display: block;
        background: var(--about-red);
        border-radius: 50%;
    }

.about-content h1 {
    margin: 0 0 34px;
    color: var(--about-dark-blue);
    font-size: clamp(2.8rem, 4.3vw, 4.7rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.055em;
}

    .about-content h1 strong {
        color: var(--about-red);
        font-weight: 800;
    }

.about-text {
    display: grid;
    gap: 10px;
}

    .about-text p {
        margin: 0;
        color: var(--about-text);
        font-size: 15px;
        line-height: 1.75;
    }

        .about-text p:first-child::first-letter {
            color: var(--about-blue);
            font-size: 20px;
            font-weight: 800;
        }

.about-signature {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .about-signature > span {
        width: 45px;
        height: 3px;
        background: var(--about-red);
    }

    .about-signature div {
        display: grid;
        gap: 3px;
    }

    .about-signature strong {
        color: var(--about-dark-blue);
        font-size: 14px;
        font-weight: 800;
    }

    .about-signature small {
        color: #718097;
        font-size: 12px;
    }

/* GÖRSEL */

.about-visual {
    position: relative;
    padding: 0 24px 25px 0;
}

.about-image-frame {
    position: relative;
    height: 470px;
    overflow: hidden;
    background: var(--about-light);
    border-radius: 22px;
    box-shadow: 0 28px 60px rgba(6, 27, 66, 0.14);
}

    .about-image-frame::before {
        content: "";
        position: absolute;
        top: 36px;
        right: 0;
        z-index: 3;
        width: 5px;
        height: 115px;
        background: var(--about-red);
    }

    .about-image-frame img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        transition: transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
    }

    .about-image-frame:hover img {
        transform: scale(1.045);
    }

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, transparent 50%, rgba(4, 21, 52, 0.78) 100% );
}

.about-image-label {
    position: absolute;
    right: 30px;
    bottom: 28px;
    left: 30px;
    z-index: 2;
    display: grid;
    gap: 5px;
}

    .about-image-label small {
        color: var(--about-red);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.16em;
    }

    .about-image-label strong {
        color: #ffffff;
        font-size: 18px;
        font-weight: 800;
    }

.about-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 52%;
    height: 52%;
    background: var(--about-blue);
    border-radius: 0 0 22px 0;
}

.about-dots {
    position: absolute;
    top: -34px;
    right: -20px;
    z-index: -1;
    width: 135px;
    height: 135px;
    opacity: 0.25;
    background-image: radial-gradient( var(--about-blue) 1.5px, transparent 1.5px );
    background-size: 13px 13px;
}

/* DEĞERLER */

.about-values {
    padding: 0 24px 100px;
    background: #ffffff;
}

.about-values-container {
    width: min(1280px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #e2e8f1;
    border-bottom: 1px solid #e2e8f1;
}

.about-value {
    position: relative;
    padding: 42px 45px;
}

    .about-value:not(:last-child) {
        border-right: 1px solid #e2e8f1;
    }

    .about-value > span {
        display: block;
        margin-bottom: 18px;
        color: var(--about-red);
        font-size: 12px;
        font-weight: 800;
    }

    .about-value h2 {
        margin: 0 0 12px;
        color: var(--about-dark-blue);
        font-size: 20px;
        font-weight: 800;
    }

    .about-value p {
        margin: 0;
        color: #68758a;
        font-size: 13px;
        line-height: 1.7;
    }

/* GİRİŞ ANİMASYONU */

.about-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

    .about-reveal.about-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* TABLET */

@media (max-width: 1000px) {
    .about-hero {
        padding-top: 90px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        max-width: 760px;
    }

    .about-visual {
        width: min(100%, 760px);
    }

    .about-image-frame {
        height: 480px;
    }

    .about-value {
        padding: 35px 25px;
    }
}

/* MOBİL */

@media (max-width: 700px) {
    .about-hero {
        padding: 70px 20px 75px;
    }

    .about-container {
        gap: 45px;
    }

    .about-badge {
        margin-bottom: 25px;
    }

    .about-content h1 {
        margin-bottom: 27px;
        font-size: clamp(2.35rem, 10vw, 3.3rem);
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.7;
    }

    .about-visual {
        padding: 0 13px 14px 0;
    }

    .about-image-frame {
        height: 340px;
        border-radius: 15px;
    }

    .about-image-label {
        right: 21px;
        bottom: 21px;
        left: 21px;
    }

        .about-image-label strong {
            font-size: 15px;
        }

    .about-dots {
        display: none;
    }

    .about-values {
        padding: 0 20px 75px;
    }

    .about-values-container {
        grid-template-columns: 1fr;
    }

    .about-value {
        padding: 29px 5px;
    }

        .about-value:not(:last-child) {
            border-right: 0;
            border-bottom: 1px solid #e2e8f1;
        }
}

@media (prefers-reduced-motion: reduce) {
    .about-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-image-frame img {
        transition: none;
    }
}
/* POLO PRINT İLETİŞİM SAYFASI */

.contact-page {
    --contact-blue: #0b3d88;
    --contact-dark-blue: #061b42;
    --contact-red: #ed0b1b;
    --contact-text: #52627a;
    --contact-border: #dce3ed;
    --contact-background: #f5f7fa;
    min-height: 100vh;
    background: var(--contact-background);
}

.contact-section {
    padding: 85px 24px 100px;
}

.contact-container {
    width: min(1120px, 100%);
    margin-inline: auto;
}

.contact-heading {
    max-width: 640px;
    margin: 0 auto 45px;
    text-align: center;
}

    .contact-heading > span {
        display: block;
        margin-bottom: 9px;
        color: var(--contact-red);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.15em;
    }

    .contact-heading h1 {
        margin: 0;
        color: var(--contact-dark-blue);
        font-size: clamp(2.3rem, 4vw, 3.6rem);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -0.05em;
    }

    .contact-heading p {
        max-width: 580px;
        margin: 14px auto 0;
        color: var(--contact-text);
        font-size: 14px;
        line-height: 1.7;
    }

.contact-box {
    padding: 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 40px;
    background: #ffffff;
    border: 1px solid var(--contact-border);
    border-radius: 10px;
    box-shadow: 0 13px 35px rgba(6, 27, 66, 0.06);
}

.contact-form-area h2,
.contact-info h2 {
    margin: 0 0 25px;
    color: var(--contact-dark-blue);
    font-size: 17px;
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-form-group {
    display: grid;
    gap: 8px;
}

    .contact-form-group label {
        color: var(--contact-dark-blue);
        font-size: 11px;
        font-weight: 800;
    }

    .contact-form-group input,
    .contact-form-group textarea {
        width: 100%;
        color: var(--contact-dark-blue);
        background: #ffffff;
        border: 1px solid #cad4e2;
        border-radius: 6px;
        outline: none;
        font-family: inherit;
        font-size: 13px;
        transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .contact-form-group input {
        height: 46px;
        padding: 0 14px;
    }

    .contact-form-group textarea {
        min-height: 125px;
        padding: 13px 14px;
        resize: vertical;
    }

        .contact-form-group input::placeholder,
        .contact-form-group textarea::placeholder {
            color: #a4adbb;
        }

        .contact-form-group input:focus,
        .contact-form-group textarea:focus {
            border-color: var(--contact-blue);
            box-shadow: 0 0 0 3px rgba(11, 61, 136, 0.1);
        }

.contact-submit {
    width: 100%;
    min-height: 48px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #ffffff;
    background: var(--contact-red);
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

    .contact-submit:hover {
        background: #ca0010;
        transform: translateY(-2px);
    }

    .contact-submit svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.contact-form-message {
    display: none;
    margin: 0;
    color: var(--contact-blue);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

    .contact-form-message.visible {
        display: block;
    }

/* İLETİŞİM BİLGİLERİ */

.contact-info {
    padding: 30px;
    background: #f4f7fb;
    border: 1px solid #e0e6ef;
    border-radius: 8px;
}

.contact-info-list {
    display: grid;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    text-decoration: none;
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--contact-red);
    background: rgba(237, 11, 27, 0.08);
    border-radius: 50%;
    transition: color 0.25s ease, background-color 0.25s ease;
}

    .contact-info-icon svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.contact-info-text {
    display: grid;
    gap: 5px;
}

    .contact-info-text strong {
        color: var(--contact-dark-blue);
        font-size: 12px;
        font-weight: 800;
    }

    .contact-info-text small {
        color: var(--contact-text);
        font-size: 11px;
        line-height: 1.6;
    }

.contact-info-item:hover .contact-info-icon {
    color: #ffffff;
    background: var(--contact-blue);
}

/* HARİTA */

.contact-map-heading {
    margin: 38px 0 20px;
    text-align: center;
}

    .contact-map-heading span {
        padding: 9px 16px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--contact-dark-blue);
        background: #ffffff;
        border: 1px solid var(--contact-border);
        border-radius: 30px;
        font-size: 11px;
        font-weight: 800;
    }

    .contact-map-heading svg {
        width: 15px;
        height: 15px;
        fill: none;
        stroke: var(--contact-red);
        stroke-width: 1.8;
    }

.contact-map {
    height: 400px;
    overflow: hidden;
    background: #e8edf4;
    border-top: 4px solid var(--contact-red);
    border-radius: 9px;
    box-shadow: 0 13px 35px rgba(6, 27, 66, 0.08);
}

    .contact-map iframe {
        width: 100%;
        height: 100%;
        display: block;
        border: 0;
    }

/* TABLET */

@media (max-width: 850px) {
    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 27px;
    }
}

/* MOBİL */

@media (max-width: 600px) {
    .contact-section {
        padding: 65px 16px 80px;
    }

    .contact-heading {
        margin-bottom: 35px;
    }

        .contact-heading h1 {
            font-size: 2.4rem;
        }

    .contact-box {
        padding: 24px 18px;
        gap: 30px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 24px 20px;
    }

    .contact-map {
        height: 320px;
    }
}
/* REFERANSLAR SAYFASI */

.references-page {
    --references-blue: #0b3d88;
    --references-dark-blue: #061b42;
    --references-red: #ed0b1b;
    --references-border: #d7dfe9;
    --references-background: #f5f7fa;
    min-height: 100vh;
    background: var(--references-background);
}

.references-section {
    padding: 85px 24px 110px;
}

.references-container {
    width: min(1120px, 100%);
    margin-inline: auto;
}

/* BAŞLIK */

.references-heading {
    max-width: 620px;
    margin: 0 auto 55px;
    text-align: center;
}

.references-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--references-red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.references-heading h1 {
    margin: 0;
    color: var(--references-dark-blue);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.references-heading p {
    max-width: 570px;
    margin: 15px auto 0;
    color: #657289;
    font-size: 13px;
    line-height: 1.7;
}

/* REFERANS KARTLARI */

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.reference-item {
    min-width: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

    .reference-item.reference-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reference-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 25px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--references-border);
    border-radius: 9px;
    box-shadow: 0 5px 12px rgba(6, 27, 66, 0.04), 0 1px 3px rgba(6, 27, 66, 0.05);
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

    .reference-card::before {
        content: "";
        position: absolute;
        right: 100%;
        bottom: 0;
        left: 0;
        height: 3px;
        background: linear-gradient( 90deg, var(--references-red), var(--references-blue) );
        transition: right 0.35s ease;
    }

    .reference-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        transition: transform 0.35s ease;
    }

.reference-item h2 {
    margin: 11px 4px 0;
    overflow: hidden;
    color: var(--references-dark-blue);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.reference-card:hover {
    border-color: rgba(11, 61, 136, 0.32);
    box-shadow: 0 13px 28px rgba(6, 27, 66, 0.1), 0 3px 8px rgba(6, 27, 66, 0.05);
    transform: translateY(-5px);
}

    .reference-card:hover::before {
        right: 0;
    }

    .reference-card:hover img {
        transform: scale(1.07);
    }

.reference-card:focus-visible {
    outline: 3px solid rgba(237, 11, 27, 0.35);
    outline-offset: 3px;
}

/* GÖRSEL ÖNİZLEME */

.reference-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    padding: 70px 24px 40px;
    display: grid;
    place-items: center;
    background: rgba(3, 16, 42, 0.9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

    .reference-modal.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.reference-modal__content {
    width: min(600px, 100%);
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.28);
    text-align: center;
    transform: scale(0.94);
    transition: transform 0.3s ease;
}

.reference-modal.open .reference-modal__content {
    transform: scale(1);
}

.reference-modal__content img {
    width: 100%;
    height: min(55vh, 430px);
    display: block;
    object-fit: contain;
}

.reference-modal__content h2 {
    margin: 22px 0 0;
    color: var(--references-dark-blue);
    font-size: 18px;
    font-weight: 800;
}

.reference-modal__close {
    position: absolute;
    top: 22px;
    right: 25px;
    width: 45px;
    height: 45px;
    padding: 0 0 4px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--references-red);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 27px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

    .reference-modal__close:hover {
        background: #c90010;
        transform: rotate(90deg);
    }

body.reference-modal-open {
    overflow: hidden;
}

/* TABLET */

@media (max-width: 1000px) {
    .references-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 780px) {
    .references-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 17px;
    }
}

/* MOBİL */

@media (max-width: 560px) {
    .references-section {
        padding: 65px 16px 80px;
    }

    .references-heading {
        margin-bottom: 38pxpx;
    }

        .references-heading h1 {
            font-size: 2.4rem;
        }

        .references-heading p {
            font-size: 12px;
        }

    .references-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 12px;
    }

    .reference-card {
        padding: 20px;
    }

    .reference-item h2 {
        margin-top: 9px;
        font-size: 11px;
    }

    .reference-modal__content {
        padding: 24px;
    }
}

@media (max-width: 350px) {
    .references-grid {
        grid-template-columns: 1fr;
    }

    .reference-card {
        max-width: 220px;
        margin-inline: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reference-item,
    .reference-card,
    .reference-card img,
    .reference-modal,
    .reference-modal__content,
    .reference-modal__close {
        transition: none;
    }
}

/* POLO PRINT HİZMET DETAY SAYFASI */

.service-detail-page {
    --service-blue: #0b3d88;
    --service-dark-blue: #061b42;
    --service-red: #ed0b1b;
    --service-text: #34445e;
    --service-muted: #718097;
    --service-border: #dce3ec;
    --service-background: #f5f7fa;
    min-height: 100vh;
    padding: 55px 24px 100px;
    background: var(--service-background);
}

.service-detail-container {
    width: min(1180px, 100%);
    margin-inline: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 38px;
}

/* ANA İÇERİK */

.service-detail-content {
    padding: 53px;
    background: #ffffff;
    border: 1px solid var(--service-border);
    border-radius: 22px;
    box-shadow: 0 8px 25px rgba(6, 27, 66, 0.04), 0 1px 3px rgba(6, 27, 66, 0.08);
}

.service-detail-header {
    margin-bottom: 34px;
}

.service-detail-label {
    width: max-content;
    margin-bottom: 15px;
    padding: 7px 11px;
    display: block;
    color: var(--service-red);
    background: rgba(237, 11, 27, 0.07);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.service-detail-header h1 {
    margin: 0;
    color: var(--service-dark-blue);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.service-title-line {
    width: 65px;
    height: 3px;
    margin-top: 20px;
    display: block;
    background: var(--service-red);
    border-radius: 5px;
}

.service-description {
    display: grid;
    gap: 16px;
}

    .service-description p {
        margin: 0;
        color: var(--service-text);
        font-size: 16px;
        line-height: 1.75;
    }

        .service-description p:first-child {
            color: var(--service-dark-blue);
            font-size: 17px;
            font-weight: 500;
        }

/* ÜRETİM STANDARDI */

.service-standard {
    margin-top: 37px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f6f8fb;
    border: 1px solid var(--service-border);
    border-radius: 15px;
    text-align: center;
}

.service-standard-icon {
    display: none;
}

.service-standard div {
    width: 100%;
}

.service-standard strong {
    display: block;
    margin-bottom: 11px;
    color: var(--service-dark-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.service-standard p {
    max-width: 610px;
    margin: auto;
    color: var(--service-muted);
    font-size: 12px;
    line-height: 1.65;
}

/* HİZMET AVANTAJLARI */

.service-features {
    margin-top: 40px;
}

    .service-features h2 {
        margin: 0 0 23px;
        color: var(--service-dark-blue);
        font-size: 21px;
        font-weight: 800;
    }

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.service-feature {
    min-height: 64px;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: #f6f8fb;
    border: 1px solid #e7ebf1;
    border-radius: 12px;
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

    .service-feature > span {
        width: 22px;
        height: 22px;
        flex: 0 0 auto;
        display: grid;
        place-items: center;
        color: var(--service-red);
    }

    .service-feature svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .service-feature p {
        margin: 0;
        color: var(--service-dark-blue);
        font-size: 12px;
        font-weight: 700;
        line-height: 1.45;
    }

    .service-feature:hover {
        background: #ffffff;
        border-color: rgba(11, 61, 136, 0.3);
        transform: translateY(-3px);
    }

/* SAĞ ALAN */

.service-sidebar {
    position: sticky;
    top: 105px;
    display: grid;
    gap: 25px;
}

.service-contact-card {
    position: relative;
    padding: 36px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient( 145deg, var(--service-blue), var(--service-dark-blue) 68% );
    border-radius: 22px;
    box-shadow: 0 17px 35px rgba(6, 27, 66, 0.18);
}

    .service-contact-card::after {
        content: "";
        position: absolute;
        right: -75px;
        bottom: -95px;
        width: 210px;
        height: 210px;
        border: 40px solid rgba(237, 11, 27, 0.12);
        border-radius: 50%;
        pointer-events: none;
    }

.service-contact-kicker {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 11px;
    color: var(--service-red);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.service-contact-card h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #ffffff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.35;
}

.service-contact-card p {
    position: relative;
    z-index: 1;
    margin: 18px 0 27px;
    color: #d8e1ee;
    font-size: 12px;
    line-height: 1.7;
}

.service-call-button {
    position: relative;
    z-index: 1;
    min-height: 48px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background: var(--service-red);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

    .service-call-button:hover {
        background: #c90010;
        transform: translateY(-2px);
    }

    .service-call-button svg {
        width: 17px;
        height: 17px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* DİĞER HİZMETLER */

.other-services {
    padding: 30px 28px;
    background: #ffffff;
    border: 1px solid var(--service-border);
    border-radius: 17px;
    box-shadow: 0 4px 15px rgba(6, 27, 66, 0.04);
}

    .other-services h2 {
        margin: 0 0 12px;
        padding-bottom: 15px;
        color: var(--service-dark-blue);
        border-bottom: 1px solid #e5e9ef;
        font-size: 16px;
        font-weight: 800;
    }

    .other-services a {
        min-height: 47px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        color: var(--service-dark-blue);
        border-bottom: 1px solid #edf0f4;
        font-size: 12px;
        font-weight: 700;
        transition: color 0.25s ease, padding-left 0.25s ease;
    }

        .other-services a:last-child {
            border-bottom: 0;
        }

        .other-services a span::before {
            content: "•";
            margin-right: 8px;
            color: var(--service-red);
        }

        .other-services a i {
            color: var(--service-red);
            font-size: 16px;
            font-style: normal;
            opacity: 0;
            transform: translateX(-7px);
            transition: opacity 0.25s ease, transform 0.25s ease;
        }

        .other-services a:hover {
            padding-left: 5px;
            color: var(--service-blue);
        }

            .other-services a:hover i {
                opacity: 1;
                transform: translateX(0);
            }

/* TABLET */

@media (max-width: 950px) {
    .service-detail-container {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* MOBİL */

@media (max-width: 650px) {
    .service-detail-page {
        padding: 25px 15px 70px;
    }

    .service-detail-content {
        padding: 32px 22px;
        border-radius: 15px;
    }

    .service-detail-header h1 {
        font-size: 2.8rem;
    }

    .service-description p,
    .service-description p:first-child {
        font-size: 14px;
    }

    .service-standard {
        padding: 23px 18px;
    }

    .service-features h2 {
        font-size: 19px;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        grid-template-columns: 1fr;
    }

    .service-contact-card {
        padding: 30px 25px;
        border-radius: 15px;
    }

    .other-services {
        padding: 27px 23px;
    }
}

.service-detail-content,
.service-sidebar > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .service-detail-content.detail-visible,
    .service-sidebar > *.detail-visible {
        opacity: 1;
        transform: translateY(0);
    }

@media (prefers-reduced-motion: reduce) {
    .service-detail-content,
    .service-sidebar > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
