/* =====================================================
   ALPYA TEKNOLOJİ
   style.css
===================================================== */

/* =========================
   Temel Ayarlar
========================= */

:root {
    --primary: #1769ff;
    --primary-dark: #0a45bb;
    --primary-light: #eaf2ff;

    --navy: #071b3b;
    --navy-light: #0e2e5f;
    --navy-soft: #123a73;

    --white: #ffffff;
    --light: #f5f8fc;
    --light-blue: #edf4ff;
    --border: #dbe5f2;

    --text: #17233b;
    --text-soft: #657189;

    --success: #25d366;

    --shadow-small:
        0 10px 30px rgba(7, 27, 59, 0.08);

    --shadow-medium:
        0 20px 50px rgba(7, 27, 59, 0.13);

    --shadow-large:
        0 30px 80px rgba(7, 27, 59, 0.2);

    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 30px;

    --container-width: 1240px;
    --header-height: 84px;

    --transition: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    color: var(--text);
    background: var(--white);

    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

ul {
    list-style: none;
}

::selection {
    color: var(--white);
    background: var(--primary);
}


/* =========================
   Genel Yapılar
========================= */

.container {
    width: min(
        calc(100% - 40px),
        var(--container-width)
    );

    margin-inline: auto;
}

.section-padding {
    padding: 110px 0;
}

.section-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 18px;

    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-mini-title::before {
    content: "";

    width: 34px;
    height: 2px;

    border-radius: 999px;
    background: var(--primary);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.05fr 0.75fr;
    align-items: end;
    gap: 60px;

    margin-bottom: 56px;
}

.section-heading h2,
.about-content h2 {
    color: var(--navy);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.08;
}

.section-heading h2 span,
.about-content h2 span {
    color: var(--primary);
}

.section-heading > p {
    max-width: 570px;
    justify-self: end;

    color: var(--text-soft);
    font-size: 17px;
}

.light-heading h2,
.light-heading p {
    color: var(--white);
}

.light-heading .section-mini-title {
    color: #78aaff;
}

.light-heading .section-mini-title::before {
    background: #78aaff;
}

.section-badge {
    display: inline-flex;
    align-items: center;

    padding: 9px 16px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;

    color: var(--white);
    background: rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
}


/* =========================
   Butonlar
========================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 54px;
    padding: 14px 24px;

    border: 1px solid transparent;
    border-radius: 12px;

    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    box-shadow:
        0 14px 30px rgba(23, 105, 255, 0.28);
}

.button-primary:hover {
    box-shadow:
        0 18px 38px rgba(23, 105, 255, 0.4);
}

.button-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.button-outline:hover {
    color: var(--navy);
    background: var(--white);
}

.button-white {
    color: var(--navy);
    background: var(--white);
}

.button-white:hover {
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.18);
}

.button-outline-light {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
}

.button-outline-light:hover {
    color: var(--navy);
    background: var(--white);
}


/* =========================
   Header
========================= */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;

    height: var(--header-height);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.12);

    background:
        linear-gradient(
            180deg,
            rgba(3, 15, 36, 0.82),
            rgba(3, 15, 36, 0.38)
        );

    backdrop-filter: blur(16px);

    transition:
        height var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    height: 74px;

    border-bottom-color:
        rgba(255, 255, 255, 0.06);

    background: rgba(7, 27, 59, 0.96);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.16);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;

    width: 148px;
}

.site-logo img {
    max-height: 54px;
    object-fit: contain;
    object-position: left center;
}

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.nav-link {
    position: relative;

    padding: 11px 12px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
    font-weight: 700;

    transition: color var(--transition);
}

.nav-link::after {
    content: "";

    position: absolute;
    right: 12px;
    bottom: 5px;
    left: 12px;

    height: 2px;

    border-radius: 99px;
    background: var(--primary);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-contact-button {
    flex-shrink: 0;

    padding: 12px 20px;

    border-radius: 10px;

    color: var(--white);
    background: var(--primary);

    font-size: 14px;
    font-weight: 800;

    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.header-contact-button:hover {
    transform: translateY(-2px);
    background: #2e79ff;

    box-shadow:
        0 12px 24px rgba(23, 105, 255, 0.35);
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;

    width: 45px;
    height: 45px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-button span {
    width: 23px;
    height: 2px;
    margin-inline: auto;

    border-radius: 999px;
    background: var(--white);

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================
   Hero Alanı
========================= */

.hero-section {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 920px;
    padding-top: var(--header-height);

    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.hero-background,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}

.hero-overlay {
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(3, 15, 36, 0.97) 0%,
            rgba(3, 15, 36, 0.85) 38%,
            rgba(3, 15, 36, 0.55) 67%,
            rgba(3, 15, 36, 0.35) 100%
        ),
        linear-gradient(
            0deg,
            rgba(3, 15, 36, 0.86) 0%,
            transparent 45%
        );
}

.hero-decoration {
    position: absolute;
    z-index: 1;

    border-radius: 50%;
    filter: blur(8px);

    pointer-events: none;
}

.hero-decoration-one {
    top: 15%;
    right: -120px;

    width: 420px;
    height: 420px;

    background:
        rgba(23, 105, 255, 0.2);
}

.hero-decoration-two {
    bottom: -180px;
    left: 25%;

    width: 360px;
    height: 360px;

    background:
        rgba(23, 105, 255, 0.12);
}

.hero-container {
    position: relative;
    z-index: 2;

    padding-top: 80px;
    padding-bottom: 150px;
}

.hero-content {
    max-width: 760px;
}

.hero-badge {
    margin-bottom: 26px;
}

.hero-content h1 {
    max-width: 800px;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 0.99;
}

.hero-content h1 span {
    display: block;

    color: #6ca1ff;
}

.hero-content > p {
    max-width: 680px;
    margin-top: 28px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 19px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 36px;
}

.hero-trust-area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;

    margin-top: 95px;

    border:
        1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    overflow: hidden;
    background:
        rgba(255, 255, 255, 0.12);

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.2);
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 17px;

    min-height: 118px;
    padding: 24px;

    background:
        rgba(5, 22, 51, 0.76);

    backdrop-filter: blur(15px);
}

.trust-number {
    flex-shrink: 0;

    color: #6ca1ff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;
}

.trust-card h3 {
    margin-bottom: 4px;

    color: var(--white);
    font-size: 15px;
    font-weight: 800;
}

.trust-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    line-height: 1.5;
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: 34px;
    left: 50%;

    display: grid;
    place-items: center;

    width: 34px;
    height: 56px;

    border:
        1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;

    transform: translateX(-50%);
}

.hero-scroll span {
    width: 5px;
    height: 10px;

    border-radius: 999px;
    background: var(--white);

    animation: scrollIndicator 1.8s infinite;
}

@keyframes scrollIndicator {
    0% {
        opacity: 0;
        transform: translateY(-8px);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(8px);
    }
}


/* =========================
   Hakkımızda
========================= */

.about-section {
    position: relative;

    overflow: hidden;
    background: var(--white);
}

.about-section::before {
    content: "";

    position: absolute;
    top: -150px;
    right: -170px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(23, 105, 255, 0.09),
            transparent 70%
        );
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.about-image-wrapper {
    position: relative;

    min-height: 610px;

    border-radius: var(--radius-large);
    overflow: hidden;

    box-shadow: var(--shadow-large);
}

.about-image-wrapper > img {
    width: 100%;
    height: 100%;
    min-height: 610px;

    object-fit: cover;
    object-position: center;
}

.about-image-wrapper::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 50%,
            rgba(7, 27, 59, 0.6)
        );
}

.about-image-card {
    position: absolute;
    z-index: 2;
    right: 25px;
    bottom: 25px;
    left: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 22px 24px;

    border:
        1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;

    color: var(--white);
    background:
        rgba(7, 27, 59, 0.72);

    backdrop-filter: blur(15px);
}

.about-image-card strong {
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-image-card span {
    max-width: 170px;

    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    line-height: 1.5;
    text-align: right;
}

.about-content h2 {
    margin-bottom: 28px;
}

.about-content > p {
    margin-bottom: 17px;

    color: var(--text-soft);
    font-size: 16px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;

    margin-top: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 13px;

    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: var(--light);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.about-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 105, 255, 0.3);
    box-shadow: var(--shadow-small);
}

.feature-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;

    width: 32px;
    height: 32px;

    border-radius: 10px;

    color: var(--white);
    background: var(--primary);

    font-size: 13px;
    font-weight: 800;
}

.about-feature h3 {
    margin-bottom: 3px;

    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}

.about-feature p {
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.5;
}


/* =========================
   Misyon ve Vizyon
========================= */

