/*
 * Tarihi Balıkçı — web3 CSS Mimarisi
 * Tasarım Felsefesi: "KASITLI MİNİMALİZM"
 * - Sıfır Bootstrap, sıfır Tailwind, sıfır generic layout
 * - Koyu lacivert (#060d14) + Bakır-Altın (#c9a227) + Kremsi (#e8e4dc)
 * - Tipografi: Cormorant Garamond (serif) + DM Sans (body)
 * - WCAG AA+ kontrast, mikro-animasyonlar, sticky scroll canvas
 */

/* ============================================================
   1. DESIGN TOKENS (CSS Variables)
   ============================================================ */
:root {
    /* Renk Paleti */
    --bg:              #060d14;
    --bg-2:            #0c1a27;
    --bg-card:         rgba(12, 26, 39, 0.7);
    --fg:              #e8e4dc;
    --fg-muted:        rgba(232, 228, 220, 0.65);
    --accent:          #c9a227;
    --accent-light:    #e6bb3c;
    --accent-dim:      rgba(201, 162, 39, 0.15);
    --accent-glow:     rgba(201, 162, 39, 0.35);
    --glass:           rgba(6, 13, 20, 0.75);
    --glass-border:    rgba(201, 162, 39, 0.12);
    --error:           #e05252;
    --success:         #4caf7d;
    --white-10:        rgba(255, 255, 255, 0.06);
    --white-5:         rgba(255, 255, 255, 0.03);

    /* Tipografi */
    --font-serif:      'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body:       'DM Sans', 'Outfit', system-ui, sans-serif;

    /* Boşluklar */
    --sp-xs:  0.5rem;
    --sp-sm:  1rem;
    --sp-md:  2rem;
    --sp-lg:  4rem;
    --sp-xl:  8rem;
    --sp-2xl: 14rem;

    /* Geçişler */
    --t-fast:   0.25s ease;
    --t-smooth: 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    --t-spring: 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --nav-h:        80px;
    --content-w:    1280px;
    --radius-sm:    6px;
    --radius-md:    14px;
    --radius-lg:    24px;
    --radius-pill:  100px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0; padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

img, video {
    display: block;
    max-width: 100%;
}

a { color: inherit; text-decoration: none; }

button { cursor: pointer; font-family: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

/* ============================================================
   3. ARK PLAN - Fixed Background
   ============================================================ */
.site-bg {
    position: fixed;
    inset: 0;
    background-image: url('/assets/img/arkaplan.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.10;
    z-index: 0;
    pointer-events: none;
}

/* ============================================================
   4. NAVİGASYON / HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    transition: background var(--t-fast), height var(--t-fast), box-shadow var(--t-fast);
    background: linear-gradient(to bottom, rgba(6,13,20,0.98) 0%, transparent 100%);
}

.site-header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border-bottom: 1px solid var(--glass-border);
    height: 64px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Logo */
.header-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo img {
    height: 80px;
    width: 80px;
    border-radius: 8px;
    object-fit: contain;
    transition: transform var(--t-spring);
}

.header-logo img:hover { transform: scale(1.08) rotate(-1deg); }

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fg-muted);
    font-family: var(--font-body);
    font-weight: 400;
}

/* Ana Navigasyon */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    position: relative;
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--fg-muted);
    transition: color var(--t-fast);
    border-radius: var(--radius-sm);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px; height: 1px;
    background: var(--accent);
    transition: transform var(--t-smooth);
    transform-origin: center;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Header Sağ Grup */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Güvenlik Rozeti */
.sec-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    letter-spacing: 1px;
    padding: 0.4rem 0.85rem;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    color: var(--accent);
    cursor: help;
    transition: all var(--t-fast);
    position: relative;
    white-space: nowrap;
}

.sec-badge:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.sec-badge::before {
    content: '🔒';
    font-size: 0.85rem;
}

.sec-badge-tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 240px;
    background: var(--bg-2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-size: 0.72rem;
    color: var(--fg);
    line-height: 1.5;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.sec-badge:hover .sec-badge-tooltip {
    display: block;
}

/* Dil Seçici */
.lang-select {
    appearance: none;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--accent);
    padding: 0.38rem 0.85rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--t-fast);
}

