/* ============================================================
   Ana Sayfa — Canlı Kurumsal (split hero + görseller)
   ============================================================ */

/* ══════════════════════════════════════════════════════════════
   HERO — Premium Full-Width Slider
   ══════════════════════════════════════════════════════════════ */

/* 1. Section override — style.css'teki 96px padding'i sıfırla */
section.hero-pro {
    padding: 0 !important;
    margin: 0 !important;
}

.hero-pro {
    position: relative;
    overflow: hidden;
    background: #061428;
}

/* 2. Track — görünür yüksekliği belirleyen katman */
.hero-pro-track {
    position: relative;
    height: clamp(640px, 72vh, 820px);     /* explicit height → inset:0 çalışır */
}

/* 3. Slaytlar */
.hero-pro-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
    z-index: 1;
}
.hero-pro-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

/* 4. Arka plan fotoğraf — backgroundImage JS ile set edilir */
.hero-pro-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #061428;   /* JS yüklenene kadar düz renk */
    transform-origin: center center;
    transform: scale(1.08);
    transition: transform 12s ease;
}
.hero-pro-slide.is-active .hero-pro-bg {
    transform: scale(1);
}

/* 5. Gradient katmanları — solda okunaklı, sağda görsel görünür */
.hero-pro-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* Ana soldan sağa gradient */
    background: linear-gradient(
        100deg,
        rgba(4, 16, 32, .96)  0%,
        rgba(6, 22, 44, .90) 25%,
        rgba(8, 28, 54, .72) 48%,
        rgba(8, 28, 54, .32) 68%,
        rgba(8, 28, 54, .08) 85%,
        transparent          100%
    );
}
/* Üstten ince koyu bant yerine yumuşak fade */
.hero-pro-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4, 16, 32, .18) 0%,
        transparent           15%,
        transparent           78%,
        rgba(4, 16, 32, .22) 100%
    );
}

/* 6. Dekoratif desen */
.hero-pro-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: .025;
    pointer-events: none;
    background-image:
        radial-gradient(circle, rgba(255,255,255,.6) 1px, transparent 1px);
    background-size: 40px 40px;
}
/* Dekoratif dikey çizgi aksan */
.hero-pro-pattern::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255,255,255,.06) 30%,
        rgba(255,255,255,.06) 70%,
        transparent
    );
}

/* 7. İç içerik wrapper */
.hero-pro-inner {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    /* Altta pagination için yer bırak */
    padding-bottom: 72px;
}

/* 8. Metin içeriği */
.hero-pro-content {
    position: relative;
    color: var(--white);
    max-width: 600px;
    padding-left: 24px;
}
.hero-pro-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500));
    border-radius: 3px;
}

/* Badge */
.hero-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, .12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, .30);
    border-radius: 50px;
    padding: 8px 18px 8px 12px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}
.hero-pro-badge i { color: var(--gold-300); font-size: .9rem; }

/* Başlık */
.hero-pro-title {
    font-family: var(--font-heading);
    font-size: clamp(2.15rem, 4.5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.18;
    margin-bottom: 18px;
    color: var(--white);
    letter-spacing: -0.02em;
}
.hero-pro-title em {
    color: var(--gold-300);
    font-style: normal;
}

/* Açıklama */
.hero-pro-sub {
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255,255,255,.88);
    margin-bottom: 34px;
    max-width: 520px;
}

/* Butonlar */
.hero-pro-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}
.hero-pro-btns .btn-hero-primary {
    background: var(--white);
    color: var(--navy-900) !important;
    border-color: var(--white);
    box-shadow: 0 8px 28px rgba(0,0,0,.28);
    padding: 14px 30px;
    font-weight: 700;
    border-radius: 6px;
    transition: all .25s ease;
}
.hero-pro-btns .btn-hero-primary:hover {
    background: var(--gold-50, #fffbeb);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0,0,0,.32);
}
.hero-pro-btns .btn-hero-outline {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--white) !important;
    border: 1.5px solid rgba(255,255,255,.32);
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: all .25s ease;
}
.hero-pro-btns .btn-hero-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.6);
}

