/* Ana sayfa — tam genişlik hero, görsel öncelik, kart yok, açılış animasyonu */

.page--home .hero {
    width: 100%;
    max-width: none;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    height: 70dvh;
    max-height: 70vh;
    max-height: 70dvh;
    overflow: hidden;
    background-color: var(--color-bg-alt);
}

.hero-slider__track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 0;
}

.hero-slide {
    --hero-slide-fade-dur: 750ms;
    --hero-slide-fade: var(--hero-slide-fade-dur) ease;
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--hero-slide-fade),
        visibility 0s linear var(--hero-slide-fade-dur);
}

.hero-slide.hero-slide--active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
        opacity var(--hero-slide-fade),
        visibility 0s;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.78) 0%,
        rgba(30, 64, 175, 0.42) 48%,
        rgba(15, 23, 42, 0.62) 100%
    );
}

.hero-slide__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-slide__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: var(--space-lg);
    padding-bottom: calc(var(--space-xl) + 3rem);
    box-sizing: border-box;
}

@media (min-width: 640px) {
    .hero-slide__content .container {
        padding-left: clamp(4.25rem, 12vw, 7rem);
    }
}

.hero-slide__copy {
    max-width: 38rem;
}

.hero-slide__copy--animate .hero-slide__eyebrow {
    animation: heroFadeInUp 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.hero-slide__copy--animate .hero-slide__title {
    animation: heroFadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.hero-slide__copy--animate .hero-slide__text {
    animation: heroFadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

.hero-slide__copy--animate .btn--hero {
    animation: heroFadeInUp 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }

    .hero-slide__copy--animate .hero-slide__eyebrow,
    .hero-slide__copy--animate .hero-slide__title,
    .hero-slide__copy--animate .hero-slide__text,
    .hero-slide__copy--animate .btn--hero {
        animation: none;
    }
}

.hero-slide__eyebrow {
    margin: 0 0 var(--space-sm);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #bfdbfe;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.hero-slide__title {
    margin: 0 0 var(--space-md);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.15;
}

.hero-slide__accent {
    font-weight: 800;
    color: #f8fafc;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background: linear-gradient(transparent 62%, rgba(59, 130, 246, 0.42) 62%);
    text-shadow: 0 1px 18px rgba(15, 23, 42, 0.35);
}

@media (min-width: 768px) {
    .hero-slide__title {
        font-size: var(--text-4xl);
    }
}

.hero-slide__text {
    margin: 0 0 var(--space-lg);
    font-size: var(--text-lg);
    color: rgba(248, 250, 252, 0.95);
    line-height: 1.6;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.page--home .btn--hero:hover {
    transform: none;
}

/* Sarmalayıcı: masaüstünde kutu üretmez; mobilde oklar + noktalar tek satır */
.hero-slider__controls {
    display: contents;
}

/* Sol dikey slayt göstergeleri (yuvarlak noktalar + çizgiler) */
.hero-slider__side-nav {
    position: absolute;
    left: clamp(0.65rem, 2.5vw, 1.75rem);
    top: 50%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-slider__side-nav .hero-slider__dots {
    pointer-events: auto;
}

.hero-slider__line {
    display: block;
    width: 1px;
    height: clamp(2rem, 7vh, 3.75rem);
    flex-shrink: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.32) 35%, rgba(255, 255, 255, 0.32) 100%);
}

.hero-slider__line--bottom {
    background: linear-gradient(0deg, transparent 0%, rgba(255, 255, 255, 0.32) 35%, rgba(255, 255, 255, 0.32) 100%);
}

.hero-slider__dots {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0;
    padding: 0.85rem 0;
    background: none;
    border: none;
    box-shadow: none;
}

.hero-slider__dot {
    position: relative;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        width 0.3s ease,
        height 0.3s ease;
}

.hero-slider__dot-inner {
    display: none;
}

.hero-slider__dot:hover {
    background-color: rgba(255, 255, 255, 0.55);
    transform: scale(1.15);
}

.hero-slider__dot--active {
    width: 18px;
    height: 18px;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.hero-slider__dot--active:hover {
    transform: none;
}

.hero-slider__dot--active .hero-slider__dot-inner {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 6px;
    margin: -3px 0 0 -3px;
    border-radius: 50%;
    background-color: #ffffff;
}

.hero-slider__dot:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 4px;
}

/* Oklar: sol alt, yuvarlatılmış kare (önceki düzen) */
.hero-slider__arrows {
    position: absolute;
    left: clamp(0.75rem, 3vw, 1.5rem);
    bottom: clamp(1.25rem, 4vh, 2.25rem);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.hero-slider__arrows .hero-slider__arrow {
    pointer-events: auto;
}

.hero-slider__arrow {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: var(--radius-md);
    background-color: rgba(15, 23, 42, 0.42);
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.hero-slider__arrow svg {
    display: block;
    flex-shrink: 0;
}

.hero-slider__arrow:hover {
    background-color: rgba(30, 58, 138, 0.55);
    border-color: rgba(191, 219, 254, 0.55);
    color: #ffffff;
}

.hero-slider__arrow:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

@media (max-width: 639px) {
    .hero-slider__controls {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        position: absolute;
        left: 0;
        right: 0;
        bottom: calc(var(--space-lg) + env(safe-area-inset-bottom, 0px));
        box-sizing: border-box;
        padding-left: max(clamp(0.65rem, 3.5vw, 1rem), env(safe-area-inset-left, 0px));
        padding-right: max(clamp(0.65rem, 3.5vw, 1rem), env(safe-area-inset-right, 0px));
        z-index: 4;
        pointer-events: none;
    }

    .hero-slider__controls .hero-slider__arrow,
    .hero-slider__controls .hero-slider__dots {
        pointer-events: auto;
    }

    .hero-slider__arrows {
        position: static;
        left: auto;
        bottom: auto;
    }

    .hero-slider__side-nav {
        position: static;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        transform: none;
        flex-direction: row;
        align-items: center;
        width: auto;
        height: auto;
    }

    .hero-slider__line {
        display: none;
    }

    .hero-slider__dots {
        flex-direction: row;
        gap: 0.65rem;
        padding: 0.5rem 0.85rem;
        background-color: rgba(15, 23, 42, 0.35);
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(8px);
    }

    .hero-slider__dot--active {
        width: 16px;
        height: 16px;
    }

    .hero-slider__dot--active .hero-slider__dot-inner {
        width: 5px;
        height: 5px;
        margin: -2.5px 0 0 -2.5px;
    }
}

/* —— Hakkımızda: iki sütun, dikey deneyim şeridi —— */
.page--home .about-block {
    position: relative;
    background-color: #ffffff;
    overflow-x: clip;
}

.page--home .about-block.section--about {
    padding-bottom: clamp(3.5rem, 10vw, 6rem);
}

.about-block__wrap {
    position: relative;
    z-index: 1;
}

.about-block__layout {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    align-items: center;
}

@media (min-width: 900px) {
    .about-block__layout {
        grid-template-columns: minmax(260px, 1.02fr) minmax(0, 1fr);
        gap: clamp(2rem, 4vw, 3.5rem);
    }
}

.about-block__visual {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 28rem;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .about-block__visual {
        margin: 0;
        max-width: none;
    }
}

.about-block__figure {
    flex: 1;
    margin: 0;
    min-width: 0;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: #f1f5f9;
    box-shadow:
        0 16px 40px rgba(15, 23, 42, 0.1),
        0 4px 12px rgba(15, 23, 42, 0.06);
}

.about-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-block__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.15rem;
    flex-shrink: 0;
    margin: 0;
    padding: 0.5rem 0.35rem;
    background: linear-gradient(180deg, #eef2f7 0%, #e2e8f0 100%);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    border: 1px solid #e2e8f0;
    border-left: none;
}

.about-block__badge-text {
    display: block;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    white-space: nowrap;
}

@media (max-width: 899px) {
    .about-block__visual {
        flex-direction: column;
        max-width: 22rem;
    }

    .about-block__figure {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .about-block__badge {
        width: 100%;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border: 1px solid #e2e8f0;
        border-top: none;
        padding: 0.65rem 1rem;
    }

    .about-block__badge-text {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 0.8125rem;
        letter-spacing: 0.08em;
    }
}

.about-block__content {
    position: relative;
    z-index: 2;
    max-width: 36rem;
}

.about-block__kicker {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.about-block__title {
    margin: 0 0 1.15rem;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3.5vw, 2.125rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.about-block__copy {
    margin-bottom: 1.25rem;
}

.about-block__lead {
    margin: 0 0 0.85rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
}

.about-block__lead:last-child {
    margin-bottom: 0;
}

.about-block__list {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.about-block__item {
    position: relative;
    margin-bottom: 0.65rem;
    padding-left: 1.35rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #334155;
}

.about-block__item:last-child {
    margin-bottom: 0;
}

.about-block__item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.page--home .about-block .btn--about {
    display: inline-flex;
    padding: 0.8rem 1.65rem;
    font-size: 0.9375rem;
    font-weight: 700;
    background-color: var(--color-primary-dark);
    color: #ffffff;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px rgba(30, 58, 138, 0.35);
}

.page--home .about-block .btn--about:hover {
    background-color: #172554;
    color: #ffffff;
}

@media (prefers-reduced-motion: reduce) {
    .about-block .btn--about {
        transition: none;
    }
}

/* Sayfa açılış animasyonu */
@media (prefers-reduced-motion: no-preference) {
    .page-home .site-header {
        animation: homeHeaderEnter 0.55s ease-out both;
    }

    .page-home #main-content {
        animation: homeMainEnter 0.68s ease-out 0.08s both;
    }
}

/* Yalnızca opacity: transform, fixed menü panelinin viewport’a göre konmasını bozar (içerme kutusu) */
@keyframes homeHeaderEnter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes homeMainEnter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* —— Hizmetler: kart ızgarası (görsel + ikon rozeti + metin) —— */
.page--home .services-block {
    --services-block-navy: #0f172a;
    --services-block-blue: #2563eb;
    position: relative;
    padding: var(--space-2xl) 0;
    margin: 0;
    background-color: #eef1f5;
    background-image:
        repeating-linear-gradient(
            118deg,
            transparent,
            transparent 11px,
            rgba(148, 163, 184, 0.06) 11px,
            rgba(148, 163, 184, 0.06) 12px
        ),
        repeating-linear-gradient(
            -12deg,
            transparent,
            transparent 24px,
            rgba(148, 163, 184, 0.04) 24px,
            rgba(148, 163, 184, 0.04) 25px
        );
}

.services-block__inner {
    position: relative;
    z-index: 1;
}

.services-block__header {
    margin: 0 auto var(--space-xl);
    max-width: 40rem;
    text-align: center;
}

.services-block__kicker {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-ui);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--services-block-blue);
}

.services-block__title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--services-block-navy);
}

.services-block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.75rem, 4vw, 2.25rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 640px) {
    .services-block__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .services-block__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .services-block__item:last-child:nth-child(3n + 1) {
        grid-column: 1 / -1;
        max-width: 22rem;
        justify-self: center;
    }
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm), 0 12px 32px rgba(15, 23, 42, 0.06);
    overflow: visible;
    transition:
        box-shadow var(--transition),
        transform var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md), 0 16px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-3px);
}