.lang-select:hover,
.lang-select:focus {
    background: var(--accent-dim);
    outline: none;
}

.lang-select option {
    background: var(--bg-2);
    color: var(--fg);
}

/* Admin Giriş Linki (Header — Sağ Üst) */
.header-admin-login {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.38rem 0.9rem;
    border: 1px solid rgba(201,162,39,0.25);
    border-radius: var(--radius-pill);
    color: var(--fg-muted);
    transition: all var(--t-fast);
    white-space: nowrap;
    text-decoration: none;
}

.header-admin-login:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.admin-login-label {
    text-transform: uppercase;
}

/* Footer Admin Giriş Linki */
.footer-admin-login {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(201,162,39,0.55);
    text-decoration: none;
    transition: color var(--t-fast);
    padding: 0.2rem 0;
}

.footer-admin-login:hover {
    color: var(--accent);
}

/* Hamburger Menü (mobil) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: all var(--t-smooth);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobil Overlay Menü */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(6, 13, 20, 0.98);
    backdrop-filter: blur(24px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-smooth);
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav a {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--fg-muted);
    letter-spacing: 2px;
    transition: color var(--t-fast), transform var(--t-spring);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent);
    transform: translateX(8px);
}

/* ============================================================
   5. ANA İÇERİK KONTEYNERİ
   ============================================================ */
#app-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    transition: opacity var(--t-smooth);
}

#app-content.fading { opacity: 0; }

/* Section reveal animasyonu */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   6. HERO SEKSİYONU
   ============================================================ */
.hero-section {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: grid;
    /* Görev 1: Video tarafı belirgin biçimde daha geniş alındı */
    grid-template-columns: 0.72fr 1.28fr;
    gap: 3rem;
    align-items: center;
    padding-left: 7%;
    padding-right: 1.5%; /* Görev 1: Video sağa iyice yaslansın */
    padding-bottom: var(--sp-lg);
}

.hero-text {
    text-align: left; /* Görev 2: Sol yaslı duruş */
}

.hero-eyebrow {
    /* Görev 2: Eyebrow biraz büyütüldü */
    font-size: 0.82rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.hero-title {
    font-family: var(--font-serif);
    /* Görev 2: Başlık yazısı büyütüldü */
    font-size: clamp(4rem, 7.5vw, 9rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--fg);
    margin-bottom: 1.5rem;
}

.hero-title span { color: var(--accent); }

.hero-desc {
    /* Görev 2: Açıklama yazısı büyütüldü */
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--fg-muted);
    max-width: 540px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

/* Video kutusu (hero sağı) — Görev 1: Daha büyük, belirgin sağ yaslanma */
.hero-video-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 9/11; /* Görev 1: Dikey oran daha heybetli (portrait-ish) */
    width: 100%;
    margin-left: auto;  /* Görev 1: Sağa tam yaslama */
    max-height: 92vh;   /* Görev 1: Yükseklik paylaşımı arttı */
    box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--glass-border);
}

.hero-video-box video {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* Asil köşe süsü */
.hero-video-box::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: inherit;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--accent-glow), transparent 60%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* ============================================================
   7. CANVAS SCROLL SEKSİYONU
   ============================================================ */
.canvas-block {
    height: 300vh;
    position: relative;
}

.canvas-sticky-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#scroll-canvas {
    display: block;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* Preload Progress Bar */
.canvas-preload-bar {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent-dim);
    z-index: 5;
}

.canvas-preload-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.2s linear;
}

/* Canvas Fade & Overlay (son framelerde) */
.canvas-fade-out {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, var(--bg) 100%);
    opacity: 0;
    transition: opacity var(--t-smooth);
    pointer-events: none;
    z-index: 3;
}

.canvas-fade-out.visible { opacity: 1; }

/* ============================================================
   7.5 MAP FEATURE SECTION (Görev 1)
   ============================================================ */
.map-feature-section {
    position: relative;
    padding: var(--sp-lg) 7%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}

.map-feature-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/map_feature_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: blur(2px) grayscale(0.5);
    z-index: 0;
}

.map-feature-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--content-w);
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.map-strip-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.map-strip-info .map-icon { font-size: 1.8rem; color: var(--accent); }

