/* ============================================================
   Maketcin — Kurumsal Stil Sistemi
   Keskin hatlar · editorial düzen · mimari atölye estetiği
   ============================================================ */

:root {
    --ink:           #0c1222;
    --navy:          #141d2f;
    --navy-deep:     #0a101c;
    --blue:          #182657;
    --blue-dark:     #004494;
    --blue-muted:    #e8eef5;
    --steel:         #5c6478;
    --line:          #d8dce6;
    --line-strong:   #b8bec9;
    --surface:       #f4f5f7;
    --surface-warm:  #fafafa;
    --white:         #ffffff;

    /* Geriye dönük alias */
    --color-primary:       var(--blue);
    --color-primary-dark:  var(--blue-dark);
    --color-primary-light: var(--blue-muted);
    --color-secondary:     var(--navy);
    --color-accent:        var(--blue);
    --color-bg:            var(--white);
    --color-bg-alt:        var(--surface);
    --color-bg-blue:       var(--blue-muted);
    --color-text:          var(--ink);
    --color-text-muted:    var(--steel);
    --color-border:        var(--line);
    --color-white:         var(--white);

    --font-display: 'Syne', 'Segoe UI', sans-serif;
    --font-body:    'DM Sans', 'Segoe UI', sans-serif;

    --radius:    0px;
    --radius-sm: 2px;

    --header-height: 68px;
    --container:     1240px;
    --ease:          cubic-bezier(0.22, 1, 0.36, 1);
    --transition:    0.22s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Tipografi ── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--ink);
}

/* ── Butonlar ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.btn-primary:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-strong);
}

.btn-outline:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.btn-ghost:hover { color: var(--blue); }

.btn-lg { padding: 16px 32px; font-size: 14px; }

.btn-cta {
    margin-left: 20px;
    font-size: 13px;
}

/* ── Bölüm etiketleri (editorial) ── */
.eyebrowi {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}


.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1133ab;
    margin-bottom: 20px;
}

.eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--blue);
    flex-shrink: 0;
}

.section-header {
    margin-bottom: 56px;
}

.section-header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    max-width: 520px;
}

.section-header p {
    color: var(--steel);
    font-size: 1rem;
    max-width: 440px;
    line-height: 1.7;
    margin-top: 14px;
}

.section-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--blue);
    flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(12, 18, 34, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--ink);
    text-transform: uppercase;
}

.logo-img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}

.logo-mark {
    color: var(--blue);
    margin-right: 2px;
}

.logo-icon { display: none; }

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-list > li > a,
.nav-list > li > .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--steel);
    letter-spacing: 0.01em;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.nav-list > li > a:hover,
.nav-list > li > .dropdown-trigger:hover,
.nav-list > li.active > a {
    color: var(--ink);
}

.nav-list > li.active > a,
.nav-list > li.active > .dropdown-trigger {
    border-bottom-color: var(--blue);
    color: var(--ink);
}

.nav-dropdown .dropdown-trigger i {
    font-size: 9px;
    transition: transform var(--transition);
}

.nav-dropdown:hover .dropdown-trigger i,
.nav-dropdown.is-open .dropdown-trigger i {
    transform: rotate(180deg);
}

/* ── Mega Menü (hover köprüsü ile) ── */
.nav-dropdown {
    position: static;
}

@media (min-width: 769px) {
    .nav-dropdown {
        position: relative;
    }
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 780px;
    max-width: calc(100vw - 40px);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 24px 64px rgba(12, 18, 34, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    z-index: 1001;
}

/* Fare geçiş boşluğu — menü kapanmasını engeller */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
}

.nav-dropdown:hover .mega-menu,
.nav-dropdown.is-open .mega-menu,
.nav-dropdown:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    padding: 0;
}

.mega-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.mega-menu-head span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
}

.mega-menu-head a {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    display: flex;
    align-items: center;
    gap: 6px;
}

.mega-menu-head a:hover { color: var(--blue-dark); }

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.mega-menu-col {
    padding: 24px 24px 28px;
    border-right: 1px solid var(--line);
}

.mega-menu-col:last-child { border-right: none; }

.mega-menu-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--blue);
}

.mega-menu-col ul li a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--steel);
    border-left: 2px solid transparent;
    padding-left: 0;
    transition: color var(--transition), padding-left var(--transition), border-color var(--transition);
}

.mega-menu-col ul li a:hover {
    color: var(--blue);
    padding-left: 8px;
    border-left-color: var(--blue);
}

/* ── Mega Menü — flyout (ana kategori → alt kategori) ── */
.mega-menu--flyout {
    width: 252px;
    min-width: 252px;
    max-width: 536px;
    left: 0;
    transform: translateY(6px);
    overflow: visible;
    transition: width 0.24s var(--ease), min-width 0.24s var(--ease), transform 0.2s var(--ease);
    box-shadow: 0 16px 48px rgba(12, 18, 34, 0.1);
}

.mega-menu--flyout:has(.mega-menu-cat:hover),
.mega-menu--flyout:has(.mega-menu-cat.is-active),
.mega-menu--flyout:has(.mega-menu-cat:focus-within) {
    width: 536px;
    min-width: 536px;
}

.nav-dropdown:hover .mega-menu--flyout,
.nav-dropdown.is-open .mega-menu--flyout,
.nav-dropdown:focus-within .mega-menu--flyout {
    transform: translateY(0);
}

.mega-menu--flyout .mega-menu-head {
    padding: 16px 20px;
    background: var(--white);
}

.mega-menu--flyout .mega-menu-head span {
    font-size: 10px;
    letter-spacing: 0.16em;
}

.mega-menu--flyout .mega-menu-head a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
}

.mega-menu-flyout-body {
    display: flex;
    align-items: flex-start;
}

.mega-menu-cats {
    list-style: none;
    width: 252px;
    flex-shrink: 0;
    padding: 6px 0 10px;
    margin: 0;
    border-right: 1px solid var(--line);
    background: var(--white);
}