.service-card__visual {
    position: relative;
}

.service-card__media {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    aspect-ratio: 3 / 2;
    background-color: var(--color-bg-alt);
}

.service-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__icon-badge {
    position: absolute;
    left: 50%;
    bottom: -1.875rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.75rem;
    height: 3.75rem;
    transform: translateX(-50%);
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--services-block-blue);
    border: 2px solid rgba(37, 99, 235, 0.35);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.service-card__icon-svg {
    display: block;
    flex-shrink: 0;
}

.service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md) var(--space-md) var(--space-lg);
    padding-top: calc(1.875rem + var(--space-md));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background-color: #ffffff;
}

.service-card__title {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1.25;
    color: var(--services-block-navy);
}

.service-card__text {
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.55;
    color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
    .service-card:hover {
        transform: none;
    }
}

/* —— Hizmetler: mavi / beyaz 50%, büyük daire kartlar, carousel —— */
.page--home .services-showcase {
    --services-accent: #60a5fa;
    --services-accent-deep: #3b82f6;
    --service-disc-size: min(17.25rem, calc(100vw - 6.5rem));
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0 4rem;
    margin: 0;
    background: linear-gradient(
        180deg,
        #0f172a 0%,
        #2563eb 38%,
        #3b82f6 50%,
        #ffffff 50%,
        #f8fafc 100%
    );
}

