/* =========================================
   GLOBAL RESET & FONTS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #d1d1d1;
    --border-color: #222;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   PREMIUM AGENCY EFFECTS (NOISE & ORBS)
   ========================================= */

/* 1. SİNEMATİK FİLM NOISE (GREN) */
.noise-overlay {
    position: fixed;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    animation: noiseAnim 0.2s steps(4) infinite;
}
@keyframes noiseAnim {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0); }
    70% { transform: translate(0, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
    100% { transform: translate(0, 0); }
}

/* 3. GLOWING ORBS (AMBİYANS IŞIKLARI) */
.orb-container {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
    animation: floatOrb 20s infinite ease-in-out alternate;
}
.orb:nth-child(1) {
    width: 600px; height: 600px;
    background: rgba(100, 50, 200, 0.4);
    top: -100px; left: -100px;
    animation-duration: 25s;
}
.orb:nth-child(2) {
    width: 500px; height: 500px;
    background: rgba(50, 100, 255, 0.3);
    bottom: -100px; right: -100px;
    animation-duration: 30s;
    animation-delay: -5s;
}
@keyframes floatOrb {
    0% { transform: translate(0px, 0px) scale(1); }
    50% { transform: translate(50px, 100px) scale(1.1); }
    100% { transform: translate(-50px, -50px) scale(0.9); }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.text-center { text-align: center; }


/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    padding: 30px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0);
    backdrop-filter: blur(0px);
    transition: all 0.4s ease;
}
.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}
.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 30px;
    width: auto;
    filter: invert(1);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}
.nav-links a:hover { color: #fff; }
.btn-contact {
    border: 1px solid #fff;
    padding: 8px 20px;
    border-radius: 20px;
    color: #fff !important;
}
.btn-contact:hover {
    background: #fff;
    color: #000 !important;
}

/* =========================================
   HERO INTRO (VIDEO CLIPPING MASK)
   ========================================= */
.hero {
    position: relative;
    width: 100vw; height: 100vh;
    overflow: hidden;
    background: #000;
}
.hero-video-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-video {
    width: 100vw; height: 100vh;
    object-fit: cover;
}
.mask-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 2;
    background-color: #000;
    mix-blend-mode: multiply;
    display: flex;
    justify-content: center;
    align-items: center;
}
.quba-mask {
    width: 70vw; max-width: 1200px;
    height: auto;
}
.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 5; text-align: center;
}
.scroll-indicator p {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    font-size: 12px; letter-spacing: 2px; color: #fff;
}
.scroll-indicator .line {
    width: 1px; height: 40px;
    background: #fff; margin: 10px auto 0;
    animation: scrollLine 1.5s infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =========================================
   COMMON SECTION STYLES
   ========================================= */
section { padding: 120px 0; }
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px; letter-spacing: 4px;
    color: var(--accent-color);
    margin-bottom: 60px;
    text-transform: uppercase;
}

/* =========================================
   ABOUT
   ========================================= */
.about { background: #080808; }
.about-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 4vw; font-weight: 300;
    line-height: 1.1; margin-bottom: 40px;
}
.about-desc {
    font-size: 18px; color: #888;
    max-width: 600px; line-height: 1.6;
}