.mega-menu-sub-panels {
    flex: 1;
    min-width: 284px;
    align-self: stretch;
}

/* Alt başlık konteynırı — içerik kadar uzar, scroll yok */
.mega-menu-sub-panel {
    display: none;
    padding: 20px 22px 24px;
    background: var(--surface);
}

.mega-menu-flyout-body:has([data-cat-key="maket"]:hover) [data-cat-key="maket"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="maket"].is-active) [data-cat-key="maket"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="maket"]:focus-within) [data-cat-key="maket"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="ogrenci"]:hover) [data-cat-key="ogrenci"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="ogrenci"].is-active) [data-cat-key="ogrenci"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="ogrenci"]:focus-within) [data-cat-key="ogrenci"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="endustriyel"]:hover) [data-cat-key="endustriyel"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="endustriyel"].is-active) [data-cat-key="endustriyel"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="endustriyel"]:focus-within) [data-cat-key="endustriyel"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="modelleme"]:hover) [data-cat-key="modelleme"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="modelleme"].is-active) [data-cat-key="modelleme"].mega-menu-sub-panel,
.mega-menu-flyout-body:has([data-cat-key="modelleme"]:focus-within) [data-cat-key="modelleme"].mega-menu-sub-panel {
    display: block;
}

.mega-menu-cat {
    position: static;
}

.mega-menu-cat-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.mega-menu-cat-link > i:first-child {
    color: var(--steel);
    font-size: 11px;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
    transition: color var(--transition);
}

.mega-menu-cat-link span {
    flex: 1;
    line-height: 1.4;
}

.mega-menu-cat-arrow {
    font-size: 9px;
    color: var(--line-strong);
    flex-shrink: 0;
    transition: transform var(--transition), color var(--transition);
}

.mega-menu-cat:hover .mega-menu-cat-link,
.mega-menu-cat:focus-within .mega-menu-cat-link,
.mega-menu-cat.is-active .mega-menu-cat-link {
    background: var(--surface);
    color: var(--ink);
    border-left-color: var(--blue);
}

.mega-menu-cat:hover .mega-menu-cat-link > i:first-child,
.mega-menu-cat:focus-within .mega-menu-cat-link > i:first-child,
.mega-menu-cat.is-active .mega-menu-cat-link > i:first-child {
    color: var(--blue);
}

.mega-menu-cat:hover .mega-menu-cat-arrow,
.mega-menu-cat:focus-within .mega-menu-cat-arrow,
.mega-menu-cat.is-active .mega-menu-cat-arrow {
    color: var(--blue);
    transform: translateX(3px);
}

.mega-menu-sub-title {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
    margin: 0 0 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.mega-menu-sub-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-menu-sub-panel ul li a {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.5;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.mega-menu-sub-panel ul li a:hover {
    color: var(--blue);
    border-left-color: var(--blue);
    background: var(--white);
}

.mega-menu-sub-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
    text-decoration: none;
    transition: color var(--transition);
}

.mega-menu-sub-all:hover {
    color: var(--blue-dark);
}

.mega-menu-sub-all i {
    font-size: 10px;
}

/* Eski kompakt menü — geriye dönük */
.mega-menu--compact {
    min-width: 320px;
    max-width: 380px;
    left: 0;
    transform: translateY(6px);
}

.nav-dropdown:hover .mega-menu--compact,
.nav-dropdown.is-open .mega-menu--compact,
.nav-dropdown:focus-within .mega-menu--compact {
    transform: translateY(0);
}

.mega-menu--compact .mega-menu-head {
    padding: 14px 20px;
}

.mega-menu--compact .mega-menu-list {
    padding: 8px 0 12px;
}

.mega-menu-group {
    padding: 0 12px;
}

.mega-menu-group + .mega-menu-group {
    margin-top: 4px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.mega-menu-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    transition: color var(--transition), background var(--transition);
}

.mega-menu-group-title:hover {
    color: var(--blue);
    background: var(--surface);
}

.mega-menu-group-title i {
    color: var(--blue);
    font-size: 12px;
    width: 16px;
    text-align: center;
}

.mega-menu-group ul {
    padding: 0 0 4px 38px;
    list-style: none;
}

.mega-menu-group ul li a {
    display: block;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--steel);
    line-height: 1.45;
    border-left: none;
    transition: color var(--transition);
}

.mega-menu-group ul li a:hover {
    color: var(--blue);
    padding-left: 12px;
    border-left-color: transparent;
}

.mega-menu-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 4px 12px 8px;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    border: 1px solid var(--line);
    transition: background var(--transition), border-color var(--transition);
}

.mega-menu-all:hover {
    background: var(--blue-muted);
    border-color: var(--blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--line);
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 72px 0 0;
    background: #141d2f;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    background-image: url(https://img.magnific.com/free-vector/blue-abstract-background_1393-339.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: luminosity;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    min-height: 520px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0 64px;
    padding-right: 48px;
}

.hero-content .eyebrow { margin-bottom: 28px; }

.hero h1 {
    font-size: clamp(2.4rem, 4.8vw, 3.75rem);
    font-weight: 800;
    margin-bottom: 24px;
    max-width: 11ch;
    color: #ffffff;
    text-shadow: 0 0 12px rgb(111 117 128), 0 0 32px rgb(255 255 255 / 0%), 0 0 64px rgb(12 21 42), 0 0 96px rgb(105 114 123 / 0%);
}


.hero-lead {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.75;
    max-width: 46ch;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: stretch;
    padding: 28px 0 48px;
    min-height: 480px;
    background: transparent;
    width: 100%;
}

.hero-visual-stage {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
}

.hero-visual-float {
    position: relative;
    width: 100%;
    animation: hero-float 6s ease-in-out infinite;
    will-change: transform;
}

.hero-visual-slider {
    position: relative;
    width: 100%;
    min-height: clamp(300px, 38vw, 500px);
    z-index: 1;
}

