/* =========================================================================
   KURUMSAL 05 — ENDÜSTRİYEL TURUNCU TEMA
   data-site="meridian" kapsamında aktif olur
   ========================================================================= */

/* ---------- Design Tokens ---------- */
:root {
    --ink: #0F1419;
    --steel: #1A1D23;
    --steel-soft: #262A33;
    --slate: #64748B;
    --slate-muted: #94A3B8;
    --border: #E2E8F0;
    --border-strong: #CBD5E1;
    --bg: #FFFFFF;
    --bg-alt: #F5F5F7;
    --bg-dim: #EEF0F3;
    --accent: #E86A1C;
    --accent-dark: #C65410;
    --accent-light: #FF8A3D;
    --accent-tint: #FFF4EC;
    --accent-faint: #FFF4EC;
    --white: #FFFFFF;
    --surface: #FFFFFF;
    --text: #0F1419;
    --text-muted: #64748B;
    --radius: 0;
    --radius-sm: 4px;
    --radius-pill: 999px;
    --shadow-card: 0 2px 12px rgba(15, 20, 25, .05);
    --shadow-hover: 0 12px 28px rgba(15, 20, 25, .10);
    --shadow-drop: 0 24px 60px -20px rgba(15, 20, 25, .22);
    --container: 1280px;
    --container-narrow: 960px;
    --header-h: 84px;
    --topbar-h: 40px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent); }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.01em; }
p { color: var(--slate); }
strong, b { color: var(--ink); font-weight: 600; }
::selection { background: var(--accent); color: var(--white); }
::-moz-selection { background: var(--accent); color: var(--white); }

/* Scrollbar — brand renkli */
html { scrollbar-color: var(--accent) var(--bg, #f5f5f5); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg, #f5f5f5); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; border: 2px solid var(--bg, #f5f5f5); }
::-webkit-scrollbar-thumb:hover { background: var(--ink, #0f1419); }

/* ---------- Utilities ---------- */
.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}
@media (min-width: 1024px) {
    .container { padding: 0 48px; }
}
.page-wrap {
    padding: clamp(48px, 8vw, 96px) 0;
    background: var(--bg);
}

/* ---------- Buttons ---------- */
.btn-primary,
.btn-eborsa,
.btn-form-submit,
.cta-btn,
.detay-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
    white-space: nowrap;
    border: 1px solid transparent;
    text-decoration: none;
}
.btn-primary,
.cta-btn--fill,
.btn-form-submit,
.detay-cta-btn {
    background: var(--accent);
    color: var(--white) !important;
    border-color: var(--accent);
}
.btn-primary:hover,
.cta-btn--fill:hover,
.btn-form-submit:hover,
.detay-cta-btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.btn-primary i,
.cta-btn i,
.btn-form-submit i,
.detay-cta-btn i {
    font-size: 12px;
    transition: transform .25s var(--ease);
}
.btn-primary:hover i,
.cta-btn:hover i,
.btn-form-submit:hover i,
.detay-cta-btn:hover i {
    transform: translateX(4px);
}
.btn-eborsa {
    background: var(--ink);
    color: var(--white) !important;
    border-color: var(--ink);
    padding: 12px 22px;
    font-size: 13px;
}
.btn-eborsa:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white) !important;
}
.btn-eborsa .btn-eborsa-ico {
    font-size: 11px;
    transition: transform .25s var(--ease);
}
.btn-eborsa:hover .btn-eborsa-ico { transform: translate(2px, -2px); }

.btn-form-submit:disabled,
.btn-form-submit[disabled] {
    background: #9aa3b2 !important;
    color: #fff !important;
    cursor: not-allowed !important;
    opacity: .85 !important;
    pointer-events: none;
    border-color: #9aa3b2 !important;
}

/* ---------- Header / Topbar ---------- */
.topbar {
    background: var(--steel);
    color: var(--white);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--topbar-h);
    padding-top: 6px;
    padding-bottom: 6px;
    gap: 16px;
}
.topbar-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.topbar-left a {
    color: rgba(255,255,255,0.78);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s var(--ease);
}
.topbar-left a i { color: var(--accent); font-size: 11px; }
.topbar-left a:hover { color: var(--white); }
.topbar-right.topbar-social {
    display: flex;
    gap: 4px;
}
.topbar-social a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    border: 1px solid transparent;
    transition: all .2s var(--ease);
    font-size: 13px;
}
.topbar-social a:hover {
    color: var(--accent);
    border-color: rgba(232, 106, 28, 0.4);
}
@media (max-width: 767px) {
    .topbar-left { font-size: 12px; gap: 14px; }
    .topbar-right { display: none; }
}

.header-wrap {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 90;
    transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.header-wrap.is-scrolled {
    box-shadow: 0 2px 12px rgba(15, 20, 25, 0.06);
}
.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-h);
}
.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--ink);
}
.brand-logo {
    max-height: 48px;
    width: auto;
}
.brand-text strong {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

/* Desktop nav */
.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nav-main {
    display: flex;
    gap: 4px;
    align-items: center;
}
.nav-top,
.nav-dd-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-weight: 500;
    font-size: 15px;
    color: var(--ink);
    position: relative;
    transition: color .2s var(--ease);
}
.nav-top::after,
.nav-dd-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .3s var(--ease), left .3s var(--ease);
}
.nav-top:hover,
.nav-dd-btn:hover,
.nav-top.active {
    color: var(--accent);
}
.nav-top:hover::after,
.nav-dd-btn:hover::after,
.nav-top.active::after {
    width: 24px;
    left: calc(50% - 12px);
}
.nav-dd-btn i {
    font-size: 10px;
    transition: transform .2s var(--ease);
}
.nav-dd { position: relative; }
.nav-dd-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--white);
    border: 1px solid var(--border);
    min-width: 260px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-drop);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
    z-index: 100;
}
/* Hover köprüsü: panel üstüyle buton arasındaki boşluğu dolduran görünmez alan
   (mouse aşağı inerken dropdown'un kapanmasını engeller) */