/* İstatistikler */
.hero-pro-mini-stats {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(255,255,255,.05);
    width: fit-content;
}
.hero-pro-mini-stat {
    padding: 16px 24px;
    text-align: center;
    min-width: 100px;
    position: relative;
    transition: background .2s ease;
}
.hero-pro-mini-stat + .hero-pro-mini-stat::before {
    content: '';
    position: absolute;
    left: 0; top: 20%; bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,.15);
}
.hero-pro-mini-stat:hover { background: rgba(255,255,255,.08); }
.hero-pro-mini-stat strong {
    display: block;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}
.hero-pro-mini-stat span {
    font-size: .66rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sağ yüzen kart */
.hero-pro-float-card {
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow:
        0 24px 56px rgba(0,0,0,.28),
        0 0 0 1px rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 300px;
    position: relative;
    overflow: hidden;
    animation: heroFloat 5s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-10px) rotate(.3deg); }
}
.hero-pro-float-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(15,52,96,.35);
}
.hero-pro-float-card strong {
    display: block;
    color: var(--navy-900);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.hero-pro-float-card small {
    color: var(--gray-500);
    font-size: .75rem;
}
.hero-pro-float-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--navy-700));
}

/* Slider — ok butonları */
.hero-pro-arrow {
    background: rgba(255,255,255,.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,.22) !important;
    color: var(--white) !important;
    z-index: 10;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    transition: all .25s ease !important;
}
.hero-pro-arrow:hover {
    background: rgba(255,255,255,.95) !important;
    color: var(--navy-900) !important;
    border-color: transparent !important;
    transform: scale(1.08);
}

/* Slider — nokta navigasyon */
.hero-pro-nav {
    position: absolute;
    z-index: 10;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-pro-nav .hero-dot {
    background: rgba(255,255,255,.3);
    border: 1.5px solid rgba(255,255,255,.5);
    padding: 0;
    cursor: pointer;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: all .4s cubic-bezier(.4,0,.2,1);
}
.hero-pro-nav .hero-dot.active {
    background: var(--gold-300);
    border-color: var(--gold-300);
    width: 28px;
    border-radius: 4px;
}

/* Slider — sağ alt sayaç */
.hero-pro-counter {
    position: absolute;
    bottom: 28px;
    right: clamp(20px, 4vw, 52px);
    z-index: 10;
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: rgba(255,255,255,.5);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    font-variant-numeric: tabular-nums;
}
.hero-pro-counter-current {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
}

/* ─── Hakkımızda Split ────────────────────────────────────── */
.about-split { position: relative; overflow: hidden; }
.about-split-img {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-xl); min-height: 420px;
}
.about-split-img img {
    width: 100%; height: 100%; object-fit: cover; min-height: 420px;
    transition: transform .8s ease;
}
.about-split-img:hover img { transform: scale(1.04); }
.about-split-img::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, transparent 50%, rgba(10,37,64,.35) 100%);
}
.about-float-card {
    position: absolute; bottom: 24px; left: 24px; z-index: 2;
    background: var(--white); border-radius: var(--radius-md);
    padding: 16px 22px; box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 14px;
}
.about-float-card i {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient-primary); color: var(--white);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.about-float-card strong { display: block; color: var(--navy-900); font-size: 1.1rem; }
.about-float-card span { font-size: .78rem; color: var(--gray-500); }
.about-dots {
    position: absolute; top: -20px; right: -20px; width: 140px; height: 140px;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231B4B82' fill-opacity='0.12'%3E%3Ccircle cx='2' cy='2' r='2'/%3E%3C/g%3E%3C/svg%3E");
    opacity: .8; z-index: 0;
}

/* ─── Hizmetler — Premium + animasyonlu vektör arka plan ─── */
section.services-showcase {
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #f8fafc 0%, #eef4fa 45%, #f5f8fb 100%);
}

.services-showcase-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    transform: translate(var(--mx, 0), var(--my, 0));
    transition: transform .5s ease-out;
}
.services-showcase-inner {
    position: relative;
    z-index: 2;
}