.map-strip-info p {
    font-size: 1rem;
    color: var(--fg-muted);
}

.map-strip-info strong {
    font-size: 1.4rem;
    color: var(--fg);
    font-family: var(--font-serif);
}

@media (max-width: 768px) {
    .map-feature-content {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }
}

/* ============================================================
   8. BUTONLAR
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    transition: all var(--t-smooth);
    cursor: pointer;
    white-space: nowrap;
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* Birincil */
.btn-primary {
    background: var(--accent);
    color: var(--bg);
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-primary:active { transform: translateY(0); }

/* İkincil (outline) */
.btn-outline {
    background: transparent;
    color: var(--fg);
    border: 1px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

/* Ghost */
.btn-ghost {
    background: transparent;
    color: var(--accent);
    padding: 0.6rem 1.2rem;
    font-size: 0.78rem;
}

.btn-ghost:hover { background: var(--accent-dim); }

/* ============================================================
   9. SECTION BAŞLIKLARI
   ============================================================ */
.section-wrap {
    padding: var(--sp-xl) 7%;
    position: relative;
    z-index: 1;
}

.section-wrap.alt { background: var(--white-5); }

.section-eyebrow {
    display: block;
    font-size: 0.70rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--fg);
    margin-bottom: 1.25rem;
}

.section-title span { color: var(--accent); }

.section-desc {
    font-size: 1rem;
    color: var(--fg-muted);
    max-width: 540px;
    line-height: 1.75;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: var(--sp-lg);
}

/* İnce altın çizgi süsü */
.section-rule {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 1.25rem 0;
}

/* ============================================================
   10. HİZMET KARTLARI (Lezzetlerimiz — 3+3)
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    transition: transform var(--t-smooth), border-color var(--t-fast), box-shadow var(--t-smooth);
    cursor: default;
    backdrop-filter: blur(8px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px var(--accent-glow);
}

.service-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform var(--t-smooth);
}

.service-card:hover .service-card-img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 1.5rem;
}

.service-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-card-price {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--fg);
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--fg-muted);
    line-height: 1.65;
}

/* Hover slide overlay efekti */
.service-card-hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg) 0%, rgba(6,13,20,0.4) 60%, transparent 100%);
    opacity: 0;
    transition: opacity var(--t-smooth);
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.service-card:hover .service-card-hover-overlay { opacity: 1; }

/* ============================================================
   11. MÜŞTERİ YORUMLARI
   ============================================================ */
.reviews-track-wrap {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-card {
    flex: 0 0 calc(33.33% - 1rem);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    backdrop-filter: blur(8px);
    transition: border-color var(--t-fast);
}

.review-card:hover { border-color: var(--accent-glow); }

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: var(--accent);
    font-size: 0.9rem;
}

.review-text {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--fg);
    margin-bottom: 1.25rem;
}

.review-author {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.reviews-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: all var(--t-fast);
}

.reviews-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   12. BLOG SEKSİYONU
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--t-smooth), border-color var(--t-fast);
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.blog-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    transition: transform var(--t-smooth);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem 0.25rem;
    margin-bottom: 0.5rem;
}

.blog-category-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-pill);
}

.blog-date {
    font-size: 0.78rem;
    color: var(--fg-muted);
}

.blog-card-body {
    padding: 0 1.5rem 1.5rem;
    flex: 1;
}

.blog-card-title {
    font-family: var(--font-serif);
    font-size: 1.6rem; /* Başlık biraz büyütüldü */
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 1rem;
    line-height: 1.25;
    transition: color var(--t-fast);
}

.blog-card:hover .blog-card-title { color: var(--accent); }

.blog-card-excerpt {
    font-size: 1rem; /* Okunabilirlik için 1rem yapıldı */
    color: var(--fg-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 8; /* Boş alanı doldurmak için satır sayısı arttırıldı */
    line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-read-link {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap var(--t-fast);
}

.blog-card:hover .blog-read-link { gap: 0.65rem; }

/* Blog Detay Sayfası */
.blog-detail-wrap {
    max-width: 780px;
    margin: 0 auto;
    padding: calc(var(--nav-h) + var(--sp-lg)) 5% var(--sp-xl);
}

.blog-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--fg-muted);
    margin-bottom: 2rem;
    transition: color var(--t-fast), gap var(--t-fast);
}