.nav-dd-panel::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel,
.nav-dd.open .nav-dd-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dd:hover .nav-dd-btn,
.nav-dd:focus-within .nav-dd-btn,
.nav-dd.open .nav-dd-btn {
    color: var(--accent);
}
.nav-dd:hover .nav-dd-btn::after,
.nav-dd:focus-within .nav-dd-btn::after,
.nav-dd.open .nav-dd-btn::after {
    width: 24px;
    left: calc(50% - 12px);
}
.nav-dd:hover .nav-dd-btn i,
.nav-dd:focus-within .nav-dd-btn i,
.nav-dd.open .nav-dd-btn i { transform: rotate(180deg); }
.nav-dd-panel a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--ink);
    border-left: 2px solid transparent;
    transition: all .2s var(--ease);
}
.nav-dd-panel a:hover {
    background: var(--accent-tint);
    color: var(--accent);
    border-left-color: var(--accent);
}
@media (max-width: 1023px) {
    .nav-desktop { display: none; }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    padding: 0;
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: transform .3s var(--ease), opacity .2s var(--ease);
    transform-origin: center;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
@media (max-width: 1023px) {
    .hamburger { display: flex; }
    .header-main .btn-eborsa { display: none; }
}

/* ---------- Mobile Nav ---------- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 20, 25, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 150;
    transition: opacity .3s var(--ease), visibility .3s;
}
.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(360px, 85vw);
    background: var(--white);
    z-index: 160;
    transform: translateX(100%);
    transition: transform .35s var(--ease-out);
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.mobile-nav-logo { max-height: 44px; width: auto; }
.mobile-nav-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}
.mobile-nav-close {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 20px;
    transition: color .2s var(--ease), background .2s var(--ease);
}
.mobile-nav-close:hover {
    background: var(--bg-alt);
    color: var(--accent);
}
.mobile-nav-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
}
.mobile-nav-list > li > a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    border-left: 3px solid transparent;
    transition: all .2s var(--ease);
}
.mobile-nav-list > li > a:hover {
    background: var(--accent-tint);
    color: var(--accent);
    border-left-color: var(--accent);
}
.mobile-dd-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    text-align: left;
    transition: color .2s var(--ease);
}
.mobile-dd-toggle i { font-size: 12px; transition: transform .3s var(--ease); }
.mobile-dd.open .mobile-dd-toggle i { transform: rotate(180deg); }
.mobile-dd.open .mobile-dd-toggle { color: var(--accent); }
.mobile-dd-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
    padding-left: 16px;
}
.mobile-dd.open .mobile-dd-list {
    max-height: 500px;
}
.mobile-dd-list li a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--slate);
    border-left: 2px solid var(--border);
    transition: all .2s var(--ease);
}
.mobile-dd-list li a:hover {
    color: var(--accent);
    border-left-color: var(--accent);
}
.mobile-nav .btn-eborsa {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ---------- Hero Slider ---------- */
.hero-section {
    position: relative;
    background: var(--steel);
    overflow: hidden;
}
.hero-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.hero-swiper .swiper-wrapper {
    display: flex;
    will-change: transform;
}
.hero-swiper .swiper-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 16 / 7;
    max-height: 78vh;
    min-height: 420px;
    overflow: hidden;
}
.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78) contrast(1.05);
}
.hero-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,20,25,0.55) 0%, rgba(15,20,25,0.15) 60%, rgba(15,20,25,0.45) 100%);
    pointer-events: none;
}
.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 6px;
    background: var(--accent);
    z-index: 2;
}
.hero-swiper.is-grabbing { cursor: grabbing; }
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: all .25s var(--ease);
}
.hero-swiper .swiper-button-prev::before { content: '\f053'; }
.hero-swiper .swiper-button-next::before { content: '\f054'; }
.hero-swiper .swiper-button-prev::before,
.hero-swiper .swiper-button-next::before {
    font-family: 'Font Awesome 7 Free', 'Font Awesome 6 Free', 'FontAwesome';
    font-weight: 900;
    font-size: 16px;
}
.hero-swiper .swiper-button-prev { left: 24px; }
.hero-swiper .swiper-button-next { right: 24px; }
.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.hero-swiper .swiper-pagination {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}
.swiper-pagination-bullet {
    width: 32px;
    height: 3px;
    background: rgba(255,255,255,0.4);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: background .25s var(--ease), width .25s var(--ease);
}
.swiper-pagination-bullet-active {
    background: var(--accent);
    width: 56px;
}
@media (max-width: 767px) {
    .hero-swiper .swiper-slide { aspect-ratio: 4 / 5; min-height: 480px; max-height: 85vh; }
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next { display: none; }
}