/* Animasyonlu vektör şekiller */
.services-shape {
    position: absolute;
    color: var(--navy-800);
    opacity: .12;
}
.services-shape--1 {
    width: 320px; height: 320px;
    top: -80px; left: -60px;
    animation: svcFloat1 22s ease-in-out infinite;
}
.services-shape--2 {
    width: 140px; height: 140px;
    top: 18%; right: 8%;
    animation: svcFloat2 18s ease-in-out infinite;
}
.services-shape--3 {
    width: 200px; height: 200px;
    bottom: 12%; left: 6%;
    animation: svcFloat3 26s ease-in-out infinite;
    opacity: .08;
}
.services-shape--4 {
    width: 180px; height: 180px;
    top: 42%; right: -40px;
    animation: svcRotate 30s linear infinite;
    opacity: .1;
}
.services-shape--5 {
    width: 280px; height: 280px;
    bottom: -60px; right: 22%;
    animation: svcPulse 8s ease-in-out infinite;
    opacity: .07;
}
.services-shape--6 {
    width: 160px; height: 160px;
    top: 8%; left: 42%;
    animation: svcFloat2 20s ease-in-out infinite reverse;
    opacity: .09;
}

.services-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(27, 75, 130, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 75, 130, .04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 75%);
}

@keyframes svcFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33%       { transform: translate(24px, 18px) rotate(8deg); }
    66%       { transform: translate(-12px, 28px) rotate(-5deg); }
}
@keyframes svcFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%       { transform: translate(-20px, -24px) rotate(12deg); }
}
@keyframes svcFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(16px, -20px) scale(1.06); }
}
@keyframes svcRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes svcPulse {
    0%, 100% { transform: scale(1); opacity: .07; }
    50%       { transform: scale(1.12); opacity: .12; }
}

/* Kart grid — sayıya göre sütun, son satır ortalanır */
.services-card-grid {
    --svc-gap: 1.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--svc-gap);
}
.services-card-grid-item {
    min-width: 0;
    box-sizing: border-box;
}
.services-card-grid--c1 .services-card-grid-item {
    flex: 0 0 100%;
    max-width: 480px;
}
.services-card-grid--c2 .services-card-grid-item {
    flex: 0 0 calc((100% - var(--svc-gap)) / 2);
    max-width: calc((100% - var(--svc-gap)) / 2);
}
.services-card-grid--c3 .services-card-grid-item {
    flex: 0 0 calc((100% - var(--svc-gap) * 2) / 3);
    max-width: calc((100% - var(--svc-gap) * 2) / 3);
}
.services-card-grid--c4 .services-card-grid-item {
    flex: 0 0 calc((100% - var(--svc-gap) * 3) / 4);
    max-width: calc((100% - var(--svc-gap) * 3) / 4);
}

@media (max-width: 991px) {
    .services-card-grid--c3 .services-card-grid-item,
    .services-card-grid--c4 .services-card-grid-item {
        flex: 0 0 calc((100% - var(--svc-gap)) / 2);
        max-width: calc((100% - var(--svc-gap)) / 2);
    }
}
@media (max-width: 575px) {
    .services-card-grid-item {
        flex: 0 0 100% !important;
        max-width: 440px !important;
    }
}

.service-card-v2 {
    position: relative;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow:
        0 4px 24px rgba(15, 52, 96, .06),
        0 1px 3px rgba(15, 52, 96, .04);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.service-card-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent, rgba(27, 75, 130, .15), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}
.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow:
        0 24px 48px rgba(15, 52, 96, .12),
        0 8px 20px rgba(15, 52, 96, .06);
    border-color: rgba(27, 75, 130, .18);
}
.service-card-v2:hover::before { opacity: 1; }

.service-card-v2-top {
    height: 210px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--navy-800);
}
.service-card-v2-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.service-card-v2:hover .service-card-v2-top img {
    transform: scale(1.1);
}
.service-card-v2-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 35%,
        rgba(10, 37, 64, .55) 100%
    );
    transition: opacity .35s ease;
}
.service-card-v2:hover .service-card-v2-top::after {
    background: linear-gradient(
        180deg,
        transparent 20%,
        rgba(10, 37, 64, .65) 100%
    );
}

.service-card-v2-num {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(8px);
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, .2);
}

.service-card-v2-icon {
    position: absolute;
    bottom: -24px;
    left: 24px;
    z-index: 4;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 8px 24px rgba(15, 52, 96, .35);
    border: 3px solid var(--white);
    transition: transform .35s ease, box-shadow .35s ease;
}
.service-card-v2:hover .service-card-v2-icon {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 12px 32px rgba(15, 52, 96, .4);
}

