/* ─── Apple-style Design System ─────────────────────────────────────── */

:root {
    --bg: #fbfbfd;
    --surface: #fff;
    --text: #1d1d1f;
    --muted: #86868b;
    --accent: #0071e3;
    --border: rgba(0, 0, 0, .08);
    --radius: 18px;
    --shadow: 0 1px 3px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .06);

    --bs-primary: var(--accent);
    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
    --bs-font-sans-serif: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --bs-border-radius: var(--radius);
    --bs-card-border-color: var(--border);
    --bs-card-bg: var(--surface);
}

[data-theme="dark"] {
    --bg: #000;
    --surface: #1d1d1f;
    --text: #f5f5f7;
    --muted: #a1a1a6;
    --accent: #2997ff;
    --border: rgba(255, 255, 255, .1);
    --shadow: 0 1px 3px rgba(0, 0, 0, .5);

    --bs-body-bg: var(--bg);
    --bs-body-color: var(--text);
}

/* ─── Base ───────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--bs-font-sans-serif);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background .3s cubic-bezier(.4, 0, .2, 1), color .3s cubic-bezier(.4, 0, .2, 1);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color .25s cubic-bezier(.4, 0, .2, 1);
}

a:hover { color: var(--accent); opacity: .8; }

img { max-width: 100%; display: block; }

/* ─── Glass effect ───────────────────────────────────────────────────── */

.glass {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, .72);
    border: 1px solid var(--border);
}

[data-theme="dark"] .glass {
    background: rgba(0, 0, 0, .6);
}

/* ─── Bootstrap overrides ────────────────────────────────────────────── */

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: box-shadow .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1);
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 16px 40px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

[data-theme="dark"] .card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .6), 0 16px 40px rgba(0, 0, 0, .7);
}

.card-body { padding: 1.75rem; }

.btn {
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: -.01em;
    padding: .55rem 1.4rem;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1), background .2s, border-color .2s;
}

.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(.98); }

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    border-radius: 999px;
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    opacity: .88;
    box-shadow: 0 4px 16px rgba(0, 113, 227, .35);
}

[data-theme="dark"] .btn-primary:hover {
    box-shadow: 0 4px 16px rgba(41, 151, 255, .4);
}

.btn-outline-primary {
    color: var(--accent);
    border-color: var(--accent);
    border-radius: 999px;
}

.btn-outline-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.02);
}

.btn-secondary {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    border-radius: 999px;
}

.btn-secondary:hover {
    background: var(--bg);
    border-color: var(--muted);
    color: var(--text);
    transform: scale(1.02);
}

/* ─── Form controls ──────────────────────────────────────────────────── */

.form-control,
.form-select {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    transition: border-color .25s, box-shadow .25s;
}

.form-control:focus,
.form-select:focus {
    background: var(--surface);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, .15);
}

[data-theme="dark"] .form-control:focus,
[data-theme="dark"] .form-select:focus {
    box-shadow: 0 0 0 3px rgba(41, 151, 255, .2);
}

.form-control::placeholder { color: var(--muted); }

/* ─── Navbar ─────────────────────────────────────────────────────────── */

.navbar {
    background: rgba(255, 255, 255, .8) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}

[data-theme="dark"] .navbar {
    background: rgba(0, 0, 0, .75) !important;
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--text) !important;
}

.nav-link {
    color: var(--text) !important;
    font-weight: 400;
    opacity: .85;
    transition: opacity .2s;
    border-radius: 8px;
    padding: .4rem .75rem !important;
}

.nav-link:hover { opacity: 1; background: var(--border); }
.nav-link.active { opacity: 1; font-weight: 600; }

/* ─── Dropdown ───────────────────────────────────────────────────────── */

.dropdown-menu {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: .5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.dropdown-item {
    color: var(--text);
    border-radius: 8px;
    padding: .45rem .85rem;
    font-size: .9375rem;
    transition: background .15s;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--bg);
    color: var(--text);
}

/* ─── Section / Container helpers ───────────────────────────────────── */

.section-sm { padding: 3rem 0; }
.section-lg { padding: 8rem 0; }

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── Typography ─────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -.04em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); letter-spacing: -.03em; }
h3 { font-size: clamp(1.375rem, 2.5vw, 2rem); }
h4 { font-size: 1.375rem; }

p { line-height: 1.75; }

.text-muted { color: var(--muted) !important; }

/* ─── Hero ───────────────────────────────────────────────────────────── */

.hero {
    padding: 7rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 113, 227, .12) 0%, transparent 70%);
    pointer-events: none;
}

[data-theme="dark"] .hero::before {
    background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(41, 151, 255, .15) 0%, transparent 70%);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1.05;
}

.hero-lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--muted);
    max-width: 640px;
    margin: 1.25rem auto 2.5rem;
    line-height: 1.6;
}

/* ─── Product card ───────────────────────────────────────────────────── */

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow .3s cubic-bezier(.4, 0, .2, 1), transform .3s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .06), 0 16px 40px rgba(0, 0, 0, .12) !important;
    transform: translateY(-4px);
}

.product-card img {
    transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.product-card:hover img { transform: scale(1.04); }

/* ─── Category card ──────────────────────────────────────────────────── */

.category-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1);
}

.category-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .14) !important;
}

/* ─── Badge ──────────────────────────────────────────────────────────── */

.badge {
    border-radius: 999px;
    font-weight: 500;
    letter-spacing: .01em;
    padding: .35em .75em;
}

.badge-accent {
    background: rgba(0, 113, 227, .1);
    color: var(--accent);
}

[data-theme="dark"] .badge-accent {
    background: rgba(41, 151, 255, .15);
}

/* ─── Blog ───────────────────────────────────────────────────────────── */

.blog-content h1,
.blog-content h2,
.blog-content h3 {
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.blog-content p { line-height: 1.85; }

.blog-content img { border-radius: 14px; margin: 1.5rem 0; }

.blog-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Prose ──────────────────────────────────────────────────────────── */

.prose img { border-radius: 14px; }

/* ─── Footer ─────────────────────────────────────────────────────────── */

footer {
    background: rgba(15, 15, 17, .96);
    padding: 0;
    color: var(--muted);
    font-size: .9375rem;
}

footer a { color: var(--muted); transition: color .2s; }
footer a:hover { color: var(--text); }

/* ─── Divider ────────────────────────────────────────────────────────── */

hr {
    border: none;
    border-top: 1px solid var(--border);
    opacity: 1;
}

/* ─── Scrollbar (webkit) ─────────────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ─── Utilities ──────────────────────────────────────────────────────── */

.surface { background: var(--surface); }
.bg-surface { background: var(--surface) !important; }
.text-accent { color: var(--accent) !important; }
.border-subtle { border-color: var(--border) !important; }
.radius { border-radius: var(--radius) !important; }
.radius-sm { border-radius: 10px !important; }
.radius-xs { border-radius: 6px !important; }
.shadow-card { box-shadow: var(--shadow) !important; }

/* ─── Alert ──────────────────────────────────────────────────────────── */

.alert {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
}

/* ─── Table ──────────────────────────────────────────────────────────── */

.table {
    color: var(--text);
}

.table > :not(caption) > * > * {
    background-color: transparent;
    border-bottom-color: var(--border);
    color: var(--text);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(0, 0, 0, .02);
    color: var(--text);
}

[data-theme="dark"] .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(255, 255, 255, .03);
}

