/* ─── 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);
    /* Frontend varsayılan fontu: Poppins (kullanıcı tercihi) */
    --bs-font-sans-serif: 'Poppins', system-ui, -apple-system, Segoe UI, Helvetica, Arial, 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 {
    padding: 0;
}

.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: var(--surface);
    border-top: 1px solid var(--border);
    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;
}

/* ═══════════════════════════════════════════════════════════════════════
   AUDI F1 ESİNLİ TEMA — Header + Hero "dashboard"
   (Bootstrap + custom CSS; Tailwind kullanılmadı. f1-* namespace ile izole.)
   ═══════════════════════════════════════════════════════════════════════ */
:root {
    --f1-black: #000;
    --f1-white: #fff;
    --f1-deepcharcoal: #131313;
    --f1-midcharcoal: #1b1b1b;
    --f1-charcoal: #3e3e3e;
    --f1-darkgrey: #707582;
    --f1-midgrey: #c2c2c2;
    --f1-lightgrey: #ecedee;
    --f1-red: #24703b;
    --f1-red-40: #24703b66;
    --f1-white-20: #ffffff33;
    --f1-black-60: #000000cc;
    --f1-black-0009: #0009;
    --f1-radius: .5rem;
    --f1-ease: cubic-bezier(.4, 0, .2, 1);
    --f1-maxw: 1920px;
    --f1-gap: 12px;
}

/* ── Ortak tipografi yardımcıları ── */
.f1-header .mono-micro,
.f1-overlay .mono-micro,
.f1-hero .mono-micro {
    letter-spacing: 1px;
    font-size: var(--bs-body-font-size, 1rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
}

/* ── Circle icon ── */
.f1-circle-icon {
    border: 1px solid;
    border-radius: 50%;
    flex: none;
    width: 41px;
    height: 41px;
    position: relative;
    display: block;
    transition: rotate .6s var(--f1-ease), background-color .3s, color .3s;
}
.f1-circle-icon svg { width: 24px; height: 24px; position: absolute; top: 8px; left: 8px; }
.f1-circle-icon--arrow { rotate: -45deg; }

/* ── Buton ── */
.f1-btn {
    background: var(--f1-red);
    border: 1px solid var(--f1-red);
    color: var(--f1-white);
    text-transform: uppercase;
    font-weight: 700;
    font-size: .75rem;
    cursor: pointer;
    border-radius: 999px;
    padding: 6px;
    display: inline-flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    transition: all .3s var(--f1-ease);
    text-decoration: none;
}
.f1-btn:hover { background: var(--f1-black); border-color: var(--f1-red-40); color: var(--f1-red); }
.f1-btn .f1-circle-icon--arrow { rotate: -45deg; }
.f1-btn:hover .f1-circle-icon--arrow { rotate: 0deg; }
.f1-btn__text { padding: 6px 12px; }
.f1-btn--large { font-size: .875rem; }
.f1-btn--large .f1-circle-icon { width: 44px; height: 44px; }
.f1-btn--large .f1-circle-icon svg { width: 26px; height: 26px; top: 9px; left: 9px; }
.f1-btn--ghost {
    background: transparent;
    border-color: var(--f1-white-20);
    color: var(--f1-white);
    padding: 8px 18px;
}
.f1-btn--ghost:hover { background: var(--f1-white); border-color: var(--f1-white); color: var(--f1-black); }

/* ═════════════ HEADER ═════════════ */
.f1-header {
    position: sticky;
    top: 0;
    z-index: 50; /* overlay (40) üstünde kalır → açık menüde toggle/cross tıklanabilir */
    width: 100%;
}
.f1-header__inner {
    max-width: var(--f1-maxw);
    margin: 0 auto;
    padding: 5px var(--f1-gap);
    background-color: var(--f1-deepcharcoal);
}
.f1-header__bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid var(--f1-white-20); */
    background: var(--f1-black);
    color: var(--f1-white);
    border-radius: var(--f1-radius);
    padding: 14px 20px;
}
.f1-header__logo { display: inline-flex; align-items: center; color: var(--f1-white); }
/* Yatay (geniş) logo header'ı taşırmasın: yükseklik + genişlik birlikte sınırlı */
.f1-header__logo img { height: 75px; width: auto; max-width: min(45vw, 260px); object-fit: contain; object-position: left center; display: block; }
.f1-header__brand { font-weight: 700; letter-spacing: .5px; color: var(--f1-white); }

/* Header sağ aksiyonlar (AI arama + hamburger bir arada) */
.f1-header__actions { display: flex; align-items: center; gap: 18px; }

/* AI Akıllı Arama tetik butonu (header) */
.f1-search-trigger,
.f1-cal-trigger {
    width: 40px; height: 40px; padding: 0; flex-shrink: 0;
    border: 1px solid var(--f1-white-20); border-radius: 50%;
    background: transparent; color: var(--f1-white); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.f1-search-trigger:hover,
.f1-cal-trigger:hover { background: var(--f1-white-20); border-color: var(--f1-white); transform: scale(1.06); }
.f1-search-trigger:active,
.f1-cal-trigger:active { transform: scale(.96); }
/* Takvim linki hover'da global a:hover şeffaflığı/mavisi almasın */
.f1-cal-trigger, .f1-cal-trigger:hover { color: var(--f1-white); opacity: 1; text-decoration: none; }

/* Hamburger butonu */
.f1-nav-toggle {
    position: relative;
    width: 40px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--f1-white);
    cursor: pointer;
}
.f1-nav-toggle__hamburger,
.f1-nav-toggle__cross {
    position: absolute;
    top: 50%;
    right: 2px;
    width: 16px;
    height: 16px;
    translate: 0 -50%;
    display: flex;
    flex-direction: column;
}
.f1-nav-toggle__hamburger { justify-content: center; align-items: flex-end; gap: 4px; }
.f1-nav-toggle__cross { justify-content: space-between; align-items: flex-start; }
.f1-nav-toggle__hamburger span,
.f1-nav-toggle__cross span {
    display: block;
    width: 16px;
    border-top: 1px solid currentColor;
    transition: width .5s var(--f1-ease);
}
.f1-nav-toggle__hamburger span:nth-of-type(3) { width: 10px; }
.f1-nav-toggle__cross span { width: 0; }
.f1-nav-toggle.open .f1-nav-toggle__hamburger span { width: 0; }
.f1-nav-toggle.open .f1-nav-toggle__cross span { width: 20.5px; }
.f1-nav-toggle__cross span:first-of-type { transform-origin: 0 0; rotate: 45deg; }
.f1-nav-toggle__cross span:nth-of-type(2) { transform-origin: 0 100%; rotate: -45deg; }

/* Mobil header: logo + (AI arama) + hamburger dar ekranda sığsın */
@media (max-width: 575.98px) {
    .f1-header__inner { padding: 5px 12px; }
    .f1-header__bar { padding: 10px 14px; }
    .f1-header__logo img { height: 34px; max-width: 40vw; }
    .f1-header__actions { gap: 12px; }
    .f1-search-trigger, .f1-cal-trigger { width: 36px; height: 36px; }
}

/* ── İç sayfa hero'su (koyu, tam genişlik bc-hero/ed-hero) olan sayfalarda header
   şeffaf + hero üzerine biner. Açık zeminli iç sayfalar (giriş, statik metin vb.) ve
   anasayfa (f1-hero) ETKİLENMEZ → header okunur kalır. */
body:has(main > .bc-hero) .f1-header,
body:has(main > .ed-hero) .f1-header { position: absolute; top: 0; left: 0; right: 0; }
body:has(main > .bc-hero) .f1-header__inner,
body:has(main > .ed-hero) .f1-header__inner { background-color: transparent; }
body:has(main > .bc-hero) .f1-header__bar,
body:has(main > .ed-hero) .f1-header__bar { background: transparent; }
/* Şeffaf header altında kalmasın diye iç sayfa hero'larına üst boşluk */
.bc-hero, .ed-hero { padding-top: clamp(78px, 8vw, 104px); }

/* ═════════════ OVERLAY (tam ekran menü) ═════════════ */
.f1-noscroll { overflow: hidden; }
/* Tam ekran menü / modal / çerez bandı açıkken yüzen utility widget'larını gizle —
   açık menünün/bandın üstünde durmalarını (üst üste binme) önler. Sadece geçici durum;
   varsayılan masaüstü görünümü değişmez. */
.wa-fab { transition: opacity .25s ease, visibility .25s ease; animation: waFloat 3s ease-in-out infinite; }
/* Yeşil nabız halkası (etkinlik play butonundaki edPlayPulse ile aynı efekt) */
.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); } }
@media (prefers-reduced-motion: reduce) { .wa-fab, .wa-fab::before { animation: none; } }
body.f1-noscroll .wa-fab,
body.f1-noscroll .framek-lang-fixed,
body.cb-open .wa-fab {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* ═══════════ TAM EKRAN MENÜ (3 bölüm, tonsürton) ═══════════ */
.f1-overlay {
    position: fixed;
    inset: 0;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--f1-ease), visibility .35s var(--f1-ease);
}
.f1-overlay.is-open { opacity: 1; visibility: visible; }

.f1-overlay__panel {
    position: absolute; inset: 0;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(0, 1.5fr) minmax(360px, 480px);
    background: #0a0a0a;
    color: #fff;
    overflow: hidden;
    transform: scale(1.02);
    transition: transform .4s var(--f1-ease);
}
.f1-overlay.is-open .f1-overlay__panel { transform: scale(1); }