/* =========================================
   SERVICES
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
@media screen and (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 600px) {
    .services-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px;
    }
}
.srv-card {
    position: relative;
    overflow: hidden;
    background: #111;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center; /* Merkezi İçerik Hizalaması */
    justify-content: center;
}
.srv-media {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    opacity: 1;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.srv-media img, .srv-media video {
    width: 100%; height: 100%; object-fit: cover;
}
.srv-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); /* İlk başta soft bir karartma */
    backdrop-filter: blur(0px); /* İlk başta temiz resim */
    -webkit-backdrop-filter: blur(0px);
    z-index: 2;
    transition: all 0.5s ease;
}
.srv-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.srv-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px; 
    margin-bottom: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(30px); /* Alt listeler saklıyken H4 tam merkeze oturur */
}
.srv-card p {
    display: none; /* Açıklamayı artık sildik, sadece liste */
}
.srv-list {
    list-style: none;
    margin-top: 20px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.srv-list li {
    padding-left: 0; 
    margin-bottom: 10px;
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    transition: color 0.4s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
/* Noktaları gizleyip aşırı sade (minimalist) "Tag" stili kullandık */
.srv-list li::before {
    display: none; 
}

/* Interactivity (Hover Reveal & Mobile Click) */
.srv-card:hover, .srv-card.active {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.3);
}
.srv-card:hover .srv-media, .srv-card.active .srv-media {
    transform: scale(1.08); /* Sinematik dış arka plan büyümesi */
}
.srv-card:hover .srv-overlay, .srv-card.active .srv-overlay {
    background: rgba(0,0,0,0.7); /* Hafif koyulaşma */
    backdrop-filter: blur(8px); /* Buzlu cam filtresi aktifleşir */
    -webkit-backdrop-filter: blur(8px);
}
.srv-card:hover h4, .srv-card.active h4 {
    transform: translateY(0px); /* Başlık usulca yukarı kayar */
}
.srv-card:hover .srv-list, .srv-card.active .srv-list {
    opacity: 1; /* Altına listeler fışkırır */
    visibility: visible;
    transform: translateY(0);
}
.srv-card:hover .srv-list li:hover {
    color: #fff;
}

/* Hover-Iptal (Mobilde Sürekli Görünüm ve Ikili Izgara İcin Küçültme) */
@media screen and (max-width: 768px) {
    .srv-overlay {
        background: rgba(0,0,0,0.75);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    }
    .srv-content {
        padding: 20px 10px; /* Daha rahat dikey boşluk, yatayda kenara yayılım */
    }
    .srv-card h4 {
        transform: translateY(0px) !important;
        font-size: 19px !important; /* Başlıklar çok daha vurgulu ve büyük */
        margin-bottom: 10px; /* Başlık ile liste arası boşluk açıldı */
    }
    .srv-list {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        margin-top: 5px !important;
    }
    .srv-list li {
        font-size: 11px !important; /* Maddeler zarif, okunaklı ama net şekilde küçük */
        margin-bottom: 6px !important;
        line-height: 1.3;
        color: #e0e0e0;
    }
}

/* =========================================
   PORTFOLIO INSTAGRAM GRID
   ========================================= */
.portfolio { background: #050505; }
.portfolio-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filter-card {
    position: relative;
    min-width: 120px;
    width: auto;
    padding: 0 15px;
    height: 45px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.filter-card img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
.filter-card span {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; height: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    background: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    transition: color 0.3s ease;
}
.filter-card:hover img {
    opacity: 0.6;
}
.filter-card:hover span {
    color: #fff;
}
.filter-card.active {
    border-color: #fff;
}
.filter-card.active img {
    opacity: 0.8;
}
.filter-card.active span {
    color: #fff;
    background: rgba(0, 0, 0, 0.2);
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 90%; max-width: 1400px; margin: 0 auto;
}
.grid-item {
    position: relative; aspect-ratio: 1 / 1;
    overflow: hidden; background: #111; border-radius: 4px;
    opacity: 0; transform: translateY(50px);
}
.grid-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.item-overlay {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; background: rgba(0, 0, 0, 0.85);
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 30px;
    opacity: 0; transition: opacity 0.4s ease;
}
.item-overlay .project-sector {
    font-family: 'Inter', sans-serif;
    color: var(--accent-color);
    font-size: 11px;
    letter-spacing: 2px;
    transform: translateY(-10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.item-overlay .project-client {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin: auto 0;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.item-overlay .project-services {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.item-overlay .badge {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}
.grid-item:hover img { transform: scale(1.08); }
.grid-item:hover .item-overlay { opacity: 1; }
.grid-item:hover .item-overlay .project-sector,
.grid-item:hover .item-overlay .project-client,
.grid-item:hover .item-overlay .project-services { transform: translateY(0); }

/* =========================================
   MARQUEE CLIENTS
   ========================================= */
.marquee-clients { background: #fff; color: #000; padding: 60px 0; overflow: hidden; }
.marquee-clients .section-title { color: #555; text-align: center; }
.marquee-wrapper { display: flex; white-space: nowrap; overflow: hidden; width: 100%; }
.marquee-track {
    display: flex; gap: 80px; align-items: center;
    padding-right: 80px;
    width: max-content;
    animation: marquee 90s linear infinite;
}
.marquee-track img {
    height: 60px;
    width: 140px;
    object-fit: contain;
    cursor: pointer;
    transition: all 0.4s ease;
}
.marquee-track img:hover {
    transform: scale(1.05);
}
.marquee-track img.white-logo {
    filter: invert(1) brightness(0);
    opacity: 0.8;
}
.marquee-track img.white-logo:hover {
    filter: invert(1) brightness(0);
    opacity: 1;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =========================================
   BLOG SECTION
   ========================================= */
.blog { background: #080808; }
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.blog-card {
    padding: 30px; border-top: 1px solid var(--border-color);
}
.blog-card .tag {
    font-size: 12px; color: #aaa; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom:  १५px; padding: 4px 10px; border: 1px solid #333; display: inline-block; border-radius: 20px;
}
.blog-card h4 { font-family: 'Outfit', sans-serif; font-size: 20px; margin: 15px 0; }
.blog-card p { color: #888; font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.blog-card a { color: #fff; text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
   FOOTER CONTACT (Legacy — overridden by grid footer below)
   ========================================= */
.footer-title { font-family: 'Outfit', sans-serif; font-size: 4vw; margin-bottom: 20px; }
.btn-primary {
    display: inline-block; padding: 20px 50px; background: #fff; color: #000;
    text-decoration: none; font-family: 'Outfit', sans-serif; font-weight: bold;
    border-radius: 50px; transition: transform 0.3s ease;
}
.btn-primary:hover { transform: scale(1.05); }

/* =========================================
   RESPONSIVE (MOBILE) ADJUSTMENTS
   ========================================= */
@media screen and (max-width: 768px) {
    /* Instagram Mobil 3'lü Grid Dizilimi */
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px; /* Mobilde aralıkları kısarak tam Instagram hissi veriyoruz */
        width: 100%; 
        padding: 0 5px;
    }
    
    /* Mobil cihazlarda kutular çok küçüleceği için yazıları ufaltıyoruz */
    .item-overlay { padding: 15px; }
    .item-overlay .project-client { font-size: 16px; margin-top: 10px; }
    .item-overlay .project-sector { font-size: 9px; }
    .item-overlay .badge { font-size: 9px; padding: 4px 8px; }
}

/* =========================================
   INNER PAGES (HİZMET DETAY VB.)
   ========================================= */
.inner-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px; /* Navbar boslugu */
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}
.inner-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}
.inner-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
}
.inner-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85); /* fallback */
    z-index: 1;
}
.inner-hero .container {
    position: relative;
    z-index: 2;
}
.breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
.breadcrumb a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: #fff;
}
.breadcrumb .current {
    color: var(--accent-color);
}
.inner-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 5vw;
    line-height: 1.1;
    margin-bottom: 20px;
}
.inner-hero-desc {
    max-width: 600px;
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

/* Inner Content Area */
.inner-content {
    background: #050505;
    padding: 80px 0;
}
.service-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}
.service-main-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    margin-bottom: 30px;
    line-height: 1.3;
}
.service-main-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #ddd;
}
.service-main-text p {
    color: #999;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.mt-40 { margin-top: 40px; }

/* Detailed List inside Inner */
.detailed-list {
    display: none; /* Artık kullanılmıyor, görsel grid'e geçtik ama yedek kalsın */
}

/* Görsel Zenginleştirme: Lead Text & Separator */
.lead-text {
    font-size: 20px;
    color: #e0e0e0;
    line-height: 1.6;
    font-weight: 300;
}
.image-separator {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Görsel Zenginleştirme: Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.feature-card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}
.f-icon {
    font-size: 30px;
    margin-bottom: 15px;
    display: inline-block;
}
.feature-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}
.feature-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

/* Görsel Zenginleştirme: Dinamik Portfolyo Grid & Social Cards */
.dynamic-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.social-card {
    background: linear-gradient(145deg, #111 0%, #050505 100%);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
}
/* İçten gelen ultra premium parlama efekti (Glow) */
.social-card::after {
    content: ""; position: absolute; inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.0);
    transition: box-shadow 0.5s ease;
    pointer-events: none;
}
.social-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), 0 0 60px rgba(255,255,255,0.03);
}
.social-card:hover::after {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}
.sc-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.sc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.social-card:hover .sc-media img {
    transform: scale(1.05);
}
.sc-info {
    padding: 20px;
}
.sc-tag {
    font-size: 10px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}
