:root {
    --bg-main: #fbfbfd;
    --bg-gray: #f5f5f7;
    --text-dark: #1d1d1f;
    --text-gray: #86868b;
    --apple-blue: #0071e3;
    --apple-gradient: linear-gradient(90deg, #0071e3 0%, #4facfe 100%);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* STACK ANIMASYONU İÇİN KRİTİK: OVERFLOW-X: CLIP */
html, body.apple-body { background-color: var(--bg-main); color: var(--text-dark); font-family: var(--font-sans); line-height: 1.5; letter-spacing: -0.015em; -webkit-font-smoothing: antialiased; width: 100%; overflow-x: clip; }
#smooth-wrapper, #smooth-content { overflow: visible !important; clip-path: none !important; }

/* Genel Link Ayarları */
a { text-decoration: none; cursor: pointer; }
.nav-link { cursor: pointer; }

/* YARDIMCI SINIFLAR */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.text-center { text-align: center; } .mx-auto { margin-left: auto; margin-right: auto; } .w-100 { width: 100%; }
.bg-gray { background-color: var(--bg-gray); } .bg-dark { background-color: var(--text-dark); } .bg-white { background-color: #fff; }
.bg-gradient-blue { background: var(--apple-gradient); }
.text-white { color: #fff !important; } .text-dark { color: var(--text-dark) !important; } .text-gray { color: var(--text-gray); }
.border-none { border: none !important; }
.mb-3 { margin-bottom: 1.5rem; } .mb-5 { margin-bottom: 4rem; }
.mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; } .mt-5 { margin-top: 3rem; } 
.pt-0 { padding-top: 0 !important; } .pt-5 { padding-top: 4rem; } .py-5 { padding: 4rem 0; }
.border-top { border-top: 1px solid rgba(0,0,0,0.1); } .border-bottom { border-bottom: 1px solid rgba(0,0,0,0.1); }
.d-flex { display: flex; } .justify-center { justify-content: center; } .gap-3 { gap: 1.5rem; }

/* TİPOGRAFİ */
.text-gradient { background: linear-gradient(90deg, #1d1d1f 0%, #86868b 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.apple-heading { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.1; }
.mac-desc { font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--text-gray); }
.mac-subtitle { font-size: 1.3rem; font-weight: 600; color: var(--text-gray); letter-spacing: 0.02em; }
.brand-dark { color: var(--text-dark); font-weight: 900; }
.brand-gradient { background: var(--apple-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800;}

/* HEADER KAPSÜL */
#apple-header { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 1000px; z-index: 1000; padding: 12px 25px; border-radius: 50px; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 10px 30px rgba(0,0,0,0.06); border: 1px solid rgba(255,255,255,0.4); transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
#apple-header.scrolled { width: 95%; max-width: 1100px; padding: 10px 20px; background: rgba(251, 251, 253, 0.95); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.apple-header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0 10px; }
.apple-brand { font-size: 1.6rem; text-decoration: none; letter-spacing: -0.03em; }
.apple-desktop-nav { display: flex; gap: 30px; }
.apple-desktop-nav a { font-size: 0.95rem; font-weight: 500; color: var(--text-dark); opacity: 0.8; transition: 0.3s; }
.apple-desktop-nav a:hover { opacity: 1; color: var(--apple-blue); }
.header-right { display: flex; align-items: center; gap: 20px; }
.apple-btn-small { background: var(--text-dark); color: #fff; padding: 12px 28px; border-radius: 980px; font-size: 0.95rem; font-weight: 600; transition: 0.3s; }
.apple-btn-small:hover { transform: scale(1.05); background: var(--apple-blue); box-shadow: 0 5px 15px rgba(0,113,227,0.3);}

/* MOBİL MENÜ */
.apple-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 6px; z-index: 1001; position: relative;}
.apple-hamburger .line { width: 24px; height: 2px; background: var(--text-dark); transition: 0.3s; }
.apple-mobile-nav { position: fixed; inset: 0; background: rgba(251, 251, 253, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.4s; }
.apple-mobile-nav.active { opacity: 1; pointer-events: all; }
.nav-inner { display: flex; flex-direction: column; text-align: center; gap: 30px; }
.nav-inner a { font-size: 2.5rem; font-weight: 700; color: var(--text-dark); text-decoration: none; }
@media (max-width: 768px) { #apple-header { top: 10px; width: 95%; padding: 10px 15px;} .apple-desktop-nav, .apple-btn-small { display: none; } .apple-hamburger { display: flex; } }

/* TAM EKRAN HERO */
.mac-hero-full { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; background-image: url('../img/hero.webp'); background-size: cover; background-position: center; background-attachment: fixed; overflow: hidden; }
.hero-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(251, 251, 253, 0.95), rgba(251, 251, 253, 0.85)); backdrop-filter: grayscale(100%) blur(2px); z-index: 1; }
.hero-content-wrap { position: relative; z-index: 2; text-align: center; }
.mac-title { font-size: clamp(4rem, 10vw, 8.5rem); font-weight: 800; line-height: 0.95; letter-spacing: -0.05em; margin-bottom: 2rem; }
.mac-actions { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.mac-btn-primary { display: inline-flex; align-items: center; justify-content: center; background: var(--text-dark); color: #fff; padding: 20px 40px; border-radius: 980px; font-size: 1.1rem; font-weight: 500; transition: 0.3s; border: none;}
.mac-btn-primary:hover { transform: scale(1.03); box-shadow: 0 10px 20px rgba(0,0,0,0.1); background: var(--apple-blue); color: #fff !important;}
.mac-btn-secondary { display: inline-flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.05); color: var(--text-dark); padding: 20px 40px; border-radius: 980px; font-size: 1.1rem; font-weight: 500; border: 1px solid rgba(0,0,0,0.1); transition: 0.3s; }
.mac-btn-secondary:hover { background: rgba(0,0,0,0.1); }

/* MARQUEE */
.apple-text-marquee { padding: 20px 0; overflow: hidden; width: 100%; white-space: nowrap; background: rgba(245, 245, 247, 0.6); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.text-marquee-track { display: inline-block; animation: textMarquee 40s linear infinite; }
.tm-item { font-size: 1.2rem; font-weight: 600; text-transform: uppercase; margin: 0 30px; letter-spacing: 0.05em; color: var(--text-dark); }
.tm-item i { color: var(--apple-blue); margin-right: 8px; }
@keyframes textMarquee { to { transform: translateX(-50%); } }

/* BENTO GRID & DAYI CAM EFEKTİ */
.apple-section { padding: 120px 0; }
.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento-box { border-radius: 30px; overflow: hidden; position: relative; padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.04); }
.bento-large { grid-column: span 2; grid-row: span 2; background: #111; color: #fff; display: flex; flex-direction: column; justify-content: space-between; min-height: 400px; }

.bento-bg-img { 
    position: absolute; 
    top: 0; 
    right: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: grayscale(100%); 
    z-index: 1;
}

.dayi-blur-overlay { 
    position: absolute; 
    top: 0; 
    right: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.5); /* %50 Opacity ile Tam Boy Siyah Arka Plan */
    backdrop-filter: blur(6px); 
    -webkit-backdrop-filter: blur(5px); 
    z-index: 2; 
}

.bento-content { position: relative; z-index: 3; }
.bento-medium { grid-column: span 1; grid-row: span 1; display: flex; flex-direction: column; justify-content: center; align-items: center;}
.bento-wide { grid-column: span 4; grid-row: span 1; display: flex; align-items: center; justify-content: center; }

/* GENEL METİN AYARLARI */
.bento-title { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; position: relative; z-index: 2; letter-spacing: -0.02em; line-height: 1.1; }
.bento-text { font-size: 1.1rem; opacity: 0.8; position: relative; z-index: 2; line-height: 1.6;}
.bento-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.bento-stat { font-size: 4rem; font-weight: 800; display: inline-block; line-height: 1; letter-spacing: -0.05em; margin-bottom: 0.5rem;}
.stat-suffix { font-size: 2rem; font-weight: 700; color: var(--apple-blue); }

/* BÜYÜK KUTU (CAM EFEKTLİ) İÇİN ÖZEL METİN İYİLEŞTİRMELERİ */
.bento-large .bento-content { max-width: 95%; }
.bento-large .bento-title { font-size: 2.4rem; margin-bottom: 1.2rem; text-shadow: 0 4px 15px rgba(0,0,0,0.3); }
.bento-large .bento-text { font-size: 1.2rem; opacity: 0.95; line-height: 1.65; text-shadow: 0 2px 10px rgba(0,0,0,0.3); font-weight: 400; }

@media (max-width: 992px) { .bento-grid { grid-template-columns: 1fr 1fr; } .bento-wide { grid-column: span 2; } }
@media (max-width: 576px) { .bento-grid { grid-template-columns: 1fr; } .bento-large, .bento-medium, .bento-wide { grid-column: span 1; } }

/* TEKNOLOJİ ALTYAPISI */
.skills-grid-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.skill-card-sq { background: var(--bg-gray); border-radius: 24px; padding: 30px 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: 0.3s; border: 1px solid rgba(0,0,0,0.02);}
.skill-card-sq:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
.skill-icon { font-size: 3rem; margin-bottom: 15px; color: var(--text-dark); transition: color 0.3s;}
.skill-card-sq:hover .skill-icon { color: var(--apple-blue); }
.skill-card-sq h4 { font-size: 1.1rem; font-weight: 600; color: var(--text-dark); }

/* =========================================
   9. PROJELER (PC: KUSURSUZ STACK | MOBİL: SWIPER)
========================================= */
.stack-container-section { padding-bottom: 150px; }
.portfolio-grid-compact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.p-card-compact { 
    display: block; 
    text-decoration: none; 
    position: relative; 
    border-radius: 20px; 
    overflow: hidden; 
    background: var(--bg-main); /* Şeffaf PNG'ler için temiz arka plan */
    aspect-ratio: 1/1; 
    cursor: pointer; 
    will-change: transform;
    border: 1px solid rgba(0,0,0,0.05);
}
.p-img-wrapper { width: 100%; height: 100%; overflow: hidden; }
.p-img-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 1; /* Görselleri çamurlaştıran opacity kaldırıldı */
    transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
}
.p-card-compact:hover img { transform: scale(1.15); }

/* Okunabilirliği artıran koyu cam efekti */
.p-details { 
    position: absolute; 
    bottom: 20px; 
    left: 20px; 
    right: 20px; 
    background: rgba(0,0,0,0.2); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(10px);
    padding: 5px 20px; 
    border-radius: 15px; 
    color: #fff; 
    border: 1px solid rgba(255,255,255,0.1); 
    pointer-events: none;
}
.p-details span { font-size: 0.8rem; color: #ccc; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; display: block; margin-bottom: 4px; }
.p-details h3 { font-size: 1.2rem; font-weight: 700; margin: 0; color: #fff; }

@media (min-width: 769px) { 
    /* Yamuk binmeyi engelleyen kusursuz örtüşme ayarı */
    .sticky-stack-item-proj { position: sticky; top: 130px; box-shadow: 0 -10px 30px rgba(0,0,0,0.08); transition: transform 0.3s;} 
}

@media (max-width: 768px) { 
    .stack-container-section { padding-bottom: 50px; }
    .projects-mobile-swiper { overflow: hidden; width: 100%; padding-bottom: 20px; }
    .portfolio-grid-compact { display: flex; gap: 0; }
    .p-card-compact { position: relative !important; top: auto !important; width: 100%; } 
}

/* BLOG VE YORUMLAR (Eşit Kutular ve Swiper Fix) */
.blog-swiper, .testimonial-swiper { overflow: visible !important; }
.blog-swiper .swiper-slide { height: auto; display: flex; align-items: stretch; }
.blog-card { width: 100%; display: flex; flex-direction: column; text-decoration: none; background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.03); transition: 0.4s; border: 1px solid rgba(0,0,0,0.04); height: 100%;}
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.b-img { width: 100%; aspect-ratio: 16/9; overflow: hidden; flex-shrink: 0; }
.b-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .b-img img { transform: scale(1.05); }
.b-content { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.b-cat { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 10px; }
.b-title { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 15px; line-height: 1.4; flex-grow: 1; }
.b-date { font-size: 0.9rem; color: var(--text-gray); }

.testimonial-swiper .swiper-slide { height: auto; display: flex; align-items: stretch; justify-content: center; }
.t-card-square { width: 100%; max-width: 450px; aspect-ratio: 1/1; padding: 40px; border-radius: 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; margin: 0 auto;}
.t-icon { font-size: 2.5rem; color: var(--text-dark); opacity: 0.1; margin-bottom: 15px; }
.t-text { font-size: 1.15rem; font-style: italic; color: var(--text-dark); margin-bottom: 20px; line-height: 1.6;}

/* MARKALAR */
.py-huge { padding: 150px 0; }
.apple-brands-section { width: 100%; overflow: hidden; position: relative; }
.marquee-super-wrapper { display: flex; flex-direction: column; gap: 50px; width: 100%; overflow: hidden; position: relative; }
.marquee-super-wrapper::before, .marquee-super-wrapper::after { content: ''; position: absolute; top: 0; width: 15%; height: 100%; z-index: 2; pointer-events: none;}
.marquee-super-wrapper::before { left: 0; background: linear-gradient(to right, var(--bg-gray), transparent); }
.marquee-super-wrapper::after { right: 0; background: linear-gradient(to left, var(--bg-gray), transparent); }
.marquee-inner { display: inline-block; width: max-content; }
.track-left .marquee-inner { animation: slideLeft 40s linear infinite; }
.track-right .marquee-inner { animation: slideRight 40s linear infinite; }
.brand-box { display: inline-block; margin: 0 50px; }
.brand-box img { height: 45px; object-fit: contain; filter: grayscale(100%) brightness(0) opacity(0.3); transition: 0.4s; }
.brand-box img:hover { filter: none; transform: scale(1.1); }
@keyframes slideLeft { to { transform: translateX(-50%); } }
@keyframes slideRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* =========================================
   SSS (FAQ) STACK DÜZELTMESİ
========================================= */
.grid-stack-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.faq-left { position: sticky; top: 150px; height: auto; }
.apple-faq-list { position: relative; display: block; padding-bottom: 30vh; }
.apple-faq-item { margin-bottom: 20px; will-change: transform; border-radius: 20px; border: 1px solid rgba(0,0,0,0.05); }
.apple-faq-btn { width: 100%; text-align: left; background: transparent; border: none; padding: 25px 30px; font-size: 1.2rem; font-weight: 600; color: var(--text-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.apple-faq-btn .icon { font-size: 1rem; color: var(--text-gray); transition: 0.3s; }
.apple-faq-item.active .apple-faq-btn .icon { transform: rotate(45deg); color: var(--text-dark); }
.apple-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 30px; }
.apple-faq-answer p { padding-bottom: 25px; color: var(--text-gray); line-height: 1.6; }

/* Sadece PC'de Stack Edilsin */
@media (min-width: 769px) {
    .sticky-stack-faq { position: sticky; top: calc(120px + var(--i) * 20px); box-shadow: 0 -10px 30px rgba(0,0,0,0.05); transition: transform 0.3s cubic-bezier(0.1, 0, 0.3, 1); }
}

/* Mobilde Stack (Yapışkanlık) Tamamen İptal (Yazıları Eziyordu) */
@media (max-width: 768px) { 
    .grid-stack-layout { grid-template-columns: 1fr; }
    .faq-left { position: relative !important; top: auto !important; margin-bottom: 30px; }
    .apple-faq-list { padding-bottom: 0 !important; }
    .sticky-stack-faq { 
        position: relative !important; 
        top: auto !important; 
        margin-bottom: 15px; 
        box-shadow: 0 5px 15px rgba(0,0,0,0.03); 
        transform: none !important;
    }
}

/* =========================================
   FAB MENÜ YÖN DÜZELTMESİ (YUKARI AÇILIR)
========================================= */
.apple-fab-container { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 15px; }
.fab-trigger { width: 60px; height: 60px; border-radius: 50%; background: var(--text-dark); color: #fff; font-size: 22px; border: none; cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,0.2); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); order: 2; }
.apple-fab-container.active .fab-trigger { transform: rotate(135deg); background: var(--apple-blue); }

.fab-menu { display: flex; flex-direction: column; gap: 12px; opacity: 0; pointer-events: none; transform: translateY(20px) scale(0.8); transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); transform-origin: bottom center; order: 1;}
.apple-fab-container.active .fab-menu { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.fab-item { width: 50px; height: 50px; border-radius: 50%; background: #fff; border: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 22px; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.fab-item.wa-item { color: #25D366; } .fab-item.wa-item:hover { background: #25D366; color: #fff; }
.fab-item.mail-item { color: var(--text-dark); } .fab-item.mail-item:hover { background: var(--text-dark); color: #fff; }
@media (max-width: 768px) { .apple-fab-container { right: 20px; bottom: 20px; } }

/* =========================================
   14. FORM, HARİTA (YENİ) & FOOTER
========================================= */
/* Harita ve Form Grid Yapısı */
.contact-grid-wrapper { display: grid; grid-template-columns: 1fr 1fr; border-radius: 30px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.04); border: 1px solid rgba(0,0,0,0.05); }
.c-left { padding: 60px 50px; display: flex; flex-direction: column; justify-content: center;}
.c-right { position: relative; min-height: 450px; background: var(--bg-gray); }

/* Harita Filtresi (Grayscale & Contrast) */
.grayscale-map { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; filter: grayscale(100%) contrast(1.1) opacity(0.8); transition: filter 0.5s ease; }
.grayscale-map:hover { filter: grayscale(30%) contrast(1.1) opacity(1); }

/* Form Girdileri */
.mac-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.mac-form input, .mac-form textarea { width: 100%; background: var(--bg-gray); border: 1px solid rgba(0,0,0,0.05); padding: 20px 25px; border-radius: 20px; font-size: 1.1rem; font-family: var(--font-sans); outline: none; transition: 0.3s; }
.mac-form input:focus, .mac-form textarea:focus { border-color: var(--text-dark); box-shadow: 0 0 0 4px rgba(0,0,0,0.05); background: #fff;}

/* Mobil Uyumluluk (İletişim Harita) */
@media (max-width: 992px) { 
    .contact-grid-wrapper { grid-template-columns: 1fr; } 
    .c-left { padding: 40px 30px; } 
    .c-right { min-height: 350px; } 
}
@media (max-width: 576px) { .mac-form .form-row { grid-template-columns: 1fr; } .c-left { padding: 40px 20px; } }

/* Yeni 4 Sütunlu Dolu Dolu Footer */
.apple-footer { background: var(--bg-main); padding: 60px 0 40px; font-size: 0.95rem; color: var(--text-gray); border-top: 1px solid rgba(0,0,0,0.1);}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { font-size: 2rem; margin-bottom: 10px; letter-spacing: -0.03em;}

/* Footer Linkleri ve Başlıklar */
.f-links h4, .f-contact-col h4 { margin-bottom: 20px; color: var(--text-dark); font-weight: 700; font-size: 1.1rem;}
.f-links a { color: var(--text-gray); display: block; margin-bottom: 12px; transition: 0.3s;}
.f-links a:hover { color: var(--apple-blue); }

/* Footer İletişim & Sosyal Medya */
.f-contact-col a { display: flex; align-items: center; gap: 10px; color: var(--text-gray); margin-bottom: 15px; transition: 0.3s;}
.f-contact-col a i { font-size: 1.2rem; color: var(--text-dark); }
.f-contact-col a:hover { color: var(--apple-blue); }
.f-contact-col a:hover i { color: var(--apple-blue); }

.f-social-inline { display: flex; gap: 15px; }
.f-social-inline a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid rgba(0,0,0,0.05); transition: 0.3s; margin-bottom: 0;}
.f-social-inline a i { font-size: 1.1rem; margin: 0; color: var(--text-dark);}
.f-social-inline a:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); border-color: var(--apple-blue); }
.f-social-inline a:hover i { color: var(--apple-blue); }

.footer-bottom { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 30px; display: flex; justify-content: space-between; }
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; gap: 10px; text-align: center; } }

/* =========================================
   15. BLOG DETAY SAYFASI ÖZEL STİLLERİ
========================================= */
.blog-container { max-width: 850px; margin: 0 auto; }
.blog-hero-img { border-radius: 30px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.blog-hero-img img { width: 100%; display: block; object-fit: cover; aspect-ratio: 16/9; }
.blog-content-body { font-size: 1.15rem; line-height: 1.8; color: var(--text-dark); }
.blog-content-body h2, .blog-content-body h3 { font-size: 1.8rem; font-weight: 700; margin: 3rem 0 1.5rem; letter-spacing: -0.02em; color: var(--text-dark); }
.blog-content-body p { margin-bottom: 1.5rem; color: #444; font-weight: 400; }
.blog-content-body ul { margin-bottom: 2rem; padding-left: 1.5rem; }
.blog-content-body li { margin-bottom: 0.8rem; color: #444; }
.blog-content-body strong { color: var(--text-dark); font-weight: 700; }
/* =========================================
   BLOG DETAY SAYFASI ÖZEL STİLLERİ
========================================= */
.blog-container { max-width: 850px; margin: 0 auto; }
.blog-hero-img { border-radius: 30px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.blog-hero-img img { width: 100%; display: block; object-fit: cover; aspect-ratio: 16/9; }
.blog-content-body { font-size: 1.15rem; line-height: 1.8; color: var(--text-dark); }
.blog-content-body h2, .blog-content-body h3 { font-size: 1.8rem; font-weight: 700; margin: 3rem 0 1.5rem; letter-spacing: -0.02em; color: var(--text-dark); }
.blog-content-body p { margin-bottom: 1.5rem; color: #444; font-weight: 400; }
.blog-content-body ul { margin-bottom: 2rem; padding-left: 1.5rem; }
.blog-content-body li { margin-bottom: 0.8rem; color: #444; }
.blog-content-body strong { color: var(--text-dark); font-weight: 700; }


/* =========================================
   16. PRELOADER (SİLÜET VE YAVAŞ DOLUM EFEKTİ)
========================================= */
#apple-preloader { 
    position: fixed; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    background: var(--bg-main); 
    z-index: 999999; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s; 
}
.preloader-content { 
    position: relative;
    font-size: clamp(2rem, 5vw, 3rem); 
    font-weight: 800; 
    letter-spacing: -0.03em; 
    display: inline-block;
}

/* Alttaki Soluk Katman (Silüet) */
.logo-silhouette { 
    opacity: 0.15; /* Sadece hafif bir iz gibi görünür */
    white-space: nowrap;
}

/* Üstteki Renkli Katman (Maske ile Açılacak) */
.logo-fill { 
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%; /* Başlangıçta sıfır, JS ile %100 olacak */
    overflow: hidden; /* Dışarı taşan kısmı gizler, dolum hissi verir */
    white-space: nowrap;
}

/* Dolum bittikten sonra hafif nabız atması için */
@keyframes pulsePreloader { 
    0% { transform: scale(0.98); } 
    100% { transform: scale(1.02); } 
}

/* Yükleme bittiğinde gizle */
body.loaded #apple-preloader { 
    opacity: 0; 
    visibility: hidden; 
}


/* =========================================
   17. ÇEREZ ONAYI (COOKIE BANNER)
========================================= */
.apple-cookie-banner {
    position: fixed;
    bottom: -150px; /* Animasyonla gelmesi için aşağıda saklıyoruz */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 650px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-radius: 24px;
    padding: 20px 25px;
    z-index: 99998; /* FAB menünün altında kalmaması için yüksek değer */
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.apple-cookie-banner.show {
    bottom: 30px;
    opacity: 1;
    visibility: visible;
}
.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cookie-text strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: -0.02em;
}
.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}
.cookie-actions {
    display: flex;
    justify-content: flex-end;
}
.cookie-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 980px;
    cursor: pointer;
    white-space: nowrap;
}

/* Masaüstünde yan yana şık dizilim */
@media (min-width: 576px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .cookie-text p {
        max-width: 400px;
    }
}
@media (max-width: 768px) {
    .apple-cookie-banner.show {
        bottom: 20px;
    }
}

/* =========================================
   18. KAMPANYA POPUP (OTURUM BAZLI)
========================================= */
.apple-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.apple-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}
.apple-popup-content {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    width: 90%;
    max-width: 420px;
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.5);
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.apple-popup-overlay.show .apple-popup-content {
    transform: scale(1) translateY(0);
}
.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.05);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: 0.3s;
}
.popup-close:hover {
    background: rgba(0,0,0,0.1);
    transform: rotate(90deg);
}
.popup-badge {
    display: inline-block;
    background: var(--text-dark);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.popup-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.price-old {
    font-size: 1.3rem;
    color: var(--text-gray);
    text-decoration: line-through;
    font-weight: 600;
}
.price-new {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}
.popup-note p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.4;
    margin-bottom: 15px;
}
.promo-code-box {
    background: rgba(0, 113, 227, 0.08);
    color: var(--apple-blue);
    border: 2px dashed var(--apple-blue);
    padding: 12px;
    border-radius: 12px;
    font-size: 1.2rem;
}
.popup-wa-btn {
    background: #25D366 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}
.popup-wa-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}