/*
 * YİĞİDO OTOMOTİV — frontend stil dosyası.
 * Bağımlılık yok (Bootstrap/Tailwind kullanılmaz). Renkler panelden
 * yönetilir ve theme-vars.php tarafından :root'a --c-primary / --c-dark /
 * --c-primary-2 (+ -rgb varyantları) olarak enjekte edilir; burada yalnızca
 * bu değişkenler tüketilir. Diğer tüm token'lar (tipografi, aralık, gölge,
 * radius) burada sabittir.
 */

:root {
    /* Panelden gelmeyen sabit tasarım token'ları */
    --c-heading: #0c1e21;
    --c-body: #364e52;
    --c-body-2: #a9b8b8;
    --c-body-3: #67787a;
    --c-bg: #f6f6f6;
    --c-surface: #ffffff;
    --c-bg-soft: #fbfbfb;
    --c-border: #c9d1d1;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 22px;

    --shadow-sm: 0 4px 20px rgba(0, 0, 0, .05);
    --shadow-md: 0 10px 40px -10px rgba(12, 30, 33, .2);
    --shadow-header: 0 0 15px rgba(0, 0, 0, .1);
    --shadow-dropdown: 0 10px 40px rgba(0, 0, 0, .12);

    --section-y: 110px;
    --header-h: 76px;
    --font-sans: 'Mona Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --z-fab: 1000;
    --z-header: 1002;
    --z-cookie: 1003;
    --z-drawer: 1100;
    --z-lightbox: 1200;
}