.mission-section {
    background: var(--light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.mission-card {
    position: relative;

    min-height: 420px;
    padding: 54px;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    overflow: hidden;
    background: var(--white);

    box-shadow: var(--shadow-small);
}

.mission-card::before {
    content: "";

    position: absolute;
    right: -80px;
    bottom: -100px;

    width: 280px;
    height: 280px;

    border-radius: 50%;
    background:
        rgba(23, 105, 255, 0.07);
}

.mission-card-number {
    position: absolute;
    top: 35px;
    right: 40px;

    color: rgba(7, 27, 59, 0.07);

    font-family: "Montserrat", sans-serif;
    font-size: 88px;
    font-weight: 800;
    line-height: 1;
}

.mission-card h2 {
    position: relative;

    max-width: 470px;
    margin: 12px 0 24px;

    color: var(--navy);

    font-family: "Montserrat", sans-serif;
    font-size: clamp(27px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.mission-card p {
    position: relative;

    max-width: 530px;

    color: var(--text-soft);
}

.mission-card-dark {
    border-color: transparent;

    color: var(--white);

    background:
        linear-gradient(
            145deg,
            var(--navy),
            var(--navy-light)
        );

    box-shadow: var(--shadow-large);
}

.mission-card-dark::before {
    background:
        rgba(255, 255, 255, 0.05);
}

.mission-card-dark .mission-card-number {
    color: rgba(255, 255, 255, 0.06);
}

.mission-card-dark h2 {
    color: var(--white);
}

.mission-card-dark p {
    color: rgba(255, 255, 255, 0.69);
}

.mission-card-dark .section-mini-title {
    color: #78aaff;
}

.mission-card-dark .section-mini-title::before {
    background: #78aaff;
}




/* =========================
   Projeler
========================= */

.projects-section {
    position: relative;

    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(23, 105, 255, 0.22),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #04142e,
            var(--navy)
        );
}

.projects-section::before {
    content: "";

    position: absolute;
    top: -120px;
    left: -180px;

    width: 420px;
    height: 420px;

    border:
        1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.project-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 34px;
}

.project-filter-button {
    padding: 11px 18px;

    border:
        1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;

    color: rgba(255, 255, 255, 0.72);
    background:
        rgba(255, 255, 255, 0.06);

    font-size: 13px;
    font-weight: 700;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.project-filter-button:hover,
.project-filter-button.active {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.project-card {
    position: relative;

    min-height: 210px;
    padding: 28px;

    border:
        1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;

    overflow: hidden;
    color: var(--white);
    background:
        rgba(255, 255, 255, 0.055);

    backdrop-filter: blur(13px);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.project-card::after {
    content: "";

    position: absolute;
    right: -50px;
    bottom: -80px;

    width: 150px;
    height: 150px;

    border-radius: 50%;
    background: rgba(23, 105, 255, 0.13);

    transition: transform var(--transition);
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(82, 146, 255, 0.55);
    background:
        rgba(255, 255, 255, 0.09);
}

.project-card:hover::after {
    transform: scale(1.25);
}

.project-card.is-hidden {
    display: none;
}



.project-index {
    display: block;

    margin-bottom: 32px;

    color: #72a5ff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.project-card h3 {
    position: relative;
    z-index: 2;

    max-width: 270px;
    margin-bottom: 20px;

    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.project-description {
    position: relative;
    z-index: 2;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.55;
}

.project-tags {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.project-tags span {
    padding: 6px 9px;

    border:
        1px solid rgba(255, 255, 255, 0.12);
    border-radius: 7px;

    color: rgba(255, 255, 255, 0.72);
    background:
        rgba(255, 255, 255, 0.055);

    font-size: 10px;
    font-weight: 700;
}




/* =========================
   Referanslar
========================= */

.references-section {
    overflow: hidden;
    background: var(--light);
}

.references-slider {
    position: relative;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    background: var(--white);
    box-shadow: var(--shadow-small);
}

.references-slider::before,
.references-slider::after {
    content: "";

    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;

    width: 100px;

    pointer-events: none;
}

.references-slider::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            var(--white),
            transparent
        );
}

.references-slider::after {
    right: 0;

    background:
        linear-gradient(
            270deg,
            var(--white),
            transparent
        );
}

.references-track {
    display: flex;
    width: max-content;

    animation:
        referencesScroll 50s linear infinite;
}

.references-slider:hover .references-track {
    animation-play-state: paused;
}

.reference-card {
    display: grid;
    place-items: center;
    flex-shrink: 0;

    width: 245px;
    min-height: 130px;
    padding: 25px;

    border-right: 1px solid var(--border);

    color: var(--navy);

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    text-align: center;

    transition:
        color var(--transition),
        background var(--transition);
}

.reference-card:hover {
    color: var(--primary);
    background: var(--primary-light);
}

@keyframes referencesScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.reference-note {
    max-width: 750px;
    margin: 22px auto 0;

    color: var(--text-soft);
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
}


/* =========================
   CTA
========================= */

.cta-section {
    position: relative;

    overflow: hidden;
    color: var(--white);
    background: var(--primary);
}

.cta-background {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );
}

.cta-background::before {
    content: "";

    position: absolute;
    top: -180px;
    left: -140px;

    width: 420px;
    height: 420px;

    border:
        1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.cta-container {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    padding-top: 80px;
    padding-bottom: 80px;
}

.cta-content {
    max-width: 730px;
}

.cta-content .section-mini-title {
    color: rgba(255, 255, 255, 0.72);
}

.cta-content .section-mini-title::before {
    background: rgba(255, 255, 255, 0.72);
}

.cta-content h2 {
    margin-bottom: 18px;

    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(30px, 4vw, 51px);
    font-weight: 800;
    letter-spacing: -1.8px;
    line-height: 1.1;
}

.cta-content p {
    max-width: 650px;

    color: rgba(255, 255, 255, 0.76);
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    gap: 12px;

    min-width: 250px;
}


/* =========================
   İletişim
========================= */

.contact-section {
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 40px;
}

.contact-information {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;

    min-height: 110px;
    padding: 18px;

    border: 1px solid var(--border);
    border-radius: 16px;

    background: var(--light);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 105, 255, 0.33);
    box-shadow: var(--shadow-small);
}

.contact-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;

    width: 45px;
    height: 45px;

    border-radius: 13px;

    color: var(--white);
    background: var(--primary);

    font-size: 16px;
    font-weight: 800;
}

.contact-label {
    display: block;

    margin-bottom: 3px;

    color: var(--text-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card p {
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-map-placeholder {
    grid-column: 1 / -1;

    display: grid;
    place-items: center;

    min-height: 310px;
    padding: 35px;

    border: 1px solid var(--border);
    border-radius: var(--radius-medium);

    background:
        linear-gradient(
            rgba(7, 27, 59, 0.76),
            rgba(7, 27, 59, 0.76)
        ),
        url("assets/images/dukkan.jpg")
        center / cover no-repeat;

    text-align: center;
}

.contact-map-placeholder div {
    max-width: 350px;
}

.contact-map-placeholder span {
    display: block;

    margin-bottom: 9px;

    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.contact-map-placeholder p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.contact-form-wrapper {
    height: 100%;
}

.contact-form {
    height: 100%;
    padding: 42px;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: var(--light);
    box-shadow: var(--shadow-small);
}

.form-heading {
    margin-bottom: 30px;
}

.form-heading h3 {
    margin-bottom: 10px;

    color: var(--navy);
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.form-heading p {
    color: var(--text-soft);
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 7px;

    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
}

.form-group label small {
    margin-left: 4px;

    color: var(--text-soft);
    font-size: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid var(--border);
    border-radius: 11px;
    outline: none;

    color: var(--text);
    background: var(--white);

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.form-group input,
.form-group select {
    min-height: 53px;
    padding: 0 15px;
}

.form-group textarea {
    min-height: 150px;
    padding: 14px 15px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(23, 105, 255, 0.1);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #dd3344;
}

.form-error {
    min-height: 18px;
    padding-top: 4px;

    color: #c72e3c;
    font-size: 10px;
    font-weight: 600;
}

.form-submit-button {
    width: 100%;
    min-height: 58px;
}


/* =========================
   Footer
========================= */

.site-footer {
    padding-top: 80px;

    color: var(--white);
    background:
        linear-gradient(
            145deg,
            #031028,
            var(--navy)
        );
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 0.75fr);
    gap: 60px;

    padding-bottom: 65px;
}

.footer-logo {
    display: inline-flex;

    width: 170px;
    margin-bottom: 25px;
}

.footer-logo img {
    max-height: 65px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand > p {
    max-width: 380px;

    color: rgba(255, 255, 255, 0.63);
    font-size: 14px;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;

    margin-top: 24px;
}

.footer-social-links a {
    padding: 9px 13px;

    border:
        1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    font-weight: 700;

    transition:
        color var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.footer-social-links a:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 12px;

    color: var(--white);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 800;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-column a:hover {
    color: #7aa9ff;
}

.footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    min-height: 76px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
}

.footer-bottom a {
    color: #74a7ff;
    font-weight: 800;
}


/* =========================
   Sabit Butonlar
========================= */

.floating-whatsapp {
    position: fixed;
    z-index: 900;
    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 54px;
    padding: 8px 17px 8px 8px;

    border-radius: 999px;

    color: var(--white);
    background: var(--success);

    box-shadow:
        0 15px 35px rgba(37, 211, 102, 0.35);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 42px rgba(37, 211, 102, 0.46);
}

.floating-whatsapp span {
    display: grid;
    place-items: center;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    color: var(--success);
    background: var(--white);

    font-weight: 900;
}

.floating-whatsapp strong {
    font-size: 13px;
}

.scroll-top-button {
    position: fixed;
    z-index: 899;
    right: 28px;
    bottom: 25px;

    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    border-radius: 12px;

    color: var(--white);
    background: var(--navy);

    box-shadow: var(--shadow-small);

    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);

    transition:
        opacity var(--transition),
        visibility var(--transition),
        transform var(--transition),
        background var(--transition);
}

.scroll-top-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-button:hover {
    background: var(--primary);
}

.mobile-contact-bar {
    display: none;
}


/* =========================
   Görünme Animasyonları
========================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================
   Responsive - 1100px
========================= */

@media (max-width: 1100px) {

    :root {
        --container-width: 960px;
    }

    .main-navigation {
        gap: 0;
    }

    .nav-link {
        padding-inline: 8px;
        font-size: 12px;
    }

    .header-contact-button {
        padding-inline: 14px;
    }

    .hero-section {
        min-height: 850px;
    }

    .hero-trust-area {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        gap: 55px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.3fr repeat(3, 0.7fr);
        gap: 35px;
    }

}


/* =========================
   Responsive - 900px
========================= */

@media (max-width: 900px) {

    :root {
        --header-height: 74px;
    }

    .section-padding {
        padding: 85px 0;
    }

    .header-contact-button {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
        margin-left: auto;
    }

    .main-navigation {
        position: fixed;
        z-index: 1001;
        top: var(--header-height);
        right: 18px;
        left: 18px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;

        max-height: 0;
        padding: 0 18px;

        border:
            1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0 0 18px 18px;

        overflow: hidden;
        background: rgba(7, 27, 59, 0.98);

        opacity: 0;
        visibility: hidden;

        box-shadow:
            0 22px 50px rgba(0, 0, 0, 0.25);

        transition:
            max-height 0.45s ease,
            padding 0.45s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .main-navigation.open {
        max-height: 520px;
        padding: 18px;

        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 13px 12px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.06);

        font-size: 14px;
    }

    .nav-link::after {
        right: auto;
        bottom: 8px;
        left: 12px;

        width: 30px;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-container {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .hero-content h1 {
        font-size: clamp(45px, 10vw, 72px);
    }

    .hero-trust-area {
        margin-top: 70px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-heading > p {
        justify-self: start;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper,
    .about-image-wrapper > img {
        min-height: 520px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        min-height: auto;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;

        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================
   Responsive - 650px
========================= */

@media (max-width: 650px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container-width)
        );
    }

    .section-padding {
        padding: 70px 0;
    }

    .site-logo {
        width: 125px;
    }

    .hero-section {
        min-height: 820px;
    }

    .hero-background img {
        object-position: 53% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 15, 36, 0.77) 0%,
                rgba(3, 15, 36, 0.92) 52%,
                rgba(3, 15, 36, 0.99) 100%
            );
    }

    .hero-container {
        padding-top: 105px;
        padding-bottom: 90px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 13vw, 58px);
        letter-spacing: -2.5px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .button {
        width: 100%;
    }

    .hero-trust-area {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }

    .trust-card {
        min-height: 95px;
    }

    .hero-scroll {
        display: none;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: 36px;
        letter-spacing: -1.5px;
    }

    .about-image-wrapper,
    .about-image-wrapper > img {
        min-height: 430px;
    }

    .about-image-card {
        right: 16px;
        bottom: 16px;
        left: 16px;

        flex-direction: column;
        align-items: flex-start;
    }

    .about-image-card span {
        max-width: none;
        text-align: left;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 34px 28px;
    }

    .mission-card-number {
        top: 23px;
        right: 25px;

        font-size: 66px;
    }

    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 310px;
    }

    .project-filter {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .project-filter-button {
        width: 100%;
        padding-inline: 10px;
    }

    .reference-card {
        width: 210px;
    }

    .references-slider::before,
    .references-slider::after {
        width: 50px;
    }

    .cta-container {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .button {
        width: 100%;
    }

    .contact-information {
        grid-template-columns: 1fr;
    }

    .contact-map-placeholder {
        min-height: 260px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group-full {
        grid-column: auto;
    }

    .form-heading h3 {
        font-size: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;

        padding: 20px 0;
        text-align: center;
    }

    .floating-whatsapp {
        display: none;
    }

    .scroll-top-button {
        right: 15px;
        bottom: 76px;
    }

    .mobile-contact-bar {
        position: fixed;
        z-index: 950;
        right: 0;
        bottom: 0;
        left: 0;

        display: grid;
        grid-template-columns: repeat(2, 1fr);

        min-height: 58px;

        border-top:
            1px solid rgba(255, 255, 255, 0.12);

        box-shadow:
            0 -10px 30px rgba(0, 0, 0, 0.18);
    }

    .mobile-contact-bar a {
        display: grid;
        place-items: center;

        color: var(--white);

        font-size: 13px;
        font-weight: 800;
    }

    .mobile-contact-bar a:first-child {
        background: var(--navy);
    }

    .mobile-contact-bar a:last-child {
        background: var(--success);
    }

    .site-footer {
        padding-bottom: 58px;
    }

}


/* =========================
   Hareket Azaltma Tercihi
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

}
.reference-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;

    width: 245px;
    min-height: 150px;
    padding: 24px;

    border-right: 1px solid var(--border);

    color: var(--navy);
    background: var(--white);

    text-align: center;
}

.reference-card img {
    width: 110px;
    height: 60px;

    object-fit: contain;
}

.reference-card span {
    color: var(--navy);

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
}
.form-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-reset-button {
    width: 100%;
    min-height: 52px;
    padding: 13px 20px;

    border: 1px solid #cbd7e8;
    border-radius: 11px;

    color: var(--navy);
    background: transparent;

    font-size: 14px;
    font-weight: 800;

    transition:
        color var(--transition),
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.form-reset-button:hover {
    color: var(--white);
    border-color: var(--navy);
    background: var(--navy);

    transform: translateY(-2px);
}
/* İletişim kartlarını yatay ve uzun yap */

.contact-information {
    display: flex;
    flex-direction: column;
    gap: 14px;

    width: 100%;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 16px;

    width: 100%;
    min-height: 82px;
    padding: 16px 20px;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: var(--light);
}

.contact-info-card > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-icon {
    flex-shrink: 0;

    width: 46px;
    height: 46px;
}

.contact-info-card a,
.contact-info-card p {
    font-size: 14px;
}

/* ==================================
   Hizmetler Bölümü Arka Plan Tasarımı
================================== */

.services-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(23, 105, 255, 0.11),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 75%,
            rgba(23, 105, 255, 0.09),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f3f7ff 50%,
            #edf4ff 100%
        );
}

/* Hafif teknolojik çizgi deseni */
.services-section::before {
    content: "";

    position: absolute;
    z-index: -2;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(23, 105, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(23, 105, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 18%,
            black 82%,
            transparent
        );
}

/* Sağ altta büyük dekoratif ışık */
.services-section::after {
    content: "";

    position: absolute;
    z-index: -1;
    right: -180px;
    bottom: -220px;

    width: 520px;
    height: 520px;

    border: 1px solid rgba(23, 105, 255, 0.12);
    border-radius: 50%;

    box-shadow:
        0 0 0 70px rgba(23, 105, 255, 0.025),
        0 0 0 140px rgba(23, 105, 255, 0.018);
}
.services-page .service-card {
    border-color: rgba(23, 105, 255, 0.16);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(241, 247, 255, 0.96)
        );

    box-shadow:
        0 14px 38px rgba(7, 27, 59, 0.07);
}

.services-page .service-card:nth-child(2),
.services-page .service-card:nth-child(5) {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #eaf2ff
        );
}

.services-page .service-card:hover {
    border-color: rgba(23, 105, 255, 0.48);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e5efff
        );

    box-shadow:
        0 22px 50px rgba(23, 105, 255, 0.15);
}
.services-page .service-card::after {
    content: "";

    position: absolute;
    top: 0;
    left: 30px;

    width: 52px;
    height: 3px;

    border-radius: 0 0 20px 20px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            #75a7ff
        );

    opacity: 0;

    transition:
        width var(--transition),
        opacity var(--transition);
}

.services-page .service-card:hover::after {
    width: calc(100% - 60px);
    opacity: 1;
}
@media (max-width: 650px) {

    .hero-section {
        min-height: 760px;
        background: #04142e;
    }

    .hero-background img {
        width: 100%;
        height: 100%;

        object-fit: cover;
        object-position: 68% center;

        opacity: 0.78;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 15, 36, 0.20) 0%,
                rgba(3, 15, 36, 0.45) 28%,
                rgba(3, 15, 36, 0.78) 62%,
                rgba(3, 15, 36, 0.98) 100%
            );
    }

    .hero-content {
        position: relative;
        z-index: 3;
    }

    .hero-content::before {
        content: "";

        position: absolute;
        z-index: -1;
        top: -25px;
        right: -15px;
        bottom: -25px;
        left: -15px;

        border-radius: 22px;

        background:
            linear-gradient(
                90deg,
                rgba(3, 15, 36, 0.78),
                rgba(3, 15, 36, 0.28)
            );

        backdrop-filter: blur(2px);
    }
}
/* =========================
   Hizmetler Slider
========================= */

.services-slider {
    position: relative;
    width: 100%;
}

.services-slider-viewport {
    width: 100%;
    overflow: hidden;
}

.services-slider-track {
    display: flex;
    width: 100%;

    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-page {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;

    flex: 0 0 100%;
    width: 100%;
    padding: 4px;
}

.services-page .service-card {
    height: 100%;
}

.services-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 32px;
}

.services-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-dot {
    width: 10px;
    height: 10px;

    border: 0;
    border-radius: 999px;

    background: #c8d4e5;
    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.services-dot.active {
    width: 34px;
    background: var(--primary);
}

.services-slider-buttons {
    display: flex;
    gap: 10px;
}

.services-arrow {
    display: grid;
    place-items: center;

    width: 52px;
    height: 52px;

    border: 1px solid var(--border);
    border-radius: 14px;

    color: var(--navy);
    background: var(--white);

    font-size: 22px;
    font-weight: 800;

    cursor: pointer;

    box-shadow: var(--shadow-small);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.services-arrow:hover:not(:disabled) {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);

    transform: translateY(-3px);
}

.services-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

@media (max-width: 1100px) {
    .services-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .services-page {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-slider-controls {
        margin-top: 24px;
    }

    .services-arrow {
        width: 46px;
        height: 46px;
    }
}
/* =====================================
   HİZMETLER SLIDER KART TASARIMI
===================================== */

.services-slider {
    position: relative;
    width: 100%;
}

.services-slider-viewport {
    width: 100%;
    overflow: hidden;
}

.services-slider-track {
    display: flex;
    width: 100%;

    transition:
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-page {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;

    flex: 0 0 100%;
    width: 100%;
    padding: 4px;
}


/* Kart */

.services-page .service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 330px;
    padding: 30px;

    border: 1px solid rgba(23, 105, 255, 0.18);
    border-radius: 20px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(239, 246, 255, 0.96)
        );

    box-shadow:
        0 14px 35px rgba(7, 27, 59, 0.08);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.services-page .service-card::before {
    content: "";

    position: absolute;
    right: -65px;
    bottom: -75px;

    width: 170px;
    height: 170px;

    border-radius: 50%;
    background: rgba(23, 105, 255, 0.07);

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.services-page .service-card::after {
    content: "";

    position: absolute;
    top: 0;
    left: 30px;

    width: 0;
    height: 3px;

    border-radius: 0 0 20px 20px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            #75a7ff
        );

    transition: width 0.35s ease;
}

.services-page .service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(23, 105, 255, 0.48);

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #e8f1ff
        );

    box-shadow:
        0 22px 50px rgba(23, 105, 255, 0.15);
}

.services-page .service-card:hover::before {
    transform: scale(1.25);
    background: rgba(23, 105, 255, 0.12);
}

.services-page .service-card:hover::after {
    width: calc(100% - 60px);
}


/* Numara */

.services-page .service-number {
    position: absolute;
    top: 25px;
    right: 27px;

    color: rgba(7, 27, 59, 0.18);

    font-size: 13px;
    font-weight: 800;
}


/* İkon */

.services-page .service-icon {
    position: relative;
    z-index: 2;

    display: grid;
    place-items: center;

    width: 58px;
    height: 58px;
    margin-bottom: 27px;

    border-radius: 17px;

    color: var(--primary);
    background: var(--primary-light);

    font-size: 25px;
    font-weight: 800;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.services-page .service-card:hover .service-icon {
    color: var(--white);
    background: var(--primary);

    transform: rotate(-4deg) scale(1.05);
}


/* Başlık ve açıklama */

.services-page .service-card h3 {
    position: relative;
    z-index: 2;

    margin-bottom: 14px;

    color: var(--navy);

    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.services-page .service-card p {
    position: relative;
    z-index: 2;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.7;
}


/* Alt kontroller */

.services-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-top: 32px;
}

.services-slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-dot {
    width: 10px;
    height: 10px;

    padding: 0;
    border: 0;
    border-radius: 999px;

    background: #c8d4e5;
}

.services-dot.active {
    width: 34px;
    background: var(--primary);
}

.services-slider-buttons {
    display: flex;
    gap: 10px;
}

.services-arrow {
    display: grid;
    place-items: center;

    width: 52px;
    height: 52px;

    border: 1px solid var(--border);
    border-radius: 14px;

    color: var(--navy);
    background: var(--white);

    font-size: 22px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(7, 27, 59, 0.09);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.services-arrow:hover:not(:disabled) {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);

    transform: translateY(-3px);
}

.services-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}


/* Tablet */

@media (max-width: 1100px) {
    .services-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Mobil */

@media (max-width: 650px) {
    .services-page {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-page .service-card {
        min-height: 290px;
        padding: 26px 22px;
    }

    .services-slider-controls {
        margin-top: 24px;
    }

    .services-arrow {
        width: 46px;
        height: 46px;
    }
}
/* =====================================
   PROJELER SLIDER
===================================== */

.projects-slider {
    position: relative;
    width: 100%;
}

.projects-slider-viewport {
    width: 100%;
    overflow: hidden;
}

.projects-slider-track {
    width: 100%;

    transition:
        opacity 0.3s ease,
        transform 0.5s ease;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.project-card {
    display: none;
}

.project-card.project-visible {
    display: block;
}

.projects-slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-top: 34px;
}

.projects-slider-dots {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.projects-slider-dot {
    width: 10px;
    height: 10px;

    padding: 0;
    border: 0;
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;

    transition:
        width 0.3s ease,
        background 0.3s ease;
}

.projects-slider-dot.active {
    width: 34px;
    background: var(--primary);
}

.projects-slider-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.projects-slider-arrow {
    display: grid;
    place-items: center;

    width: 52px;
    height: 52px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;

    color: var(--white);
    background: rgba(255, 255, 255, 0.07);

    font-size: 22px;
    font-weight: 800;

    cursor: pointer;
    backdrop-filter: blur(12px);

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        opacity 0.3s ease;
}

.projects-slider-arrow:hover:not(:disabled) {
    border-color: var(--primary);
    background: var(--primary);

    transform: translateY(-3px);
}

.projects-slider-arrow:disabled {
    cursor: not-allowed;
    opacity: 0.3;
}

@media (max-width: 1100px) {
    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .projects-slider-controls {
        margin-top: 25px;
    }

    .projects-slider-arrow {
        width: 46px;
        height: 46px;
    }
}
/* =========================
   Sayfa İlerleme Çubuğu
========================= */

.scroll-progress {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #1769ff,
            #59a0ff
        );

    box-shadow:
        0 0 12px rgba(23, 105, 255, 0.65);

    pointer-events: none;

    transition: width 0.08s linear;
}
@media (min-width: 901px) {
    .hero-section {
        min-height: 820px;
    }

    .hero-container {
        padding-top: 35px;
        padding-bottom: 80px;
    }

    .hero-content {
        transform: translateY(-45px);
    }

    .hero-trust-area {
        margin-top: 45px;
    }
}
/* ==================================================
   YENİ HAKKIMIZDA TASARIMI
================================================== */

.about-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -200px;

    width: 650px;
    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(23, 105, 255, 0.07),
            transparent 68%
        );

    pointer-events: none;
}

.about-container {
    display: grid;
    grid-template-columns: 0.95fr 1.3fr;
    align-items: center;
    gap: 85px;
}


/* ==================================================
   SOL GÖRSEL
================================================== */

.about-visual {
    position: relative;
    min-height: 680px;
}

.about-main-image {
    position: absolute;
    top: 0;
    left: 0;

    width: 88%;
    height: 560px;

    border-radius: 30px;
    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(7, 27, 59, 0.16);
}

.about-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* Küçük ikinci görsel */

.about-secondary-image {
    position: absolute;
    z-index: 3;

    right: 0;
    bottom: 0;

    width: 62%;
    height: 300px;

    padding: 7px;

    border-radius: 25px;

    background: #ffffff;

    box-shadow:
        0 24px 60px rgba(7, 27, 59, 0.2);
}

.about-secondary-image img {
    width: 100%;
    height: 100%;

    display: block;

    border-radius: 19px;

    object-fit: cover;
}


/* Güvenlik kutusu */

.about-security-badge {
    position: absolute;
    z-index: 5;

    top: 330px;
    right: -15px;

    display: flex;
    align-items: center;
    gap: 15px;

    width: 285px;
    padding: 20px 22px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 18px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            rgba(7, 27, 59, 0.97),
            rgba(13, 58, 130, 0.96)
        );

    box-shadow:
        0 20px 40px rgba(7, 27, 59, 0.22);
}

.about-security-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;

    width: 46px;
    height: 46px;

    border:
        2px solid rgba(92, 150, 255, 0.85);

    border-radius: 15px;

    color: #7ba8ff;

    font-size: 20px;
    font-weight: 900;
}

.about-security-badge strong {
    display: block;

    margin-bottom: 5px;

    font-size: 14px;
    font-weight: 800;
}

.about-security-badge div span {
    display: block;

    color: rgba(255, 255, 255, 0.78);

    font-size: 12px;
    line-height: 1.5;
}


/* ==================================================
   SAĞ İÇERİK
================================================== */

.about-content h2 {
    max-width: 720px;

    margin-top: 18px;
    margin-bottom: 25px;

    color: var(--navy);

    font-family: "Montserrat", sans-serif;

    font-size: clamp(46px, 4vw, 66px);
    font-weight: 800;

    line-height: 1;
    letter-spacing: -3px;
}

.about-content h2 span {
    display: block;
    color: var(--primary);
}

.about-title-line {
    width: 75px;
    height: 3px;

    margin-bottom: 28px;

    border-radius: 100px;

    background: var(--primary);
}

.about-content > p {
    max-width: 760px;

    margin-bottom: 17px;

    color: var(--text-soft);

    font-size: 16px;
    line-height: 1.8;
}


/* ==================================================
   İSTATİSTİKLER
================================================== */

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 38px;

    border:
        1px solid rgba(7, 27, 59, 0.1);

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(7, 27, 59, 0.06);

    overflow: hidden;
}

.about-stat {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 190px;
    padding: 25px 16px;

    text-align: center;
}

.about-stat:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 30px;
    right: 0;
    bottom: 30px;

    width: 1px;

    background:
        rgba(7, 27, 59, 0.1);
}

.about-stat-icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    margin-bottom: 12px;

    color: var(--primary);

    font-size: 27px;
}

