/* ==========================================================================
   FÄ°NAL STÄ°L DOSYASI - DÃœZELTÄ°LMÄ°Åž KAYDIRMA
   ========================================================================== */

/* ===== 1. GENEL AYARLAR VE RENKLER ===== */
:root {
    --dark-bg: #121212;
    --primary-green: #39FF14;
    --text-color: #E0E0E0;
    --text-muted: #A0A0A0;
}

html, body {
    margin: 0;
    padding: 0;
    position: relative; /* Overlay referansÄ± iÃ§in */
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#fullpage-container {
    padding-top: 0; /* Sayfa iÃ§eriÄŸini aÅŸaÄŸÄ± itmek iÃ§in */
}


/* ===== 2. KAYDIRMA YAPISI ===== */
/* Tam ekran kaydÄ±rma bu konteyner iÃ§inde gerÃ§ekleÅŸir */
.snap-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

/* Her bir tam ekran bÃ¶lÃ¼m */
.fullpage-panel {
    height: 100vh;
    width: 100%;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}


/* ===== 3. HERO BÃ–LÃœMÃœ (Panel 1) ===== */
.hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 150px; /* Ä°Ã§eriÄŸi aÅŸaÄŸÄ± itmek iÃ§in Ã¼st boÅŸluk */
    justify-content: flex-start; /* Dikey ortalamayÄ± iptal et, padding ile hizala */
}
.hero-content {
    max-width: 800px;
    margin-bottom: 40px;
    margin-top: 0px; /* YazÄ±yÄ± aÅŸaÄŸÄ± itmek iÃ§in */
}
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
}
.hero-title .highlight {
    color: var(--primary-green);
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: var(--text-muted);
    line-height: 1.6;
}
.cta-button {
    background-color: var(--primary-green);
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
}
.cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(57, 255, 20, 0.2);
}
.social-proof-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
}
/* style.css'deki .logo-wall ve altÄ±ndaki tÃ¼m kurallarÄ± silip bunlarÄ± yapÄ±ÅŸtÄ±r */

.logo-wall {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Kutular arasÄ± boÅŸluk */
    /* flex-wrap: wrap; komutunu kaldÄ±rarak alt satÄ±ra inmelerini engelliyoruz */
}

.logo-box {
    display: block; /* Ä°Ã§indeki resmin tam oturmasÄ± iÃ§in */
    border: 1px solid #282828;
    border-radius: 12px;
    overflow: hidden; /* DÄ±ÅŸarÄ± taÅŸan kÄ±sÄ±mlarÄ± gizle */
    
    /* KUTU BOYUTLARI */
    width: 240px; /* GeniÅŸlik - 320px'den dÃ¼ÅŸÃ¼rÃ¼ldÃ¼ */
    height: 240px; /* YÃ¼kseklik - 320px'den dÃ¼ÅŸÃ¼rÃ¼ldÃ¼ */
    
    transition: all 0.3s ease;
}

.logo-box:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.logo-box img {
    width: 100%; /* Resmin geniÅŸliÄŸini kutuya eÅŸitle */
    height: 100%; /* Resmin yÃ¼ksekliÄŸini kutuya eÅŸitle */
    object-fit: cover; /* Resmi, oranÄ±nÄ± bozmadan kutuyu kaplayacak ÅŸekilde kÄ±rp */
    
    /* NORMAL HALÄ°: Sadece blur */
    filter: blur(4px);
    opacity: 0.8;
    
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.logo-box:hover img {
    /* HOVER HALÄ°: Net ve canlÄ± */
    filter: blur(0);
    opacity: 1;
}

/* ===== 4. "LÄ°DER OLUN" BÃ–LÃœMÃœ (Panel 2) ===== */
.prompt-section {
    justify-content: center;
    align-items: flex-start;
    padding-top: 15vh;
}
.prompt-section .container {
    max-width: 1100px;
    width: 100%;
    text-align: left;
}
.prompt-title {
    font-family: 'Georgia', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 8vh;
    color: #FFFFFF;
}
.prompt-layout {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 2rem;
    margin-bottom: 8vh;
}
.prompt-label-wrapper {
    padding-top: 0.2rem;
}
.prompt-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}
.prompt-main-content {
    max-width: 800px;
}
.questions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem 5rem;
    margin-bottom: 3rem;
}
.question-item {
    position: relative;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.question-item:nth-child(2n) {
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.question-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 320px;
}
.prompt-conclusion {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
}
.prompt-cta-link {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    font-family: 'Georgia', serif;
    font-size: 2.25rem;
    color: var(--text-color);
    text-decoration: none;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--text-muted);
    transition: color 0.3s ease, border-color 0.3s ease;
}
.prompt-cta-link:hover {
    color: var(--primary-green);
    border-color: var(--primary-green);
}