.sc-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: #fff;
    margin: 0;
}

/* Sidebar Box (Premium Glassmorphism Teması) */
.sidebar-box {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    padding: 50px 40px;
    border-radius: 24px;
    position: sticky;
    top: 120px;
    transition: transform 0.5s ease, border-color 0.5s ease;
}
.sidebar-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}
.sidebar-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
}
.sidebar-box p {
    color: #999;
    font-size: 15px;
    line-height: 1.7;
}

/* Responsive Inner Pages */
@media screen and (max-width: 900px) {
    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .features-grid, .dynamic-gallery-grid {
        grid-template-columns: 1fr;
    }
    .inner-hero-title {
        font-size: 42px;
    }
    .sidebar-box {
        position: relative;
        top: 0;
    }
}

/* =========================================
   FIKIR 2: BENTO BOX MIMARISI
   ========================================= */
.bento-container {
    padding: 140px 0 80px; 
    background: #030303; 
    min-height: 100vh;
}
.bento-header {
    text-align: center;
    margin-bottom: 60px;
}
.bento-header h1 {
    font-size: 6vw;
    line-height: 1;
    margin-bottom: 20px;
}
.bento-header p {
    color: #888;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 20px;
}
.bento-item {
    background: #0d0d0d;
    border: 1px solid #1f1f1f;
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}
.bento-item:hover {
    transform: translateY(-8px);
    border-color: #444;
}
.bento-large { grid-column: span 2; grid-row: span 2; justify-content: center; align-items: flex-start; }
.bento-wide { grid-column: span 2; grid-row: span 1; justify-content: center;}
.bento-tall { grid-column: span 1; grid-row: span 2; }
.bento-small { grid-column: span 1; grid-row: span 1; }