.about-stat strong {
    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-family: "Montserrat", sans-serif;

    font-size: 36px;
    font-weight: 800;

    line-height: 1;
}

.about-stat > span:last-child {
    color: var(--navy);

    font-size: 13px;
    font-weight: 700;

    line-height: 1.45;
}


/* ==================================================
   HİZMET BANDI
================================================== */

.about-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 25px;

    border-radius: 17px;

    background:
        linear-gradient(
            90deg,
            #f4f7fb,
            #f8faff
        );

    overflow: hidden;
}

.about-service {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 72px;
    padding: 15px 12px;

    color: var(--navy);

    font-size: 12px;
    font-weight: 700;

    text-align: center;
}

.about-service:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 18px;
    right: 0;
    bottom: 18px;

    width: 1px;

    background:
        rgba(7, 27, 59, 0.1);
}

.about-service > span {
    color: var(--primary);
    font-size: 21px;
}


/* ==================================================
   BUTONLAR
================================================== */

.about-actions {
    display: flex;
    align-items: center;
    gap: 30px;

    margin-top: 28px;
}

.about-actions .button {
    min-width: 250px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;

    transition:
        gap 0.25s ease,
        opacity 0.25s ease;
}

.about-text-link:hover {
    gap: 14px;
    opacity: 0.75;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 1100px) {

    .about-container {
        gap: 45px;
    }

    .about-visual {
        min-height: 610px;
    }

    .about-main-image {
        width: 92%;
        height: 500px;
    }

    .about-secondary-image {
        height: 260px;
    }

    .about-security-badge {
        top: 300px;
        right: -5px;

        width: 245px;
    }

    .about-content h2 {
        font-size: 48px;
    }

    .about-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-stat:nth-child(2)::after {
        display: none;
    }

    .about-stat:nth-child(-n + 2) {
        border-bottom:
            1px solid rgba(7, 27, 59, 0.1);
    }

}