.hero-visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    opacity: 0;
    -webkit-mask-image: radial-gradient(
        ellipse 100% 96% at 50% 48%,
        #000 20%,
        rgba(0, 0, 0, 0.92) 46%,
        rgba(0, 0, 0, 0.55) 68%,
        rgba(0, 0, 0, 0.2) 84%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse 100% 96% at 50% 48%,
        #000 20%,
        rgba(0, 0, 0, 0.92) 46%,
        rgba(0, 0, 0, 0.55) 68%,
        rgba(0, 0, 0, 0.2) 84%,
        transparent 100%
    );
    animation: hero-img-cycle calc(var(--hero-img-count, 3) * 4s) ease-in-out infinite;
    animation-delay: calc(var(--hero-img-i, 0) * 4s);
    will-change: opacity, transform;
}

.hero-visual-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 4px;
}

.hero-visual-dot {
    position: relative;
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.hero-visual-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    background: #3952ac;
    border-radius: inherit;
    animation: hero-dot-fill calc(var(--hero-img-count, 3) * 4s) linear infinite;
    animation-delay: calc(var(--hero-img-i, 0) * 4s);
}

.hero-visual-placeholder {
    width: 100%;
    min-height: clamp(300px, 38vw, 500px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.2);
    font-size: 5rem;
}

@keyframes hero-img-cycle {
    0% {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }
    9% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    24% {
        opacity: 1;
        transform: translateY(-16px) scale(1);
    }
    33.33% {
        opacity: 0;
        transform: translateY(-8px) scale(0.99);
    }
    100% {
        opacity: 0;
        transform: translateY(14px) scale(0.98);
    }
}

@keyframes hero-dot-fill {
    0%, 9% { width: 0; }
    24%, 33.33% { width: 100%; }
    34%, 100% { width: 0; }
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-visual-float,
    .hero-visual-img,
    .hero-visual-dot::after {
        animation: none;
    }

    .hero-visual-img:first-child {
        opacity: 1;
        position: relative;
    }

    .hero-visual-img:not(:first-child) {
        display: none;
    }
}

.hero-tag { /* geriye dönük */ display: none; }

/* ============================================================
   VİTRİN — Anasayfa yatay kaydırma
   ============================================================ */
.showcase {
    padding: 88px 0 72px;
    background: var(--surface);
    border-top: 1px solid var(--line);
    overflow: hidden;
}

.showcase--rail .showcase-top,
.showcase--carousel .showcase-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
}

.showcase-top-text {
    max-width: 640px;
}

.showcase-top-text .eyebrow {
    margin-bottom: 14px;
}

.showcase-top-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    margin-bottom: 14px;
    max-width: 18ch;
}

.showcase-top-text p {
    font-size: 15px;
    color: var(--steel);
    line-height: 1.7;
    max-width: 52ch;
    margin: 0;
}

.showcase-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.showcase-counter {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.04em;
    min-width: 4.5ch;
}

.showcase-counter [data-showcase-current] {
    color: var(--blue);
}

.showcase-counter-sep {
    color: var(--line-strong);
    margin: 0 2px;
}

.showcase-nav {
    display: flex;
    gap: 8px;
}

.showcase-nav-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.showcase-nav-btn:hover:not(:disabled) {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--white);
}

.showcase-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.showcase-nav-btn i {
    font-size: 12px;
}

/* Carousel — tam ekran genişliği */
.showcase-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
}

.showcase-stage {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: clamp(420px, 56vh, 640px);
    background: var(--navy);
    border: none;
    outline: none;
}

.showcase-stage::before,
.showcase-stage::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: clamp(48px, 8vw, 120px);
    z-index: 4;
    pointer-events: none;
}

.showcase-stage::before {
    left: 0;
    background: linear-gradient(90deg, var(--surface) 0%, transparent 100%);
}

.showcase-stage::after {
    right: 0;
    background: linear-gradient(270deg, var(--surface) 0%, transparent 100%);
}

.showcase-track {
    display: flex;
    align-items: stretch;
    height: 100%;
    will-change: transform;
    transition: transform 0.6s var(--ease);
}

.showcase-track.is-instant {
    transition: none;
}

.showcase-slide {
    flex: 0 0 auto;
    height: 100%;
    opacity: 0.42;
    transform: scale(0.94);
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
    pointer-events: auto;
}

.showcase-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.showcase-slide.is-prev,
.showcase-slide.is-next {
    opacity: 0.55;
    transform: scale(0.96);
    cursor: pointer;
}

.showcase-slide.is-distant {
    opacity: 0.25;
    transform: scale(0.92);
}

.showcase-slide-link {
    display: block;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.showcase-slide-visual {
    position: absolute;
    inset: 0;
    background: var(--navy);
}

.showcase-slide-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.5s var(--ease);
}

.showcase-slide:not(.is-active) .showcase-slide-visual img {
    filter: grayscale(35%) brightness(0.75);
}

.showcase-slide.is-active .showcase-slide-visual img {
    filter: grayscale(0%) brightness(1);
}

.showcase-slide.is-active:hover .showcase-slide-visual img {
    transform: scale(1.03);
}

.showcase-slide-visual .img-placeholder {
    min-height: 100%;
    background: var(--navy);
    color: rgba(255, 255, 255, 0.2);
}

.showcase-slide-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(12, 18, 34, 0.08) 0%, rgba(12, 18, 34, 0.15) 45%, rgba(12, 18, 34, 0.82) 100%);
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.showcase-slide:not(.is-active) .showcase-slide-scrim {
    background: rgba(12, 18, 34, 0.55);
}

.showcase-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px 28px;
    align-items: end;
    padding: 32px max(28px, calc((100vw - var(--container)) / 2 + 28px)) 36px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    pointer-events: none;
}

.showcase-slide.is-active .showcase-slide-caption {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.showcase-slide-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 255, 255, 0.22);
    align-self: end;
    padding-bottom: 4px;
}

.showcase-slide-caption-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-bottom: 10px;
}