/* ===== 5. PROJE PANELLERÄ° ===== */
.work-panel {
    background-color: var(--panel-bg);
    color: #000;
}
.panel-content {
    width: 90%;
    max-width: 1200px;
    height: 100%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    align-items: center;
    gap: 20px;
}
.project-code {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    align-self: end;
    font-weight: 700;
    opacity: 0.8;
}
.project-title {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 800;
    line-height: 1;
    margin: 0;
}
.project-description {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    justify-self: end;
    text-align: right;
    max-width: 350px;
    font-size: 1.1rem;
    opacity: 0.9;
}
.project-visual {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-visual img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}
.panel-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.view-button {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    z-index: 10;
    pointer-events: none;
}
.view-button span {
    background: #fff;
    padding: 10px 15px;
    font-weight: 700;
}
.view-button .icon {
    background: #000;
    color: #fff;
    padding: 10px 12px;
}


/* style.css'deki mevcut "SÃœREÃ‡ BÃ–LÃœMÃœ" bloÄŸunu bununla deÄŸiÅŸtir */

/* ===== 6. SÃœREÃ‡ BÃ–LÃœMÃœ (Normal AkÄ±ÅŸ) ===== */
.process-section {
    padding: 120px 20px;
    background-color: var(--dark-bg);
}
.process-section .container {
    max-width: 1400px; /* GeniÅŸliÄŸi artÄ±rdÄ±m */
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin: 0 auto 80px auto;
    max-width: 800px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1.5rem 0;
}
.section-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* --- YENÄ° VE DOÄžRU GRID AYARLARI --- */
.process-grid {
    /* Bootstrap grid kullanÄ±ldÄ±ÄŸÄ± iÃ§in buradaki grid Ã¶zellikleri devre dÄ±ÅŸÄ± kalabilir ama yedek olarak kalsÄ±n */
    display: grid;
    grid-template-columns: repeat(5, 1fr); 
    gap: 2rem; 
    justify-content: center;
}
.process-step {
    text-align: left; 
    padding: 0 10px; /* Kenarlardan hafif boÅŸluk */
}
.process-step img {
    height: 200px; /* GÃ¶rsel boyutunu kÃ¼Ã§Ã¼lttÃ¼m */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 1.5rem;
}
.process-step h3 {
    font-size: 1.25rem; /* BaÅŸlÄ±k fontunu kÃ¼Ã§Ã¼lttÃ¼m */
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: #FFFFFF;
}
.process-step .step-number {
    color: var(--primary-green);
    margin-right: 0.5rem;
}
.process-step p {
    font-size: 1rem; /* AÃ§Ä±klama fontunu okunabilir boyuta getirdim (1.4rem Ã§ok bÃ¼yÃ¼ktÃ¼) */
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}
.process-divider {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 80px auto 0 auto;
    width: 100%;
}


/* ===== 7. ANÄ°MASYONLAR ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-visible .reveal {
    opacity: 1;
    transform: translateY(0);
}
.is-visible .reveal { transition-delay: 0.2s; }
.is-visible .reveal:nth-child(2) { transition-delay: 0.4s; }
.is-visible .reveal:nth-child(3) { transition-delay: 0.6s; }
.is-visible .reveal:nth-child(4) { transition-delay: 0.8s; }
.is-visible .reveal:nth-child(5) { transition-delay: 1.0s; }
.is-visible .project-title.reveal, .is-visible .project-visual.reveal {
    transition-delay: 0.2s;
}
.is-visible .project-description.reveal {
    transition-delay: 0.4s;
}
.social-proof.reveal {
    transition: opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-visible .social-proof.reveal {
    transition-delay: 0.8s;
}

/* ===== 8. MOBÄ°L UYUMLULUK ===== */
@media (max-width: 768px) {
    .snap-container {
        scroll-snap-type: y proximity;
    }
    .questions-grid {
        grid-template-columns: 1fr;
    }
    .prompt-layout {
        grid-template-columns: 1fr; /* Etiketi Ã¼ste al */
    }
    .prompt-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .prompt-cta-link {
        font-size: 1.5rem;
    }
    .panel-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
        text-align: left;
    }
    
    .project-code, .project-title, .project-description, .project-visual {
        grid-column: 1 / 2;
        text-align: left;
        justify-self: start;
    }
    /* @media bloÄŸunun iÃ§ine bunlarÄ± ekle */