.services-showcase__decor {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: min(48vw, 20rem);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.services-showcase__bg-photo {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?w=1400&q=70");
    background-size: cover;
    background-position: center 35%;
    opacity: 0.07;
    mix-blend-mode: luminosity;
}

.services-showcase__bubbles {
    position: absolute;
    inset: 0;
}

.services-showcase__bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.services-showcase__bubble--1 {
    width: 140px;
    height: 140px;
    left: 5%;
    top: 10%;
}

.services-showcase__bubble--2 {
    width: 72px;
    height: 72px;
    right: 15%;
    top: 8%;
}

.services-showcase__bubble--3 {
    width: 36px;
    height: 36px;
    right: 8%;
    bottom: 18%;
    background: rgba(255, 255, 255, 0.06);
}

.services-showcase__bubble--4 {
    width: 96px;
    height: 96px;
    left: 18%;
    bottom: 5%;
    background: rgba(255, 255, 255, 0.05);
}

.services-showcase__leaf {
    position: absolute;
    right: 10%;
    top: 38%;
    opacity: 0.45;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.06));
}

.services-showcase__inner {
    position: relative;
    z-index: 2;
}

.services-showcase__header {
    text-align: center;
    margin-bottom: 0;
    padding: 0 0.75rem 0.5rem;
}