/* ─── Modal ──────────────────────────────────────────────────────────── */

.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.modal-header {
    border-bottom-color: var(--border);
}

.modal-footer {
    border-top-color: var(--border);
}

/* ─── Pagination ─────────────────────────────────────────────────────── */

.page-link {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
    border-radius: 8px !important;
    margin: 0 2px;
    transition: background .2s, color .2s;
}

.page-link:hover {
    background: var(--bg);
    border-color: var(--accent);
    color: var(--accent);
}

.page-item.active .page-link {
    background: var(--accent);
    border-color: var(--accent);
}

/* ─── Responsive grid helpers ────────────────────────────────────────── */

@media (max-width: 575.98px) {
    section { padding: 3rem 0; }
    .hero { padding: 4rem 0 3rem; }
    .card-body { padding: 1.25rem; }
    h1 { letter-spacing: -.03em; }
}

@media (max-width: 767.98px) {
    .section-lg { padding: 5rem 0; }
    .navbar .btn { display: none; }
}

@media (min-width: 992px) {
    .hero { padding: 9rem 0 7rem; }
}

/* ─── Smooth page transition ─────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
    .fade-up {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .5s cubic-bezier(.4, 0, .2, 1), transform .5s cubic-bezier(.4, 0, .2, 1);
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
    }
}

/* ─── Floating Header ────────────────────────────────────────────────── */

:root { --header-h: 64px; }
@media (min-width: 992px) { :root { --header-h: 80px; } }


.site-header-float {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    padding-top: 8px;
}

.site-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    border-radius: 24px;
    border: 1px solid transparent;
    transition: background .35s cubic-bezier(.4,0,.2,1), border-color .35s, backdrop-filter .35s;
}

@media (min-width: 992px) { .site-header-inner { padding: 0 3rem; } }

.site-header-float.scrolled .site-header-inner {
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-color: var(--border);
}

[data-theme="dark"] .site-header-float.scrolled .site-header-inner {
    background: rgba(0,0,0,.6);
}

.site-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem 0;
    transition: padding .2s cubic-bezier(.4,0,.2,1);
}

@media (min-width: 992px) {
    .site-header-row { padding: 1.375rem 0; gap: 1.5rem; }
    .site-header-float.scrolled .site-header-row { padding: .875rem 0; }
}

.site-header-logo { flex-shrink: 0; text-decoration: none !important; }

.site-header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.site-header-link {
    font-size: .875rem;
    color: var(--muted);
    text-decoration: none !important;
    white-space: nowrap;
    transition: color .15s;
}
.site-header-link:hover { color: var(--text); opacity: 1; }

.site-header-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.site-header-burger {
    background: none;
    border: none;
    padding: .25rem .375rem;
    cursor: pointer;
    color: var(--text);
    line-height: 1;
    border-radius: 6px;
}
.site-header-burger:hover { background: var(--border); }

.site-header-mobile-panel {
    overflow: hidden;
    max-height: 0;
    border-top: 1px solid transparent;
    transition: max-height .35s cubic-bezier(.4,0,.2,1), border-color .35s;
}
.site-header-mobile-panel.open {
    max-height: 640px;
    border-top-color: var(--border);
}

.site-header-mobile-menu {
    list-style: none;
    padding: .75rem 0 .25rem;
    margin: 0;
}
.site-header-mobile-link {
    display: block;
    color: var(--muted);
    font-size: .9375rem;
    padding: .625rem 0;
    text-decoration: none !important;
    border-bottom: 1px solid var(--border);
    transition: color .15s;
}
.site-header-mobile-link:hover { color: var(--text); opacity: 1; }

.site-header-mobile-auth { padding: .75rem 0 .25rem; }

/* ─── Hero v2 (video / image background) ────────────────────────────── */

.hero-v2 {
    position: relative;
    overflow: hidden;
    background: var(--bg);
    margin-top: calc(-1 * var(--header-h));
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 5rem;
    min-height: 100vh;
}

@media (min-width: 768px)  { .hero-v2 { padding-top: calc(var(--header-h) + 5rem); padding-bottom: 7rem; } }
@media (min-width: 992px)  { .hero-v2 { padding-top: calc(var(--header-h) + 10rem); padding-bottom: 9rem; } }

.hero-v2-bg {
    position: absolute;
    inset: 4px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,.08);
}
@media (min-width: 992px) { .hero-v2-bg { border-radius: 48px; } }
[data-theme="dark"] .hero-v2-bg { border-color: rgba(255,255,255,.05); }

.hero-v2-bg video {
    width: 100%; height: 100%; object-fit: cover; display: block;
    opacity: .5; filter: invert(1);
}
[data-theme="dark"] .hero-v2-bg video { opacity: .35; filter: invert(0); }
@media (min-width: 992px) { [data-theme="dark"] .hero-v2-bg video { opacity: .75; } }

.hero-v2-bg img {
    width: 100%; height: 100%; object-fit: cover; display: block; opacity: .3;
}
[data-theme="dark"] .hero-v2-bg img { opacity: .2; }

.hero-v2-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 992px) { .hero-v2-content { padding: 0 3rem; } }

.hero-v2-text { max-width: 42rem; text-align: center; margin: 0 auto; }
@media (min-width: 992px) { .hero-v2-text { text-align: left; margin: 0; max-width: 100%; } }

.hero-v2-h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: 1.05;
    max-width: 32rem;
    margin: 0 auto 2rem;
    color: var(--text);
}
@media (min-width: 992px) { .hero-v2-h1 { margin: 0 0 2rem; } }

.hero-v2-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--muted);
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}
@media (min-width: 992px) { .hero-v2-lead { margin: 0 0 2.5rem; } }

.hero-v2-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    margin-bottom: 0;
}
@media (min-width: 576px) { .hero-v2-btns { flex-direction: row; justify-content: center; } }
@media (min-width: 992px) { .hero-v2-btns { justify-content: flex-start; } }