.collaboration-grid {
    grid-template-columns: 1fr; /* KartlarÄ± alt alta diz */
    gap: 3rem; /* AralarÄ±ndaki dikey boÅŸluÄŸu artÄ±r */
}
    .project-title { grid-row: 2; }
    .project-visual { grid-row: 3; align-items: center; }
    .project-description { grid-row: 4; max-width: 100%; margin-bottom: 20px; }
    .view-button {
        top: 20px;
        left: 20px;
    }
    .section-header {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 60px;
    }
    .section-header p {
        margin: 0 auto;
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .process-step {
        text-align: center;
    }
}
/* style.css dosyasÄ±nÄ±n sonuna, @media'dan Ã¶nce yapÄ±ÅŸtÄ±r */

/* ===== 9. KAYAN YAZI (MARQUEE) BÃ–LÃœMÃœ ===== */
.ticker-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
    overflow: hidden; /* DÄ±ÅŸarÄ± taÅŸan yazÄ±larÄ± gizle */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ticker-wrap {
    width: 100%;
    display: flex;
    align-items: center;
}

.ticker-wrap:not(:last-child) {
    margin-bottom: 2rem; /* Ä°ki bant arasÄ±na boÅŸluk */
}

.ticker-move {
    display: flex;
    align-items: center;
    white-space: nowrap; /* YazÄ±larÄ±n alt satÄ±ra inmesini engelle */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 60s; /* HIZI buradan ayarla (sayÄ± kÃ¼Ã§Ã¼ldÃ¼kÃ§e hÄ±zlanÄ±r) */
}

/* Animasyonun tanÄ±mÄ± */
@keyframes scroll-left {
    from { transform: translateX(0%); }
    to   { transform: translateX(-50%); } /* Ä°Ã§eriÄŸin yarÄ±sÄ± kadar kaydÄ±r */
}
@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0%); }
}

/* Animasyonun uygulanmasÄ± */
.ticker-wrap:not(.reverse) .ticker-move {
    animation-name: scroll-left;
}
.ticker-wrap.reverse .ticker-move {
    animation-name: scroll-right;
}

/* YazÄ±larÄ±n kendisi (Outline Efekti) */
.ticker-item {
    font-family: 'Georgia', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 1.5rem;
    color: transparent; /* YazÄ±nÄ±n iÃ§ini ÅŸeffaf yap */
    -webkit-text-stroke: 1px var(--text-color); /* Kontur rengi ve kalÄ±nlÄ±ÄŸÄ± */
    text-stroke: 1px var(--text-color); /* Standart Ã¶zellik */
    transition: color 0.4s ease, -webkit-text-stroke-color 0.4s ease;
}

.ticker-wrap:hover .ticker-move {
    animation-play-state: paused; /* Ãœzerine gelince animasyonu durdur */
}

.ticker-item:hover {
    color: var(--primary-green); /* Ãœzerine gelince iÃ§ini yeÅŸil yap */
    -webkit-text-stroke-color: var(--primary-green);
    text-stroke-color: var(--primary-green);
}

/* Outline efektini desteklemeyen tarayÄ±cÄ±lar iÃ§in fallback */
@supports not (-webkit-text-stroke: 1px white) {
  .ticker-item {
    color: var(--text-color); /* Normal yazÄ± rengi gÃ¶ster */
  }
  .ticker-item:hover {
    color: var(--primary-green);
  }
}
/* style.css dosyasÄ±nÄ±n sonuna, @media'dan Ã¶nce yapÄ±ÅŸtÄ±r */

/* ===== 10. Ä°ÅžBÄ°RLÄ°KLERÄ° BÃ–LÃœMÃœ ===== */
.collaborations-section {
    padding: 120px 20px;
    background-color: var(--dark-bg);
}

.collaborations-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 80px 0;
    color: #FFFFFF;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
}

.collaboration-card {
    background-color: transparent;
    padding: 0;
    transition: transform 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Sol taraf yazÄ±, saÄŸ taraf gÃ¶rsel */
    gap: 4rem;
    align-items: center;
}

.collaboration-card:hover {
    transform: translateY(-5px);
}

.collaboration-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.collaboration-header {
    margin-bottom: 2.5rem;
}