.services-showcase__heading {
    margin: 0 auto;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.22;
    max-width: 26rem;
}

.services-showcase__heading-line {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 3px rgba(15, 23, 42, 0.25);
}

.services-showcase__heading-accent {
    display: block;
    margin-top: 0.5rem;
    font-size: clamp(1.5rem, 5vw, 2.125rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--services-accent);
    text-shadow: none;
}

.services-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: -4.25rem;
    padding-top: 0.25rem;
}

@media (min-width: 768px) {
    .services-carousel {
        margin-top: -5.25rem;
    }
}

.services-carousel__row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: calc(var(--container-max) + 2rem);
}

@media (min-width: 768px) {
    .services-carousel__row {
        gap: 0.85rem;
    }
}

.services-carousel__nav {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
    border: none;
    border-radius: var(--radius-md);
    background-color: #ffffff;
    color: #94a3b8;
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.08),
        0 8px 24px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition:
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.services-carousel__nav svg {
    display: block;
}

.services-carousel__nav:hover:not(:disabled) {
    color: #64748b;
    box-shadow:
        0 4px 12px rgba(15, 23, 42, 0.1),
        0 12px 28px rgba(15, 23, 42, 0.08);
}

.services-carousel__nav:focus-visible {
    outline: 2px solid var(--services-accent);
    outline-offset: 3px;
}

.services-carousel__nav:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05);
}

.services-carousel__viewport {
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1.25rem 0 0.75rem;
    outline: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.services-carousel__track {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0.5rem 1rem;
    display: flex;
    gap: clamp(1rem, 3vw, 1.75rem);
    width: max-content;
    align-items: flex-start;
}

.services-carousel__cell {
    flex: 0 0 var(--service-disc-size);
    width: var(--service-disc-size);
    scroll-snap-align: center;
}

.service-disc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: var(--service-disc-size);
    height: var(--service-disc-size);
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    padding: 1.35rem 1.15rem 1.15rem;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 50%;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow:
        0 20px 50px rgba(15, 23, 42, 0.12),
        0 4px 14px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.service-disc-card:hover {
    box-shadow:
        0 28px 60px rgba(15, 23, 42, 0.14),
        0 8px 20px rgba(15, 23, 42, 0.07);
    transform: translateY(-4px);
}

.service-disc-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-height: 0;
    width: 100%;
}