.showcase-slide-cat {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.showcase-slide-scale {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.showcase-slide-caption h3 {
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 28ch;
}

.showcase-slide-caption p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    margin: 0 0 10px;
    max-width: 52ch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.showcase-slide-material {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.showcase-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 0 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: gap var(--transition), border-color var(--transition);
}

.showcase-slide.is-active:hover .showcase-slide-cta {
    gap: 14px;
    border-color: var(--white);
}

.showcase-slide-cta i {
    font-size: 10px;
}

/* Sahne okları */
.showcase-stage-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(12, 18, 34, 0.55);
    color: var(--white);
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}

.showcase-stage-arrow:hover:not(:disabled) {
    background: rgba(12, 18, 34, 0.78);
    border-color: rgba(255, 255, 255, 0.6);
}

.showcase-stage-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.showcase-stage-arrow i {
    font-size: 12px;
}

.showcase-stage-arrow--prev { left: max(16px, calc((100vw - var(--container)) / 2 + 16px)); }
.showcase-stage-arrow--next { right: max(16px, calc((100vw - var(--container)) / 2 + 16px)); }

.showcase--carousel.showcase--single .showcase-stage {
    height: clamp(380px, 52vw, 560px);
}

.showcase--carousel.showcase--single .showcase-slide {
    opacity: 1;
    transform: none;
}

.showcase--carousel.showcase--single .showcase-slide-caption {
    opacity: 1;
    transform: none;
}

/* Eski rail sınıfları kaldırıldı — showcase-stage kullanılıyor */

/* İlerleme çubuğu */
.showcase-progress-wrap {
    margin-top: 28px;
}

.showcase-progress {
    height: 2px;
    background: var(--line);
    overflow: hidden;
}

.showcase-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--blue);
    transition: width 0.25s var(--ease);
}

.showcase-empty {
    text-align: center;
    padding: 56px 32px;
    background: var(--white);
    border: 1px dashed var(--line-strong);
    margin-bottom: 8px;
}

.showcase-empty i {
    display: block;
    font-size: 1.75rem;
    color: var(--line-strong);
    margin-bottom: 16px;
}

.showcase-empty p {
    color: var(--steel);
    margin: 0;
    max-width: 42ch;
    margin-inline: auto;
}

.showcase-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.showcase-footer p {
    font-size: 14px;
    color: var(--steel);
    max-width: 360px;
    margin: 0;
}

/* Eski grid — proje detay ilgili projeler */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.project-card {
    grid-column: span 4;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: background var(--transition);
}

.project-card:first-child {
    grid-column: span 8;
    grid-row: span 1;
}

.project-card:hover { background: var(--surface-warm); }

.project-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.project-card:first-child .project-card-image {
    aspect-ratio: 16/9;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(12%);
    transition: transform 0.5s var(--ease), filter 0.4s var(--ease);
}

.project-card:hover .project-card-image img {
    transform: scale(1.03);
    filter: grayscale(0%);
}

.project-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-card-category {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}

.project-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.project-card:first-child .project-card-body h3 {
    font-size: 1.5rem;
}

.project-card-body p {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.65;
    flex: 1;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
}

.project-card-link i { font-size: 10px; transition: transform var(--transition); }
.project-card:hover .project-card-link i { transform: translateX(4px); }

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 180px;
    background:
        linear-gradient(135deg, var(--surface) 25%, transparent 25%) -20px 0 / 40px 40px,
        linear-gradient(225deg, var(--surface) 25%, transparent 25%) -20px 0 / 40px 40px,
        linear-gradient(315deg, var(--surface) 25%, transparent 25%) 0 0 / 40px 40px,
        linear-gradient(45deg, var(--surface) 25%, transparent 25%) 0 0 / 40px 40px,
        var(--blue-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--line-strong);
    font-size: 2rem;
}

/* ============================================================
   HAKKIMIZDA KESİT
   ============================================================ */
.about-snippet {
    padding: 88px 0;
    background: var(--navy);
    color: var(--white);
    border-top: 1px solid var(--line);
}

.about-snippet-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.12);
}

.about-snippet-text {
    padding: 56px 56px 56px 0;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.about-snippet-text .eyebrow {
    color: rgba(255,255,255,0.45);
}

.about-snippet-text .eyebrow::before {
    background: var(--blue);
}

.about-snippet-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--white);
    margin-bottom: 20px;
    max-width: 16ch;
}

.about-snippet-text p {
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 48ch;
    margin-bottom: 32px;
}

.about-snippet-text .btn-outline {
    border-color: rgba(255,255,255,0.35);
    color: var(--white);
}

.about-snippet-text .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.about-metrics {
    display: flex;
    flex-direction: column;
}

.about-metric {
    flex: 1;
    padding: 32px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-metric:last-child { border-bottom: none; }

.about-metric strong {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.about-metric span {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.about-snippet-visual { display: none; }

/* ============================================================
   SÜREÇ
   ============================================================ */
.process {
    padding: 88px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    overflow: visible;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    background: var(--line);
    overflow: visible;
    position: relative;
    z-index: 1;
}

.process-step {
    background: var(--white);
    padding: 36px 28px;
    position: relative;
    transition: background var(--transition);
    cursor: pointer;
}

.process-step:hover,
.process-step.is-preview-active {
    background: var(--surface-warm);
}

.process-step-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--line-strong);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    display: block;
    transition: color var(--transition), transform 0.3s var(--ease);
}

.process-step:hover .process-step-number,
.process-step.is-preview-active .process-step-number {
    color: var(--blue);
    transform: scale(1.04);
}

.process-step:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: -2px;
}

.process-step h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.65;
}

/* Süreç dropdown önizleme (mega menü tarzı) */
.process-dropdown {
    position: fixed;
    z-index: 1100;
    width: 300px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}