.collaboration-header h3 {
    font-size: 3rem; /* BaÅŸlÄ±k bÃ¼yÃ¼tÃ¼ldÃ¼ */
    font-weight: 800;
    margin: 0 0 1rem 0;
    color: #FFFFFF;
    line-height: 1.1;
}

.collaboration-header p {
    color: #A0A0A0;
    font-size: 1.25rem; /* AÃ§Ä±klama bÃ¼yÃ¼tÃ¼ldÃ¼ */
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

.collaboration-visuals {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: visible;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    /* aspect-ratio ve object-fit kaldÄ±rÄ±ldÄ±, bÃ¶ylece resim kÄ±rpÄ±lmaz */
    box-shadow: 0 20px 40px rgba(0,0,0,0.5); /* GÃ¶rsele gÃ¶lge eklendi */
}

.overlay-logo {
    position: absolute;
    bottom: -40px; /* Biraz daha dÄ±ÅŸarÄ± taÅŸÄ±rÄ±ldÄ± */
    right: -40px;
    width: 140px; /* Logo bÃ¼yÃ¼tÃ¼ldÃ¼ */
    height: 140px;
    border-radius: 50%;
    border: 8px solid #121212;
    background-color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    z-index: 2;
}

.collaboration-footer {
    margin-top: 1rem;
}

.collaboration-button {
    display: inline-block;
    text-decoration: none;
    padding: 16px 32px; /* Buton bÃ¼yÃ¼tÃ¼ldÃ¼ */
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}



.collaboration-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.collaboration-button {
    display: inline-block;
    text-decoration: none;
    padding: 12px 24px;
    font-weight: 700;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.collaboration-button:hover {
    background-color: var(--primary-green);
    color: #000;
}

/* ANIMASYON GECÄ°KMELERÄ° */
.collaborations-section .section-title.reveal { transition-delay: 0.1s; }
.collaborations-section .collaboration-card:nth-child(1).reveal { transition-delay: 0.2s; }
.collaborations-section .collaboration-card:nth-child(2).reveal { transition-delay: 0.3s; }
/* BURADAN KOPYALA */

/* ==========================================================================
   PORTFOLYO VÄ°TRÄ°NÄ° BÃ–LÃœMÃœ
   ========================================================================== */
.showcase-section {
    padding: 120px 20px;
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.showcase-section .container {
    max-width: 1400px;
    margin: 0 auto;
}
.showcase-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 5rem;
}
.showcase-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    position: sticky;
    top: 120px;
    align-self: start; /* YapÄ±ÅŸkan Ã¶zelliÄŸin doÄŸru Ã§alÄ±ÅŸmasÄ± iÃ§in */
}
.showcase-nav .nav-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}
.showcase-nav-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-muted);
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s ease;
    position: relative;
}
.showcase-nav-item::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.showcase-nav-item.active,
.showcase-nav-item:hover {
    color: #FFFFFF;
}
.showcase-nav-item.active::after {
    width: 100%;
}
.showcase-content-wrapper {
    position: relative;
    min-height: 500px; /* Ä°Ã§erik deÄŸiÅŸirken zÄ±plamayÄ± Ã¶nler */
}
.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
}
.showcase-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.content-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1.5rem 0;
}
.content-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 500px;
}
.showcase-examples {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
/* style.css'deki .example-link ile ilgili tÃ¼m eski kurallarÄ± silip bunlarÄ± yapÄ±ÅŸtÄ±r */

.example-link {
    display: block;
    position: relative;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-link::before {
    content: '';
    position: absolute;
    inset: 0;
    
    /* NORMAL HALÄ°: Blur yok, sadece hafif bir karartma efekti */
    backdrop-filter: blur(0px);
    background: rgba(0, 0, 0, 0.2);
    
    /* GeÃ§iÅŸ animasyonu */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.example-name {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;

    /* NORMAL HALÄ°: YazÄ± gÃ¶rÃ¼nmez */
    opacity: 0;
    transform: scale(0.95);
    
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.example-link:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* === ÃœZERÄ°NE GELÄ°NCE OLACAKLAR === */

.example-link:hover::before {
    /* HOVER HALÄ°: Arka plana blur ekle ve biraz daha karart */
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.5);
}

.example-link:hover .example-name {
    /* HOVER HALÄ°: YazÄ±yÄ± gÃ¶rÃ¼nÃ¼r yap */
    opacity: 1;
    transform: scale(1);
}
/* MOBÄ°L GÃ–RÃœNÃœM */
@media (max-width: 992px) {
    .showcase-layout { grid-template-columns: 1fr; } 
    .showcase-nav { position: static; flex-direction: row; flex-wrap: wrap; margin-bottom: 3rem;}
    .showcase-content { grid-template-columns: 1fr; position: static; opacity: 1; visibility: visible; transform: none; display:none; }
    .showcase-content.active { display: grid; }
    .showcase-details { margin-bottom: 3rem; text-align: center;}
    .content-description { margin: 0 auto; }
}
/* style.css'deki mevcut @media bloÄŸunu TAMAMEN SÄ°LÄ°P bununla deÄŸiÅŸtir */

/* ===== SON MOBÄ°L UYUMLULUK ===== */
@media (max-width: 992px) {
    /* KAYDIRMA */
    .snap-container {
        scroll-snap-type: y proximity;
    }

    /* "LÄ°DER OLUN" BÃ–LÃœMÃœ */
    .questions-grid, .prompt-layout {
        grid-template-columns: 1fr;
    }
    .prompt-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .prompt-cta-link {
        font-size: 1.5rem;
    }
    
    /* PROJE PANELLERÄ° */
    .panel-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto 1fr auto;
        text-align: left;
    }
    .project-code, .project-title, .project-description, .project-visual {
        grid-column: 1 / 2;
        text-align: left;
        justify-self: start;
    }
    .project-title { grid-row: 2; }
    .project-visual { grid-row: 3; align-items: center; }
    .project-description { grid-row: 4; max-width: 100%; margin-bottom: 20px; }
    .view-button {
        top: 20px;
        left: 20px;
    }

    /* SÃœREÃ‡ VE Ä°ÅžBÄ°RLÄ°KLERÄ° BAÅžLIKLARI */
    .section-header, .section-title {
        grid-template-columns: 1fr;
        text-align: center;
        margin-bottom: 60px;
    }
    .section-header p {
        margin: 0 auto;
    }

    /* SÃœREÃ‡ VE Ä°ÅžBÄ°RLÄ°KLERÄ° GRÄ°DLERÄ° */
    .process-grid, .collaboration-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    /* YENÄ°: Ä°ÅŸbirliÄŸi KartÄ± Mobilde Alt Alta */
    .collaboration-card {
        grid-template-columns: 1fr; /* Tek sÃ¼tuna dÃ¼ÅŸÃ¼r */
        gap: 2rem;
        text-align: center;
    }
    .collaboration-text-content {
        align-items: center; /* Mobilde ortala */
        text-align: center;
        order: 2; /* GÃ¶rsel Ã¼stte, yazÄ± altta olsun istersen order kullanabilirsin. Åžimdilik yazÄ± Ã¼stte kalsÄ±n. */
    }
    .collaboration-header h3 {
        font-size: 2rem; /* Mobilde baÅŸlÄ±ÄŸÄ± biraz kÃ¼Ã§Ã¼lt */
    }
    .overlay-logo {
        width: 80px;
        height: 80px;
        bottom: -20px;
        right: -10px;
    }

    .process-step {
        text-align: center;
    }

    /* YENÄ° PORTFOLYO VÄ°TRÄ°NÄ° MOBÄ°L STÄ°LLERÄ° */
    .showcase-layout {
        grid-template-columns: 1fr;
    }
    .showcase-nav {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
        margin-bottom: 3rem;
    }
    .showcase-nav .nav-title {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .showcase-details {
        text-align: center;
    }
    .content-description {
        margin: 0 auto;
    }
}
/* style.css'deki ESKÄ° final-cta-section stillerini SÄ°LÄ°P BUNU YAPIÅžTIR */

/* ==========================================================================
   FÄ°NAL CTA BÃ–LÃœMÃœ (DOÄžRU ORTALAMA Ä°LE)
   ========================================================================== */
/* style.css'deki mevcut .final-cta-section kuralÄ±nÄ± bununla deÄŸiÅŸtir */

.final-cta-section {
    background-color: #0D0D0D; 
    
    display: flex;
    align-items: center;      
    justify-content: center; /* <<< DEÄžÄ°ÅžÄ°KLÄ°K BURADA: flex-start yerine center */

    height: 80vh; 
    min-height: 600px;
    padding: 20px; /* Kenar boÅŸluklarÄ± iÃ§in padding daha gÃ¼venli */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Arka plan gÃ¶rseli vs. olan eski kodlarÄ± sildik, onlara gerek yok. */

.final-cta-section .cta-content {
    max-width: 800px;
    text-align: left; /* Ä°Ã§indeki her ÅŸeyin sola yaslÄ± olduÄŸundan emin ol */
}

.final-cta-section .cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* BÃ¼yÃ¼k ve etkileyici font boyutu */
    font-weight: 700;
    line-height: 1.2; /* SatÄ±r aralÄ±ÄŸÄ±nÄ± daralt */
    color: #FFFFFF;
    margin: 0 0 2.5rem 0; /* BaÅŸlÄ±k ile buton arasÄ±na boÅŸluk */
}

/* Genel .cta-button stilimizi kullanÄ±yoruz, burada Ã¶zel bir ÅŸeye gerek yok. */

/* MOBÄ°L GÃ–RÃœNÃœM */
@media (max-width: 768px) {
    .final-cta-section {
        height: 60vh;
        min-height: 400px;
        padding: 0 5%;
        text-align: center; /* Mobilde ortalÄ± daha iyi durabilir */
        justify-content: center;
    }
    .final-cta-section .cta-content {
        text-align: center;
    }
}
/* style.css dosyasÄ±nÄ±n sonuna, @media'dan Ã¶nce yapÄ±ÅŸtÄ±r */

/* ==========================================================================
   FOOTER BÃ–LÃœMÃœ
   ========================================================================== */
footer {
    background-color: #1A1A1A; /* Ana siyahtan bir ton aÃ§Ä±k */
    color: var(--text-muted);
    padding: 80px 20px 0 20px; /* Alt boÅŸluk kaldÄ±rÄ±ldÄ± */
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    padding-bottom: 60px;
}
.footer-col h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 2rem 0;
}
.footer-col p {
    line-height: 1.7;
    margin: 0 0 2rem 0;
}
.footer-contact, .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li, .footer-links li {
    margin-bottom: 1rem;
}
.footer-contact li { display: flex; align-items: center; gap: 1rem; }
.footer-contact svg { width: 20px; height: 20px; color: var(--primary-green); flex-shrink: 0; }
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--primary-green); }