.service-disc-card__image-wrap {
    flex-shrink: 0;
    width: 5.75rem;
    height: 5.75rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.65rem;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.service-disc-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-disc-card__title {
    margin: 0 0 0.4rem;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #0f172a;
    line-height: 1.25;
}

.service-disc-card__text {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.45;
    text-align: center;
    color: #64748b;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-disc-card__action {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0.35rem;
    border-radius: var(--radius-md);
    background: linear-gradient(160deg, var(--services-accent) 0%, var(--services-accent-deep) 100%);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.38);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.service-disc-card__action:hover {
    transform: scale(1.07);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(59, 130, 246, 0.45);
}

.service-disc-card__action:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.service-disc-card__chevron {
    display: block;
}

.services-carousel__progress {
    position: relative;
    width: min(22rem, 88%);
    height: 4px;
    margin: 0 auto;
    border-radius: 999px;
    background-color: #e2e8f0;
    overflow: hidden;
}

.services-carousel__progress[hidden] {
    display: none;
}

.services-carousel__progress-thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 35%;
    border-radius: inherit;
    background: linear-gradient(90deg, #475569 0%, #334155 100%);
    transition:
        width 0.08s linear,
        transform 0.08s linear;
}

@media (prefers-reduced-motion: reduce) {
    .service-disc-card:hover {
        transform: none;
    }

    .services-carousel__viewport {
        scroll-behavior: auto;
    }

    .services-carousel__progress-thumb {
        transition: none;
    }
}

@media (max-width: 639px) {
    .services-carousel__nav {
        width: 2.45rem;
        height: 2.45rem;
    }

    .services-carousel__nav svg {
        width: 18px;
        height: 18px;
    }
}

/* —— Galeri: ızgara + öne çıkan overlay —— */
.page--home .work-gallery {
    --gallery-accent: #2563eb;
    position: relative;
    overflow: hidden;
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%, #f1f5f9 100%);
}

.work-gallery__decor {
    position: absolute;
    right: 0;
    top: 0;
    width: min(55vw, 28rem);
    height: min(45vw, 16rem);
    pointer-events: none;
    z-index: 0;
}

.work-gallery__bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.12);
}

.work-gallery__bubble--1 {
    width: 100px;
    height: 100px;
    right: 8%;
    top: 6%;
    opacity: 0.5;
}

.work-gallery__bubble--2 {
    width: 48px;
    height: 48px;
    right: 22%;
    top: 28%;
    opacity: 0.4;
}

.work-gallery__bubble--3 {
    width: 72px;
    height: 72px;
    right: 4%;
    top: 42%;
    opacity: 0.35;
}

.work-gallery__leaf {
    position: absolute;
    left: -2rem;
    top: 38%;
    opacity: 0.65;
    filter: drop-shadow(0 2px 6px rgba(15, 23, 42, 0.08));
}

@media (max-width: 767px) {
    .work-gallery__leaf {
        left: 0.25rem;
        top: 18%;
        width: 36px;
        height: auto;
        opacity: 0.45;
    }
}

.work-gallery__inner {
    position: relative;
    z-index: 1;
}

.work-gallery__header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-sm);
}

.work-gallery__heading {
    margin: 0;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.work-gallery__heading-line {
    display: block;
    font-size: clamp(1.35rem, 3.5vw, 1.875rem);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.work-gallery__heading-accent {
    display: block;
    margin-top: 0.4rem;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--gallery-accent);
}

.work-gallery__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: clamp(0.65rem, 1.5vw, 0.9rem);
    /* 12 sütun: üst sıra üç eşit parça (4+4+4); alt sıra %50 + %25 + %25 (6+3+3) */
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: minmax(220px, 30vw) minmax(180px, 24vw);
}

.work-gallery__item {
    min-height: 0;
}

.work-gallery__item:nth-child(1) {
    grid-column: 1 / 5;
    grid-row: 1;
}

.work-gallery__item:nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1;
}

.work-gallery__item:nth-child(3) {
    grid-column: 9 / 13;
    grid-row: 1;
}

.work-gallery__item:nth-child(4) {
    grid-column: 1 / 7;
    grid-row: 2;
}

.work-gallery__item:nth-child(5) {
    grid-column: 7 / 10;
    grid-row: 2;
}

.work-gallery__item:nth-child(6) {
    grid-column: 10 / 13;
    grid-row: 2;
}

@media (max-width: 767px) {
    .work-gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 0.75rem;
    }

    .work-gallery__item:nth-child(n) {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

.gallery-card {
    position: relative;
    height: 100%;
    min-height: 220px;
    margin: 0;
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: #e2e8f0;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    outline: none;
}

.gallery-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.gallery-card:focus-visible {
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(37, 99, 235, 0.45);
}

@media (prefers-reduced-motion: reduce) {
    .gallery-card:hover {
        transform: none;
    }
}

.gallery-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}

.work-gallery__item--wide .gallery-card {
    min-height: 180px;
}

.work-gallery__item--wide .gallery-card__img {
    min-height: 100%;
}