.service-card-v2-body {
    padding: 36px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card-v2 h4 {
    font-size: 1.12rem;
    margin-bottom: 10px;
    color: var(--navy-900);
    font-weight: 700;
    line-height: 1.35;
}
.service-card-v2 p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.75;
    flex: 1;
}
.service-card-v2-link {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--navy-800);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--corp-border);
    transition: gap .25s ease, color .25s ease;
}
.service-card-v2-link i {
    transition: transform .25s ease;
}
.service-card-v2-link:hover {
    color: var(--gold-600);
    gap: 12px;
}
.service-card-v2-link:hover i {
    transform: translateX(4px);
}

.services-showcase-cta {
    box-shadow: 0 8px 28px rgba(15, 52, 96, .2);
    transition: transform .25s ease, box-shadow .25s ease;
}
.services-showcase-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(15, 52, 96, .28);
}

@media (max-width: 991px) {
    .services-shape--1 { width: 220px; height: 220px; }
    .services-shape--4 { display: none; }
}
@media (max-width: 767px) {
    .services-shape { opacity: .06; }
    .service-card-v2-top { height: 190px; }
}
@media (prefers-reduced-motion: reduce) {
    .services-shape { animation: none !important; }
}

/* ─── İstatistik Bandı ────────────────────────────────────── */
.stats-band {
    background: linear-gradient(135deg, #0F3460 0%, #1B4B82 50%, #2563A8 100%);
    padding: 56px 0; position: relative; overflow: hidden;
}
.stats-band::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%);
}
.stats-band .container { position: relative; z-index: 1; }
.stats-band-item { text-align: center; padding: 12px; }
.stats-band-icon {
    width: 72px; height: 72px; margin: 0 auto 14px;
    border-radius: 50%; background: rgba(255,255,255,.12);
    border: 2px solid rgba(255,255,255,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--white);
    transition: var(--transition);
}
.stats-band-item:hover .stats-band-icon { background: var(--white); color: var(--navy-800); transform: scale(1.06); }
.stats-band-count { line-height: 1; margin-bottom: 4px; }
.stats-band-number { font-size: 2.5rem; font-weight: 700; color: var(--white); }
.stats-band-suffix { font-size: 1.15rem; color: var(--gold-300); font-weight: 600; margin-left: 2px; }
.stats-band-label { color: rgba(255,255,255,.85); font-size: .88rem; margin-top: 6px; }

/* ─── Split CTA ───────────────────────────────────────────── */
.cta-split { padding: 0; overflow: hidden; }
.cta-split-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
.cta-split-photo { position: relative; min-height: 380px; overflow: hidden; }
.cta-split-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.cta-split-photo:hover img { transform: scale(1.05); }
.cta-split-box {
    background: var(--white); padding: 56px 48px;
    display: flex; flex-direction: column; justify-content: center; position: relative;
}
.cta-split-box::before {
    content: ''; position: absolute; left: 0; top: 48px; bottom: 48px;
    width: 4px; background: var(--gradient-primary); border-radius: 2px;
}
.cta-split-box h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); color: var(--navy-900); margin-bottom: 16px; }
.cta-split-box p { color: var(--gray-500); line-height: 1.8; margin-bottom: 24px; }

/* ─── Belge Alma Süreci — Modern Timeline ─────────────────── */
section.process-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f0f6fc 100%);
    padding: 96px 0 !important;
}

.process-section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.process-section-inner { position: relative; z-index: 2; }

.process-shape {
    position: absolute;
    color: var(--navy-700);
    opacity: .08;
}
.process-shape--1 {
    width: 200px; height: 200px;
    top: 10%; right: 5%;
    animation: processFloat 20s ease-in-out infinite;
}
.process-shape--2 {
    width: 100px; height: 100px;
    bottom: 15%; left: 8%;
    animation: processFloat 16s ease-in-out infinite reverse;
}
.process-shape--3 {
    width: 140px; height: 140px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: processRotate 40s linear infinite;
    opacity: .05;
}
.process-dots-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(27, 75, 130, .08) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 10%, transparent 70%);
}