.newsletter-form {
    margin-top: 2rem;
    display: flex;
}
.newsletter-form input {
    flex-grow: 1;
    border: 1px solid #2b2b2b;
    background-color: #2b2b2b;
    padding: 15px;
    border-radius: 8px 0 0 8px;
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.newsletter-form input:focus {
    border-color: var(--primary-green);
}
.newsletter-form button {
    border: none;
    background-color: var(--primary-green);
    color: #000;
    padding: 15px 25px;
    font-weight: 700;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 1rem;
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
.footer-gallery a img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.footer-gallery a:hover img {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    padding-bottom: 20px !important;
    text-align: center;
}
.footer-copyright {
    font-size: 0.9rem;
    margin: 0;
}
.markasium-link {
    color: var(--text-color);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--primary-green);
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}
.markasium-link:hover {
    color: var(--primary-green);
}
/* ==========================================================================
   PROJE DETAY SAYFASI STÄ°LLERÄ°
   ========================================================================== */

/* Proje Hero AlanÄ± */
.project-hero-section {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding: 20px;
}

.project-hero-content img {
    height: 120px;
    margin-bottom: 2rem;
}

.project-hero-content h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    margin: 0;
}

.project-hero-content p {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 1rem auto 0 auto;
    opacity: 0.8;
}