/* ==================================================
   MOBİL / TABLET
================================================== */

@media (max-width: 900px) {

    .about-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .about-visual {
        width: min(600px, 100%);
        min-height: 650px;

        margin-inline: auto;
    }

    .about-main-image {
        width: 86%;
        height: 520px;
    }

    .about-secondary-image {
        width: 58%;
        height: 270px;
    }

    .about-security-badge {
        top: 320px;
    }

    .about-content {
        width: 100%;
    }

    .about-content h2 {
        max-width: 650px;
    }

}


/* ==================================================
   TELEFON
================================================== */

@media (max-width: 650px) {

    .about-container {
        gap: 45px;
    }

    .about-visual {
        min-height: 485px;
    }

    .about-main-image {
        position: relative;

        width: 100%;
        height: 410px;

        border-radius: 22px;
    }

    .about-secondary-image {
        display: none;
    }

    .about-security-badge {
        top: auto;
        right: 15px;
        bottom: 20px;
        left: 15px;

        width: auto;
    }

    .about-content h2 {
        margin-top: 14px;

        font-size: 38px;

        line-height: 1.05;
        letter-spacing: -2px;
    }

    .about-content > p {
        font-size: 15px;
    }

    .about-stats {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-stat {
        min-height: 150px;

        padding: 20px 10px;
    }

    .about-stat strong {
        font-size: 30px;
    }

    .about-stat-icon {
        margin-bottom: 8px;

        font-size: 23px;
    }

    .about-services {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .about-service:nth-child(2)::after {
        display: none;
    }

    .about-service:nth-child(-n + 2) {
        border-bottom:
            1px solid rgba(7, 27, 59, 0.08);
    }

    .about-actions {
        flex-direction: column;
        align-items: stretch;

        gap: 18px;
    }

    .about-actions .button {
        width: 100%;
    }

    .about-text-link {
        justify-content: center;
    }

}
/* Hakkımızda görsellerinin kadrajını sağa kaydır */

.about-main-image img {
    object-fit: cover;
    object-position: 69% center;
}

.about-secondary-image img {
    object-fit: cover;
    object-position: 100% center;
}
/* ==================================================
   TEKNOLOJİ ÇÖZÜMLERİ OTOMATİK SLIDER
================================================== */

.solutions-showcase {
    position: relative;
    padding: 95px 0 105px;
    overflow: hidden;
    background: #030f23;
}

.solutions-heading {
    max-width: 680px;
    margin-bottom: 45px;
}

.solutions-heading > span {
    display: inline-block;
    margin-bottom: 12px;

    color: #2474ff;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.solutions-heading h2 {
    margin: 0 0 14px;

    color: #ffffff;

    font-size: clamp(36px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.05;
}

.solutions-heading p {
    margin: 0;

    color: rgba(255,255,255,0.65);

    font-size: 16px;
    line-height: 1.7;
}


/* Slider alanı */

.solutions-slider-wrap {
    position: relative;
    width: 100%;
}


/* Kenarları yumuşat */

.solutions-slider-wrap::before,
.solutions-slider-wrap::after {
    content: "";

    position: absolute;
    top: 0;
    bottom: 0;

    width: 100px;

    z-index: 5;

    pointer-events: none;
}

.solutions-slider-wrap::before {
    left: 0;

    background:
        linear-gradient(
            90deg,
            #030f23,
            transparent
        );
}

.solutions-slider-wrap::after {
    right: 0;

    background:
        linear-gradient(
            270deg,
            #030f23,
            transparent
        );
}


/* Görünür alan */

.solutions-slider {
    width: 100%;
    overflow: hidden;
}


/* Hareket eden sıra */

.solutions-track {
    display: flex;
    align-items: center;
    gap: 24px;

    width: max-content;

    animation:
        solutionsAutoScroll 42s linear infinite;

    will-change: transform;
}


/* Mouse gelince dursun */

.solutions-slider:hover .solutions-track {
    animation-play-state: paused;
}


/* Her görsel */

.solution-slide {
    flex: 0 0 auto;

    width: 460px;
    height: 300px;

    overflow: hidden;

    border:
        1px solid rgba(255,255,255,0.10);

    border-radius: 24px;

    background: #08182d;

    box-shadow:
        0 25px 55px rgba(0,0,0,0.24);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}

.solution-slide:hover {
    transform: translateY(-7px);

    border-color:
        rgba(36,116,255,0.55);
}

.solution-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* Sürekli sola akış */

@keyframes solutionsAutoScroll {

    from {
        transform: translateX(0);
    }

    to {
        transform:
            translateX(calc(-50% - 12px));
    }

}


/* Tablet */

@media (max-width: 1000px) {

    .solutions-showcase {
        padding:
            75px 0 85px;
    }

    .solution-slide {
        width: 390px;
        height: 255px;
    }

}


/* Mobil */

@media (max-width: 650px) {

    .solutions-showcase {
        padding:
            60px 0 70px;
    }

    .solutions-heading {
        margin-bottom: 30px;
    }

    .solution-slide {
        width: 290px;
        height: 190px;

        border-radius: 18px;
    }

    .solutions-track {
        gap: 15px;

        animation-duration: 34s;
    }

    .solutions-slider-wrap::before,
    .solutions-slider-wrap::after {
        width: 35px;
    }

}
/* Sol üst ALPYA logosu */
.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;

    width: 190px;
    height: 64px;
    overflow: hidden;

    border-radius: 8px;
}

.site-logo img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}
/* Sayfanın altında sürekli görünen referans şeridi */
body {
    padding-bottom: 76px;
}

.fixed-references-bar {
    position: fixed;
    z-index: 999;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;
    align-items: center;
    height: 76px;

    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 20, 45, 0.96);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.fixed-references-title {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    align-self: stretch;

    padding: 0 28px;

    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;

    background: #1b57d8;
}

.fixed-references-window {
    flex: 1;
    overflow: hidden;
}

.fixed-references-track {
    display: flex;
    align-items: center;
    width: max-content;

    animation: referencesBottomScroll 55s linear infinite;
}

.fixed-reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-width: 185px;
    height: 76px;
    padding: 10px 24px;

    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.fixed-reference-item img {
    display: block;

    width: 42px;
    height: 42px;

    object-fit: contain;
    border-radius: 6px;
}

.fixed-reference-item span {
    max-width: 115px;

    overflow: hidden;

    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fixed-references-bar:hover .fixed-references-track {
    animation-play-state: paused;
}

@keyframes referencesBottomScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 700px) {
    body {
        padding-bottom: 58px;
    }

    .fixed-references-bar {
        height: 58px;
    }

    .fixed-references-title {
        padding: 0 13px;
        font-size: 10px;
    }

    .fixed-reference-item {
        min-width: 135px;
        height: 58px;
        padding: 7px 13px;
    }

    .fixed-reference-item img {
        width: 32px;
        height: 32px;
    }

    .fixed-reference-item span {
        max-width: 72px;
        font-size: 10px;
    }
}
/* Sayfa içindeki eski referans bölümünü gizle */
#referanslar {
    display: none;
}
/* Hakkımızda bölümündeki istatistik ve yazıları küçült */
.about-stat {
    min-height: 170px;
}