.process-dropdown.is-visible {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.process-dropdown.is-above {
    transform: translateY(-6px);
}

.process-dropdown.is-visible.is-above {
    transform: translateY(0);
}

.process-dropdown.is-positioning {
    transition: none;
    opacity: 0;
    pointer-events: none;
    visibility: visible;
}

/* Trigger ile dropdown arası hover köprüsü */
.process-dropdown-bridge {
    position: fixed;
    z-index: 1099;
    pointer-events: none;
    background: transparent;
}

.process-dropdown.is-visible .process-dropdown-bridge {
    pointer-events: auto;
}

.process-dropdown-arrow {
    position: absolute;
    top: -6px;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
    transform: rotate(45deg);
    z-index: 2;
}

.process-dropdown.is-above .process-dropdown-arrow {
    top: auto;
    bottom: -6px;
    transform: rotate(225deg);
}

.process-dropdown-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(12, 18, 34, 0.14);
    overflow: hidden;
}

.process-dropdown-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.process-dropdown-num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.process-dropdown-head h3 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.process-dropdown-media {
    aspect-ratio: 16/9;
    background: var(--navy);
    overflow: hidden;
}

.process-dropdown-media img,
.process-dropdown-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.process-dropdown-media iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.process-dropdown-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--blue-dark));
    color: rgba(255,255,255,0.4);
    font-size: 1.5rem;
}

.process-step.is-preview-active {
    background: var(--blue-muted);
    z-index: 2;
}

@media (max-width: 600px) {
    .process-dropdown {
        width: calc(100vw - 24px) !important;
        max-width: 320px;
    }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    padding: 72px 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    max-width: 20ch;
}

.cta-band p {
    color: var(--steel);
    font-size: 15px;
    max-width: 36ch;
    margin-top: 10px;
}

/* ============================================================
   SAYFA HERO
   ============================================================ */
.page-hero {
    padding: 64px 0 56px;
    background: var(--navy);
    color: var(--white);
    border-bottom: 3px solid var(--blue);
}

.page-hero .eyebrow {
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
}

.page-hero .eyebrow::before { background: var(--blue); }

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    max-width: 52ch;
}

/* ============================================================
   HİZMETLER
   ============================================================ */
.services-section {
    padding: 72px 0;
}