.gallery-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 1.15rem 1.35rem;
    background: linear-gradient(
        195deg,
        rgba(15, 23, 42, 0.1) 0%,
        rgba(59, 130, 246, 0.55) 42%,
        rgba(30, 64, 175, 0.88) 100%
    );
    opacity: 1;
    transition: opacity 0.28s ease, background 0.28s ease;
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
    .gallery-card__overlay {
        opacity: 0;
    }

    .gallery-card:hover .gallery-card__overlay,
    .gallery-card:focus-within .gallery-card__overlay {
        opacity: 1;
    }
}

@media (hover: hover) and (prefers-reduced-motion: reduce) {
    .gallery-card__overlay {
        opacity: 1;
    }
}

.gallery-card:hover .gallery-card__overlay,
.gallery-card:focus-within .gallery-card__overlay {
    background: linear-gradient(
        195deg,
        rgba(15, 23, 42, 0.15) 0%,
        rgba(59, 130, 246, 0.58) 38%,
        rgba(30, 64, 175, 0.92) 100%
    );
}

.gallery-card__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.gallery-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    align-self: flex-start;
    margin: 0 0 0.6rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(37, 99, 235, 0.95);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.gallery-card__pin {
    flex-shrink: 0;
    display: block;
}

.gallery-card__text {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.94);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* WhatsApp float */
.wa-float {
    position: fixed;
    right: var(--space-md);
    bottom: var(--space-md);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-sm);
    pointer-events: none;
}

.wa-float__bubble {
    max-width: 14rem;
    padding: var(--space-sm) var(--space-md);
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    pointer-events: none;
    opacity: 0;
}

.wa-float__bubble.is-visible {
    opacity: 1;
}

.wa-float__bubble-text {
    font-size: var(--text-sm);
    color: var(--color-text);
    line-height: 1.4;
}

.wa-float__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-md);
    background-color: var(--color-whatsapp);
    color: #fff;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    pointer-events: auto;
}

.wa-float__btn:hover {
    background-color: var(--color-whatsapp-hover);
}

.wa-float__btn:focus-visible {
    outline: 3px solid var(--color-whatsapp-focus-ring);
    outline-offset: 3px;
}

/* İletişim — tek yüzey, bölünmüş sütunlar, kutu ikon yok */
.section--contact {
    background-color: #eef2f7;
}