.blog-back-btn:hover { color: var(--accent); gap: 0.75rem; }

.blog-detail-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--fg);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.blog-detail-content {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--fg-muted);
}

.blog-detail-content p {
    margin-bottom: 1.5rem;
}

.blog-detail-content strong {
    color: var(--fg);
}

/* ============================================================
   13. GALERİ
   ============================================================ */
.gallery-grid {
    columns: 4;
    column-gap: 1rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform var(--t-smooth);
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,13,20,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t-fast);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
    font-size: 2rem;
    color: var(--accent);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-smooth);
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius-sm);
    object-fit: contain;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 2rem;
    background: none;
    border: none;
    color: var(--fg);
    font-size: 2rem;
    cursor: pointer;
    transition: color var(--t-fast), transform var(--t-spring);
}

.lightbox-close:hover { color: var(--accent); transform: rotate(90deg); }

.lightbox-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    color: var(--fg);
    font-size: 1.5rem;
    width: 52px; height: 52px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all var(--t-fast);
    backdrop-filter: blur(8px);
}

.lightbox-arrow:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

.lightbox-arrow.prev { left: 1.5rem; }
.lightbox-arrow.next { right: 1.5rem; }

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    font-size: 0.8rem;
    color: var(--fg-muted);
    letter-spacing: 1px;
}

/* ============================================================
   14. BİZ KİMİZ SAYFASI
   ============================================================ */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    padding: calc(var(--nav-h) + var(--sp-xl)) 7% var(--sp-xl);
}

.about-media {
    position: relative;
}

.about-video {
    width: 100%;
    max-height: 80vh;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.about-design-accent {
    position: absolute;
    bottom: -8%;
    right: -8%;
    width: 55%;
    opacity: 0.45;
    pointer-events: none;
    mix-blend-mode: color-dodge;
    transform: rotate(-3deg);
}


.about-detail-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-stat {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    backdrop-filter: blur(8px);
    transition: border-color var(--t-fast);
}

.about-stat:hover { border-color: var(--accent-glow); }

.about-stat-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-stat-label {
    font-size: 0.82rem;
    color: var(--fg-muted);
    font-weight: 500;
}

/* Misyon/Vizyon */
.mv-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: var(--sp-xl);
}

.mv-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    backdrop-filter: blur(8px);
    transition: border-color var(--t-fast), transform var(--t-smooth);
}

.mv-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.mv-card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mv-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.mv-card-text {
    font-size: 0.92rem;
    color: var(--fg-muted);
    line-height: 1.75;
}

/* ============================================================
   15. İLETİŞİM SAYFASI
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    padding: calc(var(--nav-h) + var(--sp-xl)) 7% var(--sp-xl);
}


.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: border-color var(--t-fast);
}

.contact-info-item:hover { border-color: var(--accent-glow); }

.contact-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    margin-top: 2px;
}

.contact-info-text strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.contact-info-text span {
    font-size: 0.95rem;
    color: var(--fg-muted);
}

.contact-info-text a {
    color: var(--fg-muted);
    transition: color var(--t-fast);
}

.contact-info-text a:hover { color: var(--accent); }

/* Sosyal Medya */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: all var(--t-fast);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Harita */
.contact-map-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.contact-map-box iframe {
    width: 100%;
    height: 480px;
    border: none;
    display: block;
}

.contact-map-actions {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-card);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    flex-wrap: wrap;
}

/* Home İletişim Map */
.home-map-section {
    padding: 0 7% var(--sp-xl);
}