.about-stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
    font-size: 23px;
}

.about-stat strong {
    margin-bottom: 6px;
    font-size: 30px;
}

.about-stat > span:last-child {
    font-size: 11px;
}

.about-service {
    min-height: 64px;
    font-size: 11px;
}

.about-service > span {
    font-size: 18px;
}

.about-actions .button {
    min-width: 220px;
    font-size: 14px;
}

.about-text-link {
    font-size: 13px;
}
/* Fotoğraflı proje kartları */
.project-card.project-photo {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.project-card.project-photo::after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    width: auto;
    height: auto;

    border-radius: 0;

    background: linear-gradient(
        90deg,
        rgba(10, 24, 53, 0.96) 15%,
        rgba(10, 24, 53, 0.78) 55%,
        rgba(10, 24, 53, 0.42) 100%
    );

    transform: none;
}

.project-card.project-photo:hover::after {
    transform: none;
}

.project-card.project-photo > * {
    position: relative;
    z-index: 2;
}
/* Fotoğraflı proje kartlarının üstündeki eski yuvarlak efekti kaldır */
.project-card.project-photo::after {
    display: none;
}
/* Fotoğraflı proje kartlarındaki ince kenar çizgilerini kaldır */
.project-card.project-photo {
    border: none;
}

.project-card.project-photo:hover {
    border-color: transparent;
}
/* Proje kartlarındaki hizmet etiketlerini daha belirgin yap */
.project-card .project-tags span {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(7, 20, 45, 0.82);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
}
/* Ana sayfa tam ekran hizmet görsel sliderı */
.home-showcase {
    position: relative;

    min-height: calc(100vh - 110px);

    overflow: hidden;
    background: #07142d;
}