/* Hero Text Overlay */
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    pointer-events: none;
}
.hero-content .container {
    padding-top: 40px;
    padding-bottom: 80px;
    width: 100%;
}
.hero-inner {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    pointer-events: auto;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0;
    width: fit-content;
}
.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}
.hero-title {
    color: var(--white);
    font-size: clamp(2rem, 5.5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin: 0;
    max-width: 640px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero-subtitle {
    color: rgba(255,255,255,0.88);
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.6;
    max-width: 580px;
    margin: 0;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    transition: background .25s var(--ease), border-color .25s var(--ease);
}
.hero-btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}
@media (max-width: 767px) {
    .hero-content .container { padding-top: 24px; padding-bottom: 60px; }
    .hero-inner { gap: 14px; }
    .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
    .hero-btn-ghost { justify-content: center; }
}

/* ---------- Stats Band ---------- */
.stats-band {
    background: var(--steel);
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.stats-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0.15);
    transform-origin: left;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 36px 28px;
    border-left: 1px solid rgba(255,255,255,0.08);
    position: relative;
}
.stat-item:first-child { border-left: 0; }
.stat-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 28, 0.12);
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}
.stat-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.25rem, 4.2vw, 3rem);
    font-weight: 700;
    line-height: 1;
    color: var(--accent);
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
@media (max-width: 767px) {
    .stat-item { padding: 24px 20px; border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
    .stat-item:first-child { border-top: 0; }
}

/* ---------- Testimonials ---------- */
.block-testimonials,
.testimonials-page {
    padding: clamp(64px, 9vw, 112px) 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.testimonials-head,
.testimonials-page-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.testimonials-page-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0; }
.testimonials-page-head p { color: var(--slate); font-size: 17px; margin: 0; }
.testimonials-empty {
    text-align: center;
    color: var(--slate);
    padding: 64px 0;
    font-size: 17px;
}
.testimonials-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0;
}
.testimonials-eyebrow::before,
.testimonials-eyebrow::after {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}
.testimonials-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin: 0; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 36px 32px 28px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}
.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 32px;
    color: var(--accent-tint);
    line-height: 1;
    pointer-events: none;
}
.testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink);
    margin: 0;
    font-style: normal;
    padding: 0;
    border: 0;
    background: transparent;
    flex: 1;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    margin: 0;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-alt);
}
.testimonial-avatar--initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.testimonial-author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}
.testimonial-name {
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.3;
    font-family: 'Outfit', sans-serif;
}
.testimonial-role {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.4;
}

/* ---------- Clients / Referanslar ---------- */
.clients-strip {
    padding: clamp(40px, 6vw, 64px) 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.clients-eyebrow {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--slate);
    margin: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.clients-eyebrow::before,
.clients-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: var(--border-strong);
}
.clients-track-wrap {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.clients-track {
    display: flex;
    align-items: center;
    gap: 56px;
    animation: clients-scroll 30s linear infinite;
    width: max-content;
}
.clients-strip:hover .clients-track {
    animation-play-state: paused;
}
.client-logo {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity .25s var(--ease), filter .25s var(--ease);
}
.client-logo:hover,
.client-logo a:hover {
    opacity: 1;
    filter: grayscale(0);
}
.client-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
@keyframes clients-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
    .clients-track { gap: 32px; }
    .client-logo { width: 120px; height: 60px; }
}

/* ---------- Feature Cards ---------- */
.feature-cards {
    background: var(--bg-alt);
    padding: clamp(48px, 7vw, 80px) 0;
    border-bottom: 1px solid var(--border);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.feature-card {
    background: var(--white);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: background .25s var(--ease);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width .3s var(--ease);
}
.feature-card:hover::before { width: 100%; }
.feature-card:hover { background: #FAFAFB; }
.fc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent-tint);
    color: var(--accent);
    font-size: 22px;
    flex-shrink: 0;
}
.feature-card h3 {
    font-size: 1.15rem;
    color: var(--ink);
}
.feature-card p {
    color: var(--slate);
    font-size: 15px;
    line-height: 1.65;
}

/* ---------- About ---------- */
.block-about {
    padding: clamp(64px, 9vw, 112px) 0;
    background: var(--bg);
}
.about-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.about-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--bg-alt);
}
.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
    border-top: 6px solid var(--accent);
    border-left: 6px solid var(--accent);
    z-index: 2;
}
.about-visual::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48px;
    height: 48px;
    border-bottom: 6px solid var(--accent);
    border-right: 6px solid var(--accent);
    z-index: 2;
}
.about-visual-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--accent);
    color: var(--white);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 3;
}
.about-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-kicker,
.values-eyebrow,
.detay-cta-eyebrow,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    width: fit-content;
}
.about-kicker::before,
.values-eyebrow::before,
.detay-cta-eyebrow::before,
.section-label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
    display: inline-block;
}
.about-panel h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: var(--ink);
}
.about-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 500;
}
.about-body {
    color: var(--slate);
    font-size: 16px;
    line-height: 1.75;
}
.about-body p { margin-bottom: 12px; color: var(--slate); }
.about-body p:last-child { margin-bottom: 0; }
.about-body ul,
.about-body ol { margin: 12px 0 12px 20px; color: var(--slate); }
.about-body ul li,
.about-body ol li { margin-bottom: 8px; }
.about-body ul li { list-style: none; position: relative; padding-left: 24px; }
.about-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 7 Free', 'Font Awesome 6 Free', 'FontAwesome';
    font-weight: 900;
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 13px;
}
.about-actions {
    margin-top: 8px;
}
@media (max-width: 900px) {
    .about-shell { grid-template-columns: 1fr; }
    .about-visual { max-width: 480px; margin: 0 auto; }
}

/* ---------- Values ---------- */
.block-values {
    padding: clamp(64px, 9vw, 112px) 0;
    background: var(--bg-alt);
    position: relative;
}
.block-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}
.values-head {
    max-width: 720px;
    margin-bottom: 56px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.values-head h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
.values-head p { color: var(--slate); font-size: 17px; }
.values-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.value-tile {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.value-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}
.value-tile::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-right: 24px solid var(--border);
    transition: border-right-color .3s var(--ease);
}
.value-tile:hover::after { border-right-color: var(--accent); }
.value-tile-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-tint);
    color: var(--accent);
    font-size: 22px;
    flex-shrink: 0;
}
.value-tile h3 { font-size: 1.1rem; color: var(--ink); }
.value-tile p { color: var(--slate); font-size: 15px; line-height: 1.65; }