.home-map-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.home-map-box iframe {
    width: 100%;
    height: 700px; /* Görev 4: iframe yüksekliği artırıldı */
    border: none;
    display: block;
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    padding: var(--sp-lg) 7% var(--sp-md);
    background: rgba(6,13,20,0.9);
    backdrop-filter: blur(12px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: var(--sp-md);
}


.footer-logo {
    height: 140px;
    width: 140px;
    border-radius: 8px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand-name {
    font-family: var(--font-serif);
    /* Görev 5: Marka adı büyütüldü */
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.footer-brand-slogan {
    /* Görev 5: Slogan yazısı büyütüldü */
    font-size: 1.1rem;
    color: var(--fg-muted);
    margin-bottom: 1.25rem;
    max-width: 340px;
    line-height: 1.7;
}

.footer-col-title {
    /* Görev 5: Kolonbaşlığı büyütüldü */
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    /* Görev 5: Link yazıları büyütüldü */
    font-size: 1.1rem;
    color: var(--fg-muted);
    transition: color var(--t-fast);
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: var(--sp-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    /* Görev 5: Alt bar yazısı da büyütüldü */
    font-size: 1rem;
    color: rgba(232,228,220,0.35);
}

.footer-bottom a {
    color: rgba(232,228,220,0.35);
    transition: color var(--t-fast);
}

.footer-bottom a:hover { color: var(--accent); }

.footer-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--bg);
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all var(--t-fast);
    text-decoration: none;
}

.footer-reserve-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--accent-glow);
}

/* ============================================================
   17. X65 HATA BİLEŞENİ
   ============================================================ */
.x65-error {
    padding: 1.5rem 2rem;
    background: rgba(224,82,82,0.08);
    border-left: 3px solid var(--error);
    border-radius: var(--radius-sm);
    margin: 1.5rem;
}

.x65-error-title {
    color: var(--error);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.x65-error-msg {
    color: var(--fg-muted);
    font-size: 0.88rem;
}

.x65-success {
    padding: 1.5rem 2rem;
    background: rgba(76,175,125,0.08);
    border-left: 3px solid var(--success);
    border-radius: var(--radius-sm);
}

/* ============================================================
   18. LOADING SKELETON
   ============================================================ */
.skeleton {
    background: linear-gradient(90deg, var(--white-10) 25%, var(--white-5) 50%, var(--white-10) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ============================================================
   19. GOOGLE TRANSLATE GIZLEME
   ============================================================ */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon { display: none !important; }

.goog-te-gadget { font-size: 0 !important; }

body { top: 0 !important; }

/* ============================================================
   20. RESPONSIVE — TABLET
   ============================================================ */

/* ============================================================
   19.5 ATMOSFER SİNEMATİK VİDEO (AYM Standardı)
   ============================================================ */
.video-atmosphere-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-top: 0;
    box-shadow: inset 0 0 120px rgba(6, 13, 20, 0.95);
}

.video-atmosphere-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 1.2s var(--t-smooth);
}

.video-atmosphere-section.video-loaded video {
    opacity: 1;
}

/* Gradient Overlay - Sayfa Katman Derinliği Artırıldı */
.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6, 13, 20, 0.90) 0%,
        rgba(6, 13, 20, 0.55) 50%,
        rgba(6, 13, 20, 0.95) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* İçerik Kutusu */
.video-content-wrap {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-eyebrow {
    font-size: 1.05rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.25rem;
    animation: pulseCustom 3s infinite;
}

.video-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--fg);
    margin-bottom: 1.75rem;
}

.video-title span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.video-desc {
    font-size: 1.35rem;
    color: var(--fg-muted);
    line-height: 1.8;
    max-width: 780px;
    margin-bottom: 2.75rem;
}

.video-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Oynatma Kontrolleri (Mute/Unmute & Play/Pause) */
.video-controls-overlay {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.video-ctrl-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(6, 13, 20, 0.65);
    border: 1px solid var(--glass-border);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-ctrl-btn:hover {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
    transform: scale(1.1);
}

.video-ctrl-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* Özel Tooltip */
.video-ctrl-btn .ctrl-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background-color: var(--bg-2);
    color: var(--fg);
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    z-index: 9999;
}

.video-ctrl-btn:hover .ctrl-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* AYM Loading Skeleton */
.video-skeleton {
    position: absolute;
    inset: 0;
    background: var(--bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: opacity 0.8s ease;
}

.video-skeleton-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmerWave 1.8s infinite linear;
}

.video-skeleton-content {
    text-align: center;
    color: var(--accent);
    font-family: var(--font-serif);
    z-index: 6;
}

.video-skeleton-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
    animation: pulseCustom 2s infinite;
}