.home-showcase-slides {
    position: relative;

    width: 100%;
    min-height: calc(100vh - 110px);
}

.home-showcase-slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    transition: opacity 0.7s ease-in-out;
}

.home-showcase-slide.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .home-showcase,
    .home-showcase-slides {
        min-height: calc(100svh - 76px);
    }

    .home-showcase-slide {
        background-position: center;
    }
}
/* Ana ekran ilk açılışta ekranı tamamen doldursun */
.home-showcase,
.home-showcase-slides {
    height: calc(100vh - 76px);
    min-height: calc(100vh - 76px);
}

.home-showcase {
    margin-bottom: 0;
    background: #07142d;
}

@media (max-width: 768px) {
    .home-showcase,
    .home-showcase-slides {
        height: calc(100svh - 58px);
        min-height: calc(100svh - 58px);
    }
}
/* Üst menüyü biraz daha ince yap */
:root {
    --header-height: 72px;
}

.site-header {
    height: 72px;
}

.site-header.scrolled {
    height: 64px;
}

.site-logo {
    width: 135px;
}

.site-logo img {
    max-height: 46px;
}

.nav-link {
    padding: 8px 12px;
}

.nav-link::after {
    bottom: 2px;
}

.header-contact-button {
    padding: 10px 18px;
}
/* Ana ekran görsellerindeki üst logo kesilmesin */
.home-showcase-slide {
    background-position: center top;
}
/* Mobilde ana ekran görsellerini daha doğru konumlandır */
@media (max-width: 768px) {
    .home-showcase-slide {
        background-position: 20% center !important;
        background-size: cover;
    }
}
/* Mobilde yatay hizmet görsellerini kesmeden göster */
@media (max-width: 768px) {
    .home-showcase,
    .home-showcase-slides {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .home-showcase-slide {
        background-color: #07142d;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain !important;
    }
}
@media (max-width: 768px) {
    .home-showcase,
    .home-showcase-slides {
        height: calc(100svh - 58px);
        min-height: calc(100svh - 58px);
        aspect-ratio: auto;
    }

    .home-showcase-slide {
        background-size: cover !important;
        background-position: center center !important;
    }
}
/* Mobil ana ekran: görselin tamamını göster */
@media (max-width: 768px) {
    .home-showcase,
    .home-showcase-slides {
        height: calc(100svh - 58px);
        min-height: calc(100svh - 58px);
        aspect-ratio: auto;
        background: #06132c;
    }

    .home-showcase-slide {
        isolation: isolate;

        background-position: center !important;
        background-size: cover !important;
        background-repeat: no-repeat;
    }

    /* Arkadaki büyütülmüş görseli koyulaştır */
    .home-showcase-slide::before {
        content: "";

        position: absolute;
        z-index: 1;
        inset: 0;

        background: rgba(3, 13, 34, 0.72);
        backdrop-filter: blur(14px);
    }

    /* Aynı görseli kesmeden öne yerleştir */
    .home-showcase-slide::after {
        content: "";

        position: absolute;
        z-index: 2;
        inset: 0;

        background-image: inherit;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}
/* Yukarı çıkma oku referans şeridinin üstünde */
.scroll-top-button {
    right: 24px;
    bottom: 92px;
    z-index: 1100;
}

@media (max-width: 700px) {
    .scroll-top-button {
        right: 14px;
        bottom: 70px;
    }
}
/* ARK Yazılım reklam alanı */
.footer-ark-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 10px 14px;

    border: 1px solid rgba(108, 154, 255, 0.32);
    border-radius: 14px;

    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            rgba(45, 92, 220, 0.22),
            rgba(15, 32, 72, 0.72)
        );

    box-shadow:
        0 8px 26px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    text-decoration: none;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.footer-ark-icon {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border-radius: 11px;

    color: #ffffff;
    background: linear-gradient(135deg, #4775ff, #2145bc);

    font-size: 15px;
    font-weight: 900;

    box-shadow: 0 5px 18px rgba(71, 117, 255, 0.4);
}

.footer-ark-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.footer-ark-content small {
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer-ark-content strong {
    color: #79a4ff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

.footer-ark-arrow {
    color: #79a4ff;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer-ark-card:hover {
    transform: translateY(-3px);
    border-color: #4775ff;

    box-shadow:
        0 13px 32px rgba(23, 70, 190, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-ark-card:hover .footer-ark-arrow {
    transform: translate(3px, -3px);
}

@media (max-width: 650px) {
    .footer-ark-card {
        margin-top: 5px;
    }
}

/* Ana ekran manuel slider okları */
.home-showcase-controls {
    position: absolute;
    z-index: 20;
    right: 34px;
    bottom: 34px;

    display: flex;
    align-items: center;
    gap: 12px;
}

.home-showcase-arrow {
    display: grid;
    place-items: center;

    width: 54px;
    height: 54px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;

    color: #ffffff;
    background: rgba(8, 24, 57, 0.68);

    font-size: 27px;
    cursor: pointer;

    backdrop-filter: blur(10px);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.home-showcase-arrow:hover {
    transform: translateY(-3px);
    border-color: #6f98ff;
    background: #3565e5;
}

.home-showcase-counter {
    min-width: 64px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.home-showcase-counter b {
    color: #ffffff;
    font-size: 18px;
}

@media (max-width: 768px) {
    .home-showcase-controls {
        right: 16px;
        bottom: 76px;
        gap: 8px;
    }

    .home-showcase-arrow {
        width: 43px;
        height: 43px;

        border-radius: 11px;

        font-size: 21px;
    }

    .home-showcase-counter {
        min-width: 50px;
        font-size: 12px;
    }

    .home-showcase-counter b {
        font-size: 15px;
    }
}
.home-showcase-controls {
    right: 28px;
    bottom: 28px;
}

.home-showcase-counter {
    padding: 10px 13px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;

    color: rgba(255, 255, 255, 0.72);
    background: rgba(7, 20, 45, 0.68);

    backdrop-filter: blur(10px);
}
/* Hakkımızda bölümünü ekrana sığdır */
@media (min-width: 901px) {
    #hakkimizda {
        display: flex;
        align-items: center;

        min-height: calc(
            100svh - var(--header-height) - 76px
        );

        padding-top: 25px;
        padding-bottom: 35px;
    }
}

/* Yüksekliği kısa bilgisayar ekranları */
@media (min-width: 901px) and (max-height: 800px) {
    #hakkimizda .about-container {
        gap: 55px;
    }

    #hakkimizda .about-visual {
        min-height: 520px;
    }

    #hakkimizda .about-main-image {
        height: 440px;
    }

    #hakkimizda .about-secondary-image {
        width: 56%;
        height: 225px;
    }

    #hakkimizda .about-content h2 {
        margin-top: 12px;
        margin-bottom: 18px;

        font-size: clamp(40px, 3.5vw, 55px);
        line-height: 1;
    }

    #hakkimizda .about-title-line {
        margin-bottom: 20px;
    }

    #hakkimizda .about-content > p {
        margin-bottom: 12px;

        font-size: 14px;
        line-height: 1.65;
    }
}
.about-mission-vision {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.about-mv-card {
    position: relative;
    min-width: 0;
    padding: 18px;
    overflow: hidden;
    border: 1px solid rgba(7, 27, 59, 0.1);
    border-radius: 16px;
    background: #f6f8fc;
}

.about-mv-card-dark {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, #071b3b, #123368);
}

.about-mv-number {
    position: absolute;
    top: 8px;
    right: 13px;
    color: rgba(23, 105, 255, 0.12);
    font-size: 42px;
    font-weight: 900;
}

.about-mv-card > strong {
    position: relative;
    display: block;
    margin-bottom: 8px;
    color: #1769ff;
    font-size: 11px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.about-mv-card h3 {
    position: relative;
    margin: 0 0 9px;
    color: #071b3b;
    font-size: 17px;
    line-height: 1.25;
}

.about-mv-card p {
    position: relative;
    margin: 0;
    color: #657189;
    font-size: 12px;
    line-height: 1.55;
}

.about-mv-card-dark h3 {
    color: #ffffff;
}

.about-mv-card-dark p {
    color: rgba(255, 255, 255, 0.72);
}

.about-mv-card-dark .about-mv-number {
    color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
    .about-mission-vision {
        grid-template-columns: 1fr;
    }
}
#hakkimizda {
    scroll-margin-top: 10px;
}
/* Sekmeli sayfa sistemi */

html,
body {
    height: 100%;
}

body.page-mode {
    overflow: hidden;
}

.page-panel {
    display: none !important;
}

.page-panel.page-active {
    display: block !important;
    height: 100vh;
    min-height: 0 !important;
    padding-top: var(--header-height);
    padding-bottom: 85px;
    overflow-y: auto;
    box-sizing: border-box;
    scrollbar-width: none;
}

.page-panel.page-active::-webkit-scrollbar {
    display: none;
}

.hero-section.page-active {
    display: flex !important;
}

#anasayfa.page-panel.page-active {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden !important;
}
@media (min-width: 901px) {
    #hakkimizda.page-active .about-container {
        transform: translateY(50px);
    }
}
.site-header,
.site-header.scrolled {
    background: #06152f !important;
    background-color: #06152f !important;
    opacity: 1 !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;

    box-shadow: none !important;
}
@media (min-width: 901px) {
    #hakkimizda .about-mission-vision {
        margin-top: 8px;
        transform: translateY(-22px);
    }

    #hakkimizda .about-mv-card {
        padding: 15px 18px;
    }

    #hakkimizda .about-mv-card p {
        font-size: 11px;
        line-height: 1.45;
    }
}
@media (min-width: 901px) {
    #footer.page-panel.page-active {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
    }

    #footer .footer-grid,
    #footer .footer-bottom {
        width: 100%;
        flex-shrink: 0;
    }
}
@media (min-width: 901px) {
    #footer.page-panel.page-active {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    #footer .footer-grid,
    #footer .footer-bottom {
        width: 100%;
        max-width: 2300px;
        margin-right: auto;
        margin-left: auto;
    }
}
@media (min-width: 901px) {
    #iletisim.page-panel.page-active {
        display: grid !important;
        place-items: center;
    }

    #iletisim.page-panel.page-active > .container {
        width: min(1100px, calc(100% - 60px));
        margin: auto;
        transform: none !important;
    }

    #iletisim .section-heading {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    #iletisim .section-heading > p {
        max-width: 700px;
        justify-self: center;
        text-align: center;
    }

    #iletisim .contact-layout {
        display: block;
        max-width: 900px;
        margin: 35px auto 0;
    }

    #iletisim .contact-information {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }
}
/* İLETİŞİM BÖLÜMÜ ARKA PLAN TASARIMI */
@media (min-width: 901px) {
    #iletisim.page-panel.page-active {
        position: relative;
        isolation: isolate;
        overflow: hidden !important;

        background:
            radial-gradient(
                circle at 8% 50%,
                rgba(31, 105, 255, 0.14),
                transparent 28%
            ),
            radial-gradient(
                circle at 92% 50%,
                rgba(31, 105, 255, 0.12),
                transparent 28%
            ),
            linear-gradient(
                135deg,
                #eef4ff 0%,
                #ffffff 48%,
                #edf3ff 100%
            ) !important;
    }

    /* Sağ ve soldaki logo alanları */
    #iletisim.page-panel.page-active::before,
    #iletisim.page-panel.page-active::after {
        content: "";
        position: absolute;
        top: 50%;
        z-index: 0;

        width: 310px;
        height: 310px;
        transform: translateY(-50%);

        border-radius: 50%;
        background-color: #06152f;
        background-image: url("assets/images/logo.png.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 74% auto;

        opacity: 0.15;
        box-shadow: 0 25px 80px rgba(31, 105, 255, 0.25);
        pointer-events: none;
    }

    #iletisim.page-panel.page-active::before {
        left: -165px;
    }

    #iletisim.page-panel.page-active::after {
        right: -165px;
    }

    /* Yazılar ve kartlar logoların önünde kalsın */
    #iletisim.page-panel.page-active > .container {
        position: relative;
        z-index: 2;
    }

    /* İletişim kartlarını belirginleştir */
    #iletisim .contact-info-card {
        background: rgba(255, 255, 255, 0.9) !important;
        border: 1px solid rgba(31, 105, 255, 0.16) !important;
        box-shadow: 0 16px 45px rgba(6, 21, 47, 0.09);
        backdrop-filter: blur(10px);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    #iletisim .contact-info-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 55px rgba(31, 105, 255, 0.16);
    }
}