.bento-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
    transition: opacity 0.4s, transform 0.6s;
}
.bento-item:hover .bento-bg {
    opacity: 0.8;
    transform: scale(1.05);
}
.bento-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.bento-content {
    position: relative;
    z-index: 3;
}
.bento-content h3 {
    font-size: 24px; color: #fff; margin-bottom: 10px;
}
.bento-content p {
    font-size: 14px; color: #aaa; line-height: 1.5;
}
.bento-large .bento-content h3 {
    font-size: 42px; line-height: 1.1; margin-bottom: 20px;
}

@media screen and (max-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-large { grid-column: span 2; grid-row: span 2; }
    .bento-wide { grid-column: span 2; grid-row: span 1; }
    .bento-tall { grid-column: span 1; grid-row: span 1; }
    .bento-small { grid-column: span 1; grid-row: span 1; }
}
@media screen and (max-width: 600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item { grid-column: span 1 !important; grid-row: span 1 !important; min-height: 250px;}
    .bento-header h1 { font-size: 42px;}
}

/* =========================================
   ALTERNATIF TASARIM: SPLIT SCREEN (Awwwards Style)
   ========================================= */
.split-layout {
    width: 100%;
    min-height: 100vh;
    padding: 100px 5% 50px;
}
.split-container {
    display: flex;
    gap: 50px;
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}
.split-left {
    flex: 0 0 35%; /* Fixed sol taraf */
    position: relative;
}
.split-right {
    flex: 1; /* Esnek devasa sağ taraf */
}

/* Sol Taraf Sabitleme */
.sticky-content {
    position: sticky;
    top: 140px; /* Ekranda kayarken nerede dursun */
    padding-right: 20px;
}
.category-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    display: block;
    margin-bottom: 20px;
}
.split-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}
.split-desc {
    color: #999;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 90%;
}
.action-box {
    background: rgba(20,20,20,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

/* Sağ Taraf - Masonry Duvar */
.masonry-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
    gap: 30px;
}
.masonry-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #111;
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.6s;
}
.masonry-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.masonry-card:hover {
    transform: scale(0.97);
}
.masonry-card:hover img {
    transform: scale(1.1);
}

/* Duvar Boyutlandırma Sınıfları */
.size-large { grid-column: span 2; grid-row: span 2; }
.size-wide { grid-column: span 2; grid-row: span 1; }
.size-tall { grid-column: span 1; grid-row: span 2; }
.size-square { grid-column: span 1; grid-row: span 1; }

.masonry-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    z-index: 2;
}
.m-tag {
    font-size: 11px; color: var(--accent-color); text-transform:uppercase; letter-spacing:1px; margin-bottom:8px; display:block;
}
.m-title {
    font-family: 'Outfit', sans-serif; font-size: 24px; margin:0;
}

.media-wall-footer {
    grid-column: span 2;
    padding: 80px 0;
    text-align: center;
}
.media-wall-footer h3 {
    font-family: 'Outfit'; font-size: 30px; margin-bottom: 20px;
}
.media-wall-footer p {
    color: #888; max-width:600px; margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .split-container { flex-direction: column; }
    .split-left { flex: none; width: 100%; margin-bottom: 40px; }
    .sticky-content { position: relative; top: 0; }
    .split-title { font-size: 3rem; }
}
@media screen and (max-width: 768px) {
    .masonry-wall { grid-template-columns: 1fr; }
    .size-large, .size-wide, .size-tall, .size-square { grid-column: span 1; }
}