.contact-panel {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-panel__intro {
    text-align: center;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-panel__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 4vw, 2.125rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    color: #0f172a;
}

.contact-panel__lead {
    margin: 0 auto;
    max-width: 28rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #64748b;
}

.contact-panel__sheet {
    background-color: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow:
        0 4px 6px -1px rgba(15, 23, 42, 0.04),
        0 18px 36px -14px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

.contact-panel__band {
    padding: 1.5rem 1.5rem 1.35rem;
    border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 640px) {
    .contact-panel__band {
        padding: 1.75rem 2rem 1.5rem;
    }
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #64748b;
}

.contact-kicker svg {
    width: 1rem;
    height: 1rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-kicker--wa {
    color: var(--color-primary);
}

.contact-kicker--wa .fa-whatsapp {
    font-size: 1rem;
}

.contact-panel__address {
    font-style: normal;
    margin: 0;
    padding-left: 0.05rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #475569;
}

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

@media (min-width: 900px) {
    .contact-panel__cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.contact-panel__cell {
    padding: 1.5rem 1.5rem 1.65rem;
    border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 900px) {
    .contact-panel__cell {
        padding: 1.65rem 1.75rem 1.75rem;
        border-bottom: none;
    }

    .contact-panel__cell:not(:last-child) {
        border-right: 1px solid #f1f5f9;
    }
}

.contact-panel__cell--accent {
    background-color: #f8fafc;
}

.contact-line {
    display: block;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-line--tel {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.45rem;
}

.contact-line--tel:hover {
    color: var(--color-primary);
}

.contact-line--mail {
    font-size: 0.875rem;
    font-weight: 500;
    color: #475569;
    word-break: break-all;
    line-height: 1.5;
}

.contact-line--mail:hover {
    color: var(--color-primary);
}

.contact-panel__wa-note {
    margin: 0 0 0.85rem;
    font-size: 0.8125rem;
    line-height: 1.45;
    color: #64748b;
}

.contact-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 0.6rem;
    background-color: var(--color-whatsapp);
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
    transition: background-color 0.2s ease;
}

.contact-wa:hover {
    background-color: var(--color-whatsapp-hover);
    color: #ffffff;
}

.contact-wa:focus-visible {
    outline: 3px solid var(--color-whatsapp-focus-ring);
    outline-offset: 2px;
}

.contact-wa__icon {
    font-size: 1.15rem;
}

.contact-panel__wa-num {
    margin: 0;
    font-size: 0.8125rem;
    color: #64748b;
    text-align: center;
}

.contact-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.85rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background-color: #fafafa;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.contact-chip:hover {
    border-color: var(--color-primary);
    background-color: #eff6ff;
    color: var(--color-primary-dark);
}

.contact-chip i {
    width: 1.1rem;
    text-align: center;
    color: var(--color-primary);
}

/* —— Google yorumları —— */
.page--home .section--reviews {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.reviews-intro {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto var(--space-xl);
}

.reviews-intro__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: var(--space-sm);
}

.reviews-intro__g {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    font-family: var(--font-ui);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    background: conic-gradient(from 210deg, #4285f4 0deg 90deg, #ea4335 90deg 180deg, #fbbc04 180deg 270deg, #34a853 270deg 360deg);
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.35);
}

.reviews-intro__label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.reviews-intro__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: #0f172a;
}

.reviews-intro__lead {
    margin: 0 0 var(--space-md);
    font-size: 1rem;
    line-height: 1.55;
    color: #475569;
}

.reviews-intro__rating {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
}

.reviews-intro__stars {
    display: inline-flex;
    gap: 0.15rem;
    color: #fbbc04;
}

.reviews-intro__star {
    flex-shrink: 0;
    display: block;
}

.reviews-intro__score {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.reviews-intro__count {
    font-size: 0.875rem;
    color: #64748b;
}

.reviews-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.g-review-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.35rem;
    background-color: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow var(--transition),
        transform var(--transition);
}

.g-review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .g-review-card:hover {
        transform: none;
    }
}

.g-review-card__header {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.g-review-card__avatar {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background-color: #3b82f6;
}

.reviews-grid li:nth-child(6n + 2) .g-review-card__avatar {
    background-color: #2563eb;
}

.reviews-grid li:nth-child(6n + 3) .g-review-card__avatar {
    background-color: #7c3aed;
}

.reviews-grid li:nth-child(6n + 4) .g-review-card__avatar {
    background-color: #c2410c;
}

.reviews-grid li:nth-child(6n + 5) .g-review-card__avatar {
    background-color: #0369a1;
}

.reviews-grid li:nth-child(6n + 6) .g-review-card__avatar {
    background-color: #1e40af;
}

.g-review-card__meta {
    min-width: 0;
    flex: 1;
}

.g-review-card__name {
    margin: 0 0 0.25rem;
    font-family: var(--font-ui);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0f172a;
}

.g-review-card__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.65rem;
}

.g-review-card__stars {
    display: inline-flex;
    gap: 0.1rem;
    color: #fbbc04;
}

.g-review-card__star {
    flex-shrink: 0;
    display: block;
}

.g-review-card__time {
    font-size: 0.75rem;
    color: #94a3b8;
}

.g-review-card__text {
    flex: 1;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #334155;
}

.g-review-card__foot {
    margin: 1rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid #f1f5f9;
}

.g-review-card__badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #5f6368;
    background-color: #f1f3f4;
    border-radius: 4px;
}

.reviews-footer {
    margin: var(--space-xl) 0 0;
    text-align: center;
}

.reviews-footer__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition:
        color var(--transition),
        border-color var(--transition);
}

.reviews-footer__link:hover {
    color: var(--color-primary-dark);
    border-bottom-color: currentColor;
}

.reviews-footer__link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
    border-radius: 2px;
}

/* --- Scroll reveal (ana sayfa): metin DOM’da kalır; yalnızca görsel geçiş — SEO için içerik gizlenmez (reduced-motion / JS yok) --- */
html.js-scroll-reveal .page--home .scroll-reveal:not(.is-inview) .scroll-reveal__el {
    opacity: 0;
    transform: translate3d(0, 1.25rem, 0);
}