/* ---------- Services ---------- */
.block-hizmetler {
    padding: clamp(64px, 9vw, 112px) 0;
    background: var(--bg);
}
.hizmetler-title-wrap {
    margin-bottom: 48px;
    text-align: center;
}
.hizmetler-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    position: relative;
    display: inline-block;
}
.hizmetler-title .accent { color: var(--accent); }
.hizmetler-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
}
.hizmetler-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.gs-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    padding: 36px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--ink);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    transition: all .3s var(--ease);
}
.gs-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--ink);
    z-index: 0;
    transition: width .4s var(--ease-out);
}
.gs-card > * { position: relative; z-index: 1; transition: color .3s var(--ease); }
.gs-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 0;
    background: var(--accent);
    transition: height .3s var(--ease);
}
.gs-card:hover {
    border-color: var(--ink);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.gs-card:hover::before { width: 100%; }
.gs-card:hover::after { height: 100%; }
.gs-card-title {
    font-size: 1.35rem;
    line-height: 1.25;
    color: inherit;
}
.gs-card:hover .gs-card-title { color: var(--white); }
.gs-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.gs-card-cta i { transition: transform .25s var(--ease); }
.gs-card:hover .gs-card-cta i { transform: translateX(6px); }

/* ---------- Gallery ---------- */
.block-gallery {
    padding: clamp(64px, 9vw, 112px) 0;
    background: var(--bg-alt);
}
.gallery-title-wrap {
    margin-bottom: 48px;
    text-align: center;
}
.gallery-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    display: inline-block;
    position: relative;
}
.gallery-title .resim { color: var(--accent); }
.gallery-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.g-item {
    position: relative;
    padding: 0;
    background: none;
    border: 0;
    overflow: hidden;
    cursor: zoom-in;
    aspect-ratio: 1 / 1;
}
.g-item:nth-child(6n+1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.g-item-visual {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.g-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,20,25,0.7) 100%);
    opacity: 0;
    transition: opacity .3s var(--ease);
    z-index: 1;
    pointer-events: none;
}
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { opacity: 1; }
.g-zoom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    font-size: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s var(--ease);
    z-index: 2;
}
.g-item:hover .g-zoom { opacity: 1; transform: translateY(0); }
@media (max-width: 767px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .g-item:nth-child(6n+1) { grid-column: span 2; grid-row: auto; aspect-ratio: 16/10; }
}

/* ---------- Gallery Lightbox ---------- */
.g-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
}
.g-lightbox.is-open { opacity: 1; visibility: visible; }
.g-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 25, 0.92);
    cursor: zoom-out;
}
.g-lightbox-panel {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    pointer-events: none;
}
.g-lightbox-panel img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0,0,0,.5);
    pointer-events: auto;
}
.g-lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 20px;
    transition: background .2s var(--ease), border-color .2s var(--ease);
    z-index: 2;
}
.g-lightbox-close:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- CTA Band ---------- */
.block-cta {
    padding: clamp(48px, 8vw, 96px) 0;
    background: var(--bg);
}
.cta-band {
    background: var(--steel);
    color: var(--white);
    padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}
.cta-band::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 200px;
    height: 200px;
    border: 40px solid rgba(232, 106, 28, 0.12);
    transform: rotate(45deg);
    pointer-events: none;
}
.cta-band h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 8px;
}
.cta-band p {
    color: rgba(255,255,255,0.72);
    font-size: 16px;
    max-width: 560px;
}
.cta-actions { flex-shrink: 0; }
.cta-btn {
    padding: 16px 32px;
}

/* ---------- Page Hero (iç sayfa) ---------- */
.page-hero {
    position: relative;
    min-height: 280px;
    padding: clamp(56px, 9vw, 96px) 0 clamp(48px, 7vw, 72px);
    background: var(--steel);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,20,25,0.82) 0%, rgba(15,20,25,0.65) 100%);
    z-index: 1;
}
.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: var(--accent);
    z-index: 2;
}
.page-hero .container { position: relative; z-index: 3; }
.page-hero-inner { display: flex; flex-direction: column; gap: 18px; align-items: center; }
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    letter-spacing: -0.02em;
    max-width: 900px;
}

/* Breadcrumb (inside page-hero) */
.page-hero .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.04em;
}
.page-hero .links li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.page-hero .links li + li::before {
    content: '/';
    color: var(--accent);
    margin-right: 4px;
}
.page-hero .links a {
    color: rgba(255,255,255,0.82);
    transition: color .2s var(--ease);
}
.page-hero .links a:hover { color: var(--accent); }
.page-hero .links li:last-child { color: var(--white); font-weight: 500; }
.page-hero .title { font-size: 13px; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; }

/* ---------- Detay Layout (single-blog, single-service) ---------- */
.detay-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 368px;
    gap: 48px;
}

.detay-sidebar-form-card { overflow: hidden; }
@media (max-width: 900px) {
    .detay-layout { grid-template-columns: 1fr; }
}
.detay-body {
    background: var(--white);
    padding: 0;
}
.detay-cover-img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    margin-bottom: 32px;
    border-bottom: 4px solid var(--accent);
}
.blog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--slate);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.blog-meta-item i { color: var(--accent); font-size: 13px; }