.video-skeleton p {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Fallback Background */
.video-fallback-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/arkaplan.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

@keyframes shimmerWave {
    0% { background-position: -150% 0; }
    100% { background-position: 150% 0; }
}

/* Video Bölümü Responsive Ayarları */
@media (max-width: 768px) {
    .video-atmosphere-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .video-title {
        font-size: 2.2rem;
    }
    
    .video-desc {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .video-controls-overlay {
        bottom: 1.5rem;
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 480px) {
    .video-atmosphere-section {
        height: 50vh;
        min-height: 350px;
    }
    .video-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { columns: 3; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-section { grid-template-columns: 1fr; padding-right: 7%; }
    /* Tablet'te portrait aspect-ratio yerine 16/9 */
    .hero-video-box { max-height: 60vw; aspect-ratio: 16/9; }
    .about-layout { gap: 3rem; }
    /* Tablet'te harita yüksekliği biraz düşürülsün */
    .home-map-box iframe { height: 500px; }
}

/* ============================================================
   21. RESPONSIVE — MOBİL
   ============================================================ */
@media (max-width: 768px) {
    :root { --nav-h: 64px; }

    .main-nav { display: none; }
    .hamburger { display: flex; }
    .sec-badge { display: none; }

    .hero-section {
        grid-template-columns: 1fr;
        padding: calc(var(--nav-h) + 2rem) 5% 4rem;
        text-align: center;
    }

    .hero-cta { justify-content: center; }

    .hero-video-box {
        aspect-ratio: 4/3;
        max-height: none;
    }

    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .gallery-grid { columns: 2; }
    .reviews-track .review-card { flex: 0 0 calc(100% - 0.5rem); }
    .about-layout { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 2rem) 5% 4rem; }
    .about-design-accent { display: none; }
    .about-detail-block { grid-template-columns: 1fr 1fr; }
    .mv-block { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; padding: calc(var(--nav-h) + 2rem) 5% 4rem; gap: 2rem; }
    .contact-info-item { padding: 1rem; margin-bottom: 1rem; }
    .contact-info-icon { font-size: 1.3rem; width: 35px; }
    .contact-info-text strong { font-size: 0.75rem; }
    .contact-info-text span { font-size: 0.9rem; }
    .contact-map-box iframe { height: 300px; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-wrap { padding: var(--sp-lg) 5%; }
}

@media (max-width: 480px) {
    .gallery-grid { columns: 1; }
    .about-detail-block { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .contact-layout { padding: calc(var(--nav-h) + 1.5rem) 4% 3rem; gap: 1.5rem; }
    .contact-info-item { padding: 0.875rem; margin-bottom: 0.875rem; }
    .contact-info-icon { font-size: 1.2rem; width: 32px; }
    .contact-info-text strong { font-size: 0.7rem; }
    .contact-info-text span { font-size: 0.85rem; }
    .contact-map-actions { padding: 1rem; gap: 0.75rem; }
    .contact-map-actions .btn { font-size: 0.75rem; padding: 0.6rem 1rem; }
    .contact-map-box iframe { height: 250px; }
    .footer-logo { height: 100px; width: 100px; }
}

@media (max-width: 414px) {
    .contact-layout { padding: calc(var(--nav-h) + 1rem) 3% 2.5rem; gap: 1rem; }
    .contact-info-item { padding: 0.75rem; margin-bottom: 0.75rem; flex-direction: column; align-items: flex-start; }
    .contact-info-icon { font-size: 1.1rem; width: 28px; margin-bottom: 0.5rem; }
    .contact-info-text strong { font-size: 0.65rem; margin-bottom: 0.25rem; }
    .contact-info-text span, .contact-info-text a { font-size: 0.8rem; line-height: 1.4; }
    .contact-map-actions { padding: 0.875rem; gap: 0.5rem; flex-direction: column; }
    .contact-map-actions .btn { font-size: 0.7rem; padding: 0.5rem 0.875rem; width: 100%; text-align: center; }
    .contact-map-box iframe { height: 220px; }
    
    /* Canvas mobil iyilestirmeleri */
    .canvas-block { height: 200vh; }
    .canvas-sticky-wrap { height: 100vh; }
    #scroll-canvas { 
        width: 100vw; 
        height: 100vh; 
        touch-action: pan-y; /* Mobilde canvas içinden sayfa scroll ile çıkış için */
    }
}