.service-category-block {
    margin-bottom: 64px;
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.service-category-block h2 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-category-block h2 i {
    color: var(--blue);
    font-size: 1rem;
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.service-item {
    background: var(--white);
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: background var(--transition);
}

.service-item:hover { background: var(--surface); }

.service-item i {
    color: var(--blue);
    font-size: 11px;
    margin-top: 5px;
    flex-shrink: 0;
}

.service-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.5;
}

.gallery-section {
    padding: 72px 0 88px;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.gallery-item {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: var(--white);
    cursor: pointer;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img,
.gallery-item .img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}

.gallery-item:hover img,
.gallery-item:hover .img-placeholder {
    filter: grayscale(0%);
    transform: scale(1.04);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,18,34,0.88) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay h4 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
}

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact-section { padding: 72px 0 88px; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.contact-info-card {
    background: var(--white);
    padding: 48px;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-info-item i {
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-info-item div strong {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 4px;
}

.contact-info-item div span,
.contact-info-item div a {
    display: block;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.6;
}

.contact-map-link {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 13px !important;
    color: var(--blue) !important;
    font-weight: 500;
}

.contact-map-link:hover { text-decoration: underline; }

/* --- Çok şubeli iletişim (yalnızca erişim) --- */
.contact-info-lead {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.65;
    margin: -8px 0 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

.contact-branches {
    margin-top: 48px;
}

.contact-branches-notice {
    display: flex;
    gap: 16px;
    padding: 18px 22px;
    margin-bottom: 32px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    color: #1e3a8f;
    font-size: 14px;
    line-height: 1.65;
}

.contact-branches-notice > i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-branches-notice strong {
    display: block;
    margin-bottom: 4px;
    color: #1e40af;
}

.contact-branches-notice p {
    margin: 0;
}

.contact-branches-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-branches-head h2 {
    margin: 8px 0 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact-branches-head > div > p {
    margin: 8px 0 0;
    color: var(--steel);
    max-width: 52ch;
    font-size: 15px;
}

.contact-branches-central {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
}

.contact-branches-central-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--steel);
    font-weight: 600;
}

.contact-branches-central a {
    font-weight: 600;
    color: var(--ink);
}

.contact-branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.contact-branch-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-branch-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.contact-branch-card-head h3 {
    margin: 0;
    font-size: 1.15rem;
}

.contact-branch-badge {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 99px;
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    white-space: nowrap;
}

.contact-branch-address,
.contact-branch-meta {
    margin: 0;
    font-size: 14px;
    color: var(--steel);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-branch-address i,
.contact-branch-meta i {
    margin-top: 3px;
    color: var(--blue);
    width: 14px;
    flex-shrink: 0;
}

.contact-branch-note {
    margin: 0;
    font-size: 13px;
    color: var(--steel);
    font-style: italic;
}

.contact-branch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.contact-branch-map {
    margin-top: 12px;
    position: relative;
    aspect-ratio: 16 / 10;
    min-height: 180px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.contact-branch-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .contact-branches-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-branches-grid {
        grid-template-columns: 1fr;
    }
}

/* Google İşletme Profili — harita bölümü */
.gbp-map-section {
    margin-top: 48px;
    border: 1px solid var(--line);
    background: var(--white);
    overflow: hidden;
}

.gbp-map-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px 32px;
    padding: 32px 40px;
    border-bottom: 1px solid var(--line);
}

.gbp-map-header h2 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    margin: 8px 0 0;
}

.gbp-map-hours {
    margin: 10px 0 0;
    font-size: 14px;
    color: var(--steel);
    display: flex;
    align-items: center;
    gap: 8px;
}

.gbp-map-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gbp-map-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    min-height: 320px;
    background: var(--surface);
}

.gbp-map-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .gbp-map-header {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .gbp-map-actions {
        width: 100%;
    }

    .gbp-map-actions .btn {
        flex: 1;
        justify-content: center;
        text-align: center;
    }

    .gbp-map-frame {
        aspect-ratio: 4 / 3;
        min-height: 260px;
    }
}

.contact-cta-box {
    background: var(--navy);
    padding: 48px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-cta-box .eyebrow {
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 14px;
}

.contact-cta-box p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    line-height: 1.7;
}

.contact-cta-box .btn {
    align-self: flex-start;
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.contact-cta-box .btn:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 0;
    border-top: 3px solid var(--blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}

.footer-logo-img {
    display: block;
    height: 34px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.96);
    padding: 8px 14px;
    border-radius: 2px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 32ch;
}

.social-links { display: flex; gap: 0; }

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-right: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all var(--transition);
}

.social-links a:last-child { border-right: 1px solid rgba(255,255,255,0.15); }

.social-links a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover { color: var(--white); }

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact i { color: var(--blue); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
}

/* ============================================================
   SAYFA İÇERİĞİ
   ============================================================ */
.page-content { padding: 72px 0 88px; }

.page-content-inner {
    max-width: 720px;
    margin: 0 auto;
}

.page-content-inner h2 {
    font-size: 1.4rem;
    margin: 40px 0 16px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.page-content-inner h2:first-child { border-top: none; margin-top: 0; }

.page-content-inner p {
    color: var(--steel);
    line-height: 1.85;
    margin-bottom: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .showcase-stage {
        height: clamp(340px, 58vw, 480px);
    }

    .projects-grid .project-card,
    .projects-grid .project-card:first-child {
        grid-column: span 6;
    }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }

    .process-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .mega-menu:not(.mega-menu--compact):not(.mega-menu--flyout) { min-width: 640px; }
    .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .mega-menu-col:nth-child(2) { border-right: none; }
    .mega-menu-col { border-bottom: 1px solid var(--line); }
    .mega-menu-col:nth-last-child(-n+2) { border-bottom: none; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-content { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line); }
    .about-snippet-inner { grid-template-columns: 1fr; }
    .about-snippet-text { padding: 0 0 40px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .about-metrics { flex-direction: row; }
    .about-metric { border-bottom: none; border-right: 1px solid rgba(255,255,255,0.12); flex: 1; }
    .about-metric:last-child { border-right: none; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 24px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 48px rgba(12,18,34,0.1);
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s var(--ease);
        z-index: 999;
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-list { flex-direction: column; align-items: stretch; width: 100%; }
    .nav-list > li { width: 100%; }
    .nav-list > li > a,
    .nav-list > li > .dropdown-trigger {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
        width: 100%;
    }

    .mega-menu {
        position: static;
        transform: none;
        min-width: unset;
        max-width: unset;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--blue);
        margin: 8px 0 8px 12px;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
    }

    .mega-menu::before { display: none; }
    .nav-dropdown.open .mega-menu { display: block; }
    .mega-menu-head { display: none; }
    .mega-menu-grid { grid-template-columns: 1fr; }
    .mega-menu-col { border-right: none; border-bottom: 1px solid var(--line); padding: 16px; }
    .mega-menu-col:last-child { border-bottom: none; }

    .mega-menu--flyout {
        width: 100%;
        min-width: 0;
        max-width: none;
        left: 0;
        right: 0;
        transform: none;
        overflow: visible;
        transition: none;
    }

    .mega-menu--flyout:has(.mega-menu-cat:hover),
    .mega-menu--flyout:has(.mega-menu-cat.is-active),
    .mega-menu--flyout:has(.mega-menu-cat:focus-within) {
        width: 100%;
        min-width: 0;
    }

    .mega-menu-flyout-body {
        flex-direction: column;
        min-height: 0;
    }

    .mega-menu-cats {
        width: 100%;
        border-right: none;
        padding: 4px 0;
    }

    .mega-menu-sub-panels {
        min-width: 0;
        width: 100%;
        border-top: 1px solid var(--line);
    }

    .mega-menu-cat-link {
        padding: 12px 14px;
    }

    .mega-menu-sub-panel {
        display: none;
        padding: 12px 14px 16px 28px;
        background: transparent;
    }

    .mega-menu-sub-panel.is-mobile-open {
        display: block;
    }

    .mega-menu-flyout-body:has([data-cat-key]:hover) .mega-menu-sub-panel:not(.is-mobile-open),
    .mega-menu-flyout-body:has([data-cat-key].is-active) .mega-menu-sub-panel:not(.is-mobile-open) {
        display: none;
    }

    .mega-menu-sub-title {
        display: block;
        font-size: 9px;
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .mega-menu-sub ul li a {
        padding: 8px 10px;
        font-size: 13px;
    }

    .mega-menu-sub-all {
        margin-top: 8px;
        padding-top: 10px;
        font-size: 10px;
    }

    .mega-menu--compact {
        min-width: 0;
        max-width: none;
        left: 0;
        right: 0;
        transform: none;
    }

    .mega-menu--compact .mega-menu-head {
        display: block;
        padding: 12px 16px;
    }

    .mega-menu-group {
        padding: 0 8px;
    }

    .mega-menu-group-title {
        padding: 10px 8px;
    }

    .mega-menu-group ul {
        padding-left: 28px;
    }

    .mega-menu-all {
        margin: 8px;
    }

    .btn-cta { margin: 16px 0 0; width: 100%; }

    .hero { padding-top: 48px; }
    .hero-visual {
        min-height: 320px;
        padding: 24px 0 40px;
    }

    .hero-visual-slider {
        min-height: clamp(240px, 52vw, 360px);
    }

    .projects-grid .project-card,
    .projects-grid .project-card:first-child { grid-column: span 12; }

    .showcase {
        padding: 64px 0 56px;
    }

    .showcase--rail .showcase-top,
    .showcase--carousel .showcase-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 28px;
    }

    .showcase-controls {
        width: 100%;
        justify-content: space-between;
    }

    .showcase-stage {
        height: clamp(320px, 62vh, 480px);
    }

    .showcase-stage-arrow--prev { left: 12px; }
    .showcase-stage-arrow--next { right: 12px; }

    .showcase-slide-caption {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 22px 24px 26px;
    }

    .showcase-slide-num {
        font-size: 1.5rem;
        padding-bottom: 0;
    }

    .showcase-slide-caption h3 {
        max-width: none;
    }

    .showcase-slide-caption p {
        -webkit-line-clamp: 2;
        font-size: 13px;
    }

    .showcase-footer {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 36px;
    }

    .showcase-footer .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .process-steps { grid-template-columns: 1fr; }
    .about-metrics { flex-direction: column; }
    .about-metric { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }

    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item:nth-child(1) { grid-column: span 1; }

    .cta-band-inner { flex-direction: column; align-items: flex-start; }
    .section-header--row { flex-direction: column; align-items: flex-start; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }

    .hero-visual-slider {
        min-height: 220px;
    }
}

/* ============================================================
   PROJE KART LİNK & DETAY SAYFASI
   ============================================================ */
.project-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.project-card--link:hover .project-card-link { color: var(--blue); }

.projects-grid--compact .project-card {
    grid-column: span 4;
}

.projects-grid--compact .project-card:first-child {
    grid-column: span 4;
}

/* Proje detay */
.project-detail-hero {
    padding: 48px 0 40px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
}

.project-detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--steel);
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.project-detail-breadcrumb a:hover { color: var(--blue); }

/* --- SEO: Breadcrumb navigasyonu --- */
.seo-breadcrumbs {
    margin-bottom: 16px;
}

.seo-breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--steel);
}