/* Mobilde yan süsleri kaldır */
@media (max-width: 900px) {
    #iletisim.page-panel.page-active::before,
    #iletisim.page-panel.page-active::after {
        display: none;
    }

    #iletisim.page-panel.page-active {
        background: linear-gradient(
            180deg,
            #f3f7ff 0%,
            #ffffff 100%
        ) !important;
    }
}/* İletişim yan logolarını tam göster */
@media (min-width: 901px) {
    #iletisim.page-panel.page-active::before,
    #iletisim.page-panel.page-active::after {
        width: 230px;
        height: 230px;
        background-size: 78% auto;
        background-position: center;
        opacity: 0.14;
    }

    #iletisim.page-panel.page-active::before {
        left: 35px;
    }

    #iletisim.page-panel.page-active::after {
        right: 35px;
    }
}
/* İLETİŞİM – KURUMSAL LACİVERT PANEL */
#iletisim.page-panel.page-active::before,
#iletisim.page-panel.page-active::after {
    content: none !important;
    display: none !important;
}

#iletisim.page-panel.page-active {
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(31, 105, 255, 0.13),
            transparent 40%
        ),
        #eef4ff !important;
}

#iletisim.page-panel.page-active > .container {
    width: min(1180px, calc(100% - 60px)) !important;
    padding: 60px 70px !important;
    border-radius: 36px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(50, 120, 255, 0.28),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #06152f 0%,
            #0b234c 100%
        );

    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow: 0 30px 80px rgba(6, 21, 47, 0.22);
}

/* Başlık renkleri */
#iletisim .section-mini-title {
    color: #72a2ff !important;
}

#iletisim .section-mini-title::before {
    background: #3278ff !important;
}

#iletisim .section-heading h2 {
    color: #ffffff !important;
}

#iletisim .section-heading h2 span {
    color: #4f86ff !important;
}

#iletisim .section-heading > p {
    color: rgba(255, 255, 255, 0.72) !important;
}

/* İletişim kartları */
#iletisim .contact-info-card {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
}

#iletisim .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(31, 105, 255, 0.25);
}

/* Mobil */
@media (max-width: 900px) {
    #iletisim.page-panel.page-active > .container {
        width: calc(100% - 28px) !important;
        padding: 35px 20px !important;
        border-radius: 25px;
    }

    #iletisim .contact-information {
        grid-template-columns: 1fr !important;
    }

    #iletisim .section-heading h2 {
        font-size: 38px !important;
    }
}
/* İletişim paneline ALPYA logosu */
#iletisim.page-panel.page-active > .container {
    position: relative;
}

#iletisim.page-panel.page-active > .container::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 38px;

    width: 175px;
    height: 55px;

    background-image: url("assets/images/logo.png.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;

    opacity: 0.9;
    pointer-events: none;
}

/* Mobil görünüm */
@media (max-width: 900px) {
    #iletisim.page-panel.page-active > .container {
        padding-top: 105px !important;
    }

    #iletisim.page-panel.page-active > .container::before {
        top: 28px;
        left: 50%;
        width: 155px;
        height: 50px;
        transform: translateX(-50%);
        background-position: center;
    }
}

/* HAKKIMIZDA — FARKLI EKRANLARA UYUMLU YERLEŞİM */

#hakkimizda.page-panel.page-active {
    display: flex !important;
    flex-direction: column;

    height: 100vh;
    height: 100dvh;
    min-height: 0 !important;
    box-sizing: border-box;

    /* Üst menü ve alt referans şeridi için yer */
    padding: calc(var(--header-height, 72px) + 20px)
             24px 105px !important;

    overflow-x: hidden;
    overflow-y: auto;
}

#hakkimizda.page-panel.page-active .about-container {
    display: grid !important;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
    align-items: center;
    gap: clamp(24px, 4vw, 65px);

    width: 100%;
    max-width: 1280px;
    min-width: 0;
    flex: 0 0 auto;
    margin: auto;
    padding: 0;

    /* Önceki sabit kaydırmayı iptal et */
    transform: none !important;
}

#hakkimizda .about-content {
    min-width: 0;
    width: 100%;
}

#hakkimizda .about-content > h2 {
    max-width: none;
    margin: 14px 0 18px !important;
    font-size: clamp(30px, 2.7vw, 48px) !important;
    line-height: 1.12 !important;
    letter-spacing: -1px;
    white-space: normal !important;
}

#hakkimizda .about-content > h2 span {
    display: block;
    white-space: normal !important;
}

#hakkimizda .about-title-line {
    margin-bottom: 18px !important;
}

#hakkimizda .about-content > p {
    max-width: none;
    margin: 0 0 14px !important;
    font-size: clamp(14px, 1vw, 16px) !important;
    line-height: 1.6 !important;
}

/* Kartlar metnin altında kendi yerini kaplasın */
#hakkimizda .about-mission-vision {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px !important;
    transform: none !important;
}

#hakkimizda .about-mv-card {
    min-width: 0;
    padding: 16px !important;
}

#hakkimizda .about-mv-card h3 {
    font-size: 17px !important;
    line-height: 1.3 !important;
}

#hakkimizda .about-mv-card p {
    font-size: 13px !important;
    line-height: 1.5 !important;
}