/* Tonsürton 3 bölüm — #0a0a0a'dan başlayıp hafif açılır */
.f1-ov-menu, .f1-ov-cats, .f1-ov-info {
    padding: clamp(28px, 5vh, 64px) clamp(24px, 3vw, 56px);
    overflow-y: auto;
}
.f1-ov-menu { background: #0a0a0a; }
.f1-ov-cats { background: #171717; }
.f1-ov-info { background: #242424; border-left: 1px solid rgba(255, 255, 255, .05); position: relative; }

/* ── SOL: menü ── */
.f1-ov-menu { display: flex; flex-direction: column; justify-content: center; gap: clamp(8px, 1.8vh, 20px); }
.f1-ov-menu__link {
    color: #fff; text-decoration: none; font-weight: 100;
    font-size: clamp(1.35rem, 2.3vw, 2.1rem); line-height: 1.12; letter-spacing: -.01em;
    width: max-content; max-width: 100%;
    transition: color .2s ease, transform .2s ease;
}
.f1-ov-menu__link:hover { color: var(--f1-accent, #24703b); transform: translateX(6px); }

/* ── ORTA: ana kategoriler ── */
.f1-ov-cats { display: flex; flex-direction: column; justify-content: center; }
/* Yönetilebilir arka plan görseli (admin/Banner Düzenle · MenuArkaResim) — hafif gölgeli/karartmalı */
.f1-ov-cats--bg {
    position: relative;
    background-image: var(--ov-cats-bg);
    background-size: cover; background-position: center;
    box-shadow: inset 0 0 90px rgba(0, 0, 0, .6);
}
.f1-ov-cats--bg::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(180deg, rgba(10, 10, 10, .48), rgba(10, 10, 10, .66));
}
.f1-ov-cats--bg > * { position: relative; z-index: 1; }
.f1-ov-cats__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
.f1-ov-cat { text-decoration: none; color: #fff; display: flex; flex-direction: column; gap: 10px; }
.f1-ov-cat__media {
    position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
    background: #161616; border: 1px solid rgba(255, 255, 255, .07);
    display: flex; align-items: center; justify-content: center;
}
.f1-ov-cat__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--f1-ease); }
.f1-ov-cat:hover .f1-ov-cat__media img { transform: scale(1.06); }
.f1-ov-cat__media i { font-size: 1.6rem; color: rgba(255, 255, 255, .25); }
.f1-ov-cat__title { font-weight: 100; font-size: .95rem; line-height: 1.25; transition: color .2s ease; }
.f1-ov-cat:hover .f1-ov-cat__title { color: var(--f1-accent, #24703b); }

/* ── SAĞ: bilgi sütunu ── */
/* Sağ sütun 3 dikey bölge: logo (üst) · iletişim (orta) · yasal+telif (alt) */
.f1-ov-info { display: flex; flex-direction: column; gap: 20px; }
.f1-overlay__topbar {
    position: absolute; top: clamp(18px, 3vh, 34px); right: clamp(20px, 3vw, 48px); z-index: 5;
    display: flex; align-items: center; gap: 14px;
}
.f1-ov-langs { display: flex; align-items: center; }
.f1-ov-lang {
    color: rgba(255, 255, 255, .5); text-decoration: none; font-size: .82rem; font-weight: 600;
    padding: 2px 12px; position: relative; transition: color .2s ease;
}
.f1-ov-lang:hover, .f1-ov-lang.is-active { color: #fff; }
.f1-ov-lang:not(:last-child)::after {
    content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    height: 12px; width: 1px; background: rgba(255, 255, 255, .2);
}
.f1-ov-close {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18); background: transparent; color: #fff;
    display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .3s ease;
}
.f1-ov-close:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .4); transform: rotate(90deg); }

.f1-ov-logo { flex: 0 0 auto; display: inline-flex; align-items: center; text-decoration: none; color: #fff; margin-top: clamp(36px, 6vh, 64px); }
.f1-ov-logo img { max-height: 60px; max-width: min(70vw, 300px); width: auto; object-fit: contain; }
.f1-ov-logo .f1-header__brand { font-size: 1.6rem; font-weight: 700; letter-spacing: .02em; }

/* Orta blok dikeyde ortalanır (logo ile alt blok arasındaki boşluğu kaplar) */
.f1-ov-info__body { flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
/* Alt blok: yasal + telif */
.f1-ov-bottom { flex: 0 0 auto; display: flex; flex-direction: column; gap: 10px; }
.f1-ov-field { display: flex; flex-direction: column; gap: 6px; }
.f1-ov-field__label { color: var(--f1-red); font-size: .8rem; font-weight: 600; letter-spacing: .02em; }
.f1-ov-field__val {
    color: rgba(255, 255, 255, .85); text-decoration: none; font-size: .92rem; line-height: 1.5;
    display: flex; align-items: flex-start; gap: 9px; transition: color .2s ease;
}
.f1-ov-field__val i { color: rgba(255, 255, 255, .55); margin-top: 3px; flex-shrink: 0; }
a.f1-ov-field__val:hover { color: #fff; }

.f1-ov-social { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2px; }
.f1-ov-social__link {
    width: 44px; height: 44px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .8);
    font-size: 1.1rem; text-decoration: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.f1-ov-social__link:hover {
    color: #fff; background: var(--f1-accent, #24703b);
    border-color: var(--f1-accent, #24703b); transform: translateY(-2px);
}

.f1-ov-legal { display: flex; flex-direction: column; gap: 8px; }
.f1-ov-legal__link { color: rgba(255, 255, 255, .7); text-decoration: none; font-size: .85rem; transition: color .2s ease; }
.f1-ov-legal__link:hover { color: #fff; }
.f1-ov-copyright { color: rgba(255, 255, 255, .4); font-size: .78rem; line-height: 1.5; padding-top: 6px; border-top: 1px solid rgba(255, 255, 255, .06); }

/* Responsive — 3 bölüm alt alta yığılır */
@media (max-width: 991.98px) {
    .f1-overlay__panel {
        grid-template-columns: 1fr;
        grid-auto-rows: max-content;
        overflow-y: auto;
    }
    .f1-ov-menu { justify-content: flex-start; padding-top: clamp(76px, 12vh, 110px); gap: 12px; }
    .f1-ov-cats, .f1-ov-info { justify-content: flex-start; }
    .f1-ov-info { border-left: none; border-top: 1px solid rgba(255, 255, 255, .05); }
    .f1-ov-logo { margin-top: 8px; }
    /* Panel mobilde kaydığı için üst bar viewport'a sabitlensin */
    .f1-overlay__topbar { position: fixed; }
}

/* ═════════════ HERO "DASHBOARD" ═════════════ */
.f1-hero {
    position: relative;
    background: var(--f1-deepcharcoal);
    color: var(--f1-white);
    overflow: hidden;
}
.f1-hero__bgwrap { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.f1-hero__bg { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.f1-dashboard {
    position: relative;
    z-index: 1;
    max-width: var(--f1-maxw);
    margin: 0 auto;
    padding: 12px var(--f1-gap);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.f1-col { display: flex; flex-direction: column; gap: 12px; }
.f1-subrow { display: flex; flex-direction: column; gap: 12px; }

/* Kart temeli */
.f1-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--f1-radius);
    background: var(--f1-black);
    color: var(--f1-white);
    text-decoration: none;
    display: flex;
}
.f1-card--bordered { border: 1px solid var(--f1-white-20); }
.f1-card__media { position: absolute; inset: 0; z-index: 0; }
.f1-card__video, .f1-card__img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.f1-card__body {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
}
.f1-card__body--between { justify-content: space-between; gap: 12px; }
/* Ortalı kart gövdesi: dikeyde merkezde dururdu; içeriği biraz yukarı çekmek için
   alt boşluğu artırıyoruz → ilk açılışta (fold üstünde) görünür kalır. */
.f1-card__body--center { justify-content: flex-start; align-items: center; text-align: center; gap: 8px; }
.f1-card__body--overlay {
    background: var(--f1-black-60);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: -webkit-backdrop-filter .3s, backdrop-filter .3s;
}
.f1-card--link:hover .f1-card__body--overlay { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.f1-card__eyebrow { margin: 0 0 8px; }
.f1-card__desc { font-weight: 700; font-stretch: 125%; }
.f1-card--link .f1-circle-icon { color: var(--f1-black); background: var(--f1-red); border-color: var(--f1-red); }
.f1-card--link:hover .f1-circle-icon { color: var(--f1-red); background: var(--f1-black); }
.f1-card--link:hover .f1-circle-icon--arrow { rotate: 0deg; }

/* Headline (büyük başlık) */
.f1-headline {
    font-weight: 700;
    font-stretch: 150%;
    line-height: 1;
    word-break: break-word;
    text-transform: uppercase;
    font-size: 11vw;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.f1-headline__line { display: block; }
.f1-headline--date { font-size: 11vw; }

/* Bilgi tile */
.f1-card--info { min-height: 220px; }
.f1-info-cols { display: flex; flex-direction: row; justify-content: space-between; gap: 12px; }
.f1-info-col { flex: 0 1 50%; line-height: 1.6; }
.f1-bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.f1-bullet { display: flex; flex-direction: row; align-items: baseline; gap: 8px; }
.f1-bullet__mark { color: var(--f1-red); }
.f1-bullet__mark svg { width: 6px; height: 7px; display: inline-block; }

/* Geri sayım tile */
.f1-card--countdown { color: var(--f1-red); background: var(--f1-black); min-height: 140px; }
.f1-countdown { font-weight: 700; font-stretch: 150%; font-size: clamp(1.5rem, 6vw, 2.5rem); text-align: center; }
.f1-countdown__human { color: var(--f1-midgrey); font-size: .9rem; line-height: 1.4; text-align: center; }

/* ── Geri sayım kartı logo/yazı (slaytla değişir — VideoSlider.KartLogo/KartYazi)
   f1-countdown__human'dan SONRA gelir; üstünde hafif boşluk ── */
.f1-cd-brand {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    margin-top: 14px;
}
.f1-cd-brand img { height: 44px; max-width: 180px; width: auto; object-fit: contain; display: block; }
.f1-cd-brand__text { letter-spacing: .16em; text-transform: uppercase; opacity: .85; text-align: center; }

/* ── Responsive: lg+ → iki kolon yan yana ── */
@media (min-width: 992px) {
    .f1-dashboard { flex-direction: row;}
    .f1-col--left  { flex: 0 1 60%; }
    .f1-col--right { flex: 0 1 40%; }
    .f1-subrow { flex-direction: row; }
    .f1-subrow > .f1-card { flex: 0 1 50%; }

    .f1-card--hero { aspect-ratio: 984 / 642; }
    .f1-card--info, .f1-card--countdown {
        aspect-ratio: 434 / 280;
        min-height: 0;
    }
    .f1-card--link { aspect-ratio: 584 / 280; }

    .f1-headline { font-size: 3rem; }
    .f1-headline--date { font-size: 3rem; }

    .f1-nav-card--menu { flex: 1 1 calc(50% - 6px); }
}
@media (min-width: 1280px) {
    .f1-headline, .f1-headline--date { font-size: 4rem; }
}
@media (min-width: 1536px) {
    .f1-headline, .f1-headline--date { font-size: 4.5rem; }
}

/* Mobilde hero kartlarına makul yükseklik */
@media (max-width: 991.98px) {
    .f1-card--hero { min-height: 460px; }
    .f1-card--link { min-height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
    .f1-nav-card { transition: none; }
}

/* ═════════════ VIDEO SLIDER (hero v4) eklentileri ═════════════ */
/* Büyük tile içerik dikey akış: sub → h1 → açıklama → footer(buton+dots) */
.f1-hero__desc {
    margin: 10px 0 0;
    max-width: 52ch;
    font-stretch: 110%;
    line-height: 1.5;
    color: var(--f1-lightgrey);
}
.f1-card__footer {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

/* Dots (sayfalama) — sağ altta */
.f1-dots { display: flex; gap: 8px; align-items: center; }
.f1-dot {
    width: 10px; height: 10px;
    padding: 0;
    border: 1px solid var(--f1-white-20);
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .3s, border-color .3s, transform .3s;
}
.f1-dot:hover { border-color: var(--f1-white); }
.f1-dot.is-active { background: var(--f1-red); border-color: var(--f1-red); transform: scale(1.15); }

/* Bilgi tile metinleri */
.f1-info-title { font-weight: 700; font-stretch: 125%; margin: 0 0 4px; }
.f1-info-text { margin: 0; color: var(--f1-midgrey); font-size: .9rem; line-height: 1.4; }
.f1-info-alt { margin: 0; text-align: left; color: var(--f1-lightgrey); font-size: .9rem; line-height: 1.5; }

/* Geri sayım */
.f1-countdown__label { color: var(--f1-red); text-align: center; }
.f1-countdown__legend { color: var(--f1-midgrey); text-align: center; letter-spacing: .04em; }
.f1-countdown.is-bump { animation: f1Bump .35s var(--f1-ease); }
@keyframes f1Bump {
    0%   { transform: translateY(2px); opacity: .6; }
    100% { transform: translateY(0);   opacity: 1; }
}

/* Split-flap akışı sırasında hafif vurgulama */
.is-flapping { letter-spacing: .5px; opacity: .92; }
.f1-headline.is-flapping { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
    .f1-countdown.is-bump { animation: none; }
    .is-flapping { letter-spacing: normal; opacity: 1; }
}

/* ── Sadece büyük video tile (.f1-card--hero) için override'lar ── */
.f1-card--hero .f1-headline { color: #fff; font-size: 2.75rem; }
.f1-card--hero .f1-card__body--between { justify-content: end; }

/* ═════════════ SAĞ KOLON — full-bleed görsel + yarım blur metin paneli ═════════════ */
/* Görsel tüm kartı kaplar; metin paneli %50'yi kaplar ve arkasındaki görseli blur'lar.
   Görsel tarafı = panelin OLMADIĞI yarı. Kart 1,3 → görsel sol (panel sağ); Kart 2 → görsel sağ (panel sol). */
.f1-rc {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--f1-radius);
    background: var(--f1-midcharcoal);
    color: var(--f1-white);
    text-decoration: none;
    min-height: 200px;
}
.f1-rc__img { position: absolute; inset: 0; z-index: 0; }
.f1-rc__img picture { display: block; width: 100%; height: 100%; }
.f1-rc__img img,
.f1-rc__cover { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.f1-rc__placeholder { display: block; width: 100%; height: 100%; background: var(--f1-charcoal); }

.f1-rc__text {
    position: absolute;
    top: 0; bottom: 0; right: 0;     /* varsayılan: panel sağda (görsel solda) */
    width: 50%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 16px;
    background: var(--f1-black-0009);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: -webkit-backdrop-filter .3s, backdrop-filter .3s;
}
.f1-rc--imgright .f1-rc__text { right: auto; left: 0; }  /* görsel sağ → panel sol */
.f1-rc:hover .f1-rc__text { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
/* Belli belirsiz S · E · T marka harfi — blur panelin üstünde şık watermark */
.f1-rc__wm {
    position: absolute;
    right: 14px; bottom: 4px;
    z-index: 0; pointer-events: none;
    font-weight: 800; font-style: normal;
    font-size: clamp(88px, 12vw, 150px);
    line-height: .8; letter-spacing: -.03em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .16);
    text-shadow: 0 1px 18px rgba(255, 255, 255, .05);
    -webkit-user-select: none; user-select: none;
    transition: -webkit-text-stroke-color .35s ease, color .35s ease;
}
.f1-rc:hover .f1-rc__wm { -webkit-text-stroke-color: rgba(255, 255, 255, .28); }
.f1-rc--imgright .f1-rc__wm { right: auto; left: 14px; }
.f1-rc__top { position: relative; z-index: 1; display: flex; flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 12px; }
.f1-rc__desc { position: relative; z-index: 1; font-weight: 500; font-stretch: 125%; font-size: .85rem; line-height: 1.25; }
/* Metin hover'da maviye dönmesin (global a:hover override) — beyaz kalsın */
.f1-rc,
.f1-rc:hover,
.f1-rc:hover .f1-rc__desc,
.f1-rc:hover .mono-micro { color: var(--f1-white); opacity: 1; }
.f1-rc .f1-circle-icon { color: var(--f1-black); background: var(--f1-red); border-color: var(--f1-red); }
.f1-rc:hover .f1-circle-icon { color: var(--f1-red); background: var(--f1-black); }
.f1-rc:hover .f1-circle-icon--arrow { rotate: 0deg; }

@media (min-width: 992px) {
    .f1-rc { aspect-ratio: 584 / 280; min-height: 0; }
}
@media (max-width: 991.98px) {
    /* Mobil: görsel üstte (relative), metin paneli tam genişlik altta */
    .f1-rc { aspect-ratio: auto; }
    .f1-rc__img { position: relative; height: 180px; }
    .f1-rc__text,
    .f1-rc--imgright .f1-rc__text {
        position: relative; right: auto; left: auto; width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════════════════
   YAKLAŞAN ETKİNLİKLER — başlık (squiggle) + yatay marquee
   ═══════════════════════════════════════════════════════════════════════ */
.ue-section {
    background: var(--f1-deepcharcoal);
    color: var(--f1-white);
    padding: 48px 0 56px;
    overflow: hidden;
}
.ue-inner { max-width: var(--f1-maxw); margin: 0 auto; padding: 0 24px; }

/* Başlık satırı: sol = başlık · sağ = pg-arrow oklar */
/* flex-wrap + min-width:0 → dar ekranda başlık daralır/oklar alta iner, viewport dışına taşmaz */
.ue-head { display: flex; align-items: center; gap: 16px 24px; margin: 0 0 45px; flex-wrap: wrap; }
.ue-head .ue-title { margin: 0; min-width: 0; }
.ue-arrows { margin-left: auto; flex: none; }

.ue-title {
    color: var(--f1-white);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -.02em;
    margin: 0 0 45px;
    max-width: 36ch;
}
.ue-highlight { position: relative; display: inline-block; white-space: nowrap; }
.ue-highlight .squiggle-underline {
    position: absolute;
    left: 0; bottom: -.34em;
    width: 100%; height: .55em;
    overflow: visible;
    pointer-events: none;
}
.ue-highlight .squiggle-underline path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: ueDraw 1.8s ease .3s forwards;
}
@keyframes ueDraw { to { stroke-dashoffset: 0; } }

/* Marquee — kenarlarda yumuşak geçiş maskesi */
.ue-marquee {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.ue-track {
    display: flex;
    width: max-content;
    animation: ueScroll 50s linear infinite;
}
.ue-section:hover .ue-track { animation-play-state: paused; }
@keyframes ueScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Kart — kesintisiz döngü için flex-gap yerine margin-right (seam atlamasın) */
.ue-card {
    position: relative;
    flex: 0 0 auto;
    width: 380px;
    height: 520px;
    margin-right: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--f1-midcharcoal);
    color: var(--f1-white);
    text-decoration: none;
    display: block;
}
.ue-card__img { position: absolute; inset: 0; z-index: 0; }
.ue-card__img picture { display: block; width: 100%; height: 100%; }
.ue-card__img img,
.ue-card__cover {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform .5s var(--f1-ease);
}
.ue-card:hover .ue-card__cover { transform: scale(1.05); }
.ue-card__placeholder { display: block; width: 100%; height: 100%; background: var(--f1-charcoal); }
.ue-card__overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.40) 0%, rgba(0,0,0,0) 30%);
}
.ue-card__title {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 10px 0;
    color: var(--f1-white);
    font-weight: 500;
    font-size: 1.45rem;
    line-height: 1.15;
    letter-spacing: -.01em;
}
/* Alt bant — görselin altı frosted (blur) + pill chip'ler */
.ue-card__bottom {
    position: absolute; z-index: 2;
    left: 0; right: 0; bottom: 0;
    padding: 18px 16px 16px;
    /* Kategoriler üstte, geri sayım altta — sabit; rakam değişince zıplamaz */
    display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
    isolation: isolate;
}
.ue-card__cats { display: flex; flex-wrap: wrap; gap: 8px; }
/* Frosted katman — sadece görseli blur'lar (chip'ler net kalır) */
.ue-card__bottom::before {
    content: "";
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.32) 100%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 45%);
    mask-image: linear-gradient(180deg, transparent, #000 45%);
}
.ue-chip {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .20);
    color: var(--f1-white);
    font-size: .7rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}
.ue-chip--date { background: rgba(0, 0, 0, .30); border-color: rgba(255, 255, 255, .25); }

/* Geri sayım chip'i — ikon + canlı sayaç (monospaced rakamlar) */
.ue-chip--cd {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(36, 112, 59, .92); border-color: rgba(36, 112, 59, .92);
    font-weight: 600; font-variant-numeric: tabular-nums;
}
.ue-chip--cd .ue-cd__ico { flex-shrink: 0; opacity: .9; }
.ue-chip--cd .ue-cd__txt { letter-spacing: .02em; }
/* Devam ediyor (başlangıç–bitiş arası) → mavi */
.ue-chip--cd.is-live {
    background: rgba(37, 99, 235, .95); border-color: rgba(37, 99, 235, .95);
}
/* Bitti (bitiş tarihi geçti) → kırmızı, statik */
.ue-chip--cd.is-ended {
    background: rgba(220, 38, 38, .95); border-color: rgba(220, 38, 38, .95);
}

@media (max-width: 768px) {
    .ue-card { width: 240px; height: 340px; margin-right: 14px; }
    .ue-card__title { font-size: 1.15rem; padding: 10px 0; }
    .ue-card__bottom { padding: 12px; }
    .ue-chip { padding: 6px 13px; font-size: .76rem; }
}
@media (prefers-reduced-motion: reduce) {
    .ue-track { animation: none; }
    .ue-highlight .squiggle-underline path { animation: none; stroke-dashoffset: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════
   MÜŞTERİ YORUMLARI — başlık + yatay kart slider
   ═══════════════════════════════════════════════════════════════════════ */
.ty-section {
    background: var(--f1-deepcharcoal);
    color: var(--f1-white);
    padding: 56px 0 48px;
    overflow: hidden;
}
.ty-head { text-align: center; max-width: var(--f1-maxw); margin: 0 auto 40px; padding: 0 24px; }
.ty-eyebrow {
    color: var(--f1-red);
    font-weight: 700;
    font-size: .95rem;
    margin: 0 0 14px;
}
.ty-title {
    color: var(--f1-white);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -.02em;
    letter-spacing: -.02em;
    margin: 0 auto 45px;
    max-width: 24ch;
}

/* Slider viewport — ortada 2 kart tam, yanlarda peek (gutter'larda komşular görünür) */
.ty-viewport {
    --ty-gap: 24px;
    --ty-peek: clamp(28px, 7vw, 140px);
    max-width: var(--f1-maxw);
    margin: 0 auto;
    padding-inline: var(--ty-peek);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--ty-peek);
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.ty-viewport::-webkit-scrollbar { display: none; }
.ty-track { display: flex; gap: var(--ty-gap); }

.ty-card {
    scroll-snap-align: start;
    /* 2 kart + 1 gap = içerik alanı (peek padding'leri hariç) */
    flex: 0 0 calc((100% - var(--ty-gap)) / 2);
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--f1-white-20);
    border-radius: 18px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.ty-card__head { display: flex; flex-direction: row; align-items: center; gap: 16px; }
.ty-card__avatar {
    flex: none;
    width: 56px; height: 56px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--f1-charcoal);
}
.ty-card__avatar picture, .ty-card__avimg {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.ty-card__avph { display: block; width: 100%; height: 100%; background: var(--f1-charcoal); }
.ty-card__name { font-weight: 700; font-size: 1.15rem; color: var(--f1-white); line-height: 1.2; }
.ty-card__role { color: var(--f1-darkgrey); font-size: .9rem; margin-top: 2px; }
.ty-card__quote {
    margin: 0;
    color: var(--f1-lightgrey);
    font-size: .9rem;
    line-height: 1.6;
    font-weight: 500;
}
.ty-card__quote::before { content: "\201C"; color: var(--f1-white); font-weight: 700; margin-right: 1px; }
.ty-card__quote::after  { content: "\201D"; color: var(--f1-white); font-weight: 700; margin-left: 1px; }

/* Navigasyon okları */
.ty-nav { display: flex; justify-content: center; gap: 18px; margin-top: 36px; }
.ty-arrow {
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 0;
    background: var(--f1-white);
    color: var(--f1-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .25s var(--f1-ease), background-color .25s, color .25s;
}
.ty-arrow:hover { background: var(--f1-red); color: var(--f1-white); transform: scale(1.06); }

@media (max-width: 768px) {
    /* Mobil: 1 kart tam + yanlarda küçük peek */
    .ty-viewport { --ty-peek: 22px; }
    .ty-card { flex: 0 0 calc(100% - 36px); padding: 24px; }
    .ty-card__quote { font-size: 1rem; }
    .ty-arrow { width: 48px; height: 48px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   VİTRİN ÜRÜNLERİ (ProductGrid) — kelimeler + kategori + kart slider
   ═══════════════════════════════════════════════════════════════════════ */
.pg-section {
    position: relative;
    overflow: hidden;
    background: #000;
    padding: 0 0 60px 0;
}
/* Üst açık bant (kelimeler/butonlar burada) — tablet aralığında da kartın
   ortasında bitsin diye viewport'a orantılı; masaüstünde eski 520px */
.pg-section::before {
    content: "";
    position: absolute; top: 0; left: 0; right: 0;
    height: clamp(240px, 52vw, 520px);
    background: #ececed;
    z-index: 0;
}
/* Sağ-alt magenta parıltı */
    .pg-section::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background: radial-gradient(120% 95% at 100% 100%, rgba(36, 112, 59, .55), rgba(0, 0, 0, 0) 60%);
    }

/* Arkaplan kelimeleri (soluk, outline) */
.pg-words {
    position: absolute; top: 25px; left: 0; right: 0;
    z-index: 0; /*overflow: hidden;*/ pointer-events: none;
    display: flex; flex-direction: column; gap: 4px;
}
.pg-words__track {
    display: inline-flex; gap: 44px;
    white-space: nowrap; line-height: .92;
    will-change: transform;
}
.pg-word {
    font-size: clamp(48px, 9vw, 120px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0,0,0,.13);
}
/* Alt satır: içi dolu (faint), üst satırın tersine kayar */
.pg-words__track--fill .pg-word {
    color: rgba(0,0,0,.085);
    -webkit-text-stroke: 0;
}

/* Üst alan: kategori butonları sağda */
.pg-head {
    position: relative;
    z-index: 2;
    max-width: var(--f1-maxw);
    margin: 0 auto;
    padding: 0px 24px 26px;
    min-height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.pg-cats { display: flex; flex-wrap: wrap; gap: 12px; }
.pg-cat {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.18);
    background: transparent;
    color: #111;
    font-weight: 600; font-size: .95rem;
    cursor: pointer;
    transition: background-color .25s, color .25s, border-color .25s;
}
.pg-cat:hover { border-color: #111; }
.pg-cat.is-active { background: var(--f1-red); border-color: var(--f1-red); color: #fff; }

/* Slider */
.pg-viewport {
    position: relative;
    z-index: 2;
    max-width: var(--f1-maxw);
    /* Üst boşluk viewport'a orantılı: mobilde dev yazının hemen altı (~130px),
       masaüstünde eski 200px — sabit 200px mobilde ~100px ölü gri alan bırakıyordu */
    margin: clamp(130px, 18vw, 200px) auto 0;
    padding: 0 60px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    /* İlk kartın solu boş kalsın + açılışta scrollLeft 0 olsun (snap padding'i yemesin) */
    scroll-padding-left: 60px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.pg-viewport::-webkit-scrollbar { display: none; }
.pg-track { display: flex; gap: 20px; }

.pg-card {
    position: relative;
    flex: 0 0 clamp(240px, 24%, 460px);
    aspect-ratio: 3 / 4;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    background: #111;
    scroll-snap-align: start;
}

/* ── Kart ribbon şeridi (sağ üst köşe, çapraz) — "SOLD OUT", "SON 4 BİLET" vb. ── */
.pg-card__ribbon {
    position: absolute; top: 0; right: 0; z-index: 3;
    width: 150px; height: 150px;
    overflow: hidden;
    pointer-events: none;
}
.pg-card__ribbon-text {
    position: absolute; top: 34px; right: -44px;
    transform: rotate(45deg);
    display: block; width: 200px;
    padding: 6px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--f1-red, #24703b), color-mix(in srgb, var(--f1-red, #24703b) 68%, #000));
    color: #fff;
    font-size: .68rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
/* Şeridin köşeyle buluştuğu iki uçta ince koyu "katlanma" hissi */
.pg-card__ribbon::before,
.pg-card__ribbon::after {
    content: ''; position: absolute; width: 8px; height: 8px;
    background: color-mix(in srgb, var(--f1-red, #24703b) 45%, #000);
}
.pg-card__ribbon::before { top: 0; left: 24px; }
.pg-card__ribbon::after  { right: 0; bottom: 24px; }
.pg-card__img { position: absolute; inset: 0; z-index: 0; }
.pg-card__img picture { display: block; width: 100%; height: 100%; }
.pg-card__img img, .pg-card__cover {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    display: block;
    filter: brightness(.9);
    transition: transform .5s var(--f1-ease), filter .5s var(--f1-ease);
}
.pg-card__placeholder { display: block; width: 100%; height: 100%; background: var(--f1-charcoal); }
/* Kart bir <a> — global a:hover{opacity:.8} kartı şeffaflaştırıyordu; engelle */
.pg-card, .pg-card:hover { opacity: 1; }
.pg-card:hover .pg-card__cover { transform: scale(1.05); filter: brightness(1.05); }
.pg-card::after {
    content: ""; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 32%, rgba(0,0,0,.78) 100%);
}
.pg-card__pill {
    position: absolute; top: 18px; left: 18px; z-index: 2;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.55);
    background: rgba(0,0,0,.22);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    color: #fff; font-size: .8rem; font-weight: 600;
}
.pg-card__foot { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 24px; }
.pg-card__title {
    color: #fff; font-weight: 500;
    font-size: clamp(1.35rem, 2vw, 1rem); line-height: 1.12;
    letter-spacing: -.01em; margin: 0 0 16px;
}
.pg-card__cta {
    display: inline-block;
    color: #fff;     font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 1px; text-transform: uppercase;
    padding-bottom: 4px;
    /* Alt çizgi: background ile → hover'da sağdan sola kayarak kaybolur */
    background-image: linear-gradient(currentColor, currentColor);
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 100% 2px;
    transition: background-size .45s var(--f1-ease);
}
.pg-card:hover .pg-card__cta { background-size: 0% 2px; }

/* Pill başlığın altında (foot içinde, statik) */
.pg-section .pg-card__foot { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.pg-section .pg-card__title { margin: 0; }
.pg-section .pg-card__pill { position: static; top: auto; left: auto; align-self: flex-start; margin: 0; }

/* ── Ana sayfa pg-card şık hover (iç sayfa cat-grid'inden uyarlandı) ──
   Hover'da hafif blur örtü + ortada pill olarak beliren "Etkinliğe Gözat". */
.pg-section .pg-card::before {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: rgba(0, 0, 0, .18);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
    opacity: 0; transition: opacity .35s var(--f1-ease);
}
.pg-section .pg-card:hover::before { opacity: 1; }
.pg-section .pg-card__cta {
    position: absolute; left: 50%; top: 50%; z-index: 3;
    transform: translate(-50%, -50%) scale(.9);
    opacity: 0; pointer-events: none; white-space: nowrap;
    padding: 12px 28px; border-radius: 999px;
    background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .6);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    background-image: none; /* paylaşılan alt-çizgi animasyonunu iptal et */
    transition: opacity .35s var(--f1-ease), transform .35s var(--f1-ease), background-color .25s var(--f1-ease);
}
.pg-section .pg-card:hover .pg-card__cta { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); background-size: auto; }
.pg-section .pg-card__cta:hover { background: rgba(255, 255, 255, .28); }

/* Alt kontrol */
.pg-controls {
    position: relative; z-index: 2;
    max-width: 1080px; margin: 60px auto 0;
    padding: 0 24px;
    display: flex; align-items: center; gap: 28px;
}
.pg-arrows { display: flex; gap: 14px; flex: none; }
.pg-arrow {
    width: 54px; height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.30);
    background: transparent; color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background-color .25s, color .25s;
}
.pg-arrow:hover { background: #fff; color: #111; }
.pg-progress {
    position: relative; flex: 1 1 auto;
    height: 4px; border-radius: 999px;
    background: rgba(255,255,255,.16);
    cursor: pointer; touch-action: none;
}
.pg-progress__bar {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 12%; border-radius: 999px;
    background: var(--f1-red);
}

@media (max-width: 768px) {
    .pg-section::before { height: 240px; }
    .pg-head { padding: 22px 16px; min-height: 0; }
    .pg-cat { padding: 10px 16px; font-size: .85rem; }
    .pg-viewport { padding: 0 16px; scroll-padding-left: 16px; }
    .pg-card { flex: 0 0 72%; }
    .pg-controls { padding: 0 16px; gap: 16px; }
    .pg-arrow { width: 46px; height: 46px; }
}
@media (prefers-reduced-motion: reduce) {
    .pg-words__track { transform: none !important; }
    .pg-card__cover { transition: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   ETKİ (IMPACT) BÖLÜMÜ — sol başlık+chip · merkez parallax · sağ kart
   ═══════════════════════════════════════════════════════════════════════ */
.im-section {
    position: relative;
    overflow: hidden;
    background: #fFF;
    padding: 80px 0;
}
.im-inner {
    position: relative;
    max-width: var(--f1-maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* Sol — başlık + chip görseller (merkez alan kaldırıldı → genişletildi) */
.im-left { position: relative; z-index: 2; max-width: 62%; }
.im-headline {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 10px 16px;
    margin: 0;
    color: #111;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.02;
    letter-spacing: -.01em;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
}
.im-seg { display: inline-block; }
.im-seg.is-ghost { color: transparent; -webkit-text-stroke: 2px rgba(0,0,0,.20); }
.im-chip { display: inline-flex; }
.im-chip .im-chip__img, .im-chip picture {
    display: block;
    width: clamp(70px, 7vw, 120px);
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    border-radius: 14px;
}

/* Sağ — kart */
.im-card {
    position: absolute; top: 50%; right: 24px;
    transform: translateY(-50%);
    z-index: 3;
    width: 360px; max-width: 38%;
    padding: 40px 36px;
    border-radius: 26px;
    background: #000;
    box-shadow: 0 24px 70px rgba(0,0,0,.10);
    text-align: center;
}
.im-card__logo { height: 64px; width: auto; margin: 0 auto 26px; object-fit: contain; }
.im-card__title {
    margin: 0 0 16px;
    color: #FFF;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.35rem;
    line-height: 1.25;
}
.im-card__text { margin: 0 0 26px; color: #FFF; font-size: 1rem; line-height: 1.6; }
/* Buton görünümü Hero ile aynı (.f1-btn / .f1-circle-icon) — burada sadece konum/hizalama */
.im-card__btn { margin-top: 4px; }

@media (max-width: 992px) {
    .im-section { padding: 56px 0; }
    .im-inner { min-height: 0; }
    .im-left { max-width: 100%; }
    .im-card {
        position: static; transform: none;
        width: 100%; max-width: 100%;
        margin-top: 36px;
    }
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER (DCD tarzı) — 3 bölüm: üst (logo+bülten), orta (linkler+sosyal),
   alt (telif + referans carousel)
   ════════════════════════════════════════════════════════════════════ */
.ft { color: rgba(255,255,255,.7); background: #0a0a0a; }
.ft-wrap { max-width: 1680px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px); }

/* ── ÜST ── */
.ft-top {
    background-color: #0d0d0d;
    background-image: url(/themes/default/img/footer-pattern.png);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    background-repeat: no-repeat;
    background-size: cover;
}
.ft-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    padding-top: 90px;
    padding-bottom: 90px;
}
.ft-brand { flex: 0 0 auto; }
/* Yatay logoda genişlik de sınırlı — aksi halde max-height tek başına footer'ı taşırır */
.ft-brand__logo { max-height: 320px; max-width: min(90vw, 480px); width: auto; opacity: 1; display: block; }
.ft-brand__name { color: #fff; font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; }

/* ── Partner Başvurusu — gömülü form (ft-brand ile ft-sub arasında) ── */
.ft-partner { flex: 0 1 420px; max-width: 420px; min-width: 0; }
.ft-partner__title {
    margin: 0 0 6px;
    text-transform: uppercase;
    color: #fff; font-size: 1.05rem; font-weight: 800; letter-spacing: .08em;
}
.ft-partner__lead { margin: 0 0 14px; color: rgba(255,255,255,.55); font-size: .85rem; }
.ft-partner__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
/* Alan sarmalayıcı: etiket + input (lead modal düzeniyle aynı) */
.ft-partner__field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.ft-partner__field--full { grid-column: 1 / -1; }
.ft-partner__field label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.8); }
.ft-partner__field label small { color: rgba(255,255,255,.45); font-weight: 400; }
.ft-partner__req { color: var(--f1-red, #24703b); }
.ft-partner__field textarea.ft-partner__input { resize: vertical; }
.ft-partner__input {
    min-width: 0;
    background: #191919;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    outline: none;
    color: #fff;
    font-size: .88rem; line-height: 1.5;
    padding: 10px 13px;
    transition: border-color .18s ease, background .18s ease;
}
.ft-partner__input::placeholder { color: rgba(255,255,255,.45); }
.ft-partner__input:focus { border-color: var(--f1-red, #24703b); background: #202020; }
.ft-partner__form .iti { width: 100%; }
/* Telefon inputu sarmalayıcıyı (hücreyi) taşmasın — üst/alt inputlarla aynı hizada dursun */
.ft-partner__form .iti input.ft-partner__input { width: 100%; box-sizing: border-box; }
/* iti dropdown ülke isimleri koyu zeminde okunur kalsın (kendi beyaz paneli var) */
.ft-partner__form .iti__selected-dial-code { color: #fff; }
.ft-partner__submit {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 12px;
    padding: 10px 26px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    color: #fff; font-size: .85rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    cursor: pointer;
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.ft-partner__submit:hover { background: var(--f1-red, #24703b); border-color: var(--f1-red, #24703b); transform: translateY(-1px); }
.ft-partner__submit:disabled { opacity: .6; cursor: default; transform: none; }
.ft-partner__msg { margin: 10px 0 0; font-size: .82rem; color: #f3b2b2; }
.ft-partner__msg.is-ok { color: #9be29b; }
@media (max-width: 992px) { .ft-partner { flex-basis: 100%; max-width: 560px; } }
@media (max-width: 575px) { .ft-partner__grid { grid-template-columns: 1fr; } }

.ft-sub { flex: 0 1 460px; max-width: 460px; min-width: 0; }
.ft-sub__title {
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.2;
}
.ft-sub__lead {
    margin: 0 auto 25px;
    line-height: 1.6;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    font-size: .82rem;
}
.ft-sub__form {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.25);
    background: #191919;
    border-radius: 2px;
}
.ft-sub__input {
    flex: 1 1 auto;
    min-width: 0;
    background: transparent;
    border: 0;
    outline: none;
    color: #fff;
    font-size: 1rem;
    padding: 15px;
    font-size: .9rem;
    line-height: 1.6;
    font-weight: 500;
}
.ft-sub__input::placeholder { color: rgba(255,255,255,.45); }
.ft-sub__btn {
    flex: 0 0 auto;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #fff;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 0 18px;
    font-size: .85rem;
    transition: color .2s ease;
    font-weight: 500;
}
.ft-sub__arrow {
    flex: 0 0 auto; width: 48px; border: 0; cursor: pointer;
    background: #fff; color: #000;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .25s ease, color .25s ease;
}
.ft-sub__arrow:hover { background: var(--f1-accent, #24703b); color: #fff; }
.ft-sub__result { margin-top: 12px; font-size: .85rem; }
.ft-sub__result.is-ok { color: #4ade80; }
.ft-sub__result.is-warn { color: #fbbf24; }
.ft-sub__result.is-err { color: #f87171; }

/* ── ORTA ── */
.ft-mid { border-bottom: 1px solid rgba(255,255,255,.06); }
.ft-mid__inner {
    display: flex; flex-direction: column; gap: 40px;
    padding-top: 56px; padding-bottom: 56px;
}
/* Üst satır: inline menü + sosyal */
.ft-mid__top {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px 40px; flex-wrap: wrap;
}
/* Inline link satırı (footer menü / yasal uyarılar) */
.ft-inline { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; }
/* Alt menü (footer ana menü) — BÜYÜK harf, BEYAZ, aralarında biraz boşluk */
.ft-inline:not(.ft-inline--legal) { gap: 16px 36px; }
.ft-inline:not(.ft-inline--legal) .ft-link {
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: .06em;
}
.ft-inline:not(.ft-inline--legal) .ft-link:hover { color: var(--f1-accent, #24703b); }
.ft-inline--legal { gap: 12px 24px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.06); }
.ft-inline--legal .ft-link { font-size: .8rem; color: rgba(255,255,255,.55); }
/* Yasal satırı aç/kapa: 5+ linkler gizli, is-acik ile görünür */
.ft-inline--legal .is-gizli { display: none; }
.ft-inline--legal.is-acik .is-gizli { display: inline; }
.ft-inline__toggle { background: none; border: 0; padding: 0; font: inherit; font-size: .8rem; cursor: pointer; }

/* Kategori sütunları: başlık + alt kategori listesi.
   minmax(160px,.2fr): fr çözülen değer 160px'in altında kaldığı için sütunlar
   160px'e sabitlenir, tüm genişliğe yayılmaz → "çok açık" görünüm engellenir.
   justify-content:start: artan boşluk sona toplanır, sütunlar sola paketlenir. */
.ft-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, .3fr));
    gap: 28px 40px;
    justify-content: start;
}
.ft-col { display: flex; flex-direction: column; gap: 14px; }
.ft-col__head {
    color: #fff; font-weight: 700; font-size: .95rem; letter-spacing: .01em;
    text-decoration: none; text-transform: uppercase;
}
.ft-col__head:hover { color: var(--f1-accent, #24703b); }
.ft-col__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ft-link {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s ease;
    font-weight: 500;
}
.ft-link:hover { color: #fff; }
/* "Daha Fazlası" satırı — yeşil, ＋ ikonlu */
.ft-more { display: inline-flex; align-items: center; gap: 6px; color: var(--f1-accent, #24703b); font-weight: 600; }
.ft-more:hover { color: var(--f1-accent, #24703b); filter: brightness(1.25); }
.ft-more i { font-size: .9em; }

/* Footer alt logolar (2 adet · logo + altında başlık) — ft-help'ten sonra minimal */
.ft-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); justify-items: center; }
.ft-badge { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; }
a.ft-badge { text-decoration: none; }
a.ft-badge:hover .ft-badge__logo { opacity: 1; }
.ft-badge__logo { height: 90px; width: auto; max-width: 150px; object-fit: contain; opacity: .9; }
.ft-badge__title { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 500; letter-spacing: .01em; }
.ft-badge__desc  { font-size: .7rem;  color: rgba(255,255,255,.42); font-weight: 400; letter-spacing: .01em; }

/* Orta blok: sol = kategoriler · sağ = sosyal + yardım (sola dayalı) */
.ft-mid__grid {
    display: flex; flex-wrap: wrap; gap: 40px 56px;
    align-items: flex-start; justify-content: space-between;
}
.ft-mid__left  { flex: 1 1 520px; min-width: 0; display: flex; flex-direction: column; gap: 40px; }
.ft-mid__right { flex: 0 1 500px; display: flex; flex-direction: column; gap: 26px; align-items: stretch; }

.ft-social {
    background: #191919;
    border-radius: 2px;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 500px;
    height: 45px;
    margin: 0;
    padding: 0 18px;
    display: flex;
}
.ft-social__label {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s ease;
    font-weight: 500;
}
.ft-social__icons { display: inline-flex; align-items: center; gap: 18px; }
.ft-social__link {
    color: rgba(255,255,255,.65); font-size: 1.15rem; line-height: 1;
    text-decoration: none; transition: color .2s ease, transform .2s ease;
}
.ft-social__link:hover { color: #fff; transform: translateY(-2px); }

/* ── Footer Yardım & İletişim (3'lü alan) ── */
.ft-help { width: 100%; display: flex; flex-direction: column; gap: 22px; }
.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(--f1-accent, #24703b); font-size: 1.5rem;
    border: 1px solid rgba(36,112,59,.45); background: rgba(36,112,59,.10);
}
.ft-help__title { color: #fff; font-weight: 700; font-size: 1.02rem; line-height: 1.2; }
.ft-help__desc { color: rgba(255,255,255,.6); font-size: .82rem; margin-top: 3px; }
.ft-help__row { display: flex; flex-wrap: wrap; gap: 18px 32px; }
.ft-help__item {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; flex: 1 1 210px; 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(--f1-accent, #24703b); font-size: 1.1rem;
    border: 1px solid rgba(36,112,59,.45); background: rgba(36,112,59,.10);
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.ft-help__item-icon--wa { color: #25d366; border-color: rgba(37,211,102,.45); background: rgba(37,211,102,.10); }
.ft-help__item:hover .ft-help__item-icon { color: #fff; background: var(--f1-accent, #24703b); border-color: var(--f1-accent, #24703b); }
.ft-help__item:hover .ft-help__item-icon--wa { color: #fff; background: #25d366; border-color: #25d366; }
.ft-help__item-text { display: flex; flex-direction: column; min-width: 0; }
.ft-help__item-label { color: rgba(255,255,255,.55); font-size: .72rem; line-height: 1.25; white-space: nowrap; }
.ft-help__item-value { color: #fff; font-weight: 600; font-size: .9rem; line-height: 1.3; }
@media (max-width: 575.98px) {
    .ft-mid__right { width: 100%; }
    .ft-social, .ft-help { max-width: none; }
    /* Bülten formu telefonda tam genişlik (sağa taşmayı önler, düzgün dursun) */
    .ft-sub { flex: 1 1 100%; max-width: none; }
    /* Footer ana menü telefonda dikey — sıkışık "yan yana birikme"yi önler */
    .ft-inline:not(.ft-inline--legal) { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ── ALT ── */
.ft-bottom__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
    padding-top: 28px; padding-bottom: 28px;
}

/* ── Design by (footer'ın en altı, ortalı) ── */
.ft-designby { display: flex; justify-content: center; padding: 6px 0 18px; }
.ft-designby a { display: inline-flex; opacity: .55; transition: opacity .2s ease; }
.ft-designby a:hover { opacity: .9; }
.ft-designby img { height: 21px; width: auto; display: block; }
.ft-copy {     color: rgba(255, 255, 255, .55);
    font-size: .9rem;
    line-height: 1.6;
    font-weight: 500; }
/* Aynı anda 3 logo görünür (slot genişliği × 3 + 2 boşluk) */
.ft-refs {
    --ft-ref-slot: 140px; --ft-ref-gap: 32px;
    flex: 0 0 auto;
    width: calc(var(--ft-ref-slot) * 3 + var(--ft-ref-gap) * 2);
    max-width: 100%; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ft-refs__track {
    display: flex; align-items: center; gap: var(--ft-ref-gap); width: max-content;
    /* Sabit hız: süre şeritteki TOPLAM öğe sayısıyla (--ft-ref-adet, Razor'dan inline)
       orantılı — logo eklendikçe hızlanmaz. 3s/öğe. */
    animation: ftRefsScroll linear infinite;
    animation-duration: calc(var(--ft-ref-adet, 8) * 3s);
}
.ft-refs:hover .ft-refs__track { animation-play-state: paused; }
.ft-refs__item {
    flex: 0 0 var(--ft-ref-slot); width: var(--ft-ref-slot);
    display: flex; align-items: center; justify-content: center;
}
.ft-refs__item img {
    height: 70px; max-width: 100%; width: auto; object-fit: contain;
    opacity: .7; transition: opacity .25s ease;
}
.ft-refs__item img:hover { opacity: 1; }
@keyframes ftRefsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .ft-refs__track { animation: none; }
}

@media (max-width: 992px) {
    .ft-top__inner { padding-top: 44px; padding-bottom: 44px; gap: 32px; }
    .ft-brand__logo { max-height: 96px; max-width: 80vw; }
    .ft-mid__inner { padding-top: 40px; padding-bottom: 40px; }
    .ft-social { width: 100%; justify-content: center; }
}
@media (max-width: 575px) {
    .ft-cols { grid-template-columns: repeat(2, 1fr); }
    .ft-bottom__inner { flex-direction: column; align-items: flex-start; }
    .ft-refs { max-width: 100%; width: 100%; }
}

/* ── Logo yanı referans logoları (footer ft-refs görünümü, header ölçüsü) — yalnız desktop ── */
/* Logo ile sağ aksiyonlar arasındaki tüm alanı kaplayan kesintisiz (full loop) carousel */
.hdr-refs {
    --ft-ref-slot: 120px;
    --ft-ref-gap: 24px;
    margin-left: 120px;
    margin-right: 120px;
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
}
.hdr-refs .ft-refs__item img {
    height: 62px;
    opacity: .8;
}
/* Şerit öğesi link olduğunda da aynı görünüm (global a stillerinden etkilenmesin) */
a.ft-refs__item { display: inline-flex; align-items: center; text-decoration: none; }
a.ft-refs__item:hover img { opacity: 1; }
@media (max-width: 992px) { .hdr-refs { display: none; } }

/* ── Header Bölümü: ikonların hemen solunda logo + alt başlık (Banner'dan) ── */
.hdr-brand2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-right: 18px;
    flex-shrink: 0;
}
.hdr-brand2 img { height: 44px; width: auto; max-width: 160px; object-fit: contain; display: block; }
.hdr-brand2__alt {
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--f1-white);
    opacity: .85;
    white-space: nowrap;
}
@media (max-width: 575.98px) {
    .hdr-brand2 { margin-right: 10px; }
    .hdr-brand2 img { height: 32px; max-width: 110px; }
    .hdr-brand2__alt { font-size: .5rem; }
}

/* ── Anasayfa header videosu: tam genişlik hero, header şeffaf üzerine biner
   (iç sayfa bc-hero/ed-hero deseniyle aynı mekanizma) ── */
.hdr-video-hero {
    position: relative;
    width: 100%;
    /* İç sayfa breadcrumb hero'su (bc-hero) ile aynı yükseklik */
    height: clamp(220px, 32vw, 360px);
    overflow: hidden;
    background: var(--f1-black);
}
.hdr-video-hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Video kenarları okunurluk için hafif karartılır (header + alt geçiş) */
.hdr-video-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 72%, rgba(0,0,0,.35) 100%);
    pointer-events: none;
}
body:has(.hdr-video-hero) .f1-header { position: absolute; top: 0; left: 0; right: 0; }
body:has(.hdr-video-hero) .f1-header__inner { background-color: transparent; }
body:has(.hdr-video-hero) .f1-header__bar { background: transparent; }

/* ════════════════════════════════════════════════════════════════════
   KURUMSAL "OUR MISSION" tanıtım bölümü
   ════════════════════════════════════════════════════════════════════ */
/* Zemin BEYAZ — metinler koyu, anasayfa bütünlüğü için CTA + telefon footer'ı */
.km-section { background: #fff; color: var(--f1-charcoal); padding: clamp(56px, 8vw, 160px) 0; overflow-x: clip; }

/* Kurumsal altı akan başlık şeridi (slide marquee) — UstSlider başlıkları
   İnce, zarif ticker: küçük font + yumuşak renk + küçük yeşil ayraç noktaları */
.km-marquee {
    background: #fff;
    padding: clamp(16px, 2.4vw, 30px) 0;
    border-top: 1px solid rgba(0,0,0,.07);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.km-marquee__track {
    display: flex; align-items: center; width: max-content;
    animation: kmMarquee 45s linear infinite;
}
.km-marquee:hover .km-marquee__track { animation-play-state: paused; }
/* İki özdeş grup yan yana; -50% animasyonu tam bir grup kaydırır → seam yok.
   gap grup içinde; trailing gap (padding-right) gruplar arası ritmi korur. */
.km-marquee__group {
    flex: none; display: inline-flex; align-items: center;
    gap: clamp(22px, 3vw, 48px); padding-right: clamp(22px, 3vw, 48px);
}
.km-marquee__logo { flex: none; display: inline-flex; align-items: center; }
.km-marquee__logo img {
    height: clamp(38px, 7vw, 90px); width: auto; max-width: 320px;
    object-fit: contain; display: block; border-radius: 8px;
    opacity: .9; transition: opacity .25s var(--f1-ease), transform .25s var(--f1-ease);
}
.km-marquee__logo:hover img { opacity: 1; transform: translateY(-2px); }
@keyframes kmMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .km-marquee__track { animation: none; }
}
.km-inner {
    max-width: var(--f1-maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px);
    display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: clamp(32px, 6vw, 90px);
}
.km-text { width: 100%; }
.km-eyebrow {
    color: var(--f1-red, #24703b); font-weight: 700; font-size: 1rem;
    margin: 0 0 16px; letter-spacing: .01em;
}
.km-title {
    margin: 0 0 26px;
    color: var(--f1-deepcharcoal);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
}
.km-circle { position: relative; display: inline-block; white-space: nowrap; }
.km-circle .km-scribble {
    position: absolute; left: -8%; top: -14%; width: 116%; height: 128%;
    pointer-events: none; overflow: visible;
}
.km-desc { color: rgba(0,0,0,.62); font-size: 1.05rem; line-height: 1.7; margin: 0 0 32px; }
/* Jodit zengin metin çıktısı — iç <p> boşluklarını düzenle */
.km-desc p, .sc-desc p, .ty-sub p { margin: 0 0 .6em; }
.km-desc p:last-child, .sc-desc p:last-child, .ty-sub p:last-child { margin-bottom: 0; }

/* CTA + telefon — anasayfa f1-card__footer hizasıyla aynı düzen */
.km-footer { flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 18px 28px; }
.km-btn { margin-top: 4px; }
.km-phone {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--f1-deepcharcoal);
    font-weight: 700; font-size: 1.05rem; letter-spacing: .01em;
    transition: color .3s var(--f1-ease);
}
.km-phone__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 999px;
    background: var(--f1-red, #24703b); color: #fff; flex-shrink: 0;
    transition: transform .3s var(--f1-ease);
}
.km-phone:hover { color: var(--f1-red, #24703b); }
.km-phone:hover .km-phone__icon { transform: scale(1.08); }

/* Sağ — tek görsel: km-media__back tam genişlikte. km-media__front pasife alındı. */
.km-media { position: relative; }
.km-media__back {
    display: block; width: 100%; margin: 0;
    aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px;
}
.km-media__front { display: none; }

@media (max-width: 992px) {
    .km-inner { grid-template-columns: 1fr; gap: 56px; }
    .km-media { margin-bottom: 0; }
    .km-media__back { width: 100%; }
}

/* ════════════════════════════════════════════════════════════════════
   SHOWCASE / CANLI YAYIN bölümü — sol medya · orta metin · sağ medya
   ════════════════════════════════════════════════════════════════════ */
.sc-section { background: #fFF; padding: clamp(40px, 6vw, 84px) 0; overflow: hidden; }
/* Bölüm arka plan görseli (opsiyonel · Banner Düzenle → Showcase) */
.sc-section--bg { position: relative; background: #0b0b0b; }
.sc-section--bg::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: var(--sc-bg);
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
/* Görsel üstünde metin okunur kalsın diye hafif beyaz örtü */
.sc-section--bg::after {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: rgba(255, 255, 255, .72);
}
.sc-section--bg .sc-inner { position: relative; z-index: 1; }
.sc-inner {
    max-width: var(--f1-maxw); margin: 0 auto; padding: 0 clamp(16px, 4vw, 64px);
    display: grid; grid-template-columns: 0.92fr 1.3fr 0.92fr;
    align-items: stretch; gap: clamp(12px, 1.8vw, 26px);
    /* Dikey olarak daha büyük medya — tüm kolonlar bu yüksekliğe uzar */
    min-height: clamp(480px, 66vh, 720px);
}
.sc-media { position: relative; display: flex; gap: clamp(10px, 1.4vw, 20px); height: 100%; }
.sc-media:empty { display: none; }
.sc-media__el {
    flex: 1 1 0; min-width: 0; display: block; width: 100%; height: 100%;
    object-fit: cover; border-radius: 18px; background: #e4e6ea;
}

/* Orta — silik border'lı katmanlı panel dekoru + dikeyde ortalanmış metin */
.sc-text {
    position: relative; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: clamp(20px, 3.5vw, 56px) clamp(14px, 2.5vw, 40px);
}
.sc-deco {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    display: flex; gap: clamp(10px, 1.4vw, 20px);
}
.sc-deco__col {
    flex: 1; border: 1px solid rgba(0, 0, 0, .08); border-bottom: none;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 70%);
}
.sc-text > :not(.sc-deco) { position: relative; z-index: 1; }
.sc-eyebrow {
    color: var(--f1-red, #24703b); font-weight: 700; font-size: .95rem;
    letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px;
}
.sc-title {
    margin: 0 0 18px; color: var(--f1-deepcharcoal);
    font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.4rem);
    line-height: 1.04; letter-spacing: -0.02em;
}
.sc-subtitle {
    display: inline-flex; align-items: center; gap: 10px;
    margin: 0 0 20px; color: var(--f1-deepcharcoal);
    font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.25rem);
}
.sc-dot {
    width: 11px; height: 11px; border-radius: 50%;
    background: var(--f1-red, #24703b); flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(36, 112, 59, .55);
    animation: scPulse 2s var(--f1-ease) infinite;
}
@keyframes scPulse {
    0%   { box-shadow: 0 0 0 0 rgba(36, 112, 59, .5); }
    70%  { box-shadow: 0 0 0 12px rgba(36, 112, 59, 0); }
    100% { box-shadow: 0 0 0 0 rgba(36, 112, 59, 0); }
}
.sc-desc {
    color: rgba(0,0,0,.6); font-size: 1.02rem; line-height: 1.65;
    max-width: 46ch; margin: 0 auto 30px;
}
.sc-btn { display: inline-flex; }

@media (max-width: 992px) {
    .sc-inner { grid-template-columns: 1fr 1fr; gap: 22px; min-height: 0; align-items: start; }
    .sc-text { grid-column: 1 / -1; order: -1; padding: 12px 8px 8px; }
    .sc-media { height: auto; }
    .sc-media__el { height: auto; aspect-ratio: 3 / 4; }
}
@media (max-width: 576px) {
    .sc-inner { grid-template-columns: 1fr; }
    .sc-deco { display: none; }
    .sc-media--left { display: none; }
    .sc-media--right .sc-media__el:nth-child(2) { display: none; }
    .sc-media .sc-media__el { aspect-ratio: 16 / 10; }
}
@media (prefers-reduced-motion: reduce) {
    .sc-dot { animation: none; }
}

/* ════════════════════════════════════════════════════════════════════
   ETKİ bölümü — siyah zemin · ty-head · Instagram görsel grid · CTA
   ════════════════════════════════════════════════════════════════════ */
.ek-section { background: #0a0a0a; color: #fff; padding: clamp(56px, 8vw, 100px) 0; overflow: hidden; }
.ek-head { text-align: center; max-width: var(--f1-maxw); margin: 0 auto 48px; padding: 0 24px; }
.ek-head .ty-title { margin: 0 auto 16px; }
.ty-sub {
    color: rgba(255,255,255,.62); font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.7; max-width: 60ch; margin: 0 auto;
}
.ek-grid {
    max-width: var(--f1-maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px);
    display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(10px, 1.2vw, 18px);
}
.ek-item {
    position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden;
    border-radius: 10px; background: #161616; text-decoration: none;
}
.ek-item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform .5s var(--f1-ease, ease), filter .4s ease; filter: brightness(.92);
}
.ek-item:hover img { transform: scale(1.06); filter: brightness(1.02); }
.ek-item__icon {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.8rem; opacity: 0;
    background: rgba(0,0,0,.35); transition: opacity .25s ease;
}
.ek-item:hover .ek-item__icon { opacity: 1; }
.ek-cta { text-align: center; margin-top: 48px; }
.ek-cta .f1-btn { display: inline-flex; }

@media (max-width: 1100px) { .ek-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .ek-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .ek-grid { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════════════════════════════════════════════════════════
   HAKKIMIZDA (ABOUT) İÇ SAYFASI — breadcrumb hero + 4 bölüm + FAQ
   ════════════════════════════════════════════════════════════════════ */
.about-wrap { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
.about-h2 {
    color: var(--f1-deepcharcoal, #131313); font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.12;   /* anasayfa standardı (km-title / ue-title) */
    letter-spacing: -.02em; margin: 0 0 20px;
}
.about-eyebrow {     color: var(--f1-red, #24703b);
    font-weight: 700;
    font-size: 1rem;
    margin: 0 0 16px;
    letter-spacing: .01em;}
.about-rte { color: rgba(0,0,0,.66); line-height: 1.7; font-size: 1.05rem; }   /* anasayfa km-desc */
.about-rte p { margin: 0 0 .9em; } .about-rte p:last-child { margin-bottom: 0; }

/* ── Breadcrumb hero ── */
.bc-hero {
    position: relative; display: flex; align-items: center; justify-content: center;
    min-height: clamp(220px, 32vw, 360px); overflow: hidden;
    color: #fff; text-align: center;
}
.bc-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.bc-hero__overlay { position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.58)); }
.bc-hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1280px;text-align:left;
    margin: 0 auto; padding: 0 clamp(20px, 5vw, 48px); }
/* CTA'lı varyant — buton breadcrumb/başlık ile aynı hizada, başlığın ALTINDA (sola dayalı) */
.bc-hero__inner--cta { display: flex; flex-direction: column; align-items: flex-start; gap: clamp(18px, 3vw, 28px); }
.bc-hero__inner--cta .bc-hero__lead { width: 100%; min-width: 0; }
.bc-hero__actions { display: flex; align-items: center; }
.bc-hero__cta { white-space: nowrap; }
.bc-trail { font-size: .9rem; letter-spacing: .03em; opacity: .92; margin-bottom: clamp(10px, 1.4vw, 16px); }
.bc-trail a { color: #fff; text-decoration: none; opacity: .85; transition: opacity .2s; }
.bc-trail a:hover { opacity: 1; text-decoration: underline; }
.bc-trail__sep { margin: 0 8px; opacity: .6; }
.bc-trail__current { font-weight: 600; }
.bc-title { margin: 12px 0 0; font-weight: 800; text-transform: uppercase;
    letter-spacing: .02em; font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.05;color:#fff;}

/* ── S1 Story / Mission ── */
.about-story { position: relative; background: #fff; padding: clamp(54px, 8vw, 120px) 0; overflow: hidden; }
/* Bölümü kaplayan arka plan görseli — admin/Hakkımızda · "Bölüm Arka Plan Görseli".
   Görsel --about-story-bg değişkeniyle inline atanır; yoksa görünmez (beyaz zemin korunur). */
.about-story::before {
    content: ""; position: absolute; inset: 0; z-index: 0;
    background-image: var(--about-story-bg, none);
    background-size: cover; background-position: center; background-repeat: no-repeat;
    pointer-events: none;
}
/* Görsel varken metin (sol) okunaklı kalsın diye soldan yoğun beyaz tül */
.about-story--bg::after {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.78) 45%, rgba(255,255,255,.42) 100%);
}
.about-story__inner { position: relative; z-index: 1; display: grid;
    grid-template-columns: 2fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }   /* metin 2/3 · görsel 1/3 */
.about-story__media { position: relative; }
.about-story__img { display: block; width: 100%; height: auto; border-radius: 4px; position: relative; z-index: 1; }

/* ── S2 Why book (koyu) ── */
.about-why { background: var(--f1-deepcharcoal, #131313); color: #fff; padding: clamp(54px, 8vw, 110px) 0; }
.about-why__title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 600; line-height: 1.12;color:#fff;
    letter-spacing: -.02em; margin: 0 0 26px; max-width: 32ch; }
.about-why__text { color: rgba(255,255,255,.72); line-height: 1.8; max-width: 92ch; }
.about-why__text p { margin: 0 0 1.1em; }
/* Butonlar anasayfa f1-btn yapısında — sadece üst boşluk */
.about-btn { margin-top: 36px; }

/* ── S3 Guarantee ── */
.about-guarantee { position: relative; padding: clamp(54px, 8vw, 120px) 0; overflow: hidden;
    color: var(--f1-deepcharcoal, #131313); background: #eef1f3; }
.about-guarantee__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.about-guarantee__veil { position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,.10), rgba(255,255,255,.10)); }
.about-guarantee__inner { position: relative; z-index: 2; }
.about-guarantee__title { text-align: center; margin-bottom: clamp(28px, 4vw, 48px); }
.about-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px);
    max-width: 760px; margin-left: auto; }
.about-card { background: rgb(255 255 255 / 44%); border-radius: 12px;
    padding: clamp(20px, 2.4vw, 28px); box-shadow: 0 14px 40px rgba(0,0,0,.10);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.about-card__icon { display: inline-flex; color: var(--f1-deepcharcoal, #131313); font-size: 1.9rem; margin-bottom: 14px; }
/* İkon görseli (admin'den yüklenen resim) — bi ikonuyla aynı görsel ağırlıkta */
.about-card__icon img { width: 34px; height: 34px; object-fit: contain; display: block; }
.about-card__title { font-weight: 600; font-size: 1.05rem; margin: 0 0 8px; color: var(--f1-deepcharcoal, #131313); }
.about-card__text { color: rgba(0,0,0,.6); font-size: .9rem; line-height: 1.6; margin: 0; }

/* ── S4 Get inspired (ortalı ~920px · küçük görsel · üst+alt padding) ── */
.about-inspired { background: #fff; padding: clamp(48px, 7vw, 100px) 0; }
.about-inspired__inner { max-width: 920px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr;
    gap: clamp(28px, 4vw, 56px); align-items: center; }
.about-inspired__img { display: block; width: clamp(170px, 20vw, 260px); height: auto;
    filter: drop-shadow(0 22px 40px rgba(0,0,0,.22)); }

/* ── FAQ (FAQPage) ── */
.about-faq { background: #fafafa; padding: clamp(48px, 7vw, 100px) 0; }
.about-faq__inner { max-width: 820px; }
.about-faq__list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-faq__item { border: 1px solid rgba(0,0,0,.08); border-radius: 10px; background: #fff; overflow: hidden; }
.about-faq__q { cursor: pointer; padding: 16px 20px; font-weight: 600; color: var(--f1-deepcharcoal, #131313);
    list-style: none; }
.about-faq__q::-webkit-details-marker { display: none; }
.about-faq__q::after { content: "+"; float: right; color: var(--f1-red, #24703b); font-weight: 700; }
.about-faq__item[open] .about-faq__q::after { content: "–"; }
.about-faq__a { padding: 0 20px 18px; color: rgba(0,0,0,.66); line-height: 1.7; }

@media (max-width: 992px) {
    .about-story__inner,
    .about-inspired__inner { grid-template-columns: 1fr; }
    .about-cards { max-width: none; margin-left: 0; }
    .about-inspired__img { width: clamp(200px, 50vw, 300px); }
    /* Tek kolonda metin tam genişlik → arka plan tülünü düz/yoğun yap (okunabilirlik) */
    .about-story--bg::after { background: rgba(255, 255, 255, .88); }
}
@media (max-width: 560px) {
    .about-cards { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   ETKİNLİKLER / TAKVİM — /etkinlikler (list + month) · yeşil tema
   ════════════════════════════════════════════════════════════════════ */
.cal-section { background: #fff; padding: clamp(32px, 4.5vw, 64px) 0; }
/* Etkinlikler ay görünümü tek ekrana sığsın — bu sayfada hero'yu kısalt */
.bc-hero:has(+ .cal-section) { min-height: clamp(150px, 20vw, 360px); }
.cal-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: clamp(20px, 2.5vw, 24px); }
.cal-toolbar__left { display: flex; align-items: center; gap: 10px; min-width: 120px; }
.cal-toolbar__right { min-width: 120px; display: flex; justify-content: flex-end; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Kategori filtresi (pill chip'ler) */
.cal-filter { display: inline-flex; flex-wrap: wrap; gap: 8px; }
.cal-filter__btn { padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(36,112,59,.30);
    background: transparent; color: var(--f1-deepcharcoal, #131313); font-weight: 600; font-size: .78rem;
    letter-spacing: .02em; cursor: pointer; transition: background-color .2s, color .2s, border-color .2s; }
.cal-filter__btn:hover { background: rgba(36,112,59,.12); }
.cal-filter__btn.is-active { background: var(--f1-red, #24703b); color: #fff; border-color: var(--f1-red, #24703b); }

/* ── Alt kategori çip satırı (kök seçilince açılır) + durum ── */
.cal-subbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
    margin: -8px 0 clamp(16px, 2vw, 20px); }
.cal-subfilter { display: flex; flex-wrap: wrap; gap: 6px; animation: calSubIn .28s ease; }
.cal-subfilter[hidden] { display: none; }
@keyframes calSubIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.cal-subchip { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px;
    border: 1px solid rgba(36,112,59,.22); background: rgba(36,112,59,.05);
    color: var(--f1-deepcharcoal, #131313); font-weight: 600; font-size: .72rem; letter-spacing: .02em;
    cursor: pointer; transition: background-color .2s, color .2s, border-color .2s; }
.cal-subchip:hover { background: rgba(36,112,59,.14); }
.cal-subchip.is-active { background: var(--f1-red, #24703b); color: #fff; border-color: var(--f1-red, #24703b); }
.cal-subchip__n { font-size: .62rem; font-weight: 700; padding: 1px 6px; border-radius: 999px;
    background: rgba(0,0,0,.10); }
.cal-subchip.is-active .cal-subchip__n { background: rgba(255,255,255,.22); }
.cal-status { display: inline-flex; align-items: center; gap: 12px; margin-left: auto; animation: calSubIn .28s ease; }
.cal-count { font-size: .8rem; font-weight: 700; color: var(--f1-red, #24703b); white-space: nowrap; }
.cal-clear { border: 0; background: transparent; color: rgba(0,0,0,.5); font-size: .76rem; font-weight: 600;
    cursor: pointer; padding: 4px 6px; border-radius: 6px; transition: color .15s, background-color .15s; }
.cal-clear:hover { color: var(--f1-red, #24703b); background: rgba(36,112,59,.08); }

/* ── Yer seçici (📍 buton + ülke gruplu panel) ── */
.cal-yer { position: relative; }
.cal-yer__btn { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px;
    border: 1px solid rgba(36,112,59,.30); background: transparent; color: var(--f1-deepcharcoal, #131313);
    font-weight: 600; font-size: .78rem; letter-spacing: .02em; cursor: pointer;
    transition: background-color .2s, color .2s, border-color .2s; }
.cal-yer__btn:hover { background: rgba(36,112,59,.12); }
.cal-yer__btn.is-active { background: var(--f1-red, #24703b); color: #fff; border-color: var(--f1-red, #24703b); }
.cal-yer__x { display: inline-flex; align-items: center; justify-content: center; width: 16px; height: 16px;
    border-radius: 50%; background: rgba(255,255,255,.25); font-size: .9rem; line-height: 1; }
.cal-yer__panel { position: absolute; top: calc(100% + 8px); right: 0; z-index: 60; width: 280px;
    background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 14px; padding: 10px;
    box-shadow: 0 18px 50px -12px rgba(0,0,0,.25); animation: calSubIn .2s ease; }
.cal-yer__search { width: 100%; border: 1px solid rgba(0,0,0,.12); border-radius: 8px; padding: 8px 12px;
    font-size: .82rem; outline: none; margin-bottom: 8px; }
.cal-yer__search:focus { border-color: var(--f1-red, #24703b); }
.cal-yer__list { max-height: 320px; overflow-y: auto; }
.cal-yer__empty { padding: 12px 10px; font-size: .8rem; color: rgba(0,0,0,.5); }
.cal-yer__country { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(0,0,0,.45); padding: 8px 8px 4px; }
.cal-yer__item { display: flex; align-items: center; justify-content: space-between; width: 100%;
    border: 0; background: transparent; text-align: left; padding: 7px 10px; border-radius: 8px;
    font-size: .84rem; font-weight: 500; color: var(--f1-deepcharcoal, #131313); cursor: pointer;
    transition: background-color .12s; }
.cal-yer__item:hover { background: rgba(36,112,59,.10); }
.cal-yer__n { font-size: .68rem; font-weight: 700; color: rgba(0,0,0,.4); }

/* Filtre aktifken etkinliği kalmayan takvim günleri soluklaşır */
.cal-cell.is-dim { opacity: .35; }
.cal-title { flex: 1 1 auto; text-align: center; margin: 0; color: var(--f1-deepcharcoal, #131313);
    font-weight: 800; text-transform: uppercase; letter-spacing: .01em; font-size: clamp(1.4rem, 3vw, 2.1rem); }

.cal-nav, .cal-today { display: inline-flex; align-items: center; justify-content: center; height: 40px;
    border-radius: 8px; text-decoration: none; font-weight: 700; transition: background-color .2s; }
.cal-nav { width: 40px; background: var(--f1-red, #24703b); color: #fff; }
.cal-nav:hover { background: #1c5c30; color: #fff; }
.cal-today { padding: 0 16px; font-size: .8rem; letter-spacing: .04em; background: rgba(36,112,59,.12); color: var(--f1-red, #24703b); }
.cal-today:hover { background: rgba(36,112,59,.22); color: var(--f1-red, #24703b); }

.cal-toggle { display: inline-flex; border-radius: 8px; overflow: hidden; }
.cal-toggle__btn { padding: 10px 20px; font-weight: 700; font-size: .8rem; letter-spacing: .05em;
    text-decoration: none; background: rgba(36,112,59,.12); color: var(--f1-red, #24703b); transition: background-color .2s; }
.cal-toggle__btn.is-active { background: var(--f1-red, #24703b); color: #fff; }
.cal-toggle__btn:hover { background: rgba(36,112,59,.22); }
.cal-toggle__btn.is-active:hover { background: #1c5c30; color: #fff; }

.cal-btn { display: inline-block; background: var(--f1-red, #24703b); color: #fff; text-decoration: none;
    padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: .8rem; letter-spacing: .04em;
    transition: background-color .2s, transform .2s; }
.cal-btn:hover { background: #1c5c30; color: #fff; transform: translateY(-1px); }
.cal-empty { text-align: center; color: rgba(0,0,0,.5); padding: 48px 0; }

/* Liste */
.evt-list { display: flex; flex-direction: column; }
.evt-row { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(16px, 2.5vw, 32px);
    align-items: center; padding: 24px 0; border-top: 1px solid rgba(0,0,0,.08); }
.evt-row:last-child { border-bottom: 1px solid rgba(0,0,0,.08); }
.evt-date { width: 64px; height: 64px; border-radius: 10px; background: rgba(36,112,59,.10); flex: none;
    display: flex; flex-direction: column; align-items: center; justify-content: center; }
.evt-date__day { font-weight: 800; font-size: 1.4rem; line-height: 1; color: var(--f1-deepcharcoal, #131313); }
.evt-date__mon { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--f1-red, #24703b); margin-top: 2px; }
.evt-name { margin: 0 0 6px; font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.evt-name a { color: var(--f1-deepcharcoal, #131313); text-decoration: none; }
.evt-name a:hover { color: var(--f1-red, #24703b); }
.evt-meta { display: flex; flex-wrap: wrap; gap: 6px 18px; color: rgba(0,0,0,.55); font-size: .85rem; margin-bottom: 6px; }
.evt-desc { color: rgba(0,0,0,.6); font-size: .95rem; line-height: 1.6; margin: 0; max-width: 70ch; }
.evt-cta { flex: none; }

/* Aylık ızgara — ölçülü kompakt */
.cal-grid { border: 1px solid rgba(0,0,0,.09); border-radius: 11px; overflow: hidden; }
.cal-grid__head, .cal-grid__body { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-grid__head { background: var(--f1-deepcharcoal, #131313); }
.cal-grid__dow { padding: 12px 10px; color: #fff; font-weight: 700; font-size: .76rem; letter-spacing: .06em; }
/* Hücre yüksekliği viewport'a göre (ölçülü) */
.cal-cell { min-height: clamp(84px, 12vh, 112px); border-right: 1px solid rgba(0,0,0,.07); border-bottom: 1px solid rgba(0,0,0,.07);
    padding: 8px; display: flex; flex-direction: column; gap: 4px; }
.cal-cell:nth-child(7n) { border-right: 0; }
.cal-cell.is-out { background: #fafafa; }
.cal-cell.is-out .cal-cell__num { color: rgba(0,0,0,.3); }
.cal-cell.is-today { background: rgba(36,112,59,.08); }
.cal-cell.is-today .cal-cell__num { color: var(--f1-red, #24703b); font-weight: 800; }
.cal-cell__num { font-weight: 600; font-size: .88rem; color: var(--f1-deepcharcoal, #131313); text-align: right; }
.cal-evt { display: block; background: var(--f1-red, #24703b); color: #fff; text-decoration: none;
    font-size: .72rem; font-weight: 600; padding: 3px 7px; border-radius: 5px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: background-color .2s; }
.cal-evt:hover { background: #1c5c30; color: #fff; }
.cal-more { font-size: .7rem; color: rgba(0,0,0,.5); padding-left: 2px; }

@media (max-width: 768px) {
    .cal-toolbar { justify-content: center; }
    .cal-title { order: -1; flex-basis: 100%; }
    .evt-row { grid-template-columns: auto 1fr; }
    .evt-cta { grid-column: 2; justify-self: start; }
    .cal-cell { min-height: clamp(64px, 9vh, 84px); }
    .cal-grid__dow { font-size: .64rem; padding: 9px 6px; text-align: center; }
    .cal-evt { font-size: .62rem; }
}

/* ════════════════════════════════════════════════════════════════════
   ETKİNLİK DETAY — /urun/{seoUrl} (hero + 2 kolon + galeri + 3'lü banner)
   ════════════════════════════════════════════════════════════════════ */
.ed-hero { position: relative; display: flex; min-height: clamp(420px, 58vw, 600px); overflow: hidden; color: #fff; }
.ed-hero--solid { background: var(--f1-deepcharcoal, #131313); }
.ed-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.ed-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.66)); }
.ed-hero__inner { position: relative; z-index: 2; width: 100%; display: flex; flex-direction: column;
    padding-top: clamp(20px, 4vw, 40px); padding-bottom: clamp(40px, 6vw, 72px); }
.ed-hero__trail { align-self: flex-start; }
.ed-hero__center { margin: auto; text-align: center; max-width: 900px; }
/* Büyük başlık — text-transform KULLANILMAZ: TR/EN harf büyütme (i/İ, ı/I) sorununu önler;
   metin admin'de yazıldığı gibi gösterilir. */
.ed-hero__title { font-weight: 800; letter-spacing: .005em; color:#fff;
    font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.05; margin: 0 0 16px; }
.ed-hero__desc { color: rgba(255,255,255,.85); font-size: clamp(.95rem, 1.4vw, 1.05rem); line-height: 1.6;
    max-width: 62ch; margin: 0 auto 28px; }
.ed-hero__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px 40px; margin-bottom: 30px; }
.ed-meta { display: flex; align-items: center; gap: 10px; text-align: left; }
.ed-meta i { font-size: 2rem; opacity: .9; }
.ed-meta small { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.62); }
.ed-meta b { font-size: .92rem; font-weight: 600; }
.ed-hero__cta { margin-top: 4px; }

/* Hero geri sayım — split-flip kartlar */
.ed-countdown { margin-top: 8px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ed-cd__grid { display: flex; gap: clamp(8px, 1.6vw, 18px); }
.ed-flip { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ed-flip__card {
    position: relative; display: flex; align-items: center; justify-content: center;
    min-width: clamp(54px, 8vw, 84px); padding: clamp(10px, 1.6vw, 18px) 6px;
    border-radius: 12px; background: var(--f1-black, #0c0c0c); color: #fff;
    font-weight: 800; font-size: clamp(1.5rem, 4vw, 2.6rem); line-height: 1;
    font-variant-numeric: tabular-nums; transform-origin: center;
    box-shadow: 0 14px 30px -12px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.07);
}
/* Ortadaki yatay çizgi — split-flap görünümü */
.ed-flip__card::after {
    content: ''; position: absolute; left: 7px; right: 7px; top: 50%; height: 2px; z-index: 2;
    transform: translateY(-50%); background: rgba(0,0,0,.55); box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.ed-flip__num { position: relative; z-index: 1; display: block; }
.ed-flip__card.is-flip { animation: edFlip .5s var(--f1-ease, cubic-bezier(.22,1,.36,1)); }
@keyframes edFlip {
    0%   { transform: perspective(280px) rotateX(0); }
    45%  { transform: perspective(280px) rotateX(-24deg); filter: brightness(1.28); }
    100% { transform: perspective(280px) rotateX(0); }
}
.ed-flip__label { font-size: .66rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; color: rgba(255,255,255,.62); }
/* Geri sayım bitiş/başlangıç durumu — buton görünümlü pill */
.ed-cd__status {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
    font-size: clamp(.78rem, 1.5vw, .98rem);
    padding: 12px 26px; border-radius: 999px; line-height: 1;
    border: 1.5px solid transparent; color: #fff;
    box-shadow: 0 14px 30px -14px rgba(0,0,0,.5);
}
.ed-cd__status::before {
    content: ''; width: 9px; height: 9px; border-radius: 50%;
    background: currentColor; opacity: .9; flex: none;
}
.ed-cd__status--live { background: var(--f1-red, #24703b); border-color: var(--f1-red, #24703b); color: #fff; }
.ed-cd__status--ended {
    background: rgba(19, 19, 19, .55); border-color: rgba(255, 255, 255, .35); color: #fff;
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
@media (prefers-reduced-motion: reduce) { .ed-flip__card.is-flip { animation: none; } }

/* Sayaç altı tanıtım videosu — yeşil play butonu (fancybox) */
.ed-hero__play { margin-top: clamp(20px, 3vw, 30px); display: flex; justify-content: center; }
.ed-playbtn {
    --pb: clamp(50px, 7vw, 68px);
    position: relative; display: inline-flex; align-items: center; justify-content: center;
    width: var(--pb); height: var(--pb); border-radius: 50%;
    background: var(--f1-red, #24703b); color: #fff; text-decoration: none;
    box-shadow: 0 18px 38px -14px rgba(36, 112, 59, .75);
    transition: transform .25s var(--f1-ease, ease), background-color .25s var(--f1-ease, ease);
}
.ed-playbtn::before {
    content: ''; position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid var(--f1-red, #24703b); animation: edPlayPulse 2.4s ease-out infinite; pointer-events: none;
}
.ed-playbtn svg { width: 40%; height: 40%; margin-left: 7%; }
.ed-playbtn:hover { transform: scale(1.08); color: #fff; background: #1c5c30; }
.ed-playbtn:active { transform: scale(.98); }
@keyframes edPlayPulse { 0% { transform: scale(1); opacity: .65; } 100% { transform: scale(1.75); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .ed-playbtn::before { animation: none; } }

.ed-body { background: #fff; padding: clamp(48px, 7vw, 100px) 0;border-radius:12px 12px 0 0; }
.ed-body__grid { display: grid; grid-template-columns: 1.5fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: start;}
.ed-cat { color: var(--f1-red, #24703b); font-weight: 600; font-size: .95rem; letter-spacing: .02em; margin: 0 0 8px; }
.ed-name { color: var(--f1-deepcharcoal, #131313); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.15; letter-spacing: -.01em; margin: 0 0 22px; }
.ed-body__gallery { display: flex; flex-direction: column; gap: clamp(16px, 2vw, 24px); }
/* Sağ kolon kartları — açık gri kutu (iki ayrı bölüm) */
.ed-card { border-radius: 12px; background-color: #f2f5f8; padding: calc(.25rem * 9); }
.ed-card__cta { display: flex; width: 100%; margin-top: 16px; }
.ed-gallery__head { margin-bottom: 14px; }
.ed-gallery__name { font-weight: 700; font-size: 1.1rem; color: var(--f1-deepcharcoal, #131313); margin: 0; }
.ed-gallery__loc { color: rgba(0,0,0,.55); font-size: .85rem; margin: 2px 0 0; }
.ed-gallery__main { display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 10; }
.ed-gallery__mainimg, .ed-thumb__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ed-gallery__label { display: block; font-weight: 600; color: var(--f1-deepcharcoal, #131313); font-size: .95rem; margin: 0 0 12px; }
.ed-gallery__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ed-thumb { display: block; border-radius: 10px; overflow: hidden; aspect-ratio: 4 / 3; }
.ed-thumb__img { transition: transform .4s var(--f1-ease, ease); }
.ed-thumb:hover .ed-thumb__img { transform: scale(1.05); }

/* Sticky "Teklif/Bilgi İste" — telefonu ara */
.ed-callcta { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 60;
    display: flex; align-items: center; background: var(--f1-red, #24703b); color: #fff; text-decoration: none;
    border-radius: 12px 0 0 12px; box-shadow: 0 10px 30px rgba(0,0,0,.25); overflow: hidden;
    max-width: 54px; transition: max-width .35s var(--f1-ease, ease); }
.ed-callcta__icon { flex: none; width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.ed-callcta__text { white-space: nowrap; padding-right: 20px; font-weight: 700; font-size: .85rem; }
.ed-callcta:hover { max-width: 280px; color: #fff; }
@media (max-width: 768px) { .ed-callcta { top: auto; bottom: 84px; transform: none; } }

/* 3'lü banner — Nasıl Çalışır (rakam yerine minik logo) */
.ed-steps { background: #fff; padding: clamp(48px, 7vw, 100px) 0; }
.ed-steps__title { text-align: center; color: var(--f1-deepcharcoal, #131313); font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2rem); margin: 0 0 clamp(28px, 4.5vw, 52px); }
/* Başlık altı yeşil hareketli çizgi (anasayfa .ue-title ile aynı squiggle) */
.ed-steps__title .ue-highlight { position: relative; display: inline-block; white-space: normal; max-width: 100%; }
.ed-steps__title .squiggle-underline { position: absolute; left: 0; bottom: -.34em;
    width: 100%; height: .55em; overflow: visible; pointer-events: none; }
.ed-steps__title .squiggle-underline path { stroke-dasharray: 1; stroke-dashoffset: 1;
    animation: ueDraw 1.8s ease .3s forwards; }
.ed-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.5vw, 28px); }
/* Beyaz kart: üstte görsel, altta gövde (siyahlık kaldırıldı) */
.ed-step { position: relative; overflow: hidden; display: flex; flex-direction: column;
    border-radius: 16px; background: #fff; border: 1px solid rgba(19,19,19,.08);
    box-shadow: 0 12px 32px -20px rgba(0,0,0,.28); }
/* Görsel bloğu — kartın üst kısmı */
.ed-step__media { height: clamp(210px, 24vw, 280px); background-size: cover;
    background-position: center; background-color: #f4f5f6; }
.ed-step--plain .ed-step__media { background: linear-gradient(160deg, #1c5c30, var(--f1-deepcharcoal, #131313)); }
.ed-step__veil { display: none; }
/* Gövde: görselin ALTINDA, açık/beyaz zemin — koyu metin. Logo için üst boşluk. */
.ed-step__body { position: relative; z-index: 1; width: 100%;
    padding: clamp(34px, 3vw, 44px) clamp(20px, 2.4vw, 28px) clamp(22px, 2.4vw, 28px); }
/* Logo rozeti: görsel ile gövde sınırında — yarısı görselde, yarısı gövdede */
.ed-step__logo { position: absolute; top: 0; left: clamp(20px, 2.4vw, 28px); transform: translateY(-50%);
    display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px;
    border-radius: 15px; background: var(--f1-deepcharcoal, #131313); margin: 0;
    box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 12px 26px -10px rgba(0,0,0,.45); }
.ed-step__logo img { max-width: 32px; max-height: 32px; object-fit: contain; }
.ed-step__logo i { color: #fff; font-size: 1.5rem; }
.ed-step__title { color: var(--f1-deepcharcoal, #131313); font-weight: 700; font-size: 1.2rem; margin: 0 0 8px; }
.ed-step__text { color: rgba(19,19,19,.66); font-size: .92rem; line-height: 1.6; margin: 0; }

@media (max-width: 992px) {
    .ed-body__grid { grid-template-columns: 1fr; }
    .ed-steps__grid { grid-template-columns: 1fr; }
}

/* ═══════ Referanslar — koyu logo döşemeleri (#131313) ═══════ */
.ref-section { padding: clamp(40px, 6vw, 88px) 0; }
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: clamp(12px, 1.6vw, 20px);
}
.ref-tile {
    display: flex; align-items: center; justify-content: center;
    aspect-ratio: 16 / 16;
    padding: clamp(18px, 2.4vw, 30px);
    background: var(--f1-deepcharcoal, #131313);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}
.ref-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.28); }
/* Logolar beyaz olduğu için filtre yok — koyu zeminde net görünür */
.ref-tile__img {
    max-width: 100%; max-height: 100%;
    width: auto; height: auto;
    object-fit: contain;
    transition: transform .25s ease;
}
.ref-tile:hover .ref-tile__img { transform: scale(1.05); }

.ref-empty { text-align: center; color: var(--bs-secondary-color, #6c757d); padding: clamp(40px, 8vw, 80px) 0; }
.ref-empty i { font-size: 2.4rem; display: block; margin-bottom: 14px; }

@media (max-width: 575.98px) {
    .ref-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════ İletişim sayfası ═══════ */
.ct-section { padding: clamp(36px, 5vw, 72px) 0; }
.ct-title { margin: 0 0 clamp(24px, 3vw, 40px); font-size: clamp(1.6rem, 3.4vw, 2.6rem);
    line-height: 1.15; color: var(--f1-deepcharcoal, #131313); font-weight: 300; }
.ct-title strong { font-weight: 800; }
.ct-title__thin { font-weight: 300; opacity: .85; }

/* ── Ofis sekmeleri ── */
.ct-office { margin-bottom: clamp(36px, 5vw, 64px); }
.ct-office__bar { display: flex; align-items: flex-end; gap: clamp(20px, 4vw, 56px);
    border-bottom: 1px solid rgba(19,19,19,.12); flex-wrap: wrap; }
.ct-office__hint { display: flex; flex-direction: column; line-height: 1.1; padding-bottom: 14px; }
.ct-office__hint-sm { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #8a8a8a; }
.ct-office__hint-lg { font-size: 1rem; font-weight: 700; color: var(--f1-deepcharcoal, #131313); }
/* ct-office__hint yerine minik logo (ContactPage.UstResim) */
.ct-office__logo { display: flex; align-items: center; padding-bottom: 10px; }
.ct-office__logo img { height: 34px; width: auto; max-width: 140px; object-fit: contain; }
.ct-tabs { display: flex; gap: clamp(16px, 2.4vw, 32px); flex-wrap: wrap; }
.ct-tab { appearance: none; background: none; border: 0; cursor: pointer;
    padding: 14px 2px; font-size: .95rem; font-weight: 600; color: #8a8a8a;
    border-bottom: 2px solid transparent; transition: color .2s, border-color .2s; }
.ct-tab:hover { color: var(--f1-deepcharcoal, #131313); }
.ct-tab.is-active { color: var(--f1-deepcharcoal, #131313); border-bottom-color: var(--f1-red, #e10600); }

.ct-panels { padding-top: clamp(22px, 3vw, 36px); }
.ct-panel { display: none; }
.ct-panel.is-active { display: block; animation: ctFade .25s ease; }
@keyframes ctFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.ct-addr { font-size: clamp(1.05rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.4;
    color: var(--f1-deepcharcoal, #131313); margin: 0 0 22px; max-width: 36ch; }

/* tel/mail satırı — footer ft-help tarzı */
.ct-contact-row { display: flex; flex-wrap: wrap; gap: clamp(20px, 4vw, 56px); margin-bottom: 22px; }
.ct-contact-item { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.ct-contact-item__icon { display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
    border: 1px solid rgba(19,19,19,.14); color: var(--f1-deepcharcoal, #131313); font-size: 1.15rem; }
.ct-contact-item:hover .ct-contact-item__icon { border-color: var(--f1-red, #e10600); color: var(--f1-red, #e10600); }
.ct-contact-item__text { display: flex; flex-direction: column; line-height: 1.25; }
.ct-contact-item__label { font-size: .78rem; color: #9a8f86; }
.ct-contact-item__value { font-size: 1rem; font-weight: 600; color: var(--f1-deepcharcoal, #131313); }

.ct-map { margin-top: 18px; border-radius: 14px; overflow: hidden; box-shadow: 0 6px 22px rgba(0,0,0,.08); }
.ct-map :is(iframe, img) { display: block; width: 100%; border: 0; min-height: 260px; }
.ct-map-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px;
    font-weight: 600; text-decoration: none; color: var(--f1-red, #e10600); }
.ct-map-link:hover { text-decoration: underline; }

/* ── Form ── */
.ct-form-wrap { max-width: 1280px; }
.ct-form__title { font-size: clamp(1.2rem, 2.4vw, 1.6rem); font-weight: 700; margin: 0 0 clamp(20px, 3vw, 32px);
    color: var(--f1-deepcharcoal, #131313); }
.ct-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
.ct-field { display: flex; flex-direction: column; }
.ct-field--full { grid-column: 1 / -1; }
.ct-label { font-size: .85rem; font-weight: 600; margin-bottom: 8px; color: var(--f1-deepcharcoal, #131313); }
.ct-input { width: 100%; padding: 14px 18px; border: 1px solid rgba(19,19,19,.18); border-radius: 12px;
    font-size: .95rem; font-family: inherit; color: var(--f1-deepcharcoal, #131313); background: #fff;
    transition: border-color .2s, box-shadow .2s; }
.ct-input::placeholder { color: #b3b3b3; }
.ct-input:focus { outline: none; border-color: var(--f1-deepcharcoal, #131313);
    box-shadow: 0 0 0 3px rgba(19,19,19,.08); }
.ct-textarea { resize: vertical; min-height: 130px; }
.ct-input.input-validation-error { border-color: var(--f1-red, #e10600); }
.ct-err { color: var(--f1-red, #e10600); font-size: .8rem; margin-top: 6px; }

.ct-form__foot { display: flex; align-items: flex-start; justify-content: space-between;
    gap: clamp(20px, 4vw, 48px); margin-top: clamp(22px, 3vw, 32px); flex-wrap: wrap; }
.ct-consent-wrap { flex: 1 1 320px; }
.ct-consent { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; line-height: 1.5; color: #555; cursor: pointer; }
.ct-consent input[type=checkbox] { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--f1-deepcharcoal, #131313); }
.ct-consent a { color: var(--f1-deepcharcoal, #131313); font-weight: 600; }
.ct-submit { flex-shrink: 0; }

/* intl-tel-input genişlik düzeltmesi */
.ct-field .iti { width: 100%; }

.ct-alert { display: flex; align-items: center; gap: 10px; padding: 16px 20px; border-radius: 12px; margin-bottom: 20px; font-size: .95rem; }
.ct-alert--ok { background: #e7f6ec; color: #1c7a3f; }
.ct-alert--err { background: #fdecec; color: var(--f1-red, #e10600); }

@media (max-width: 768px) {
    .ct-form__grid { grid-template-columns: 1fr; }
    .ct-form__foot { flex-direction: column; align-items: stretch; }
    .ct-submit { align-self: flex-start; }
}

/* ═══════ Blog listeleme — pg-card görünümü (grid) ═══════ */
.blog-section { padding: clamp(36px, 5vw, 72px) 0; }
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(24px, 4vw, 48px); align-items: start; }
.blog-main { min-width: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 24px); }
/* pg-card slider için flex ile boyutlanır; grid'de hücreyi doldursun */
.blog-grid .pg-card { flex: initial; width: 100%; }

.blog-empty { text-align: center; color: var(--bs-secondary-color, #6c757d); padding: clamp(40px, 8vw, 80px) 0; }
.blog-empty i { font-size: 2.4rem; display: block; margin-bottom: 14px; }

/* ── Yan sütun: Son Yazılar ── */
.blog-side { position: sticky; top: 90px; }
.blog-side__title { font-size: 1rem; font-weight: 700; margin: 0 0 16px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(19,19,19,.12); color: var(--f1-deepcharcoal, #131313); }
.blog-side__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.blog-side__item { display: flex; gap: 12px; align-items: center; }
.blog-side__thumb { flex-shrink: 0; display: block; }
.blog-side__thumb img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; display: block; }
.blog-side__link { text-decoration: none; font-size: .9rem; font-weight: 600; line-height: 1.35;
    color: var(--f1-deepcharcoal, #131313); }
.blog-side__link:hover { color: var(--f1-red, #e10600); }

@media (max-width: 991.98px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-side { position: static; }
}
@media (max-width: 575.98px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ═══════ Kategori listeleme — 4'lü pg-card grid ═══════ */
.cat-section { padding: clamp(36px, 5vw, 72px) 0; }
.cat-count { font-size: .9rem; color: #8a8a8a; margin: 0; }

/* ── Lightswitch kategori navigasyonu (premium segment switch + alt kategori çipleri) ── */
/* Negatif üst margin ile koyu hero'nun içine çekilir (başlığın hemen altı). */
.c-lightswitch { display: flex; justify-content: flex-start;
    position: relative; z-index: 6;
    margin: clamp(-130px, -9vw, -62px) 0 clamp(14px, 2vw, 20px); }
.c-lightswitch__track {
    display: inline-flex; flex-wrap: wrap; gap: 4px;
    border-radius: 999px; background: #eef1f3;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
.c-lightswitch__opt {
    display: inline-flex; align-items: center; gap: 8px; padding: 11px 24px;
    border-radius: 999px; text-decoration: none; white-space: nowrap;
    font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: .03em;
    color: rgba(0,0,0,.52); transition: color .25s var(--f1-ease), background-color .25s var(--f1-ease), box-shadow .25s var(--f1-ease);
}
.c-lightswitch__opt:hover { color: var(--f1-deepcharcoal, #131313); }
.c-lightswitch__opt.is-active {
    background: var(--f1-red, #24703b); color: #fff; font-weight: 700;
    box-shadow: 0 10px 22px -10px rgba(36, 112, 59, .65);
}
/* Aktif ana kategorinin alt kategorileri — ikon + ad çipleri */
.c-subcats { display: flex; flex-wrap: wrap; gap: 10px 5px; margin: 0 0 clamp(22px, 3vw, 34px);
    border-bottom: 1px solid rgba(0,0,0,.08); padding-bottom: clamp(16px, 2vw, 22px); }
.c-subcat {
    display: inline-flex; align-items: center; gap: 8px; padding: 10px;
    border-radius: 999px; border: 1px solid rgba(0,0,0,.12); text-decoration: none;
    color: rgba(0,0,0,.6); font-weight: 500; font-size: .75rem; text-transform: uppercase; letter-spacing: .04em;
    transition: color .2s var(--f1-ease), border-color .2s var(--f1-ease), background-color .2s var(--f1-ease);
}
.c-subcat i { color: var(--f1-red, #24703b); font-size: 1rem; transition: color .2s var(--f1-ease); }
.c-subcat__ico { width: 18px; height: 18px; object-fit: contain; display: block; flex: none; }
.c-subcat:hover { border-color: var(--f1-red, #24703b); color: var(--f1-deepcharcoal, #131313); }
.c-subcat.is-active {
    background: var(--f1-deepcharcoal, #131313); border-color: var(--f1-deepcharcoal, #131313);
    color: #fff; font-weight: 700;
}
.c-subcat.is-active i { color: #fff; }
/* Aktif (koyu) çipte yüklenen ikon görseli beyaza dönsün — siyah kalmasın */
.c-subcat.is-active .c-subcat__ico { filter: brightness(0) invert(1); }
@media (max-width: 575.98px) {
    .c-lightswitch__opt { padding: 10px 16px; font-size: .82rem; }
}

/* ── Üst araç çubuğu: solda sayım, sağda Filtreler ── */
.cat-toolbar {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    flex-wrap: wrap; margin: 0 0 clamp(16px, 2vw, 24px);
    border-bottom: 1px solid rgba(0,0,0,.08); padding-bottom: 14px;
}
.cat-filter__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; border: 1px solid rgba(0,0,0,.14); border-radius: 999px;
    color: var(--f1-deepcharcoal, #131313); font-weight: 600; font-size: .92rem;
    padding: 9px 18px; cursor: pointer; transition: background .18s, border-color .18s, color .18s;
}
.cat-filter__btn:hover,
.cat-filter__btn[aria-expanded="true"] {
    background: var(--f1-deepcharcoal, #131313); border-color: var(--f1-deepcharcoal, #131313); color: #fff;
}
.cat-filter__btn svg { flex: none; }

/* Tam genişlik in-flow panel — açılınca yüksekliği büyür, etkinlikleri aşağı iter (fade-in + slide) */
.cat-filter__panel {
    display: grid; grid-template-rows: 0fr; opacity: 0; margin: 0;
    transition: grid-template-rows .4s cubic-bezier(.22,1,.36,1), opacity .3s ease, margin .4s ease;
}
.cat-filter__panel.is-open {
    grid-template-rows: 1fr; opacity: 1;
    margin: 2px 0 clamp(20px, 2.6vw, 30px);
}
.cat-filter__inner { overflow: hidden; min-height: 0; }
.cat-filter__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: clamp(18px, 3vw, 48px); padding-top: 6px;
}
.cat-filter__col { min-width: 0; }
.cat-filter__head {
    display: inline-block; text-decoration: none;
    color: var(--f1-deepcharcoal, #131313); font-weight: 700; font-size: 1rem;
    margin-bottom: 12px; letter-spacing: -.01em;
}
.cat-filter__head:hover { color: var(--f1-red, #24703b); }
.cat-filter__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.cat-filter__list a {
    text-decoration: none; color: #6b6b6b; font-weight: 300; font-size: .93rem;
    transition: color .15s, font-weight .15s;
}
.cat-filter__list a:hover { color: var(--f1-deepcharcoal, #131313); }
/* Aktif kategori → bold + marka rengi; diğerleri light */
.cat-filter__head.is-active { color: var(--f1-red, #24703b); }
.cat-filter__list a.is-active { color: var(--f1-deepcharcoal, #131313); font-weight: 700; }
.cat-filter__list a.is-active::before { content: "• "; color: var(--f1-red, #24703b); }
@media (max-width: 575.98px) {
    .cat-filter__btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .cat-filter__panel { transition: opacity .2s ease; }
}
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 1.8vw, 24px); }
/* pg-card slider için flex ile boyutlanır; grid'de hücreyi doldursun */
.cat-grid .pg-card { flex: initial; width: 100%; }

/* ── Etkinlik (kategori) sayfası pg-card hover efekti — SADECE bu sayfada ──
   Başlık + pill alt alta (foot içinde); cta normalde gizli, hover'da ortada
   hafif blur üzerinde belirir ve tıklanabilir olur. */
.cat-grid .pg-card__foot { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cat-grid .pg-card__title { margin: 0; }
.cat-grid .pg-card__pill {
    position: static; top: auto; left: auto; align-self: flex-start; margin: 0;
}
/* Pill (sol) + geri sayım chip'i (sağ) aynı satırda */
.cat-grid .pg-card__meta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; width: 100%; min-width: 0;
}
/* Uzun kategori adı chip'in yanında sarmasın → tek satır + üç nokta; chip daralmaz */
.cat-grid .pg-card__meta .pg-card__pill {
    align-self: center; min-width: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cat-grid .pg-card__meta .ue-chip { flex-shrink: 0; }
/* Hover blur örtüsü (görselin üstünde, foot ve cta'nın altında) */
.cat-grid .pg-card::before {
    content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: rgba(0, 0, 0, .18);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
    opacity: 0; transition: opacity .35s var(--f1-ease);
}
.cat-grid .pg-card:hover::before { opacity: 1; }
/* cta: normalde gizli; hover'da ortada pill olarak belirir */
.cat-grid .pg-card__cta {
    position: absolute; left: 50%; top: 50%; z-index: 3;
    transform: translate(-50%, -50%) scale(.9);
    opacity: 0; pointer-events: none; white-space: nowrap;
    padding: 12px 28px; border-radius: 999px;
    background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .6);
    -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
    background-image: none; /* paylaşılan alt-çizgi animasyonunu iptal et */
    transition: opacity .35s var(--f1-ease), transform .35s var(--f1-ease), background-color .25s var(--f1-ease);
}
.cat-grid .pg-card:hover .pg-card__cta { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.cat-grid .pg-card__cta:hover { background: rgba(255, 255, 255, .28); }

.cat-pager { margin-top: clamp(28px, 4vw, 44px); }

.cat-empty { text-align: center; color: var(--bs-secondary-color, #6c757d); padding: clamp(40px, 8vw, 90px) 0; }
.cat-empty i { font-size: 2.6rem; display: block; margin-bottom: 14px; }
.cat-empty p { margin-bottom: 20px; }

@media (max-width: 1199.98px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)     { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479.98px)  { .cat-grid { grid-template-columns: 1fr; } }

/* ═══════ Yasal uyarı / metin sayfası ═══════ */
.yasal-section { padding: clamp(32px, 5vw, 72px) 0; }
.yasal-body { max-width:1280px; }