/* Proje Ana Ä°Ã§erik AlanÄ± */
.project-content-section {
    position: relative;
    padding: 120px 20px;
    background-color: var(--dark-bg);
}

.content-bg-image {
    position: absolute;
    inset: 0; /* top, right, bottom, left: 0 */
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.6);
    transform: scale(1.1); /* Blur kenarlarÄ±nÄ±n boÅŸ kalmasÄ±nÄ± Ã¶nler */
    z-index: 1;
}

.project-content-section .container {
    position: relative;
    z-index: 2; /* Ä°Ã§eriÄŸi blurlu resmin Ã¶nÃ¼ne getirir */
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Sol boÅŸluk, saÄŸ iÃ§erik */
    align-items: center;
}

.content-box {
    background-color: rgba(18, 18, 18, 0.65); /* YarÄ± ÅŸeffaf koyu arkaplan */
    backdrop-filter: blur(15px); /* "Buzlu cam" efekti */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
}

.content-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 1rem 0;
}

.content-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 2.5rem 0 1.5rem 0;
    border-left: 3px solid var(--primary-green);
    padding-left: 1rem;
}

.content-box p {
    line-height: 1.8;
    color: var(--text-muted);
}

.content-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-box ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.content-box ul li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.project-cta-button {
    display: inline-block;
    margin-top: 2rem;
    background-color: var(--primary-green);
    color: #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.project-cta-button:hover {
    transform: scale(1.05);
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .project-content-section .content-grid {
        grid-template-columns: 1fr; /* Mobilde tek sÃ¼tun */
    }
}