@media (min-width: 992px) {
    :root { --header-h: 120px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--c-body);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--c-primary, #ee151f); outline-offset: 2px; }

.container {
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    padding-inline: 24px;
}
@media (max-width: 575.98px) { .container { padding-inline: 18px; } }

main { display: block; overflow-x: hidden; }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: 64px; }
.section--soft { background: var(--c-bg-soft); border-radius: var(--radius-xl); margin-inline: 12px; }
.section--dark { background: var(--c-dark, #242424); color: #fff; border-radius: var(--radius-xl); margin-inline: 12px; }

.section-heading { max-width: 620px; margin-bottom: 44px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading__kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
    color: var(--c-primary, #ee151f); margin-bottom: 12px;
}
.section-heading__kicker::before { content: ''; width: 22px; height: 2px; background: currentColor; display: inline-block; }
.section-heading h2 {
    font-size: clamp(28px, 3.4vw, 42px); line-height: 1.15; font-weight: 600;
    letter-spacing: -.02em; color: var(--c-heading);
}
.section--dark .section-heading h2 { color: #fff; }
.section-heading em, .section-heading span.accent { color: var(--c-primary, #ee151f); font-style: normal; }
.section-heading p { margin-top: 14px; color: var(--c-body-3); font-size: 1.02rem; }
.section--dark .section-heading p { color: rgba(255,255,255,.7); }

/* ---------- Buttons ---------- */
.btn-solid, .btn-outline, .btn-text {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    border-radius: 999px; font-weight: 600; font-size: .95rem;
    padding: 15px 28px; border: 1px solid transparent; transition: all .25s ease;
}
.btn-solid { background: var(--c-primary, #ee151f); color: #fff; }
.btn-solid:hover { background: var(--c-primary-2, #9a0e15); color: #fff; }
.btn-outline { border-color: var(--c-border); color: var(--c-heading); background: transparent; }
.btn-outline:hover { border-color: var(--c-primary, #ee151f); color: var(--c-primary, #ee151f); }
.btn-text { padding: 0; gap: 8px; color: var(--c-heading); font-weight: 600; }
.btn-text::after { content: '\F135'; font-family: 'bootstrap-icons'; transform: rotate(-45deg); transition: transform .25s ease; }
.btn-text:hover::after { transform: rotate(0deg); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

/* ================= HEADER ================= */
.site-header {
    position: absolute; inset-inline: 0; top: 0; z-index: var(--z-header);
    background: transparent; transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.site-header.is-solid, .site-header.is-stuck {
    position: fixed; background: rgba(255, 255, 255, .97); box-shadow: var(--shadow-header);
    backdrop-filter: blur(6px);
}
.site-header--onpage { position: relative; background: #fff; box-shadow: var(--shadow-header); }

.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h); gap: 24px;
    transition: height .25s ease;
}
.site-header__brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.site-header__logo {
    height: 40px; width: auto; object-fit: contain;
    transition: height .25s ease, opacity .2s ease;
}
.site-header__logo--stuck { display: none; }
.site-header--swap-logo.is-stuck .site-header__logo--main,
.site-header--swap-logo.is-solid .site-header__logo--main,
.site-header--swap-logo.site-header--onpage .site-header__logo--main { display: none; }
.site-header--swap-logo.is-stuck .site-header__logo--stuck,
.site-header--swap-logo.is-solid .site-header__logo--stuck,
.site-header--swap-logo.site-header--onpage .site-header__logo--stuck { display: block; }
@media (min-width: 992px) {
    .site-header__logo { height: 100px; }
    .site-header.is-stuck .site-header__inner,
    .site-header.is-solid .site-header__inner { height: 80px; }
    .site-header.is-stuck .site-header__logo,
    .site-header.is-solid .site-header__logo { height: 64px; }
}
@media (max-width: 991.98px) {
    .site-header.is-stuck .site-header__inner,
    .site-header.is-solid .site-header__inner { height: 64px; }
    .site-header.is-stuck .site-header__logo,
    .site-header.is-solid .site-header__logo { height: 34px; }
}
.site-header__name { font-weight: 700; font-size: 1.05rem; color: var(--c-heading); white-space: nowrap; }
.site-header:not(.is-solid):not(.is-stuck):not(.site-header--onpage) .site-header__name { color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.35); }

.site-nav { display: none; }
@media (min-width: 992px) {
    .site-nav { display: block; }
    .site-nav__list { display: flex; align-items: center; gap: 30px; }
    .site-nav__list > li > a {
        font-size: .95rem; font-weight: 600; color: var(--c-heading); position: relative; padding: 6px 0;
    }
    .site-header:not(.is-solid):not(.is-stuck):not(.site-header--onpage) .site-nav__list > li > a { color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.35); }
    .site-nav__list > li > a::after {
        content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
        background: var(--c-primary, #ee151f); transition: width .25s ease;
    }
    .site-nav__list > li > a:hover::after,
    .site-nav__list > li > a.is-active::after { width: 100%; }
    .site-nav__list > li > a.is-active { color: var(--c-primary, #ee151f); }
    .site-header:not(.is-solid):not(.is-stuck):not(.site-header--onpage) .site-nav__list > li > a.is-active {
        color: var(--c-primary, #ee151f); text-shadow: none;
    }
}

.site-header__actions { display: flex; align-items: center; gap: 14px; }
.site-header__cta { display: none; }
@media (min-width: 992px) { .site-header__cta { display: inline-flex; padding: 12px 22px; } }

.nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--c-border);
    background: rgba(255,255,255,.9);
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--c-heading); margin-inline: auto; transition: all .25s ease; }
@media (min-width: 992px) { .nav-toggle { display: none; } }

.mobile-drawer { position: fixed; inset: 0; z-index: var(--z-drawer); visibility: hidden; }
.mobile-drawer.is-open { visibility: visible; }
.mobile-drawer__backdrop {
    position: absolute; inset: 0; background: rgba(12, 30, 33, .5); opacity: 0; transition: opacity .3s ease;
}
.mobile-drawer.is-open .mobile-drawer__backdrop { opacity: 1; }
.mobile-drawer__panel {
    position: absolute; top: 0; right: 0; bottom: 0; width: min(88vw, 360px);
    background: #fff; padding: 26px 22px; overflow-y: auto;
    transform: translateX(100%); transition: transform .35s ease; box-shadow: -20px 0 50px rgba(0,0,0,.2);
}
.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }
.mobile-drawer__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: 0; background: var(--c-bg-soft); border-radius: 999px; font-size: 1.4rem; line-height: 1; color: var(--c-heading); }
.mobile-drawer__list { display: flex; flex-direction: column; margin-top: 46px; }
.mobile-drawer__list li { border-bottom: 1px solid var(--c-border); }
.mobile-drawer__list a { display: block; padding: 14px 2px; font-weight: 600; color: var(--c-heading); }
.mobile-drawer__list a.is-active { color: var(--c-primary, #ee151f); }
.mobile-drawer__phone { display: block; margin-top: 14px; text-align: center; font-weight: 700; color: var(--c-primary, #ee151f); }
.w-100 { width: 100%; }
.mt-4 { margin-top: 1.5rem; }

/* ================= HERO / SLIDER ================= */
/* Tam ilk ekran: overlay navbar (--header-h: 76px / 120px) görselin üstünde
   durur; içerik kalan alanda hizalanır. 100dvh mobil adres çubuğunu takip eder,
   100svh/100vh yedek. */
.hero-slider {
    position: relative; overflow: hidden; display: flex; flex-direction: column;
    background: var(--c-heading);
    min-height: 100vh; min-height: 100svh;
    height: 100vh; height: 100dvh;
}
.hero-slider__track {
    position: relative; display: flex; flex-direction: column;
    flex: 1 1 auto; width: 100%; height: 100%; min-height: 0;
}

.hero-slide {
    position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s ease;
    display: flex; align-items: center;
    padding-top: var(--header-h);
}
.hero-slide.is-active {
    opacity: 1; visibility: visible; position: relative;
    flex: 1 1 auto; height: 100%; min-height: 100%;
}
.hero-slide__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide__bg img, .hero-slide__bg video {
    width: 100%; height: 100%; object-fit: cover; object-position: center center;
    transform: scale(1.04); transition: transform .9s ease;
}
.hero-slide.is-active .hero-slide__bg img,
.hero-slide.is-active .hero-slide__bg video {
    animation: hero-ken 7s ease-out forwards;
}
@keyframes hero-ken {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}
@media (max-width: 767.98px) {
    .hero-slide__bg img, .hero-slide__bg video { object-position: right center; }
}
.hero-slide__scrim {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, rgba(12,30,33,.55) 0%, rgba(12,30,33,.15) 45%, rgba(12,30,33,.65) 100%);
}
.hero-slide__content {
    position: relative; z-index: 2; color: #fff;
    padding-block: 28px 88px;
    max-width: 720px;
}
.hero-slide__badge {
    display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.35); padding: 7px 16px; border-radius: 999px;
    font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px;
}
.hero-slide__title { font-size: clamp(30px, 5vw, 58px); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
.hero-slide__title .accent { color: #ffb3b6; }
.hero-slide__desc { margin-top: 18px; font-size: 1.08rem; color: rgba(255,255,255,.88); max-width: 560px; }
.hero-slide__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-slide__actions .btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.hero-slide__actions .btn-outline:hover { border-color: #fff; color: #fff; }

@media (max-height: 540px) {
    .hero-slider {
        height: auto;
        min-height: 100vh; min-height: 100svh; min-height: 100dvh;
    }
    .hero-slide { align-items: flex-start; }
    .hero-slide.is-active {
        height: auto;
        min-height: 100vh; min-height: 100svh; min-height: 100dvh;
    }
    .hero-slide__content { padding-block: 16px 64px; }
    .hero-slide__title { font-size: clamp(22px, 6vh, 36px); }
    .hero-slide__desc { margin-top: 10px; font-size: .95rem; }
    .hero-slide__actions { margin-top: 16px; }
}

/* Hero metin: her slide aktif olunca sırayla yükselerek gelir */
.hero-slide__badge,
.hero-slide__title,
.hero-slide__desc,
.hero-slide__actions {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
}
.hero-slide.is-active .hero-slide__badge,
.hero-slide.is-active .hero-slide__title,
.hero-slide.is-active .hero-slide__desc,
.hero-slide.is-active .hero-slide__actions {
    animation: hero-text-in .7s cubic-bezier(.22, 1, .36, 1) forwards;
}
.hero-slide.is-active .hero-slide__badge { animation-delay: .12s; }
.hero-slide.is-active .hero-slide__title { animation-delay: .26s; }
.hero-slide.is-active .hero-slide__desc { animation-delay: .4s; }
.hero-slide.is-active .hero-slide__actions { animation-delay: .52s; }
@keyframes hero-text-in {
    from { opacity: 0; transform: translate3d(0, 28px, 0); }
    to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-nav { position: absolute; z-index: 3; bottom: 26px; right: 26px; display: none; gap: 10px; }
@media (min-width: 768px) { .hero-nav { display: flex; } }
.hero-nav button {
    width: 46px; height: 46px; border-radius: 999px; border: 1px solid rgba(255,255,255,.4);
    background: rgba(255,255,255,.12); color: #fff; display: flex; align-items: center; justify-content: center;
}
.hero-nav button:hover { background: var(--c-primary, #ee151f); border-color: var(--c-primary, #ee151f); }

.hero-dots { position: absolute; z-index: 3; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
@media (min-width: 768px) { .hero-dots { left: 26px; transform: none; } }
.hero-dots button { width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.5); border: 0; padding: 0; }
.hero-dots button.is-active { width: 22px; background: #fff; }

/* ================= SERVICES ================= */
#services.section--tight { padding-block: 56px; }
@media (min-width: 992px) {
    #services.section--tight { padding-block: 64px; }
}
.services-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.services-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    margin-top: 10px;
    /* Mobilde kartların kenara yapışmaması için ek boşluk */
    margin-inline: 8px;
}
@media (min-width: 768px) {
    .services-grid {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        margin-inline: 0;
    }
}
@media (min-width: 992px) {
    .services-grid {
        gap: 22px;
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card { border-radius: var(--radius); background: var(--c-surface); border: 1px solid var(--c-border); overflow: hidden; transition: all .3s ease; }
.service-card__link { display: block; padding: 30px 26px; height: 100%; }
.service-card__media { display: block; border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/10; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; }
.service-card__icon {
    display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: var(--radius-sm);
    background: rgba(var(--c-primary-rgb, 238,21,31), .08); color: var(--c-primary, #ee151f); font-size: 1.55rem; margin-bottom: 32px;
}
.service-card__title { display: block; font-size: 1.15rem; font-weight: 600; color: var(--c-heading); margin-bottom: 8px; }
.service-card__desc { display: block; color: var(--c-body-3); font-size: .92rem; line-height: 1.6; }
.service-card__more { display: none; }
.service-card:hover { background: var(--c-primary, #ee151f); border-color: var(--c-primary, #ee151f); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover .service-card__icon { background: rgba(255,255,255,.18); color: #fff; animation: sc-pop .5s ease 1; }
.service-card:hover .service-card__title,
.service-card:hover .service-card__desc { color: #fff; }
@keyframes sc-pop { 0%, 100% { transform: scale(1); } 40% { transform: scale(.82, 1.14); } 70% { transform: scale(1.08, .92); } }

/* ================= ABOUT (RS layout) ================= */
.about-section { background: var(--c-bg-soft, #f6f6f6); }
.about-layout {
    display: grid;
    gap: 18px;
}
@media (min-width: 992px) {
    .about-layout { grid-template-columns: 1fr 1fr; gap: 18px; align-items: stretch; }
}
.about-media { position: relative; align-self: start; }
.about-media__frame {
    border-radius: 12px;
    overflow: hidden;
    height: auto;
    max-height: 480px;
    min-height: 280px;
    background: #ddd;
}
.about-media__frame img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    min-height: 280px;
    object-fit: cover;
    display: block;
}
@media (min-width: 992px) {
    .about-media__frame,
    .about-media__frame img {
        min-height: 360px;
        max-height: 520px;
    }
}
.about-experience {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 230px;
    width: 100%;
    background: var(--c-bg-soft, #f6f6f6);
    padding: 14px 14px 0 0;
    border-top-right-radius: 12px;
}
.about-experience__num,
.about-experience strong {
    display: block;
    background: #fff;
    border-radius: 10px;
    padding: 28px 22px 12px;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    line-height: .9;
    color: var(--c-heading);
}
.about-experience__label {
    display: block;
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 0 22px 22px;
    font-size: .95rem;
    color: var(--c-body-3);
}
.about-main { display: flex; flex-direction: column; gap: 15px; min-width: 0; }
.about-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}
.about-card__title {
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    line-height: 1.15;
    font-weight: 700;
    color: var(--c-heading);
}
.about-card__cta { align-self: flex-start; }
.about-card__cta i { margin-left: 6px; }
.about-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.about-quote-box {
    flex: 1 1 220px;
    background: var(--c-primary, #ee151f);
    color: #fff;
    border-radius: 10px;
    padding: 28px;
}
.about-quote-box__text {
    margin: 0 0 28px;
    font-size: .98rem;
    line-height: 1.65;
    color: rgba(255,255,255,.92);
}
.about-quote-box__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.about-quote-box__meta strong { display: block; font-size: 1rem; }
.about-quote-box__meta span { display: block; font-size: .82rem; opacity: .8; margin-top: 2px; }
.about-quote-box__icon { font-size: 2.2rem; opacity: .85; line-height: 1; }
.about-side-img {
    max-width: 224px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.about-side-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(36,36,36,.22);
}
.about-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
}
@media (max-width: 575.98px) {
    .about-media__frame, .about-media__frame img { min-height: 280px; }
    .about-card { padding: 22px; min-height: 0; }
    .about-quote-box { padding: 18px; }
    .about-side-img { max-width: 100%; }
}

/* ================= CLIENT / BRANDS MARQUEE (RS client-slider) ================= */
.client-section {
    position: relative;
    padding-block: 70px;
    overflow: hidden;
}
.client-section__inner {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
}
.client-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: min(320px, 70vw);
    height: min(320px, 70vw);
    border-radius: 50%;
    border: 1px dashed var(--c-border);
    background: rgba(255, 255, 255, .55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}
.client-content__title {
    max-width: 200px;
    margin: 0;
    font-size: clamp(.95rem, 2.2vw, 1.15rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--c-heading);
    letter-spacing: 0;
}
.client-content__badge {
    display: inline-flex;
    align-items: center;
    background: var(--c-primary, #ee151f);
    color: #fff;
    border-radius: 999px;
    padding: 2px 10px;
    line-height: 1.35;
    margin-bottom: 2px;
}
.client-content__underline {
    color: var(--c-body-3);
    border-bottom: 1px solid rgba(12, 30, 33, .2);
    display: inline;
}
.client-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.client-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 0;
    animation: client-marquee 42s linear infinite;
}
.client-logo {
    flex: 0 0 auto;
    width: 260px;
    height: 128px;
    margin-inline-end: 28px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 22px;
}
.client-logo__img {
    max-width: 82%;
    max-height: 78px;
    width: auto;
    height: auto;
    object-fit: contain;
}
@keyframes client-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .client-marquee__track { animation: none; }
}
@media (max-width: 991.98px) {
    .client-section { padding-block: 50px; }
    .client-section__inner { min-height: 300px; }
    .client-content { width: 220px; height: 220px; }
    .client-logo { width: 200px; height: 104px; margin-inline-end: 18px; }
    .client-logo__img { max-height: 64px; }
}
@media (max-width: 575.98px) {
    .client-content { width: 180px; height: 180px; }
    .client-content__title { font-size: .82rem; max-width: 140px; }
    .client-logo { width: 168px; height: 90px; padding: 12px 14px; }
    .client-logo__img { max-height: 54px; }
}

/* ================= PROCESS ================= */
.process-panel { position: relative; overflow: hidden; padding: 60px 24px; }
@media (min-width: 992px) { .process-panel { padding: 90px 60px; } }
.process-grid { display: grid; gap: 34px; margin-top: 40px; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-step .process-step__no { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.process-step .process-step__num {
    font-size: 88px; font-weight: 700; line-height: 1;
    background: linear-gradient(180deg, var(--c-primary, #ee151f), rgba(238,21,31,0));
    -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 4px;
}
.process-step h3 { color: #fff; font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,.68); font-size: .95rem; line-height: 1.7; }

/* ================= GALLERY ================= */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 576px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid .media-facade { border-radius: var(--radius-sm); overflow: hidden; margin: 0; }
.gallery-grid .media-facade--portrait { grid-row: span 2; }
.media-facade { position: relative; aspect-ratio: 4/3; background: var(--c-bg-soft); }
.media-facade--portrait { aspect-ratio: 3/4; }
.media-facade--square { aspect-ratio: 1/1; }
.media-facade img { width: 100%; height: 100%; object-fit: cover; }
.media-facade__placeholder { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--c-bg-soft), var(--c-border)); }
.media-facade__play {
    position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 999px; border: 0;
    background: rgba(12, 30, 33, .55); color: #fff; display: flex; align-items: center; justify-content: center;
}
.media-facade__play::before { content: '\F4F4'; font-family: 'bootstrap-icons'; font-size: 1.4rem; margin-left: 3px; }
.media-facade__play:hover { background: var(--c-primary, #ee151f); }
.media-facade video, .media-facade iframe { width: 100%; height: 100%; object-fit: cover; border: 0; }
.media-facade--lightbox { cursor: zoom-in; }
.media-facade--lightbox img { transition: transform .35s ease; }
.media-facade--lightbox:hover img { transform: scale(1.04); }
.gallery-cta { text-align: center; margin-top: 34px; }

/* ================= LIGHTBOX (caption/isim yok) ================= */
.lightbox {
    position: fixed; inset: 0; z-index: var(--z-lightbox);
    display: flex; align-items: center; justify-content: center;
    padding: 56px 64px;
    background: rgba(12, 30, 33, .92);
    opacity: 0; visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
    max-width: 100%; max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    user-select: none;
}
.lightbox__close,
.lightbox__nav {
    position: absolute; border: 0; cursor: pointer;
    width: 46px; height: 46px; border-radius: 999px;
    background: rgba(255, 255, 255, .12); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.35rem; line-height: 1;
    transition: background .2s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--c-primary, #ee151f); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__nav--prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__nav[hidden] { display: none; }
@media (max-width: 767.98px) {
    .lightbox { padding: 52px 18px 18px; }
    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
}

/* ================= VIDEOS (shorts) ================= */
.videos-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.shorts-track { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; }
.shorts-track::-webkit-scrollbar { height: 6px; }
.shorts-track::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 999px; }
.shorts-card { flex: 0 0 auto; width: 220px; scroll-snap-align: start; }
.shorts-card .media-facade { border-radius: var(--radius-sm); aspect-ratio: 9/16; }
.shorts-card__title { display: block; margin-top: 10px; font-size: .88rem; font-weight: 600; color: var(--c-heading); }

/* ================= STATS (RS countup band) ================= */
.stats-band {
    position: relative;
    z-index: 2;
    margin-bottom: -100px;
    padding-block: 0;
}
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    background: var(--c-primary, #ee151f);
    border-radius: 12px;
    overflow: hidden;
    color: #fff;
}
.stat-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc(100% / var(--stats-cols, 4));
    padding: 68px 50px 74px;
    min-width: 0;
}
.stat-item__value {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 74px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -1.48px;
    color: #fff;
    font-family: var(--font-sans);
}
.stat-item__num {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}
.stat-item__suffix {
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
    margin-left: 4px;
    transform: none;
}
.stat-item__label {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 14rem;
}
.stat-item__sep {
    position: absolute;
    width: 2px;
    height: 90px;
    top: 50%;
    inset-inline-end: 0;
    transform: translateY(-50%);
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, .85) 0 8px,
        transparent 8px 14px
    );
    opacity: .35;
    pointer-events: none;
}
@media (max-width: 1199.98px) {
    .stat-item { padding: 55px 30px 60px; }
    .stat-item__value { font-size: 65px; }
}
@media (max-width: 991.98px) {
    .stat-item {
        width: 50%;
        padding: 45px 30px 50px;
    }
    .stat-item:nth-child(2n) .stat-item__sep { display: none; }
    .stat-item:nth-child(n + 3) { padding-top: 0; }
    .stat-item__value { font-size: 60px; }
}
@media (max-width: 575.98px) {
    .stat-item {
        width: 100%;
        padding: 38px 16px 45px;
    }
    .stat-item:last-child { padding-bottom: 40px; }
    .stat-item__value {
        font-size: 55px;
        justify-content: center;
    }
    .stat-item__sep {
        width: 90px;
        height: 2px;
        top: auto;
        bottom: 0;
        inset-inline-end: 50%;
        transform: translate(50%, 50%);
        background: repeating-linear-gradient(
            to right,
            rgba(255, 255, 255, .85) 0 8px,
            transparent 8px 14px
        );
    }
    .stat-item:last-child .stat-item__sep { display: none; }
}

/* Countup bir sonraki bölüme biner (RS testimonial overlap) */
.stats-band + .section {
    position: relative;
    z-index: 1;
    padding-top: calc(var(--section-y, 110px) + 72px);
    background: #fbfbfb;
    border-radius: 12px;
    margin-inline: 12px;
}

/* ================= BRANDS (footer text list — anasayfa client-section kullanır) ================= */
.brands-section { padding-block: 10px 36px; }
.brands-panel {
    background: var(--c-bg-soft, #f6f6f6);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 28px 22px 24px;
    text-align: center;
}
.brands-panel__kicker {
    font-size: .95rem;
    font-weight: 600;
    color: var(--c-heading);
    margin: 0 0 18px;
    line-height: 1.45;
}
.brands-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.brands-track__item {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--c-border);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-heading);
}

/* ================= AWARDS ================= */
.awards-section { background: var(--c-bg-soft, #f6f6f6); }
.awards-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 576px) { .awards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 992px) { .awards-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; } }
.award-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.award-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--c-primary-rgb, 238,21,31), .35);
}
.award-card__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 22px 16px 20px;
    color: inherit;
    height: 100%;
}
.award-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: radial-gradient(circle at 50% 40%, #fff 0%, var(--c-bg-soft, #f3f3f3) 70%);
    border: 1px solid var(--c-border);
    margin-bottom: 14px;
    overflow: hidden;
}
.award-card__media img {
    width: 78%;
    height: 78%;
    object-fit: contain;
}
.award-card__body { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.award-card__year {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-primary, #ee151f);
}
.award-card__title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-heading);
    line-height: 1.3;
}
.award-card__sub {
    font-size: .8rem;
    color: var(--c-body-3);
    line-height: 1.4;
}

/* ================= REVIEWS ================= */
.reviews-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.review-card {
    flex: 0 0 auto; width: min(340px, 82vw); scroll-snap-align: start; background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow-sm); padding: 26px; border: 1px solid var(--c-border);
}
.review-card__stars { color: #f59e0b; font-size: .85rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { color: var(--c-heading); font-size: .95rem; line-height: 1.7; }
.review-card__author { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.review-card__avatar {
    width: 38px; height: 38px; border-radius: 999px; background: var(--c-bg-soft); display: flex; align-items: center;
    justify-content: center; font-weight: 700; color: var(--c-body-3);
}
.review-card__author strong { display: block; font-size: .88rem; color: var(--c-heading); }
.review-card__author span { font-size: .76rem; color: var(--c-body-2); }
.reviews-embed { border-radius: var(--radius); overflow: hidden; }

/* ================= FAQ (RS faq-img + call-box) ================= */
.faq-grid { display: grid; gap: 40px; }
@media (min-width: 992px) {
    .faq-grid { grid-template-columns: 1fr 1fr; align-items: start; gap: 48px; }
}
.faq-intro { min-width: 0; }
.faq-visual {
    position: relative;
    height: auto;
    max-height: 640px;
    align-self: start;
}
.faq-visual__media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: auto;
    max-height: 640px;
    min-height: 440px;
    background: var(--c-dark, #242424);
}
.faq-visual__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--c-dark, #242424);
    opacity: .28;
    pointer-events: none;
}
.faq-visual__media img {
    width: 100%;
    height: 100%;
    max-height: 640px;
    min-height: 440px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
}
.faq-visual__copy {
    position: absolute;
    top: 36px;
    left: 28px;
    right: 28px;
    z-index: 2;
    max-width: 400px;
}
.faq-visual__kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.faq-visual__title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.55rem, 2.6vw, 2.35rem);
    font-weight: 700;
    line-height: 1.15;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.faq-call {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    max-width: 240px;
    width: 100%;
    padding: 14px 0 0 14px;
    background: var(--c-bg-soft, #f6f6f6);
    border-top-left-radius: 12px;
}
.faq-call__box {
    background: var(--c-primary, #ee151f);
    border-radius: 10px;
    padding: 24px 20px 28px;
}
.faq-call__label {
    margin: 0 0 22px;
    max-width: 150px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.25;
}
.faq-call__phone {
    display: inline-flex;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.2;
}
.faq-call__phone span {
    position: relative;
    display: inline-block;
}
.faq-call__phone span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: currentColor;
}
.faq-call__phone:hover { color: #fff; opacity: .92; }

/* Görsel yoksa: kırmızı kutu yine belirgin kalsın */
.faq-intro__fallback .faq-call--inline {
    position: static;
    max-width: 280px;
    margin-top: 22px;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

@media (max-width: 575.98px) {
    .faq-visual,
    .faq-visual__media,
    .faq-visual__media img {
        min-height: 320px;
        max-height: 460px;
    }
    .faq-visual__copy { top: 24px; left: 18px; right: 18px; max-width: 280px; }
    .faq-call { max-width: 210px; }
    .faq-call__box { padding: 18px 16px 22px; }
    .faq-call__label { margin-bottom: 14px; }
    .faq-call__phone { font-size: .95rem; }
}

.faq-item { border: 1px solid var(--c-border); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; background: #fff; }
.faq-item__q {
    width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 22px; background: #fff; border: 0; text-align: left; font-weight: 600; color: var(--c-heading); font-size: 1rem;
}
.faq-item__icon {
    flex-shrink: 0; width: 30px; height: 30px; border-radius: 999px; border: 2px solid var(--c-primary, #ee151f);
    display: flex; align-items: center; justify-content: center; transition: transform .25s ease;
}
.faq-item.is-open .faq-item__icon { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; background: #fff; }
.faq-item__a-inner { padding: 0 22px 20px; color: var(--c-body-3); font-size: .95rem; line-height: 1.7; }
.faq-item.is-open .faq-item__q { border-bottom: 1px dashed var(--c-border); }

/* ================= CONTACT ================= */
.contact-panel { display: grid; gap: 40px; padding: 40px 24px; }
@media (min-width: 992px) { .contact-panel { grid-template-columns: 1fr 1fr; padding: 60px; } }
.contact-info-block h2 { color: #fff; }
.contact-info-block .section-heading { margin-bottom: 26px; }
.contact-map { border-radius: var(--radius); overflow: hidden; margin-top: 24px; aspect-ratio: 16/10; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; margin-top: 10px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; color: rgba(255,255,255,.85); }
.contact-info-list i { color: var(--c-primary, #ee151f); font-size: 1.1rem; margin-top: 2px; }
.contact-form { background: #fff; border-radius: var(--radius); padding: 30px; }
.form-row { display: grid; gap: 16px; margin-bottom: 16px; }
@media (min-width: 576px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }
.form-control {
    width: 100%; border: 1px solid var(--c-border); border-radius: var(--radius-sm); padding: 13px 16px;
    font-size: .95rem; background: var(--c-bg-soft); color: var(--c-heading);
}
.form-control:focus { border-color: var(--c-primary, #ee151f); outline: none; background: #fff; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; color: var(--c-body-3); margin-bottom: 18px; }
.form-check input { margin-top: 3px; }
.contact-form .btn-solid { width: 100%; }
.form-note { margin-top: 14px; font-size: .88rem; padding: 12px 14px; border-radius: var(--radius-sm); }
.form-note--success { background: #e9f9ee; color: #14804a; }
.form-note--error { background: #fdecec; color: #b3261e; }

/* ================= PAGE HEADER (RS rs-page-header) ================= */
.page-header {
    margin: 0 12px;
    padding: calc(var(--header-h) + 24px) 24px 80px;
    background-color: var(--c-dark, #242424);
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(238, 21, 31, .18), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 255, 255, .06), transparent 45%);
    background-blend-mode: luminosity, normal;
    border-radius: 0 0 12px 12px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.page-header__inner { text-align: center; }
.page-header__title {
    color: #fff;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}
.page-header__crumb {
    margin-top: 32px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 5px 12px;
    max-width: 100%;
}
.page-header__crumb-item,
.page-header__crumb-current {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    display: inline-block;
    max-width: min(420px, 70vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}
.page-header__crumb-item a {
    color: rgba(255, 255, 255, .72);
}
.page-header__crumb-item a:hover { color: #fff; }
.page-header__sep {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 14px;
    color: var(--c-primary, #ee151f);
}
.page-header__sep i { font-size: 14px; line-height: 1; }
@media (max-width: 991px) {
    .page-header { padding: calc(var(--header-h) + 16px) 16px 56px; }
    .page-header__crumb { margin-top: 25px; }
}
@media (max-width: 767px) {
    .page-header__crumb { flex-wrap: nowrap; overflow: hidden; }
    .page-header__crumb-item,
    .page-header__crumb-current { max-width: 130px; }
}
@media (max-width: 575px) {
    .page-header { margin-inline: 8px; padding-bottom: 48px; }
    .page-header__crumb { gap: 6px; padding: 5px 10px; }
    .page-header__crumb-item,
    .page-header__crumb-current { font-size: 14px; max-width: 100px; }
}

/* ================= BLOG TEASER / LIST (RS blog-item) ================= */
.blog-index-section { padding-top: 70px; }
.blog-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}
.blog-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.blog-card__thumb {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}
.blog-card__thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--c-dark, #242424);
    opacity: .25;
    z-index: 1;
    pointer-events: none;
}
.blog-card__thumb a { display: block; height: 100%; }
.blog-card__thumb img {
    width: 100%;
    min-height: 280px;
    height: 100%;
    object-fit: cover;
    transition: transform .4s linear;
}
.blog-card:hover .blog-card__thumb img {
    transform: scale(1.1) rotate(-2deg);
}
.blog-card__date {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    text-align: center;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 6px;
}
.blog-card__day {
    display: block;
    font-size: 32px;
    color: #fff;
    font-weight: 500;
    letter-spacing: -.96px;
    margin-bottom: 8px;
    line-height: 1;
}
.blog-card__month {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    line-height: 1;
}
.blog-card__body {
    background: #fff;
    padding: 25px 28px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--c-body-2, #6b6b6b);
}
.blog-card__meta a { color: var(--c-body-2, #6b6b6b); font-weight: 500; }
.blog-card__meta a:hover { color: var(--c-primary, #ee151f); }
.blog-card__title {
    margin: 0 0 16px;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--c-heading);
}
.blog-card__title a {
    color: inherit;
    background-image: linear-gradient(to bottom, currentColor 0%, currentColor 100%);
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: 0 85%;
    transition: background-size .3s ease;
}
.blog-card__title a:hover { background-size: 100% 2px; }
.blog-card .btn-text { margin-top: auto; align-self: flex-start; }
.blog-empty { text-align: center; color: var(--c-body-2); padding: 40px 0; }
.blog-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.blog-pagination a, .blog-pagination span {
    width: 40px; height: 40px; border-radius: 999px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--c-border); font-weight: 600; font-size: .88rem; color: var(--c-heading);
}
.blog-pagination a:hover, .blog-pagination .is-active { background: var(--c-primary, #ee151f); border-color: var(--c-primary, #ee151f); color: #fff; }
.blog-categories { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; justify-content: center; }
.blog-categories a { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--c-border); font-size: .85rem; font-weight: 600; color: var(--c-heading); }
.blog-categories a.is-active, .blog-categories a:hover { background: var(--c-primary, #ee151f); border-color: var(--c-primary, #ee151f); color: #fff; }
@media (max-width: 1199px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-card__thumb, .blog-card__thumb img { min-height: 240px; }
}
@media (max-width: 767px) {
    .blog-grid { grid-template-columns: 1fr; gap: 24px; }
    .blog-index-section { padding-top: 48px; }
}

.blog-related { margin-top: 60px; }
.blog-related__title { font-size: 1.3rem; font-weight: 700; color: var(--c-heading); margin-bottom: 24px; }
.blog-detail { max-width: 760px; margin-inline: auto; }
.blog-detail__cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 30px; aspect-ratio: 16/9; }
.blog-detail__cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail__meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: var(--c-body-3); margin-bottom: 16px; }
.blog-detail__title { font-size: clamp(26px, 3.6vw, 40px); font-weight: 700; color: var(--c-heading); line-height: 1.2; margin-bottom: 24px; }
.prose { font-size: 1.02rem; line-height: 1.85; color: var(--c-body); }
.prose h2 { font-size: 1.5rem; font-weight: 700; color: var(--c-heading); margin: 34px 0 14px; }
.prose h3 { font-size: 1.2rem; font-weight: 700; color: var(--c-heading); margin: 26px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; list-style: revert; }
.prose img { border-radius: var(--radius-sm); margin: 20px 0; }
.prose blockquote { border-left: 3px solid var(--c-primary, #ee151f); padding-left: 18px; color: var(--c-body-3); font-style: italic; margin: 22px 0; }
.prose a { color: var(--c-primary, #ee151f); text-decoration: underline; }

/* ================= CTA ================= */
.cta-banner {
    position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 260px;
    display: flex; align-items: center; padding: 40px;
}
.cta-banner--solid {
    min-height: 200px;
    background: linear-gradient(120deg, var(--c-dark, #242424) 0%, #3a3a3a 55%, var(--c-primary, #ee151f) 140%);
}
.cta-banner__bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(36,36,36,.92), rgba(36,36,36,.55) 60%, rgba(36,36,36,.2)); }
.cta-banner__content { position: relative; z-index: 2; color: #fff; max-width: 560px; }
.cta-banner__content h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; margin-bottom: 22px; }

/* ================= FOOTER ================= */
.site-footer { background: var(--c-dark, #242424); color: rgba(255,255,255,.75); margin-top: 60px; padding-top: 50px; }
.footer-brands { text-align: center; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 40px; }
.footer-brands__label { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.footer-brands__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; }
.footer-brands__list li { font-weight: 700; letter-spacing: .04em; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-logo { height: 64px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-logo--custom { filter: none; }
.footer-col p { font-size: .9rem; line-height: 1.7; margin-bottom: 18px; }
.footer-contact-lines { display: flex; flex-direction: column; gap: 10px; font-size: .88rem; }
.footer-contact-lines i { margin-right: 8px; color: var(--c-primary, #ee151f); }
.footer-col h3 { color: #fff; font-size: 1rem; font-weight: 600; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; font-size: .88rem; }
.footer-col ul li a:hover { color: #fff; }
.footer-corporate li { font-size: .84rem; }
.footer-bottom {
    margin-top: 44px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1);
    display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: .82rem;
}
.footer-disclaimer { color: rgba(255,255,255,.45); max-width: 720px; }

/* ================= FLOATING BUTTONS ================= */
.fab-stack { position: fixed; right: 20px; bottom: 20px; z-index: var(--z-fab); display: flex; flex-direction: column; gap: 12px; align-items: center; }
.fab { width: 56px; height: 56px; border-radius: 999px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); position: relative; }
.fab::before { font-family: 'bootstrap-icons'; font-size: 1.5rem; color: #fff; }
.fab--whatsapp { background: linear-gradient(135deg, #22c55e, #15803d); }
.fab--whatsapp::before { content: '\F618'; }
.fab--phone { background: var(--c-primary, #ee151f); }
/* Bootstrap telephone-fill çok kalın; ince stroke SVG (Lucide phone) */
.fab--phone::before {
    content: '';
    width: 24px;
    height: 24px;
    font-size: 0;
    color: transparent;
    background-color: #fff;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.fab-stack:has(.fab:only-child) { align-items: center; }
@keyframes fab-pulse { 0% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); } 70% { box-shadow: 0 0 0 14px rgba(34,197,94,0); } 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); } }
.fab--phone.anim-pulse { animation: fab-pulse-red 2s infinite; }
@keyframes fab-pulse-red { 0% { box-shadow: 0 0 0 0 rgba(238,21,31,.5); } 70% { box-shadow: 0 0 0 14px rgba(238,21,31,0); } 100% { box-shadow: 0 0 0 0 rgba(238,21,31,0); } }
.fab--whatsapp.anim-pulse { animation: fab-pulse 2s infinite; }
.anim-shake { animation: fab-shake 3.5s ease infinite; }
@keyframes fab-shake { 0%, 90%, 100% { transform: rotate(0); } 92% { transform: rotate(-10deg); } 94% { transform: rotate(10deg); } 96% { transform: rotate(-6deg); } 98% { transform: rotate(6deg); } }
.anim-bounce { animation: fab-bounce 2.2s ease infinite; }
@keyframes fab-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ================= COOKIE BANNER ================= */
.cookie-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: var(--z-cookie); max-width: 480px;
    margin-inline: auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 20px;
}
.cookie-banner p { font-size: .85rem; color: var(--c-body-3); margin-bottom: 14px; }
.cookie-banner__actions { display: flex; gap: 10px; }
.cookie-banner__actions .btn-solid, .cookie-banner__actions .btn-outline { padding: 10px 18px; font-size: .85rem; flex: 1; }

/* ================= MISC PAGES ================= */
.page-hero { padding: calc(var(--header-h) + 40px) 0 50px; background: var(--c-bg-soft); }
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--c-heading); }
.page-lead {
    max-width: 640px;
    margin: 0 0 28px;
    color: var(--c-body-3);
    line-height: 1.7;
}
.page-kicker {
    margin: 0 0 16px;
    color: var(--c-primary, #ee151f);
    font-weight: 600;
}

.breadcrumb-nav ol { display: flex; flex-wrap: wrap; gap: 6px; font-size: .85rem; color: var(--c-body-3); margin-bottom: 14px; }
.breadcrumb-nav li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--c-border); }
.breadcrumb-nav a:hover { color: var(--c-primary, #ee151f); }

.service-detail-hero { position: relative; aspect-ratio: 21/9; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 40px; }
.service-detail-hero img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-layout { display: grid; gap: 44px; }
@media (min-width: 992px) { .service-detail-layout { grid-template-columns: 2fr 1fr; } }
.service-sidebar { display: flex; flex-direction: column; gap: 20px; }
.service-sidebar-card { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 24px; }
.service-sidebar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--c-heading); }
.related-service-list li { padding: 10px 0; border-bottom: 1px solid var(--c-border); font-weight: 600; font-size: .92rem; }
.related-service-list li:last-child { border-bottom: 0; }

.privacy-content { max-width: 820px; margin-inline: auto; }

@media (max-width: 991.98px) {
    .section { padding-block: 64px; }
}

/* ================= SCROLL REVEAL ================= */
[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity .7s cubic-bezier(.22, 1, .36, 1),
        transform .7s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
[data-reveal="left"] { transform: translate3d(-22px, 0, 0); }
[data-reveal="right"] { transform: translate3d(22px, 0, 0); }
[data-reveal="zoom"] { transform: scale(.96); }
[data-reveal].is-revealed {
    opacity: 1;
    transform: none;
    will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero-slide,
    .hero-slide__bg img,
    .hero-slide__bg video,
    [data-reveal] {
        transition: none !important;
        animation: none !important;
    }
    .hero-slide__badge,
    .hero-slide__title,
    .hero-slide__desc,
    .hero-slide__actions,
    .hero-slide.is-active .hero-slide__bg img,
    .hero-slide.is-active .hero-slide__bg video {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}