/* Prose (rich content) */
.detay-prose,
.legal-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--slate);
}
.detay-prose > *:first-child,
.legal-body > *:first-child { margin-top: 0; }
.detay-prose > *:last-child,
.legal-body > *:last-child { margin-bottom: 0; }
.detay-prose h2, .legal-body h2 {
    font-size: 1.75rem;
    margin: 40px 0 16px;
    color: var(--ink);
}
.detay-prose h3, .legal-body h3 {
    font-size: 1.35rem;
    margin: 32px 0 12px;
    color: var(--ink);
}
.detay-prose h4, .legal-body h4 {
    font-size: 1.1rem;
    margin: 24px 0 10px;
    color: var(--ink);
}
.detay-prose p, .legal-body p { margin-bottom: 16px; color: var(--slate); }
.detay-prose a, .legal-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}
.detay-prose a:hover, .legal-body a:hover { color: var(--accent-dark); }
.detay-prose ul, .detay-prose ol,
.legal-body ul, .legal-body ol { margin: 16px 0 16px 24px; }
.detay-prose ul li,
.legal-body ul li { list-style: none; position: relative; padding-left: 22px; margin-bottom: 8px; }
.detay-prose ul li::before,
.legal-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 2px;
    background: var(--accent);
}
.detay-prose ol li,
.legal-body ol li { margin-bottom: 8px; padding-left: 4px; }
.detay-prose blockquote,
.legal-body blockquote {
    margin: 24px 0;
    padding: 20px 28px;
    border-left: 4px solid var(--accent);
    background: var(--bg-alt);
    font-size: 17px;
    color: var(--ink);
    font-style: italic;
}
.detay-prose img, .legal-body img { margin: 20px 0; }
.detay-prose table, .legal-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 15px;
}
.detay-prose th, .detay-prose td,
.legal-body th, .legal-body td {
    border: 1px solid var(--border);
    padding: 12px 16px;
    text-align: left;
}
.detay-prose th, .legal-body th {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--ink);
}

/* Sidebar cards */
.detay-sidebar { position: relative; }
.about-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px;
    position: relative;
}
.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--accent);
}
.about-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--ink);
}
.about-card p {
    color: var(--slate);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
}
.about-card p:last-child { margin-bottom: 0; }
.detay-cta-card { background: var(--steel); color: var(--white); }
.detay-cta-card::before { background: var(--accent); }
.detay-cta-card h3 { color: var(--white); }
.detay-cta-card p { color: rgba(255,255,255,0.7); }
.detay-cta-btn { width: 100%; margin-top: 4px; }

.detay-services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.detay-services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--ink);
    transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.detay-services-list li:last-child { border-bottom: 0; }
.detay-services-list li i {
    color: var(--accent);
    font-size: 10px;
    transition: transform .2s var(--ease);
}
.detay-services-list li a {
    color: inherit;
    flex: 1;
}
.detay-services-list li:hover { padding-left: 6px; color: var(--accent); }
.detay-services-list li:hover i { transform: translateX(2px); }
.detay-services-list--active {
    color: var(--accent) !important;
    font-weight: 600;
}
.detay-services-list--active i { color: var(--accent); }

/* ---------- Blog Grid (listing) ---------- */
.blog-grid-section {
    padding: clamp(56px, 8vw, 96px) 0;
    background: var(--bg);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    overflow: hidden;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}
.blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-alt);
    position: relative;
}
.blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent);
    transition: width .3s var(--ease);
    z-index: 2;
}
.blog-card:hover .blog-card-image::after { width: 100%; }
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.blog-card-body h3 { font-size: 1.1rem; line-height: 1.35; }
.blog-card-body h3 a { color: var(--ink); }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
    flex: 1;
}
.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.blog-card-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
}
.blog-card-read i { transition: transform .2s var(--ease); }
.blog-card-read:hover i { transform: translateX(3px); }

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 48px;
}
.blog-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    transition: all .2s var(--ease);
}
.blog-page-btn:hover:not(.blog-page-btn--disabled):not(.blog-page-btn--active) {
    border-color: var(--accent);
    color: var(--accent);
}
.blog-page-btn--active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.blog-page-btn--disabled {
    color: var(--slate-muted);
    cursor: not-allowed;
    background: var(--bg-alt);
}

/* ---------- About Page Sections ---------- */
.about-page-intro { padding-top: clamp(48px, 7vw, 88px); }

.about-stats-section {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--steel);
    position: relative;
}
.about-stats-section::before,
.about-stats-section::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent);
}
.about-stats-section::before { top: 0; left: 0; }
.about-stats-section::after { bottom: 0; right: 0; }
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.about-stat-item {
    padding: 24px 28px;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}
.about-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}
.about-stat-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.about-why-section {
    padding: clamp(64px, 9vw, 112px) 0;
    background: var(--bg);
}
.about-why-head {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}
.about-why-head h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.about-why-head p { color: var(--slate); font-size: 17px; }
.about-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border: 1px solid var(--border);
}
.about-why-item {
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    transition: background .25s var(--ease);
}
.about-why-item:hover { background: var(--bg-alt); }
.about-why-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-tint);
    color: var(--accent);
    font-size: 22px;
}
.about-why-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--ink);
}
.about-why-item p { color: var(--slate); font-size: 14px; line-height: 1.65; }

/* ---------- Contact Page ---------- */
.contact-main {
    padding: clamp(56px, 8vw, 96px) 0;
    background: var(--bg);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: flex-start;
}
@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}
.contact-form-col {
    background: var(--white);
    border: 1px solid var(--border);
    padding: clamp(28px, 4vw, 48px);
    position: relative;
}
.contact-form-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
}
.contact-form-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.contact-form-header h2 { font-size: 1.75rem; color: var(--ink); }
.contact-form-header p { color: var(--slate); }
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate);
}
.form-group .req { color: var(--accent); }
.form-group input,
.form-group textarea,
.form-group select {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
    width: 100%;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-tint);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-privacy {
    font-size: 13px;
    color: var(--slate);
    line-height: 1.55;
}
.form-privacy a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form-captcha {
    display: flex;
    align-items: center;
    padding: 8px 0;
}
.form-submit-row {
    display: flex;
    justify-content: flex-end;
}
.btn-form-submit {
    padding: 16px 36px;
    font-size: 14px;
}
.btn-form-submit i { font-size: 12px; }