/* ==========================================================================
   SPLIT ANIMATION (SAÄžDAN/SOLDAN GELÄ°Åž)
   ========================================================================== */
.split-anim {
    position: relative;
}

.slide-left, .slide-right {
    display: inline-block;
    opacity: 0;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1s ease;
    will-change: transform, opacity;
}

.slide-left {
    transform: translateX(-100px);
}

.slide-right {
    transform: translateX(100px);
}

/* Section is-visible olduÄŸunda tetiklenir */
.is-visible .slide-left,
.is-visible .slide-right {
    opacity: 1;
    transform: translateX(0);
}
/* ==========================================================================
   ANA SAYFA ARKA PLAN Vï¿½DEOSU
   ========================================================================== */
/* Video arka plan stilleri kaldÄ±rÄ±ldÄ± */

/* YENÄ° GLOBAL OVERLAY (HER ÅžEYÄ°N ÃœZERÄ°NDE) */
.global-overlay-image {
    position: absolute;
    top: 0px; /* SayfanÄ±n Ã¼stÃ¼nden boÅŸluk */
    left: 0;
    width: 100%;
    height: 100%; /* Sayfa yÃ¼ksekliÄŸiyle sÄ±nÄ±rla */
    overflow: hidden; /* TaÅŸmalarÄ± gizle */
    z-index: 9999 !important; /* En Ã¼st katman */
    pointer-events: none; /* TÄ±klamalarÄ± engelle */
}

.global-overlay-image img {
    width: 100%;
    height: auto; /* OranÄ±nÄ± koruyarak uzasÄ±n */
    display: block;
    opacity: 0.8; /* Ä°steÄŸe gÃ¶re ayarlanabilir */
    mix-blend-mode: normal;
}



/* Bï¿½lï¿½mlerin arka planlarï¿½nï¿½ ï¿½effaflaï¿½tï¿½r ki video gï¿½rï¿½nsï¿½n */


/* ==========================================================================
   YAVAÅž YÃœKLENME (FADE-IN) EFEKTÄ°
   ========================================================================== */

/* 1. Animasyonun Kendisi (Keyframes) */
@keyframes softFadeIn {
    from {
        opacity: 0;
        filter: blur(10px); /* Ä°stersen baÅŸta hafif blurlu olur */
    }
    to {
        opacity: 1; /* Container tamamen gÃ¶rÃ¼nÃ¼r olur */
        filter: blur(0);
    }
}

/* 2. Global Overlay'e UygulanmasÄ± */
.global-overlay-image {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
    pointer-events: none;
    
    /* --- BURASI YENÄ° KISIM --- */
    opacity: 0; /* BaÅŸlangÄ±Ã§ta gÃ¶rÃ¼nmez olsun */
    animation: softFadeIn 1.5s ease-out forwards;
    
    /* Gecikme SÃ¼resi: Sayfa aÃ§Ä±ldÄ±ktan kaÃ§ saniye sonra baÅŸlasÄ±n? */
    animation-delay: 0s; 
}

.global-overlay-image img {
    width: 100%;
    height: auto;
    display: block;
    /* Resmin kendi ÅŸeffaflÄ±ÄŸÄ± burada korunur */
    opacity: 1.2; 
    mix-blend-mode: normal;
}
@media (max-width: 768px) {
    .logo-box {
        width: 120px;
        height: 120px;
    }
    .hero-section {
        padding-top: 100px;
    }
    .hero-content {
        margin-top: 20px;
    }
}

/* ==========================================================================
   DEKORATï¿½F Gï¿½RSELLER (index.html'den taï¿½ï¿½ndï¿½)
   ========================================================================== */

/* 1. Balï¿½k (Hero) */
.fish-decoration {
    position: absolute;
    left: 15%;
    top: 35%;
    transform: translateY(-50%);
    width: 400px;
    max-width: 25vw;
    z-index: 1;
    pointer-events: none;
}
@keyframes floatFish {
    0% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-55%) translateX(10px); }
    100% { transform: translateY(-50%) translateX(0); }
}