/* Görseller ekran yüksekliğine uyum sağlasın */
#hakkimizda .about-visual {
    position: relative;
    min-height: 0 !important;
    height: clamp(340px, 58vh, 550px);
}

#hakkimizda .about-main-image {
    width: 88%;
    height: 84% !important;
}

#hakkimizda .about-secondary-image {
    width: 62% !important;
    height: 46% !important;
}

/* Kısa laptop ekranları */
@media (min-width: 1001px) and (max-height: 800px) {
    #hakkimizda .about-content > h2 {
        font-size: clamp(30px, 2.5vw, 40px) !important;
        margin: 10px 0 14px !important;
    }

    #hakkimizda .about-content > p {
        margin-bottom: 10px !important;
        font-size: 14px !important;
        line-height: 1.5 !important;
    }

    #hakkimizda .about-mission-vision {
        margin-top: 14px !important;
    }
}

/* Tablet ve dar pencereler */
@media (max-width: 1000px) {
    #hakkimizda.page-panel.page-active .about-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    #hakkimizda .about-visual {
        width: min(100%, 480px);
        height: 360px;
        margin-inline: auto;
    }
}

/* Telefonlar */
@media (max-width: 600px) {
    #hakkimizda.page-panel.page-active {
        padding-inline: 18px !important;
    }

    #hakkimizda .about-mission-vision {
        grid-template-columns: minmax(0, 1fr);
    }

    #hakkimizda .about-visual {
        height: 310px;
    }
}
/* HİZMETLER: 3 SÜTUN, 2 SATIR + DİKEY KAYDIRMA */
#hizmetler.page-panel.page-active {
    height: 100dvh !important;
    padding: calc(var(--header-height, 72px) + 16px)
             0 92px !important;
    box-sizing: border-box;
    overflow: hidden !important;
}

#hizmetler > .container {
    display: flex !important;
    flex-direction: column !important;
    height: 100%;
    min-height: 0;
}

/* Başlık sabit kalır */
#hizmetler .section-heading {
    flex: none;
    margin-bottom: 18px !important;
}

#hizmetler .section-heading h2 {
    font-size: clamp(28px, 2.6vw, 42px);
}

#hizmetler .section-heading > p {
    font-size: 14px;
    line-height: 1.5;
}

/* Kalan alan kartlara ayrılır */
#hizmetler .services-slider {
    flex: 1;
    min-height: 0;
    width: 100%;
}

/* Yalnızca burası aşağı-yukarı kayar */
#hizmetler .services-slider-viewport {
    height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: thin;
    scrollbar-color: #1769ff #e3ebf8;
}

#hizmetler .services-slider-track {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: 100% !important;
    gap: 16px;
    transform: none !important;
    transition: none !important;
}

/* Her grup: üstte 3, altta 3 */
#hizmetler .services-page {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    height: 100% !important;
    gap: 16px;
    padding: 4px 10px 4px 4px;
    box-sizing: border-box;
}

/* Kartları iki satıra uygun boyutlandır */
#hizmetler .services-page .service-card {
    min-height: 0 !important;
    padding: 16px !important;
    overflow-y: auto;
}

#hizmetler .service-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-bottom: 8px;
    font-size: 21px;
    border-radius: 10px;
}

#hizmetler .service-card h3 {
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 6px;
}

#hizmetler .service-card p {
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
}

#hizmetler .services-slider-controls {
    display: none !important;
}

/* Dar ekranlarda metinleri sıkıştırma */
@media (max-width: 800px) {
    #hizmetler .services-page {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: none !important;
        grid-auto-rows: minmax(220px, auto);
        height: auto !important;
        flex-basis: auto !important;
    }
}

@media (max-width: 500px) {
    #hizmetler .services-page {
        grid-template-columns: 1fr !important;
    }
}
/* Kartların içinde ayrı kaydırma olmasın */
#hizmetler .services-page .service-card {
    overflow: hidden !important;
}
/* Ana sayfa: sağ-sol minimal oklar */
#anasayfa .home-showcase-controls {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 0 clamp(8px, 1.5vw, 28px) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0 !important;

    transform: none !important;
    pointer-events: none;
    z-index: 20;
}

/* Sayacı gizle */
#anasayfa .home-showcase-counter {
    display: none !important;
}

/* Kutuları ve eski ok karakterlerini kaldır */
#anasayfa .home-showcase-arrow {
    display: grid !important;
    place-items: center;
    width: 56px !important;
    height: 64px !important;
    padding: 0 !important;

    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;

    color: #55aaff;
    font-size: 0 !important;
    transform: none !important;
    cursor: pointer;
    pointer-events: auto;
    transition: color 0.2s ease;
}

/* İnce, köşeli ok şekli */
#anasayfa .home-showcase-arrow::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    filter: drop-shadow(0 2px 3px #06132c);
}

#anasayfa #homeShowcasePrev::before {
    transform: rotate(-135deg);
}

#anasayfa #homeShowcaseNext::before {
    transform: rotate(45deg);
}

#anasayfa .home-showcase-arrow:hover {
    color: #ffffff;
}

#anasayfa .home-showcase-arrow:focus-visible {
    outline: 2px solid #55aaff;
    outline-offset: 2px;
}

/* Telefonda daha küçük, dokunma alanı yeterli */
@media (max-width: 768px) {
    #anasayfa .home-showcase-arrow {
        width: 44px !important;
        height: 52px !important;
    }

    #anasayfa .home-showcase-arrow::before {
        width: 16px;
        height: 16px;
    }
}
/* Yaptığımız İşler: aşağı kaydırılan proje alanı */
#projeler.page-panel.page-active {
    height: 100dvh !important;
    padding: calc(var(--header-height, 72px) + 16px) 0 92px !important;
    box-sizing: border-box;
    overflow: hidden !important;
}

#projeler > .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
}

#projeler .section-heading {
    flex-shrink: 0;
    margin-bottom: 18px;
}

#projeler .section-heading h2 {
    font-size: clamp(26px, 3vw, 40px);
}

#projeler .section-heading > p {
    font-size: 14px;
    line-height: 1.5;
}

#projeler .project-filter {
    flex-shrink: 0;
    gap: 8px;
    margin-bottom: 16px;
}

#projeler .project-filter-button {
    padding: 8px 14px;
}

#projeler .projects-slider {
    flex: 1;
    min-height: 0;
    width: 100%;
}

#projeler .projects-slider-viewport {
    height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior-y: contain;
    scrollbar-width: thin;
    scrollbar-color: #1769ff #10213d;
    scrollbar-gutter: stable;
}

#projeler .projects-slider-track {
    width: 100%;
    height: 100%;
    transform: none !important;
}

#projeler .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(210px, calc((100% - 16px) / 2));
    align-content: start;
    height: 100%;
    gap: 16px;
}

#projeler .project-card {
    min-width: 0;
    min-height: 0;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden !important;
}

#projeler .project-card:hover {
    transform: none;
}

#projeler .project-index {
    margin-bottom: 12px;
}

#projeler .project-card h3 {
    max-width: none;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.3;
}

#projeler .project-tags {
    gap: 6px;
}

#projeler .project-tags span {
    padding: 5px 8px;
    font-size: 12px;
}

#projeler .projects-slider-controls {
    display: none !important;
}

@media (max-width: 800px) {
    #projeler .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(230px, auto);
    }
}

@media (max-width: 700px) {
    #projeler.page-panel.page-active {
        padding-bottom: 74px !important;
    }
}

@media (max-width: 500px) {
    #projeler .projects-grid {
        grid-template-columns: 1fr;
    }
}
/* Proje kutusunun sayfayı uzatmasını önle */
#projeler .projects-slider {
    position: relative !important;
    flex: 1 1 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

/* Yalnızca bu kutunun içi aşağı kayar */
#projeler .projects-slider-viewport {
    position: absolute !important;
    inset: 0 !important;
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    overscroll-behavior: contain;
}

#projeler .projects-slider-track {
    height: 100% !important;
}

/* Bilgisayarda kutuya tam iki sıra sığdır */
@media (min-width: 801px) {
    #projeler .projects-grid {
        height: 100% !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        grid-auto-rows: calc((100% - 16px) / 2) !important;
        gap: 16px !important;
        align-content: start !important;
    }
}
/* İletişim kartı ikonları */
.contact-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-icon .icon-dot {
    fill: currentColor;
    stroke: none;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.08);
}

.contact-icon {
    transition: transform 0.2s ease;
}
/* WhatsApp ikonunu düzelt */
.contact-icon.whatsapp-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    color: #ffffff;
    background: #25d366;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.contact-icon.whatsapp-icon svg {
    width: 29px;
    height: 29px;
    stroke-width: 2.15;
}
/* Tüm iletişim ikonlarının ortak ölçüsü */
.contact-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    color: #ffffff;
    border-radius: 14px;
}

.contact-icon svg {
    width: 27px;
    height: 27px;
    stroke-width: 2.15;
}

/* WhatsApp */
.contact-icon.whatsapp-icon {
    background: #25d366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* Telefon */
.contact-icon.phone-icon {
    background: #168aff;
    box-shadow: 0 8px 20px rgba(22, 138, 255, 0.25);
}

/* Instagram */
.contact-icon.instagram-icon {
    background: linear-gradient(
        135deg,
        #833ab4 0%,
        #fd1d1d 55%,
        #fcb045 100%
    );
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.25);
}

/* Konum */
.contact-icon.location-icon {
    background: #ffaa008a;
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.25);
}