@keyframes processFloat {
    0%, 100% { transform: translate(0, 0); }
    50%       { transform: translate(12px, -16px); }
}
@keyframes processRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Timeline track — desktop yatay çizgi */
.process-timeline { position: relative; }
.process-timeline-track {
    display: none;
}
@media (min-width: 992px) {
    .process-timeline-track {
        display: block;
        position: absolute;
        top: 118px;
        left: 12.5%;
        right: 12.5%;
        height: 3px;
        z-index: 0;
    }
    .process-timeline-line {
        display: block;
        height: 100%;
        border-radius: 3px;
        background: linear-gradient(90deg, var(--navy-300), var(--navy-600), var(--gold-400), var(--navy-600));
        background-size: 200% 100%;
        animation: processLineFlow 4s ease-in-out infinite;
        opacity: .35;
    }
}
@keyframes processLineFlow {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

.process-timeline-grid { position: relative; z-index: 1; }

/* Adım kartı */
.process-step {
    position: relative;
    height: 100%;
}
.process-step-card {
    position: relative;
    background: rgba(255, 255, 255, .95);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .9);
    box-shadow: 0 8px 32px rgba(15, 52, 96, .08);
    overflow: hidden;
    height: 100%;
    transition: transform .4s cubic-bezier(.4,0,.2,1), box-shadow .4s ease;
}
.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(15, 52, 96, .14);
}

.process-step-watermark {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 4rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--navy-100);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    transition: color .4s ease;
}
.process-step-card:hover .process-step-watermark {
    color: rgba(27, 75, 130, .12);
}

.process-step-media {
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: var(--navy-800);
    overflow: hidden;
}
.process-step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.process-step-card:hover .process-step-media img {
    transform: scale(1.08);
}
.process-step-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 37, 64, .5) 100%);
}
.process-step-badge {
    position: absolute;
    bottom: 10px;
    left: 14px;
    z-index: 2;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--white);
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(6px);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .25);
}

.process-step-icon-wrap {
    display: flex;
    justify-content: center;
    margin-top: -28px;
    position: relative;
    z-index: 3;
}
.process-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(15, 52, 96, .25);
    transition: transform .4s ease, box-shadow .4s ease;
}
.process-step-card:hover .process-step-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(15, 52, 96, .35);
    animation: processIconPulse 1.5s ease infinite;
}
@keyframes processIconPulse {
    0%, 100% { box-shadow: 0 12px 32px rgba(15, 52, 96, .35); }
    50%       { box-shadow: 0 12px 32px rgba(15, 52, 96, .35), 0 0 0 8px rgba(27, 75, 130, .15); }
}

.process-step-body {
    padding: 20px 22px 26px;
    text-align: center;
}
.process-step-body h5 {
    color: var(--navy-900);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.process-step-body p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Adımlar arası ok — sadece lg+ */
.process-step-connector {
    display: none;
}
@media (min-width: 992px) {
    .process-step-connector {
        display: flex;
        align-items: center;
        position: absolute;
        top: 108px;
        right: -18px;
        width: 36px;
        z-index: 5;
        color: var(--navy-400);
    }
    .process-step-connector-line {
        flex: 1;
        height: 2px;
        background: linear-gradient(90deg, var(--navy-300), var(--gold-400));
        margin-right: 2px;
        animation: processConnectorPulse 2s ease-in-out infinite;
    }
    .process-step-connector-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gold-400);
        margin-right: 4px;
        animation: processDotBlink 2s ease-in-out infinite;
    }
    .process-step-connector i {
        font-size: .85rem;
        animation: processArrowMove 1.5s ease-in-out infinite;
    }
    .col-lg-3:last-child .process-step-connector { display: none; }
}
@keyframes processConnectorPulse {
    0%, 100% { opacity: .5; }
    50%       { opacity: 1; }
}
@keyframes processDotBlink {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.3); opacity: .7; }
}
@keyframes processArrowMove {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(4px); }
}

/* Mobil — dikey timeline */
@media (max-width: 991px) {
    section.process-section { padding: 68px 0 !important; }
    .process-step {
        padding-left: 28px;
        border-left: 2px solid var(--navy-100);
        margin-left: 12px;
    }
    .process-step::before {
        content: '';
        position: absolute;
        left: -7px;
        top: 24px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--gradient-primary);
        border: 3px solid var(--white);
        box-shadow: 0 2px 8px rgba(15, 52, 96, .2);
    }
    .col-md-6:last-child .process-step { border-left-color: transparent; }
}
@media (prefers-reduced-motion: reduce) {
    .process-shape,
    .process-timeline-line,
    .process-step-connector-line,
    .process-step-connector-dot,
    .process-step-connector i,
    .process-step-card:hover .process-step-icon {
        animation: none !important;
    }
}