html.js-scroll-reveal .page--home .scroll-reveal.is-inview .scroll-reveal__el {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition:
        opacity 0.65s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hakkımızda: iki sütun sıralı */
html.js-scroll-reveal .page--home #hakkimizda.scroll-reveal.is-inview .about-block__visual.scroll-reveal__el {
    transition-delay: 0.05s;
}

html.js-scroll-reveal .page--home #hakkimizda.scroll-reveal.is-inview .about-block__content.scroll-reveal__el {
    transition-delay: 0.16s;
}

/* Hizmetler: başlık + kartlar */
html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__header.scroll-reveal__el {
    transition-delay: 0.04s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(1) {
    transition-delay: 0.12s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(2) {
    transition-delay: 0.2s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(3) {
    transition-delay: 0.28s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(4) {
    transition-delay: 0.36s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(5) {
    transition-delay: 0.44s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(6) {
    transition-delay: 0.52s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(7) {
    transition-delay: 0.6s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(8) {
    transition-delay: 0.68s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(9) {
    transition-delay: 0.76s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(10) {
    transition-delay: 0.84s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(11) {
    transition-delay: 0.92s;
}

html.js-scroll-reveal .page--home #hizmetler.scroll-reveal.is-inview .services-block__item.scroll-reveal__el:nth-child(12) {
    transition-delay: 1s;
}

/* Galeri */
html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__header.scroll-reveal__el {
    transition-delay: 0.04s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(1) {
    transition-delay: 0.1s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(2) {
    transition-delay: 0.18s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(3) {
    transition-delay: 0.26s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(4) {
    transition-delay: 0.34s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(5) {
    transition-delay: 0.42s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(6) {
    transition-delay: 0.5s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(7) {
    transition-delay: 0.58s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(8) {
    transition-delay: 0.66s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(9) {
    transition-delay: 0.74s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(10) {
    transition-delay: 0.82s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(11) {
    transition-delay: 0.9s;
}

html.js-scroll-reveal .page--home #calismalar.scroll-reveal.is-inview .work-gallery__item.scroll-reveal__el:nth-child(12) {
    transition-delay: 0.98s;
}

/* Yorumlar */
html.js-scroll-reveal .page--home #yorumlar.scroll-reveal.is-inview .reviews-intro.scroll-reveal__el {
    transition-delay: 0.04s;
}

html.js-scroll-reveal .page--home #yorumlar.scroll-reveal.is-inview .reviews-grid > .scroll-reveal__el:nth-child(1) {
    transition-delay: 0.12s;
}

html.js-scroll-reveal .page--home #yorumlar.scroll-reveal.is-inview .reviews-grid > .scroll-reveal__el:nth-child(2) {
    transition-delay: 0.2s;
}

html.js-scroll-reveal .page--home #yorumlar.scroll-reveal.is-inview .reviews-grid > .scroll-reveal__el:nth-child(3) {
    transition-delay: 0.28s;
}

html.js-scroll-reveal .page--home #yorumlar.scroll-reveal.is-inview .reviews-grid > .scroll-reveal__el:nth-child(4) {
    transition-delay: 0.36s;
}

html.js-scroll-reveal .page--home #yorumlar.scroll-reveal.is-inview .reviews-grid > .scroll-reveal__el:nth-child(5) {
    transition-delay: 0.44s;
}

html.js-scroll-reveal .page--home #yorumlar.scroll-reveal.is-inview .reviews-grid > .scroll-reveal__el:nth-child(6) {
    transition-delay: 0.52s;
}

html.js-scroll-reveal .page--home #yorumlar.scroll-reveal.is-inview .reviews-grid > .scroll-reveal__el:nth-child(7) {
    transition-delay: 0.6s;
}

html.js-scroll-reveal .page--home #yorumlar.scroll-reveal.is-inview .reviews-grid > .scroll-reveal__el:nth-child(8) {
    transition-delay: 0.68s;
}

html.js-scroll-reveal .page--home #yorumlar.scroll-reveal.is-inview .reviews-footer.scroll-reveal__el {
    transition-delay: 0.76s;
}

/* İletişim */
html.js-scroll-reveal .page--home #iletisim.scroll-reveal.is-inview .contact-panel.scroll-reveal__el {
    transition-delay: 0.06s;
}

@media (prefers-reduced-motion: reduce) {
    html.js-scroll-reveal .page--home .scroll-reveal .scroll-reveal__el {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