/* Custom select (contact form) */
.custom-select { position: relative; width: 100%; }
.custom-select-trigger {
    width: 100%;
    padding: 12px 16px;
    padding-right: 40px;
    background: var(--white);
    border: 1px solid var(--border);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.custom-select.open .custom-select-trigger {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-tint);
}
.custom-select-trigger i {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate);
    font-size: 11px;
    pointer-events: none;
    transition: transform .3s var(--ease), color .25s var(--ease);
}
.custom-select.open .custom-select-trigger i {
    transform: translateY(-50%) rotate(180deg);
    color: var(--accent);
}
.custom-select-value { color: var(--ink); }
.custom-select-value.is-placeholder { color: var(--slate-muted); }
.custom-select-options {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 4px;
    list-style: none;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-drop);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease), max-height .3s var(--ease), padding .25s var(--ease);
    z-index: 20;
}
.custom-select.open .custom-select-options {
    max-height: 280px;
    overflow-y: auto;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.custom-select-option {
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    transition: background .15s var(--ease), color .15s var(--ease);
}
.custom-select-option:hover,
.custom-select-option.is-active {
    background: var(--accent-tint);
    color: var(--accent);
}

/* Contact side column */
.contact-side-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.side-card {
    background: var(--steel);
    color: var(--white);
    padding: 28px;
    position: relative;
}
.side-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--accent);
}
.side-card h4 {
    color: var(--white);
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.side-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.side-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.side-contact-item .icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 28, 0.15);
    color: var(--accent);
    font-size: 15px;
}
.side-contact-item .text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.side-contact-item .text span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.side-contact-item .text a,
.side-contact-item .text p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}
.side-contact-item .text a:hover { color: var(--accent); }

.side-hours {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px 28px;
    position: relative;
}
.side-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: var(--accent);
}
.side-hours h4 {
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--ink);
    display: flex;
    align-items: center;
}
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}
.hours-item:last-child { border-bottom: 0; }
.hours-item .day { color: var(--ink); font-weight: 500; }
.hours-item .time { color: var(--slate); font-variant-numeric: tabular-nums; }
.hours-item .time.closed { color: #DC2626; font-weight: 600; }

/* Map section */
.map-section {
    padding-bottom: clamp(48px, 7vw, 80px);
    background: var(--bg);
}
.map-wrapper {
    position: relative;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-alt);
}
.map-wrapper iframe,
.map-wrapper > * {
    width: 100% !important;
    height: 100% !important;
    border: 0;
    position: absolute;
    inset: 0;
    filter: grayscale(0.2) contrast(1.05);
}

/* ---------- Legal pages ---------- */
.legal-content {
    padding: clamp(56px, 8vw, 96px) 0;
    background: var(--bg);
}
.legal-body {
    max-width: var(--container-narrow);
    margin: 0 auto;
    background: var(--white);
    padding: clamp(28px, 4vw, 56px);
    border: 1px solid var(--border);
}

/* ---------- Footer ---------- */
footer {
    background: var(--steel);
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    position: relative;
    margin-top: clamp(48px, 8vw, 96px);
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}
.footer-main {
    padding: clamp(56px, 7vw, 80px) 0 clamp(32px, 5vw, 56px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: clamp(32px, 5vw, 64px);
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--accent);
}
.footer-brand {
    margin-bottom: 18px;
}
.footer-logo {
    max-height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
}
.footer-brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}
.footer-col p {
    color: rgba(255,255,255,0.64);
    line-height: 1.7;
    font-size: 14px;
    max-width: 320px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul li a {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.footer-col ul li a::before {
    content: '\f054';
    font-family: 'Font Awesome 7 Free', 'Font Awesome 6 Free', 'FontAwesome';
    font-weight: 900;
    color: var(--accent);
    font-size: 9px;
    opacity: 0;
    transition: opacity .2s var(--ease), margin-right .2s var(--ease);
    margin-right: -14px;
}
.footer-col ul li a:hover {
    color: var(--white);
}
.footer-col ul li a:hover::before {
    opacity: 1;
    margin-right: 0;
}
.footer-contact ul { gap: 14px; }
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.72);
    line-height: 1.55;
}
.footer-contact ul li i {
    color: var(--accent);
    font-size: 13px;
    padding-top: 5px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
.footer-contact ul li a { color: rgba(255,255,255,0.72); }
.footer-contact ul li a:hover { color: var(--white); }
.footer-contact ul li a::before { display: none; }

.footer-strip {
    padding: 20px 0;
    background: #13161B;
}
.footer-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.footer-copy { margin: 0; color: rgba(255,255,255,0.55); font-size: 13px; }
.footer-credit { margin: 0; color: rgba(255,255,255,0.55); font-size: 13px; }
.footer-credit-link { color: var(--accent); font-weight: 500; }
.footer-credit-link:hover { color: var(--accent-light); }
.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-legal-links a {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    transition: color .2s var(--ease);
}
.footer-legal-links a:hover { color: var(--white); }
@media (max-width: 700px) {
    .footer-strip-inner { justify-content: center; text-align: center; }
}

/* ---------- To-top Button ---------- */
.to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(232, 106, 28, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s var(--ease), visibility .25s, transform .25s var(--ease), background .2s var(--ease);
    z-index: 80;
    font-size: 14px;
}
.to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.to-top:hover {
    background: var(--accent-dark);
}

/* ---------- Legacy Pagination ---------- */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 32px 0;
    padding: 0;
    flex-wrap: wrap;
}
.pagination.justify-content-center { justify-content: center; }
.pagination .page-item {
    display: inline-flex;
}
.pagination .page-item a,
.pagination .page-item .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    transition: all .2s var(--ease);
}
.pagination .page-item a:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.pagination .page-item.active a {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

/* ---------- Maintenance page ---------- */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.position-ref { position: relative; }
.full-height { min-height: 100vh; padding: 40px 20px; background: var(--bg-alt); }
.full-height .content { text-align: center; max-width: 560px; }
.full-height .title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--ink);
}