/* ─── Logo Slider ────────────────────────────────────────────────────── */

.logo-slider-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: .25rem 0 .75rem;
}

.logo-slider-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}
@media (min-width: 768px) {
    .logo-slider-wrap { flex-direction: row; padding: 0 3rem; }
}

.logo-slider-label {
    font-size: .8125rem;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .logo-slider-label { min-width: 8rem; text-align: right; padding-right: 1.5rem; border-right: 1px solid var(--border); }
}

.logo-slider-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 1.25rem 0;
    min-width: 0;
}

.logo-slider-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: logo-scroll 36s linear infinite;
}
.logo-slider-track:hover { animation-play-state: paused; }

@keyframes logo-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.logo-slider-track img {
    height: 20px;
    width: auto;
    flex-shrink: 0;
    display: inline-block;
    opacity: .55;
    filter: grayscale(1);
    transition: opacity .2s, filter .2s;
}
[data-theme="dark"] .logo-slider-track img { filter: grayscale(1) invert(1); }
.logo-slider-track img:hover { opacity: 1; filter: none; }

.logo-slider-fade-l {
    position: absolute; inset-y: 0; left: 0; width: 4rem;
    background: linear-gradient(to right, var(--bg), transparent);
    pointer-events: none; z-index: 1;
}
.logo-slider-fade-r {
    position: absolute; inset-y: 0; right: 0; width: 4rem;
    background: linear-gradient(to left, var(--bg), transparent);
    pointer-events: none; z-index: 1;
}

/* ─── Faz 8.5: Accessibility (WCAG AA) ─────────────────────────── */
/* Focus ring — keyboard kullanıcıları için belirgin */
:focus-visible {
    outline: 3px solid #0071e3;
    outline-offset: 2px;
    border-radius: 2px;
}
/* Mouse click'te outline gözükmesin */
:focus:not(:focus-visible) {
    outline: none;
}
/* Skip-link odaklanınca görünür */
.visually-hidden-focusable:focus,
.visually-hidden-focusable:focus-within {
    position: fixed !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}
/* Reduced motion — kullanıcı animasyon istemiyorsa kapat */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* Form input renk kontrastı — light mode */
input::placeholder, textarea::placeholder {
    color: #6c757d;
    opacity: 1;
}

/* ── Ürün detay: sağ kenarda sabit hızlı aksiyonlar (Yazdır / Teklif İste) ── */
.urun-fixed-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1030;
    flex-direction: column;
    align-items: flex-end;
    gap: .6rem;
    max-width: 100vw;
}
.urun-fixed-actions .uf-print {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.15rem;
    margin-right: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}