.seo-breadcrumbs__item:not(:last-child)::after {
    content: '/';
    margin-left: 4px;
    color: var(--line);
}

.seo-breadcrumbs__item a {
    color: var(--steel);
    text-decoration: none;
}

.seo-breadcrumbs__item a:hover {
    color: var(--blue);
}

.seo-breadcrumbs__item span[aria-current="page"] {
    color: var(--ink);
    font-weight: 500;
}

.page-hero .seo-breadcrumbs {
    margin-bottom: 20px;
}

.form-page .seo-breadcrumbs {
    margin-bottom: 24px;
}

.project-detail-hero .seo-breadcrumbs__list {
    color: var(--steel);
}

.project-detail-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 20ch;
    margin-bottom: 16px;
}

.project-detail-lead {
    font-size: 1.05rem;
    color: var(--steel);
    max-width: 60ch;
    line-height: 1.75;
}

.project-detail-body { padding: 56px 0 72px; }

.project-detail-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.project-detail-image {
    margin-bottom: 32px;
    border: 1px solid var(--line);
    overflow: hidden;
}

.project-detail-image img {
    width: 100%;
    display: block;
    filter: grayscale(8%);
}

.project-detail-content {
    font-size: 15px;
    line-height: 1.85;
    color: var(--steel);
}

.project-detail-content h2,
.project-detail-content h3 {
    font-family: var(--font-display);
    color: var(--ink);
    margin: 28px 0 12px;
}

.project-detail-content p { margin-bottom: 16px; }

.project-specs {
    border: 1px solid var(--line);
    padding: 28px;
    margin-bottom: 20px;
    background: var(--surface);
}

.project-specs h3 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.project-specs dl { display: grid; gap: 14px; }

.project-specs dt {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 2px;
}

.project-specs dd {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
}

.project-detail-cta {
    border: 1px solid var(--line);
    padding: 28px;
    background: var(--navy);
    color: var(--white);
}

.project-detail-cta h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.project-detail-cta p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-related { padding-top: 0; border-top: 1px solid var(--line); }

/* Hizmetler — kategori detay */
.service-category-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.service-category-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.service-category-title i { color: var(--blue); font-size: 1.1rem; }

.service-category-title h2 {
    font-size: 1.5rem;
    margin: 0;
    border: none;
    padding: 0;
}

.service-category-block h2 { border: none; padding: 0; }

.service-category-desc {
    color: var(--steel);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 72ch;
}

.service-list-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    margin-bottom: 40px;
}

.service-list-item {
    background: var(--white);
    padding: 24px;
}

.service-list-item h3 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.service-list-item p {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.6;
}

.category-projects { margin-top: 8px; }

.category-projects-head { margin-bottom: 20px; }

.category-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.category-project-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: background var(--transition);
}

.category-project-card:hover { background: var(--surface-warm); }

.category-project-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.category-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(15%);
    transition: filter 0.4s var(--ease), transform 0.5s var(--ease);
}

.category-project-card:hover .category-project-image img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.category-project-body { padding: 20px 24px 24px; flex: 1; }

.category-project-body h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 8px;
}

.category-project-body p {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.55;
    margin-bottom: 12px;
}