/* ---------- Print friendly ---------- */
@media print {
    .topbar, .header-wrap, .mobile-nav, .mobile-overlay, footer, .to-top, .block-cta { display: none !important; }
    .page-hero { background: none !important; color: var(--ink); }
    .page-hero-overlay { display: none; }
    .page-hero h1, .page-hero .links { color: var(--ink); }
}

/* ---------- Motion safety ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    .hero-swiper .swiper-wrapper { transition: none !important; }
}

/* ===================================================
   404 / Error Sayfasi
   =================================================== */
.error-section {
  padding: 120px 0;
  background: var(--surface);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.error-code {
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 8px;
}

.error-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.2;
}

.error-desc {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 560px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-actions .btn-primary,
.error-actions .error-outline {
  min-width: 200px;
  justify-content: center;
}

.error-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: border-color .25s, color .25s;
}

.error-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 640px) {
  .error-section { padding: 72px 0; min-height: 55vh; }
  .error-title { font-size: 26px; }
  .error-desc { font-size: 15px; }
  .error-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .error-actions .btn-primary,
  .error-actions .error-outline { width: 100%; min-width: 0; }
}

/* ===================================================
   Sticky Footer (Mobil 5'li)
   =================================================== */
.sticky-footer {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  z-index: 95;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.sticky-footer .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding: 8px 6px 10px;
  position: relative;
  overflow: visible;
}

.sticky-footer .sf-item,
.sticky-footer .sf-fab {
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  text-align: center;
  padding: 6px 2px;
  text-decoration: none;
  transition: color .25s ease;
  line-height: 1.1;
}

.sticky-footer .sf-item i {
  font-size: 18px;
  color: var(--slate);
  transition: color .25s ease, transform .25s ease;
}

.sticky-footer .sf-item:hover,
.sticky-footer .sf-item:active,
.sticky-footer .sf-fab:hover,
.sticky-footer .sf-fab:active {
  color: var(--accent);
}

.sticky-footer .sf-item:hover i,
.sticky-footer .sf-item:active i {
  color: var(--accent);
  transform: translateY(-2px);
}

.sticky-footer .sf-fab {
  position: relative;
  font-weight: 600;
}

.sticky-footer .sf-fab-circle {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), color .25s ease, background .25s ease;
}

.sticky-footer .sf-fab-label {
  margin-top: 32px;
}

.sticky-footer .sf-fab:hover .sf-fab-circle,
.sticky-footer .sf-fab:active .sf-fab-circle {
  transform: translateX(-50%) scale(1.08);
  background: var(--accent);
  color: #fff;
}

.sticky-footer .sf-fab--disabled {
  opacity: .5;
  cursor: not-allowed;
}

@media (max-width: 768px) {
  .sticky-footer { display: block; }
}

/* ===================================================
   Detay Sidebar Form (sticky)
   =================================================== */
.detay-sidebar-inner {
  position: sticky;
  top: calc(var(--header-h, 84px) + 10px);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.detay-sidebar-form-card h3 {
  font-size: 1.15rem;
  margin: 4px 0 14px;
  color: var(--ink);
  line-height: 1.3;
}

.detay-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}

.detay-sidebar-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.detay-sidebar-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.detay-sidebar-form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.detay-sidebar-form .req {
  color: var(--accent);
}

.detay-sidebar-form input,
.detay-sidebar-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.detay-sidebar-form textarea {
  min-height: 96px;
  resize: vertical;
}

.detay-sidebar-form input:focus,
.detay-sidebar-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.detay-sidebar-form .form-privacy {
  font-size: 11.5px;
  color: var(--slate);
  margin: 6px 0 4px;
  line-height: 1.5;
}

.detay-sidebar-form .form-privacy a {
  color: var(--accent);
  text-decoration: underline;
}

.detay-sidebar-form .btn-form-submit {
  background: var(--ink);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .25s ease, transform .25s ease;
}

.detay-sidebar-form .btn-form-submit:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.detay-sidebar-form .form-captcha { margin-top: 8px; }
.detay-sidebar-form .form-submit-row { margin-top: 10px; display: flex; justify-content: flex-end; }

@media (max-width: 900px) {
  .detay-sidebar-inner { position: static; }
  .detay-sidebar-form .form-row { grid-template-columns: 1fr; }
}

/* Ürün sayfaları — 05 varyasyon: sol dikey thumb rail */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: border-color .3s, transform .3s, box-shadow .3s; }
.product-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 14px 28px rgba(0,0,0,.05); }
.product-card-media { aspect-ratio: 4/3; background: var(--surface-alt); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.product-card:hover .product-card-media img { transform: scale(1.05); }
.product-card-media-placeholder { font-size: 48px; color: var(--slate); opacity: .4; }
.product-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card-code { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--accent); }
.product-card-title { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0; line-height: 1.3; }
.product-card-desc { font-size: 13.5px; color: var(--slate); line-height: 1.55; margin: 2px 0 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-footer { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card-price { font-size: 14px; font-weight: 700; color: var(--ink); }
.product-card-arrow { font-size: 12.5px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }

/* Detay */
.product-detail-section { padding: 60px 0 90px; background: var(--surface); }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 48px; align-items: start; }
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; gap: 28px; } }