.urun-fixed-actions .uf-teklif {
    display: flex;
    align-items: center;
    border-radius: 2rem 0 0 2rem;
    font-weight: 600;
    padding: .7rem 1.2rem;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

/* ════════════════════════════════════════════════════════════════════
   EH — Overlay Header + Tam Ekran Hero + Yüzen İkonlar + Çekmece
   ════════════════════════════════════════════════════════════════════ */

/* İç sayfalarda sabit header'ın altına içerik kaymasın (--eh-h JS ile ölçülür) */
main.has-fixed-header { padding-top: var(--eh-h, 98px); }
@media (max-width: 991px) { main.has-fixed-header { padding-top: var(--eh-h, 84px); } }

/* ── Header kabuğu ── */
.eh {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1030; color: #fff;
    transition: background .35s ease, box-shadow .35s ease;
}
.eh a { color: #fff; text-decoration: none; }
.eh--solid {
    background: rgba(15, 15, 17, .92);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.eh--transparent { background: transparent; }
.eh--transparent::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 170px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .55), transparent);
    pointer-events: none; z-index: -1;
}
.eh--transparent.eh--scrolled {
    background: rgba(15, 15, 17, .92);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.eh--transparent.eh--scrolled::before { display: none; }

/* ── Üst bar ── */
.eh-top { border-bottom: 1px solid rgba(255, 255, 255, .10); }
.eh-top-inner {
    max-width: 1480px; margin: 0 auto; padding: .5rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.eh-top-right { display: flex; align-items: center; gap: 1.5rem; }

/* Dil seçici — satır içi: Türkçe | İngilizce */
.eh-lang {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    font-weight: 400;
}
.eh-lang-ico { font-size: .95rem; opacity: .8; }
.eh-lang-link {
    color: #fff; text-decoration: none; opacity: .7; padding: .1rem 0;
    transition: opacity .2s, text-decoration-color .2s;
}
.eh-lang-link:hover { opacity: 1; color: #fff; }
.eh-lang-link.active {
    opacity: 1; font-weight: 700;
    text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px;
}
.eh-lang-sep { opacity: .35; }

/* Üst menü + AI */
.eh-topmenu { display: flex; gap: 1.6rem; }
.eh-topmenu-link {
    font-size: .8rem; letter-spacing: .05em; text-transform: uppercase;
    font-weight: 400;
}
.eh-topmenu-link:hover { opacity: 1; color: #fff; }
.eh-ai-btn {
    background: transparent; border: 0; color: #fff;
    display: inline-flex; cursor: pointer; padding: .2rem;
}
.eh-ai-btn:hover { opacity: 1; }

/* ── Ana bar ── */
.eh-main-inner {
    max-width: 1480px; margin: 0 auto; padding: .7rem 1.5rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.eh-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 1.7rem; }
.eh-nav--right { justify-content: flex-end; }
.eh-nav-link {
    position: relative; padding: .35rem 0;
    font-size: .9rem; letter-spacing: .05em; text-transform: uppercase;
    font-weight: 400; 
}
.eh-nav-link:hover { opacity: 1; color: #fff; }
.eh-nav-link::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
    background: currentColor; transition: width .25s ease;
}
.eh-nav-link:hover::after { width: 100%; }

.eh-logo { display: flex; align-items: center; justify-content: center; }
.eh-logo-img { height: 110px; width: auto; }
.eh-logo-text { font-weight: 800; font-size: 1.4rem; color: #fff; letter-spacing: .02em; }

.eh-burger {
    display: none; background: transparent; border: 0; color: #fff;
    font-size: 1.7rem; line-height: 1; cursor: pointer; justify-self: end;
}

@media (max-width: 991px) {
    .eh-main-inner { display: flex; align-items: center; justify-content: space-between; }
    .eh-nav, .eh-topmenu, .eh-ai-btn { display: none; }
    .eh-burger { display: inline-flex; }
    .eh-logo { margin: 0 auto; }
    .eh-logo-img { height: 40px; }
}
@media (max-width: 575px) {
    .eh-lang-label { display: none; }
    .eh-top-inner, .eh-main-inner { padding-left: 1rem; padding-right: 1rem; }
}

/* ── Sağ-alt yüzen ikon kümesi ── */
.eh-fab {
    position: fixed; right: 18px; bottom: 22px; z-index: 997;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.eh-fab-btn {
    width: 46px; height: 46px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(20, 20, 22, .72);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff; font-size: 1.05rem; cursor: pointer; text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
    transition: transform .2s ease, background .2s ease;
}
.eh-fab-btn:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }

/* ── Açılır çekmece — TAM EKRAN, 2 kolon (2/3 menü · 1/3 iletişim) ── */
.eh-drawer-backdrop { display: none; } /* tam ekran panel: ayrı backdrop gerekmez */

.eh-drawer {
    position: fixed; inset: 0; width: 100%; height: 100%; z-index: 1045; color: #fff;
    background:
        radial-gradient(120% 90% at 88% 0%, rgba(255, 255, 255, .05), transparent 55%),
        radial-gradient(90% 75% at 0% 100%, rgba(0, 113, 227, .10), transparent 55%),
        linear-gradient(180deg, #161618 0%, #0b0b0d 100%);
    opacity: 0; visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
    overflow: hidden;
}
.eh-drawer.open { opacity: 1; visibility: visible; }
.eh-drawer a { color: #fff; text-decoration: none; }
.eh-drawer-inner {
    width: 100%; max-width: 1280px; height: 100%; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: stretch;
    padding: clamp(3.5rem, 8vh, 5.5rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 5vh, 3.5rem);
    overflow-y: auto; overscroll-behavior: contain;
}

/* kapat — ekran sağ üst köşe */
.eh-drawer-close {
    position: absolute; top: clamp(1.25rem, 3vh, 2rem); right: clamp(1.25rem, 4vw, 3rem); z-index: 2;
    width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    background: transparent; color: #fff; font-size: 1.05rem;
    border: 1px solid rgba(255, 255, 255, .22);
    transition: transform .45s cubic-bezier(.16, 1, .3, 1), background .25s ease, color .25s ease, border-color .25s ease;
}
.eh-drawer-close:hover { background: #fff; color: #0b0b0d; border-color: #fff; transform: rotate(90deg); }

/* SOL 2/3 — logo + menü (sola dayalı) */
.eh-drawer-main {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start; min-width: 0;
}
.eh-drawer-logo { margin-bottom: clamp(1.5rem, 4vh, 2.75rem); }
.eh-drawer-logo-img { height: clamp(42px, 12vh, 110px); width: auto; }
.eh-drawer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(.1rem, .8vh, .4rem); }
.eh-drawer-link {
    position: relative; display: inline-flex; align-items: center; gap: .7rem;
    padding: clamp(.22rem, .9vh, .5rem) 0; line-height: 1.12;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 300; letter-spacing: .005em;
    color: rgba(255, 255, 255, .9);
    transition: color .3s ease, padding-left .4s cubic-bezier(.16, 1, .3, 1);
}
.eh-drawer-link-arrow {
    font-size: .8em; color: var(--accent); opacity: 0; transform: translateX(-10px);
    transition: opacity .3s ease, transform .3s ease;
}
.eh-drawer-link:hover { color: #fff; padding-left: .6rem; }
.eh-drawer-link:hover .eh-drawer-link-arrow { opacity: 1; transform: translateX(0); }

/* SAĞ 1/3 — iletişim (üstte) + sosyal (altta) */
.eh-drawer-side {
    display: flex; flex-direction: column; justify-content: center; gap: clamp(1.5rem, 4vh, 2.5rem);
    border-left: 1px solid rgba(255, 255, 255, .1); padding-left: clamp(1.5rem, 3vw, 3rem); min-width: 0;
}
.eh-drawer-contact { display: flex; flex-direction: column; gap: 1.1rem; }
.eh-drawer-c-item { display: flex; flex-direction: column; gap: .2rem; }
.eh-drawer-c-label {
    font-size: .6rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}
.eh-drawer-c-val { width: fit-content; font-size: .92rem; color: rgba(255, 255, 255, .85); transition: color .25s ease; }
.eh-drawer-c-val:hover { color: var(--accent); }
.eh-drawer-c-item .eh-drawer-c-val + .eh-drawer-c-val { margin-top: .2rem; }
.eh-drawer-social { display: flex; gap: .55rem; flex-wrap: wrap; }
.eh-drawer-social a {
    width: 44px; height: 44px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .85); font-size: 1.1rem;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.eh-drawer-social a:hover { background: var(--accent); color: #fff; border-color: transparent; transform: translateY(-3px); }

/* mobil/tablet: tek kolon */
@media (max-width: 900px) {
    .eh-drawer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .eh-drawer-main { justify-content: flex-start; }
    .eh-drawer-side {
        border-left: none; border-top: 1px solid rgba(255, 255, 255, .1);
        padding-left: 0; padding-top: 2rem; justify-content: flex-start;
    }
}

/* açılışta kademeli (stagger) giriş */
.eh-drawer .eh-drawer-logo,
.eh-drawer .eh-drawer-link,
.eh-drawer .eh-drawer-contact,
.eh-drawer .eh-drawer-social { opacity: 0; transform: translateY(20px); }
.eh-drawer.open .eh-drawer-logo,
.eh-drawer.open .eh-drawer-link,
.eh-drawer.open .eh-drawer-contact,
.eh-drawer.open .eh-drawer-social { animation: ehDrawerIn .6s cubic-bezier(.16, 1, .3, 1) forwards; }
.eh-drawer.open .eh-drawer-logo { animation-delay: .06s; }
.eh-drawer.open .eh-drawer-link:nth-child(1) { animation-delay: .14s; }
.eh-drawer.open .eh-drawer-link:nth-child(2) { animation-delay: .20s; }
.eh-drawer.open .eh-drawer-link:nth-child(3) { animation-delay: .26s; }
.eh-drawer.open .eh-drawer-link:nth-child(4) { animation-delay: .32s; }
.eh-drawer.open .eh-drawer-link:nth-child(5) { animation-delay: .38s; }
.eh-drawer.open .eh-drawer-link:nth-child(6) { animation-delay: .44s; }
.eh-drawer.open .eh-drawer-link:nth-child(7) { animation-delay: .50s; }
.eh-drawer.open .eh-drawer-link:nth-child(n+8) { animation-delay: .54s; }
.eh-drawer.open .eh-drawer-contact { animation-delay: .30s; }
.eh-drawer.open .eh-drawer-social { animation-delay: .40s; }
@keyframes ehDrawerIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
    .eh-drawer, .eh-drawer-close { transition: none; }
    .eh-drawer .eh-drawer-logo,
    .eh-drawer .eh-drawer-link,
    .eh-drawer .eh-drawer-contact,
    .eh-drawer .eh-drawer-social { animation: none; opacity: 1; transform: none; }
    .eh-drawer-close:hover { transform: none; }
}

/* ── Tam ekran Hero ── */
.eh-hero {
    position: relative; min-height: 100vh; min-height: 100svh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    color: #fff; overflow: hidden;
}
.eh-hero-bg { position: absolute; inset: 0; z-index: 0; }
.eh-hero-bg video, .eh-hero-bg img, .eh-hero-video, .eh-hero-img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.eh-hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .45) 0%, rgba(0, 0, 0, .22) 42%, rgba(0, 0, 0, .58) 100%);
}
.eh-hero-content { position: relative; z-index: 2; max-width: 1000px; padding: 6rem 1.5rem 2rem; }
.eh-hero-h1 {color:#fff;
    font-size: clamp(2rem, 5.2vw, 4.2rem); font-weight: 800; line-height: 1.08;
    letter-spacing: -.01em; margin: 0 0 1rem; text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}
.eh-hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.6rem); font-weight: 300; font-style: italic;
    opacity: .96; margin: 0 auto; max-width: 760px; text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
}
.eh-hero-desc { font-size: 1.2rem; opacity: .85; margin: 1rem auto 0; max-width: 680px; }
.eh-hero-btns { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.eh-hero-scroll {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
    width: 1px; height: 54px; background: rgba(255, 255, 255, .4); overflow: hidden;
}
.eh-hero-scroll span {
    position: absolute; top: 0; left: 0; width: 100%; height: 30%; background: #fff;
    animation: ehScroll 2s infinite;
}
@keyframes ehScroll { 0% { transform: translateY(-100%); } 100% { transform: translateY(330%); } }

/* ── WhatsApp yüzen buton (SET tasarımı: yukarı-aşağı süzülme + yeşil nabız halkası) ── */
.wa-fab { transition: opacity .25s ease, visibility .25s ease; animation: waFloat 3s ease-in-out infinite; }
/* Yeşil nabız halkası */
.wa-fab::before {
    content: ""; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid #25d366; animation: edPlayPulse 2.4s ease-out infinite; pointer-events: none;
}
/* Hafif yukarı-aşağı süzülme */
@keyframes waFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes edPlayPulse { 0% { transform: scale(1); opacity: .65; } 100% { transform: scale(1.75); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .wa-fab, .wa-fab::before { animation: none; } }

/* ════════════════════════════════════════════════════════════════════
   Anasayfa Kurumsal Bölüm — "Hakkımızda" (About)
   ════════════════════════════════════════════════════════════════════ */
.about-sec { padding: clamp(4rem, 8vw, 7rem) 0; background: #fff; overflow: hidden; }
[data-theme="dark"] .about-sec { background: #0e0e10; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.about-col-text { max-width: 540px; }
.about-eyebrow {
    display: inline-block; font-size: .78rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase; color: var(--text); opacity: .65;
    margin-bottom: 1rem;
}
.about-title {
    letter-spacing: -.03em;
    margin: 0 0 1.5rem;
    color: var(--text);
    font: normal 600 40px / 1 "Montserrat", sans-serif;
    text-transform: uppercase;
}
.about-desc {
    font-size: 1.05rem; line-height: 1.85; color: var(--muted);
    margin: 0 0 2rem;
}

/* CTA — Servisler Showcase'deki SVG-çizgili pill buton tasarımı (tema rengine uyumlu) */
.about-cta {
    position: relative; display: inline-block; width: 160px; padding: 13px 0; margin-top: .5rem;
    text-align: center; text-decoration: none; color: var(--text); background: transparent;
    font: normal 600 14px/1.2 "Montserrat", sans-serif;
}
.about-cta svg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.about-cta svg path {
    fill: none; stroke: var(--text); stroke-width: 1; stroke-dasharray: 500, 0; transition: all 3s ease;
}
.about-cta:hover svg path {
    stroke-dasharray: 30, 310; stroke-dashoffset: 290; transition: all 1.35s cubic-bezier(.19, 1, .22, 1);
}
.about-cta:hover { color: var(--text); opacity: 1; }
.about-cta span { position: relative; z-index: 1; }

/* Sağ: 2 görsel (ikincisi aşağı kaydırılmış) */
.about-col-media {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.75rem); align-items: start;
}
.about-img {
    margin: 0; border-radius: 22px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .14);
}
.about-img-el { width: 100%; height:  100%; object-fit: cover; display: block; }
.about-img-2 { margin-top: clamp(2rem, 6vw, 5rem); }

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-col-text { max-width: none; }
}
@media (max-width: 560px) {
    .about-col-media { grid-template-columns: 1fr; }
    .about-img-2 { margin-top: 0; }
}
@media (prefers-reduced-motion: reduce) {
    .about-cta svg path { transition: none; }
}

/* Zengin metin (Jodit/HTML) alanları — iç <p> sarmalını sıfırla, stili sarmalayıcıdan miras al */
.eh-hero-sub p, .eh-hero-desc p, .about-desc p { margin: 0; font: inherit; color: inherit; }
.eh-hero-sub p + p, .eh-hero-desc p + p, .about-desc p + p { margin-top: .5em; }

/* ════════════════════════════════════════════════════════════════════
   Anasayfa "Servisler Showcase" — emirali.voxmobil.com "block1" tasarımı (birebir)
   Orijinal kök font 62.5% (1rem=10px) → buraya px karşılıkları yazıldı.
   ════════════════════════════════════════════════════════════════════ */
.svc-showcase {
    position: relative; overflow: hidden; width: 100%; min-height: 100vh;
    background-repeat: no-repeat; background-size: contain; background-position: top center; z-index: 0;
}
.svc-inner { display: flex; align-items: center; justify-content: center; min-height: 100vh; width: 100%; }
.svc-media-col { flex: 0 0 50%; max-width: 50%; align-self: stretch; }
.svc-showcase .write2 { flex: 0 0 50%; max-width: 50%; padding: 0 10%; }

/* SOL: absolute stacked görseller (.inset), aktif olan görünür (crossfade) */
.svc-showcase .banner-blok { position: relative; height: 100vh; }
.svc-showcase .inset {
    position: absolute; overflow: hidden; height: 70%; width: 100%; top: 10%;
    opacity: 0; transition: opacity .45s ease-in-out;
}
.svc-showcase .inset.active { opacity: 1; }
.svc-showcase .ig {
    width: 100%; height: 100%;
    background-repeat: no-repeat; background-size: cover; background-position: center center;
}

/* SAĞ metin */
.svc-showcase .write2 .svc-eyebrow {
    display: block; font: normal 500 14px/1.65 "Montserrat", sans-serif;
    color: #fff; padding-left: 2px; letter-spacing: .04em;
}
.svc-showcase .write2 .svc-title {
    max-width: 500px; font: normal 600 40px/1 "Montserrat", sans-serif;
    text-transform: uppercase; color: #fff; margin: 20px 0 0;
}

/* Başlık listesi (sekmeler) — pasif gri, aktif/hover beyaz */
.svc-showcase .svc-tabs { margin: 26px 0 0; padding: 0; }
.svc-showcase .box { display: block; float: none; cursor: pointer; }
.svc-showcase .box .GaleriListe {
    position: relative; cursor: pointer; display: inline-block; padding: 5px 0; border: none;
    margin: 5px; background: transparent; text-decoration: none;
    font: normal 500 16px/1.7 "Montserrat", sans-serif; color: #858586;
    transition: margin .5s cubic-bezier(.26, .82, .76, 1.06), color .35s ease;
}
.svc-showcase .box.active .GaleriListe,
.svc-showcase .box .GaleriListe:hover,
.svc-showcase .box .GaleriListe:focus-visible { color: #fff; margin: 5px 0; }

/* SVG-stroke pill buton */
.svc-showcase .btn-ba {
    position: relative; display: inline-block; width: 160px; padding: 13px 0; margin: 25px 0 0;
    text-align: center; text-decoration: none; color: #fff; background: transparent;
    font: normal 500 14px/1.2 "Montserrat", sans-serif;
}
.svc-showcase .btn-ba svg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.svc-showcase .btn-ba svg path {
    fill: none; stroke: #fff; stroke-width: 1; stroke-dasharray: 500, 0; transition: all 3s ease;
}
.svc-showcase .btn-ba:hover svg path {
    stroke-dasharray: 30, 310; stroke-dashoffset: 290; transition: all 1.35s cubic-bezier(.19, 1, .22, 1);
}
.svc-showcase .btn-ba span { position: relative; z-index: 1; }

@media (max-width: 992px) {
    .svc-showcase { min-height: 0; }
    .svc-inner { flex-direction: column; min-height: 0; }
    .svc-media-col, .svc-showcase .write2 { flex: 0 0 100%; max-width: 100%; }
    .svc-showcase .banner-blok { height: 62vw; min-height: 280px; }
    .svc-showcase .inset { top: 0; height: 100%; }
    .svc-showcase .write2 { padding: 2.5rem 8%; }
    .svc-showcase .write2 .svc-title { font-size: 30px; }
}
@media (prefers-reduced-motion: reduce) {
    .svc-showcase .inset, .svc-showcase .box .GaleriListe, .svc-showcase .btn-ba svg path { transition: none; }
}

/* ════════════════════════════════════════════════════════════════════
   Global "btn-ba" — SVG-stroke pill buton (svc-showcase'deki tasarımın global hali)
   .white = beyaz stroke/metin (koyu zemin / görsel üzeri için)
   ════════════════════════════════════════════════════════════════════ */
.btn-ba {
    position: relative; display: inline-block; width: 170px; padding: 14px 0;
    text-align: center; text-decoration: none; color: var(--text); background: transparent;
    font: normal 600 14px/1.2 "Montserrat", sans-serif; letter-spacing: .02em;
}
.btn-ba svg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.btn-ba svg path {
    fill: none; stroke: var(--text); stroke-width: 1; stroke-dasharray: 500, 0; transition: all 3s ease;
}
.btn-ba:hover svg path {
    stroke-dasharray: 30, 310; stroke-dashoffset: 290; transition: all 1.35s cubic-bezier(.19, 1, .22, 1);
}
.btn-ba span { position: relative; z-index: 1; }
/* Global a:hover (color:var(--accent)/mavi) butonu ezmesin — hover'da renk varyanta sabit kalsın */
.btn-ba:hover { color: var(--text); opacity: 1; }
.btn-ba.white { color: #fff; }
.btn-ba.white:hover { color: #fff; opacity: 1; }
.btn-ba.white svg path { stroke: #fff; }

/* ════════════════════════════════════════════════════════════════════
   Ortak carousel — .ba-carousel (Galeri + Blog paylaşır)
   ════════════════════════════════════════════════════════════════════ */
.ba-carousel { position: relative; }
.ba-track {
    display: flex; gap: clamp(1rem, 2vw, 1.5rem);
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    list-style: none; margin: 0; padding: 0 0 .5rem;
}
.ba-track::-webkit-scrollbar { display: none; }
/* Sürekli akış (galeri) mandatory snap ile çakışır (her frame snap-back) → snap kapalı; step carousel'de açık kalır. */
.ba-carousel[data-autoplay="continuous"] .ba-track { scroll-snap-type: none; }
.ba-slide { scroll-snap-align: start; flex: 0 0 auto; }
.ba-prev, .ba-next {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 44px; height: 44px; border: none; border-radius: 50%;
    background: rgba(0,0,0,.55); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: background .25s ease;
}
.ba-prev:hover, .ba-next:hover { background: rgba(0,0,0,.8); }
.ba-prev { left: -8px; } .ba-next { right: -8px; }
@media (max-width: 768px) { .ba-prev { left: 2px; } .ba-next { right: 2px; } }
@media (prefers-reduced-motion: reduce) { .btn-ba svg path { transition: none; } }

/* ════════════════════════════════════════════════════════════════════
   Anasayfa Referanslar — logo grid + full bg + buton
   ════════════════════════════════════════════════════════════════════ */
.ref-sec { position: relative; padding: clamp(4rem, 8vw, 7rem) 0; background: #fff; overflow: hidden; text-align: center; }
[data-theme="dark"] .ref-sec { background: #0e0e10; }
.ref-eyebrow { display: inline-block; font: 700 .78rem/1 "Montserrat", sans-serif; letter-spacing: .22em; text-transform: uppercase; color: var(--text); opacity: .6; margin-bottom: 1rem; }
.ref-title { font: 600 clamp(1.8rem, 3.4vw, 2.6rem)/1 "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: -.02em; color: var(--text); margin: 0 0 clamp(2rem, 5vw, 3.5rem); }
.ref-logos { list-style: none; margin: 0 auto; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(1.5rem, 4vw, 3rem) 1rem; align-items: center; justify-items: center; }
.ref-logo { display: flex; align-items: center; justify-content: center; }
.ref-logo-inner { display: inline-flex; }
.ref-logo-img { max-height: 64px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: .55; transition: filter .3s ease, opacity .3s ease; }
.ref-logo:hover .ref-logo-img { filter: grayscale(0); opacity: 1; }
.ref-logo-text { color: var(--muted); font-size: .85rem; }
/* Resim6 tüm bölümün zemini — logoların ARKASINDA (emirali dünya haritası deseni) */
.ref-bg { position: absolute; inset: 0; z-index: 0; margin: 0; width: 100%; height: 100%; line-height: 0; }
.ref-bg picture { display: block; width: 100%; height: 100%; }
.ref-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.ref-inner { position: relative; z-index: 1; }
.ref-cta { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }
@media (max-width: 768px) { .ref-logos { grid-template-columns: repeat(3, 1fr); } }

/* ════════════════════════════════════════════════════════════════════
   Anasayfa Slider — full-width
   ════════════════════════════════════════════════════════════════════ */
.hero-slider { width: 100%; overflow: hidden; }
.hero-slider .carousel, .hero-slider .carousel-inner, .hero-slider .carousel-item { height: clamp(360px, 56vw, 760px); }
.hero-slide-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slide-cap { text-align: left; left: 8%; right: auto; bottom: 14%; max-width: min(620px, 80%); }
.hero-slide-title { font: 600 clamp(1.6rem, 3.6vw, 3rem)/1.05 "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: -.02em; }
.hero-slide-sub { opacity: .9; margin: .5rem 0 1.25rem; }
@media (max-width: 576px) { .hero-slide-cap { bottom: 8%; } .hero-slide-sub { display: none; } }

/* ════════════════════════════════════════════════════════════════════
   Anasayfa Sayaç (Stats) — scroll'da sayan istatistikler
   ════════════════════════════════════════════════════════════════════ */
.stat-sec { padding: clamp(4rem, 8vw, 7rem) 0; background: #fff; text-align: center; }
[data-theme="dark"] .stat-sec { background: #0e0e10; }
.stat-eyebrow { display: inline-block; font: 700 .78rem/1 "Montserrat", sans-serif; letter-spacing: .22em; text-transform: uppercase; color: var(--text); opacity: .6; margin-bottom: 1rem; }
.stat-title { font: 600 clamp(1.8rem, 3.4vw, 2.6rem)/1 "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: -.02em; color: var(--text); margin: 0; }
.stat-grid { list-style: none; margin: clamp(2.5rem, 5vw, 4rem) auto 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 5vw, 4rem) 1rem; }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.stat-num-wrap { display: inline-flex; align-items: baseline; gap: .25rem; }
.stat-num { font: 800 clamp(2.2rem, 5vw, 3.6rem)/1 "Montserrat", sans-serif; color: var(--text); letter-spacing: -.03em; }
.stat-unit { font: 700 .9rem/1 "Montserrat", sans-serif; color: var(--text); text-transform: uppercase; }
.stat-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 768px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════════════════════════════════════════════════════════
   Anasayfa Galeri — akan carousel (4'lü), dikey kartlar, tam görünen görsel + Fancybox slider
   ════════════════════════════════════════════════════════════════════ */
.gal-sec { padding: clamp(4rem, 8vw, 7rem) 0; background: #fafafa; overflow: hidden; }
[data-theme="dark"] .gal-sec { background: #0e0e10; }
.gal-eyebrow { display: inline-block; font: 700 .78rem/1 "Montserrat", sans-serif; letter-spacing: .22em; text-transform: uppercase; color: var(--text); opacity: .6; margin-bottom: 1rem; }
.gal-title { font: 600 clamp(1.8rem, 3.4vw, 2.6rem)/1 "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: -.02em; color: var(--text); margin: 0 0 clamp(2rem, 4vw, 3rem); }
/* Akan carousel — aynı anda 4 kart görünür (sabit gap ile tam 4'e böler). */
.gal-carousel .ba-track { gap: 1.25rem; }
.gal-card { flex: 0 0 calc((100% - 3 * 1.25rem) / 4); width: calc((100% - 3 * 1.25rem) / 4); }
/* Dikey dikdörtgen kart (3:4); zemin letterbox bandını doldurur. */
.gal-fig { margin: 0; position: relative; overflow: hidden;    border-radius: 14px;}
[data-theme="dark"] .gal-fig { background: #17171a; }
.gal-link { display: block; width: 100%; height: 100%; cursor: zoom-in; }
/* contain → görsel tamamı görünür, kırpılmaz. */
.gal-img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform .5s ease; }
.gal-fig:hover .gal-img { transform: scale(1.04); }
.gal-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem 1rem .9rem; color: #fff; font-weight: 600; font-size: 1rem; text-align: center; background: linear-gradient(180deg, transparent, rgba(0,0,0,.65)); }
.gal-cta { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }
@media (max-width: 992px) { .gal-card { flex-basis: calc((100% - 2 * 1.25rem) / 3); width: calc((100% - 2 * 1.25rem) / 3); } }
@media (max-width: 768px) { .gal-card { flex-basis: calc((100% - 1.25rem) / 2); width: calc((100% - 1.25rem) / 2); } }

/* İç sayfa galeri — anasayfa kart görünümü (ba-slide gal-card) grid içinde */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.gal-grid .gal-card { flex: none; width: 100%; }
@media (max-width: 992px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .gal-grid { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════════════════════════════════════════════════════════
   Anasayfa Blog — akan carousel
   ════════════════════════════════════════════════════════════════════ */
.blog-sec { padding: clamp(4rem, 8vw, 7rem) 0; background: #fff; overflow: hidden; }
[data-theme="dark"] .blog-sec { background: #0e0e10; }
.blog-eyebrow { display: inline-block; font: 700 .78rem/1 "Montserrat", sans-serif; letter-spacing: .22em; text-transform: uppercase; color: var(--text); opacity: .6; margin-bottom: 1rem; }
.blog-title { font: 600 clamp(1.8rem, 3.4vw, 2.6rem)/1 "Montserrat", sans-serif; text-transform: uppercase; letter-spacing: -.02em; color: var(--text); margin: 0 0 clamp(2rem, 4vw, 3rem); }
/* Akan carousel — aynı anda tam 4 kart görünür (sabit gap ile 4'e böler). */
.blog-carousel .ba-track { gap: 1.25rem; }
.blog-card { flex: 0 0 calc((100% - 3 * 1.25rem) / 4); width: calc((100% - 3 * 1.25rem) / 4); }
.blog-art { height: 100%; display: flex; flex-direction: column; }
.blog-img-wrap { display: block; border-radius: 14px; overflow: hidden; }
/* Görsel kendi gerçek oranında — kırpma (cover) yok. */
.blog-img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.blog-img-wrap:hover .blog-img { transform: scale(1.05); }
.blog-body { padding: 1.1rem .25rem 0; display: flex; flex-direction: column; flex: 1; }
.blog-date { display: block; font: 600 .7rem/1 "Montserrat", sans-serif; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
/* Başlık: 2 satıra sabit — tüm kartlar aynı hizada. */
.blog-card-title {
    font: 600 1.05rem/1.35 "Montserrat", sans-serif; letter-spacing: -.01em; margin: 0 0 .5rem;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    min-height: calc(2 * 1.35em);
}
.blog-card-title a { color: var(--text); text-decoration: none; transition: color .25s ease; }
.blog-card-title a:hover { color: var(--accent); }
/* Özet: 3 satıra sabit. */
.blog-card-sub {
    color: var(--muted); font-size: .9rem; line-height: 1.6; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    min-height: calc(3 * 1.6em);
}
.blog-cta { display: flex; justify-content: center; margin-top: clamp(2rem, 4vw, 3rem); }
@media (max-width: 992px) { .blog-card { flex-basis: calc((100% - 1.25rem) / 2); width: calc((100% - 1.25rem) / 2); } }
@media (max-width: 768px) { .blog-card { flex-basis: 80vw; width: 80vw; } }

/* ════════════════════════════════════════════════════════════════════
   Site Footer — 3 sütun (marka+destek+bülten | footer menü | yasal+sosyal)
   Montserrat + var(--accent).
   ════════════════════════════════════════════════════════════════════ */
.site-footer {
    --footer-bg: rgba(15, 15, 17, .96);
    --footer-text: rgba(255, 255, 255, .62);
    --footer-head: #fff;
    --footer-line: rgba(255, 255, 255, .10);
    position: relative;
    color: var(--footer-text);
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    margin-top: 0;
    padding: 5rem 4rem 2rem;
    border-radius: 3rem 3rem 0 0;
}
.footer-body { padding-top: clamp(2.5rem, 5vw, 4.5rem); }

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── Marka sütunu ── */
.footer-brand { display: flex; flex-direction: column; gap: clamp(1.5rem, 3vw, 2.25rem); }
.footer-logo-link { display: inline-flex; width: fit-content; }
.footer-logo { max-height: 120px; width: auto; }
.footer-logo-text { font: 700 1.5rem/1 "Montserrat", sans-serif; color: var(--footer-head); letter-spacing: -.02em; }

/* ── Sütun başlıkları + linkler ── */
.footer-col-title {
    font: 400 .82rem/1 "Montserrat", sans-serif; color: rgba(255,255,255,.5);
    letter-spacing: .12em; text-transform: uppercase; margin: 0 0 1.5rem;
    padding-bottom: .9rem; border-bottom: 2px solid var(--footer-line);
}
.footer-col-title--mt { margin-top: 2.25rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .9rem; }
.footer-links a { color:#fff; text-decoration: none; font-size: .95rem; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color:  var(--footer-text); padding-left: .35rem; }

/* ── Sosyal medya (ikon + etiket) ── */
.footer-social-list { display: flex; flex-direction: column; gap: .85rem; }
.fsl-item {
    display: inline-flex; align-items: center; gap: .75rem; width: fit-content;
    color: var(--footer-text); text-decoration: none; font-size: .95rem; transition: color .2s;
}
.fsl-item i {
    width: 30px; height: 30px; border-radius: 8px; flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.07); color: #fff; font-size: 1rem;
    transition: background .25s, transform .25s;
}
.fsl-item:hover { color: #fff; }
.fsl-item:hover i { background: var(--accent); transform: translateY(-2px); }

/* ── Yardım & Destek bloğu ── */
.ft-help { display: flex; flex-direction: column; gap: 1.4rem; }
.ft-help__head { display: flex; align-items: center; gap: 14px; }
.ft-help__icon {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.5rem;
    border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06);
}
.ft-help__title { color: #fff; font-weight: 700; font-size: 1.02rem; line-height: 1.2; }
.ft-help__desc { color: rgba(255,255,255,.55); font-size: .84rem; margin-top: 3px; }
.ft-help__row { display: flex; flex-wrap: wrap; gap: 16px 28px; }
.ft-help__item { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: 1 1 200px; min-width: 0; }
.ft-help__item-icon {
    flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06);
    transition: color .2s, background .2s, border-color .2s;
}
.ft-help__item:hover .ft-help__item-icon { color: #fff; background: var(--accent); border-color: var(--accent); }
.ft-help__item-text { display: flex; flex-direction: column; min-width: 0; }
.ft-help__item-label { color: rgba(255,255,255,.55); font-size: .74rem; line-height: 1.25; }
.ft-help__item-value { color: #fff; font-weight: 600; font-size: .92rem; line-height: 1.3; }

/* ── Bülten ── */
.footer-newsletter { display: flex; flex-direction: column; gap: 1rem; }
.fn-line { font: 400 clamp(1.2rem, 2vw, 1.2rem)/1.2 "Montserrat", sans-serif; color: var(--footer-head); letter-spacing: -.01em; }
.fn-form { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.fn-input {
    flex: 1 1 240px; min-width: 0; height: 48px; padding: 0 1.5rem;
    background: rgba(255,255,255,.06); border: 1px solid var(--footer-line);
    border-radius: 999px; color: #fff; font-size: 1rem;
    transition: border-color .2s, background .2s;
}
.fn-input::placeholder { color: rgba(255,255,255,.45); }
.fn-input:focus { outline: none; background: rgba(255,255,255,.09); border-color: var(--accent); }
.fn-btn {
    flex: 0 0 auto; height: 48px; padding: 0 2rem;
    background: var(--accent); border: none; border-radius: 999px;
    color: #fff; font: 400 .82rem/1 "Montserrat", sans-serif; letter-spacing: .12em;
    cursor: pointer; transition: transform .2s, box-shadow .2s, opacity .2s;
}
.fn-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,113,227,.35); opacity: .95; }
.fn-btn:disabled { opacity: .7; cursor: default; transform: none; box-shadow: none; }
.fn-turnstile { flex: 1 1 100%; margin-top: .25rem; }
.fn-sonuc { font-size: .85rem; }
.fn-sonuc.is-ok { color: #34d399; }
.fn-sonuc.is-warn { color: #fbbf24; }
.fn-sonuc.is-err { color: #f87171; }

/* ── Telif ── */
.footer-bottom { border-top: 1px solid var(--footer-line); padding: 1.25rem 0; }
.footer-bottom .container { font-size: .85rem; color: rgba(255,255,255,.4); }

/* ── Responsive ── */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
    .fn-input, .fn-btn { width: 100%; flex: 1 1 100%; }
    .ft-help__row { flex-direction: column; gap: 14px; }
}