/* 2. Balï¿½k (Sï¿½reï¿½) */
.fish-decoration-2 {
    position: absolute;
    left: 17%;
    top: -100px;
    width: 350px;
    max-width: 25vw;
    z-index: 1;
    pointer-events: none;
}
@keyframes floatFish2 {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(15px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* 3. Ahtapot (ï¿½ï¿½birlikleri) */
.octopus-decoration {
    position: absolute;
    top: -160px;
    left: -80px;
    width: 300px;
    max-width: 40vw;
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}
@keyframes floatOctopus {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* 4. Kaplumbaï¿½a (Final CTA) */
.turtle-decoration {
    position: absolute;
    right: 5%;
    top: 50%; 
    transform: translateY(-50%);
    width: 450px;
    max-width: 35vw; 
    z-index: 1;
    pointer-events: none;
}
@keyframes floatTurtle {
    0%, 100% { transform: translateY(-50%) rotate(0deg); }
    50% { transform: translateY(-55%) rotate(-5deg); }
}

/* Mobilde Gizle */
@media (max-width: 992px) {
    .fish-decoration, .fish-decoration-2, .octopus-decoration, .turtle-decoration {
        display: none;
    }
}

/* ===== MOBÝL DÜZENLEMELER ===== */
@media (max-width: 992px) {
    /* 1. Logo Blur Kaldýrma */
    .logo-box img {
        filter: none !important;
        opacity: 1 !important;
    }

    /* 2. Prompt Metni Görünürlüðü */
    .prompt-conclusion {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    /* 3. Bottom Nav Gizleme */
    .bottom-nav-container {
        display: none !important;
    }
}

/* ===== HAMBURGER MENÜ ===== */
.hamburger-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: none; /* Sadece mobilde görünür olacak */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-btn span::before,
.hamburger-btn span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger-btn span::before { transform: translateY(-8px); }
.hamburger-btn span::after { transform: translateY(8px); }

/* Hamburger Aktif Hali */
.hamburger-btn.active span { background-color: transparent; }
.hamburger-btn.active span::before { transform: rotate(45deg); }
.hamburger-btn.active span::after { transform: rotate(-45deg); }

/* Mobil Menü Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.98);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-link {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-menu-link {
    opacity: 1;
    transform: translateY(0);
}

/* Mobilde Hamburgeri Göster */
@media (max-width: 992px) {
    .hamburger-btn {
        display: flex;
    }
}


/* ==========================================================================
   MOBIL UYUMLULUK DUZELTMELERI (responsive fix - dosya sonuna eklendi)
   ========================================================================== */

@media (max-width: 992px) {
    /* Yatay tasmayi engelle (transform kaynakli yan kaymalar dahil) */
    html, body { overflow-x: hidden; max-width: 100%; }

    /* Tam ekran panellerin sabit 100vh yuksekligini kaldir: icerik tasinca
       alttaki bolumle ic ice girmesin (hero -> alt bolum cakismasi fix). */
    .fullpage-panel {
        height: auto;
        min-height: 100vh;
        padding-top: 90px;
        padding-bottom: 48px;
    }
    .hero-section { padding-top: 90px; }
    .prompt-section { padding-top: 90px; }

    /* Logo duvari tek siraya sigmiyordu, alt satira sarsin */
    .logo-wall {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .logo-box { width: 110px; height: 110px; }
    .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-subtitle { font-size: 1rem; }
    /* Kayan yazilar mobilde tasmasin */
    .ticker-item { font-size: clamp(2rem, 11vw, 3rem); margin: 0 0.75rem; }
}

@media (max-width: 480px) {
    .logo-box { width: 90px; height: 90px; }
    .process-section,
    .collaborations-section,
    .showcase-section { padding-left: 16px; padding-right: 16px; }
}
/* ==========================================================================
   ANA SAYFA HERO BUTONU (Nasil Yaptigimizi Kesfedin) - kucultuldu
   Sadece hero'daki butonu hedefler; diger cta-button'lar etkilenmez.
   ========================================================================== */
.hero-section .cta-button {
    padding: 12px 26px;
    font-size: 0.95rem;
    white-space: nowrap; /* ok isareti yazinin yaninda kalsin, alta kaymasin */
}
@media (max-width: 480px) {
    .hero-section .cta-button {
        padding: 11px 20px;
        font-size: 0.85rem;
    }
}