@media (max-width: 900px) {
    .project-detail-grid { grid-template-columns: 1fr; }
    .projects-grid--compact .project-card { grid-column: span 12; }
    .category-detail-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   HİZMETLER HUB & KATEGORİ DETAY
   ============================================================ */
.services-hub {
    padding: 72px 0;
}

.services-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.services-hub-card {
    background: var(--white);
    padding: 36px 32px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: background var(--transition);
    min-height: 280px;
}

.services-hub-card:hover {
    background: var(--surface-warm);
}

.services-hub-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.services-hub-card-top i {
    font-size: 1.4rem;
    color: var(--blue);
}

.services-hub-count {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
}

.services-hub-card h2 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.services-hub-card > p {
    font-size: 14px;
    color: var(--steel);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.services-hub-tags {
    margin-bottom: 20px;
}

.services-hub-tags li {
    font-size: 12px;
    color: var(--steel);
    padding: 4px 0;
    border-bottom: 1px solid var(--line);
}

.services-hub-tags li:last-child { border-bottom: none; }

.services-hub-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.services-hub-card:hover .services-hub-link i { transform: translateX(4px); }

.category-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.category-breadcrumb a { color: rgba(255,255,255,0.75); }
.category-breadcrumb a:hover { color: var(--white); }

.page-hero h1 i {
    font-size: 0.85em;
    margin-right: 10px;
    opacity: 0.85;
}

.category-detail-section {
    padding: 72px 0;
}

.category-detail-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
}

.category-sidebar {
    border: 1px solid var(--line);
    padding: 28px;
    background: var(--surface);
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.category-sidebar h3 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
}

.category-sidebar-list li { margin-bottom: 4px; }

.category-sidebar-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.category-sidebar-list a i:first-child {
    color: var(--blue);
    width: 16px;
    font-size: 13px;
}

.category-sidebar-list a i:last-child {
    margin-left: auto;
    font-size: 10px;
    color: var(--steel);
    transition: transform var(--transition);
}

.category-sidebar-list a:hover {
    color: var(--blue);
}

.category-sidebar-list a:hover i:last-child { transform: translateX(3px); }

.category-projects-section {
    padding: 72px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
}

.category-projects-grid--full {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.category-empty-projects {
    text-align: center;
    padding: 48px 24px;
    border: 1px dashed var(--line-strong);
    color: var(--steel);
}

.category-empty-projects i {
    font-size: 2rem;
    color: var(--line-strong);
    margin-bottom: 16px;
}

.mega-menu-title a {
    color: inherit;
    transition: color var(--transition);
}

.mega-menu-title a:hover { color: var(--blue); }

@media (max-width: 768px) {
    .services-hub-grid { grid-template-columns: 1fr; }
}

/* Alt kategori kartları */
.subcategory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.subcategory-card {
    background: var(--white);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 180px;
    transition: background var(--transition);
}

.subcategory-card:hover {
    background: var(--surface-warm);
}

.subcategory-card h3,
.subcategory-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.subcategory-card p {
    font-size: 13px;
    color: var(--steel);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}

.subcategory-link {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.subcategory-card:hover .subcategory-link i { transform: translateX(4px); }

.services-hub-tags a {
    color: inherit;
    transition: color var(--transition);
}

.services-hub-tags a:hover { color: var(--blue); }

.category-sidebar-list a.is-active {
    color: var(--blue);
    font-weight: 600;
}

.service-detail-text p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--steel);
    max-width: 640px;
}

/* ============================================================
   Anasayfa — Yükleme ekranı
   ============================================================ */

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--white);
    transition:
        opacity 0.75s var(--ease),
        visibility 0.75s;
}

.page-loader--out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 50% 45%, rgb(232 238 245 / 0.9) 0%, transparent 68%),
        linear-gradient(180deg, var(--white) 0%, var(--surface-warm) 55%, var(--white) 100%);
    animation: loader-backdrop-breathe 5s ease-in-out infinite;
}

.page-loader__grid {
    position: absolute;
    inset: -1px;
    opacity: 0.45;
    background-image:
        linear-gradient(var(--line) 1px, transparent 1px),
        linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 75% 65% at 50% 50%, #000 15%, transparent 72%);
    animation: loader-grid-drift 16s linear infinite;
}

.page-loader__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 28px;
    animation: loader-inner-in 0.9s var(--ease) both;
}

.page-loader__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 18px;
    animation: loader-logo-float 3.6s ease-in-out infinite;
}

.page-loader__logo {
    width: min(220px, 58vw);
    height: auto;
    filter: none;
}

.page-loader__mark {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--blue-dark);
    line-height: 1;
}

.page-loader__name {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.page-loader__tagline {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--steel);
    max-width: 32ch;
    line-height: 1.6;
    margin-bottom: 36px;
    animation: loader-tagline-in 1s var(--ease) 0.25s both;
}

.page-loader__progress {
    width: min(300px, 76vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: loader-tagline-in 1s var(--ease) 0.4s both;
}

.page-loader__track {
    width: 100%;
    height: 3px;
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    position: relative;
}

.page-loader__track::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.85), transparent);
    animation: loader-shimmer 2.2s ease-in-out infinite;
}

.page-loader__bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--navy) 0%, var(--blue-dark) 100%);
    transition: width 0.12s linear;
    position: relative;
    z-index: 1;
}

.page-loader__percent {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--navy);
    font-variant-numeric: tabular-nums;
    opacity: 0.55;
}

.page-loader__percent::after {
    content: '%';
    margin-left: 1px;
    opacity: 0.7;
}

@keyframes loader-inner-in {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes loader-tagline-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loader-logo-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}

@keyframes loader-backdrop-breathe {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.94; }
}

@keyframes loader-grid-drift {
    from { transform: translate(0, 0); }
    to   { transform: translate(56px, 56px); }
}

@keyframes loader-shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

body.has-page-loader .site-header,
body.has-page-loader .site-main,
body.has-page-loader .site-footer {
    opacity: 0;
    transition: opacity 0.5s var(--ease) 0.15s;
}

html:not(.page-loading) body.has-page-loader .site-header,
html:not(.page-loading) body.has-page-loader .site-main,
html:not(.page-loading) body.has-page-loader .site-footer {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .page-loader,
    .page-loader__backdrop,
    .page-loader__grid,
    .page-loader__brand,
    .page-loader__inner,
    .page-loader__tagline,
    .page-loader__progress,
    .page-loader__track::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
    }
}

/* --- Site reklam (AdSense) — hafif, etiketli --- */
.site-ad {
    padding: 28px 0;
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.site-ad-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.site-ad-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--steel);
}

.site-ad-unit {
    width: 100%;
    max-width: 728px;
    min-height: 90px;
    overflow: hidden;
    border-radius: 8px;
}

.site-ad--content {
    margin: 32px 0;
    padding: 24px 0;
    background: transparent;
    border: none;
}

.site-ad--content .site-ad-inner {
    padding: 20px;
    border: 1px dashed var(--line);
    border-radius: 12px;
    background: var(--surface);
}

@media (max-width: 768px) {
    .site-ad {
        padding: 20px 0;
    }

    .site-ad-unit {
        min-height: 60px;
    }
}