/* Dikey thumb rail varyasyon */
.product-gallery--vertical { display: grid; grid-template-columns: 84px 1fr; gap: 14px; align-items: start; }
@media (max-width: 600px) { .product-gallery--vertical { grid-template-columns: 1fr; } }
.product-gallery--vertical .product-gallery-thumbs { display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 600px) { .product-gallery--vertical .product-gallery-thumbs { flex-direction: row; flex-wrap: wrap; } }
.product-gallery-thumb { width: 100%; aspect-ratio: 1/1; background: var(--surface-alt); border: 2px solid var(--border); border-radius: calc(var(--radius) * .8); overflow: hidden; cursor: pointer; padding: 0; transition: border-color .25s, transform .25s; }
@media (max-width: 600px) { .product-gallery-thumb { width: 72px; } }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumb:hover { transform: translateY(-2px); }
.product-gallery-thumb.is-active { border-color: var(--accent); }

.product-gallery-main { position: relative; aspect-ratio: 1/1; background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.product-gallery-placeholder { font-size: 72px; color: var(--slate); opacity: .3; }
.product-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.94); border: 1px solid var(--border); color: var(--ink); font-size: 14px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; box-shadow: 0 4px 14px rgba(0,0,0,.1); opacity: 0; transition: opacity .25s, background .25s, transform .25s; }
.product-gallery-main:hover .product-gallery-nav { opacity: 1; }
.product-gallery-nav:hover { background: var(--accent); color: #fff; transform: translateY(-50%) scale(1.05); }
.product-gallery-nav-prev { left: 12px; } .product-gallery-nav-next { right: 12px; }
@media (hover: none) { .product-gallery-nav { opacity: 1; } }

.product-info { padding-top: 4px; }
.product-info-code { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--slate); margin-bottom: 12px; }
.product-info-code span { color: var(--accent); font-weight: 700; margin-right: 4px; }
.product-info-title { font-size: 30px; font-weight: 800; color: var(--ink); line-height: 1.2; margin: 0 0 14px; }
.product-info-lead { font-size: 15px; color: var(--slate); line-height: 1.6; margin: 0 0 22px; }
.product-info-price { display: inline-flex; align-items: baseline; gap: 12px; padding: 14px 20px; background: var(--surface-alt); border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 22px; }
.product-info-price-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--slate); font-weight: 600; }
.product-info-price-value { font-size: 22px; font-weight: 800; color: var(--ink); }

/* 05 özellik listesi — ikon + label varyasyon (tablo değil) */
.product-info-features { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 8px; }
.product-info-features li { display: flex; align-items: baseline; gap: 12px; padding: 10px 14px; border: 1px solid var(--border); border-radius: calc(var(--radius) * .7); font-size: 14px; background: var(--surface-alt); }
.product-info-features li:hover { border-color: var(--accent); }
.product-info-features .feature-label { flex: 0 0 42%; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.product-info-features .feature-label i { color: var(--accent); font-size: 12px; }
.product-info-features .feature-value { flex: 1; color: var(--slate); }

.product-info-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.product-info-actions .btn-primary, .product-info-actions .error-outline { min-width: 180px; justify-content: center; }

/* 05 Tabs — pill (filled) varyasyon */
.product-tabs { margin-top: 48px; }
.product-tabs-head { display: flex; gap: 8px; background: var(--surface-alt); padding: 6px; border-radius: 999px; width: fit-content; max-width: 100%; overflow-x: auto; }
.product-tab { background: transparent; border: 1.5px solid transparent; padding: 10px 24px; font-size: 13.5px; font-weight: 600; color: var(--slate); cursor: pointer; border-radius: 999px; transition: background .25s, color .25s, border-color .25s; white-space: nowrap; }
.product-tab:not(.is-active) { border-color: var(--border, #d1d5db); }
.product-tab:hover:not(.is-active) { color: var(--ink); border-color: var(--ink); }
.product-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.product-tab-panel { display: none; padding: 28px 0; color: var(--slate); line-height: 1.7; }
.product-tab-panel.is-active { display: block; }
.product-tab-panel > *:first-child { margin-top: 0; }
.product-tab-panel > *:last-child { margin-bottom: 0; }

/* Lightbox */
.product-lightbox { position: fixed; inset: 0; background: rgba(15,23,41,.94); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 60px 72px; opacity: 0; transition: opacity .3s; }
.product-lightbox.is-open { display: flex; opacity: 1; }
.product-lightbox-stage img { max-width: 100%; max-height: calc(100vh - 120px); object-fit: contain; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.5); animation: prdLbIn .35s cubic-bezier(.16,1,.3,1); }
@keyframes prdLbIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
.product-lightbox-close { position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .25s, transform .25s; }
.product-lightbox-close:hover { background: rgba(255,255,255,.22); transform: rotate(90deg); }
.product-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .25s; }
.product-lightbox-nav:hover { background: var(--accent); border-color: var(--accent); }
.product-lightbox-nav-prev { left: 24px; } .product-lightbox-nav-next { right: 24px; }
@media (max-width: 600px) { .product-lightbox { padding: 40px 16px; } .product-lightbox-nav { width: 40px; height: 40px; font-size: 15px; } .product-lightbox-nav-prev { left: 10px; } .product-lightbox-nav-next { right: 10px; } .product-lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 15px; } }

/* === WhatsApp Sabit Buton === */
.wa-side-btn {
  position: fixed;
  right: 20px;
  bottom: 76px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 11px 18px 11px 14px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  white-space: nowrap;
  transition: box-shadow .25s;
}

.wa-side-btn:hover,
.wa-side-btn:hover .wa-side-label,
.wa-side-btn:hover .wa-side-phone,
.wa-side-btn:hover .wa-side-icon,
.wa-side-btn:hover i {
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
}

.wa-side-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

.wa-side-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wa-side-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.wa-side-phone {
  font-size: 11.5px;
  font-weight: 500;
  opacity: .85;
}

@media (max-width: 768px) {
  .wa-side-btn { display: none; }
}