/* ─── Yorumlar ────────────────────────────────────────────── */
.testimonial-section {
    background: var(--corp-bg);
    background-image: radial-gradient(circle at 10% 20%, rgba(27,75,130,.06) 0%, transparent 40%);
}
.testimonial-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 32px; border: 1px solid var(--corp-border);
    box-shadow: var(--shadow-sm); height: 100%; transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-stars { color: var(--gold-500); margin-bottom: 14px; }
.testimonial-text { font-size: 1.02rem; color: var(--gray-700); line-height: 1.85; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--navy-100); }
.testimonial-author strong { display: block; color: var(--navy-900); }
.testimonial-author span { font-size: .8rem; color: var(--gray-500); }

/* ─── Tesis grid ──────────────────────────────────────────── */
.facility-grid-img {
    display: block; border-radius: var(--radius-md); overflow: hidden;
    position: relative; height: 150px; text-decoration: none;
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.facility-grid-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.facility-grid-img:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.facility-grid-img:hover img { transform: scale(1.1); }
.facility-grid-img span {
    position: absolute; inset: 0; z-index: 2;
    display: flex; align-items: flex-end; padding: 14px;
    background: linear-gradient(180deg, transparent 25%, rgba(10,37,64,.88) 100%);
    color: var(--white); font-size: .8rem; font-weight: 600; line-height: 1.3;
}

/* ─── Referans placeholder ──────────────────────────────────── */
.ref-card-img {
    background: var(--white); border: 1px solid var(--corp-border);
    border-radius: var(--radius-md); overflow: hidden;
    min-height: 120px; transition: var(--transition);
}
.ref-card-img:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.ref-card-img .ref-thumb { height: 90px; overflow: hidden; }
.ref-card-img .ref-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ref-card-img .ref-name { padding: 10px 12px; font-size: .82rem; font-weight: 600; color: var(--navy-800); text-align: center; }

.blog-card--live .blog-card-img { height: 240px; }

.footer-social-strip {
    background: var(--navy-800); padding: 14px 0; text-align: center;
}
.footer-social-strip a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.1); color: var(--white);
    margin: 0 6px; transition: var(--transition);
}
.footer-social-strip a:hover { background: var(--white); color: var(--navy-800); }

.section-tag {
    display: inline-block; color: var(--navy-700);
    font-size: var(--text-xs); font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 10px;
    padding-left: 14px; border-left: 3px solid var(--gold-500);
}

.cta-corporate .btn-hero-primary { background: var(--white); color: var(--navy-900) !important; border-color: var(--white); }
.cta-corporate .btn-hero-outline { background: transparent; color: var(--white) !important; border-color: rgba(255,255,255,.5); }
.cta-corporate h2 { color: var(--white); }
.cta-corporate p { color: rgba(255,255,255,.75); }

@media (max-width: 991px) {
    .hero-pro-track { height: clamp(640px, 80vh, 780px); }
    .hero-pro-inner { padding-bottom: 72px; }
    .hero-pro-overlay {
        background: linear-gradient(
            160deg,
            rgba(4, 16, 32, .95)  0%,
            rgba(6, 22, 44, .88) 50%,
            rgba(8, 28, 54, .70) 100%
        );
    }
    .hero-pro-content::before { left: -12px; }
    .hero-pro-title { font-size: 1.85rem; }
    .hero-pro-mini-stat { min-width: calc(33% - 8px); flex: 1; padding: 12px 14px; }
    .hero-pro-mini-stat strong { font-size: 1.25rem; }
    .cta-split-wrap { grid-template-columns: 1fr; }
    .cta-split-photo { min-height: 260px; }
    .cta-split-box { padding: 40px 28px; }
}
@media (max-width: 767px) {
    .hero-pro-btns { flex-direction: column; }
    .hero-pro-btns .btn { width: 100%; text-align: center; }
    .hero-pro-mini-stats { gap: 8px; }
    .hero-pro-mini-stat { min-width: calc(50% - 4px); }
    .hero-pro-counter { display: none; }
    .hero-pro-title { font-size: 1.7rem; }
}