/* =========================================
   FIKIR 3: YATAY SONSUZ TUVAL (HORIZONTAL SCROLL)
   ========================================= */
.h-hero-section {
    padding: 160px 0 80px;
    background: transparent;
}
.h-title {
    font-family: 'Outfit', sans-serif;
    font-size: 8vw;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -2px;
}
.h-desc {
    color: #aaa;
    font-size: 18px;
    max-width: 500px;
    margin: 0 auto;
}

.h-gallery-wrapper {
    width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 5vw 80px;
    /* Custom Scrollbar gizleme */
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}
.h-gallery-wrapper::-webkit-scrollbar {
    display: none;
}
.h-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

.h-card {
    flex: 0 0 50vw; /* Ekranda çok ciddi bir pay kaplar */
    height: 65vh;
    border-radius: 24px;
    background: #111;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.h-card:hover {
    transform: scale(0.98);
}
.h-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.8s ease, opacity 0.4s;
}
.h-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}
.h-card-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.h-tag {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 2px;
    display: block; margin-bottom: 10px;
}
.h-card-content h3 {
    font-family: 'Outfit';
    font-size: 32px;
    margin: 0;
}

.h-footer {
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #000;
}
.CTA-card {
    border: 1px solid rgba(255,255,255,0.1);
}

@media screen and (max-width: 900px) {
    .h-title { font-size: 50px; }
    .h-card { flex: 0 0 80vw; height: 50vh; }
}

/* =========================================
   HAMBURGER MENU (MOBILE)
   ========================================= */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 5, 5, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid var(--border-color);
        z-index: 1000;
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .btn-contact {
        margin-top: 20px;
        text-align: center;
    }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: 120px 0;
    background: #080808;
    border-top: 1px solid var(--border-color);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}
.contact-desc {
    color: #888;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-item:last-child {
    border-bottom: none;
}
.contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    font-family: 'Inter', sans-serif;
}
.contact-value {
    font-size: 16px;
    color: #e0e0e0;
    line-height: 1.5;
}
.contact-link {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}
.contact-link:hover {
    color: #fff;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 40px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease, background 0.3s ease;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.07);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .btn-primary {
    cursor: pointer;
    border: none;
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-heading {
        font-size: 28px;
    }
}

/* =========================================
   FOOTER (GRID LAYOUT)
   ========================================= */
.footer {
    padding: 80px 0 40px;
    background: #050505;
    border-top: 1px solid var(--border-color);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
    height: 28px;
    width: auto;
    filter: invert(1);
    margin-bottom: 16px;
}
.footer-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    max-width: 320px;
}
.footer-contact-info h4,
.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
}
.footer-contact-info p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}
.footer-contact-info a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact-info a:hover {
    color: #fff;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #fff;
}
.footer-bottom {
    text-align: center;
    margin-top: 0;
}
.footer-bottom p {
    color: #555;
    font-size: 12px;
    margin-bottom: 4px;
}
.footer-bottom a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-bottom a:hover {
    color: #fff;
}
.footer-legal-links {
    margin-top: 12px;
    font-size: 12px;
}
.footer-legal-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal-links a:hover {
    color: #fff;
}
.footer-legal-links span {
    color: #333;
    margin: 0 8px;
}

@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================================
   LEGAL PAGES (Gizlilik & Kullanım)
   ========================================= */
.legal-page {
    padding: 160px 0 80px;
    background: #050505;
    min-height: 100vh;
}
.legal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.1;
}
.legal-update {
    color: #666;
    font-size: 13px;
    margin-bottom: 60px;
    letter-spacing: 1px;
}
.legal-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.legal-section:last-child {
    border-bottom: none;
}
.legal-section h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.legal-section p {
    color: #999;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
    max-width: 720px;
}
.legal-section a {
    color: #ccc;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}
.legal-section a:hover {
    color: #fff;
}
.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}
.legal-section li {
    color: #999;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}
.legal-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
}
.legal-section strong {
    color: #ccc;
}

@media screen and (max-width: 768px) {
    .legal-title {
        font-size: 32px;
    }
    .legal-page {
        padding: 120px 0 60px;
    }
}
