/* genel/varliklar/css/anasayfa.css */

/* 1. Global Tasarım Değişkenleri */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-accent: #0f1015;
    
    --accent-blue: #ffffff;
    --accent-gray: rgba(255, 255, 255, 0.08);
    
    --text-white: #ffffff;
    --text-primary: #f8fafc;
    --text-secondary: #a1a1aa;
    --text-muted: #52525b;
    
    --border-light: rgba(255, 255, 255, 0.04);
    
    --font-sans: 'Outfit', 'Inter', -apple-system, sans-serif;
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. Temel Kurallar */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Dikey Bölücü Çizgiler */
.siber-sutunlar-kapsayici {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
    padding: 0 80px;
}

.siber-sutun-cizgisi {
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.02);
}


/* Kapsayıcılar */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 5;
}

.stil-bolum {
    padding: 160px 0;
    position: relative;
    z-index: 5;
}

/* 3. Nokta Matrisleri */
.nokta-matrisi {
    position: absolute;
    width: 160px;
    height: 280px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    pointer-events: none;
    z-index: 2;
}

.nokta-sol {
    top: 25%;
    left: 60px;
}

.nokta-sag {
    bottom: 25%;
    right: 60px;
}

/* 4. Header Navigasyonu */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    animation: headerSlideDown 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.sticky .header-container {
    height: 80px;
}

@keyframes headerSlideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    padding: 0 80px;
}

.logo {
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--text-white);
}

/* Hamburger Menü Butonu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px;
    transition: var(--transition-smooth);
    z-index: 1001;
}

.mobile-toggle:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    transition: var(--transition-smooth);
    transform-origin: center;
}

/* Açık (X) hâli */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 5. Kahraman (Hero) Alanı */
.hero-stil {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slayt {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slayt.aktif {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slayt::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(160, 22, 22, 0.22) 0%, rgba(2, 3, 6, 0.75) 100%);
    z-index: 2;
}

.hero-stil-icerik {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    position: relative;
}

.hero-stil-alt-etiket {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-white);
    margin-bottom: 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
}



.hero-stil-baslik {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--text-white);
    letter-spacing: -0.04em;
    margin-bottom: 35px;
}

.watch-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.45);
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    transition: var(--transition-smooth);
    background: transparent;
    cursor: pointer;
    margin-top: 25px;
}

.watch-video-btn:hover {
    border-color: var(--text-white);
    transform: scale(1.05);
}

.slayt-noktalari {
    position: absolute;
    left: 80px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 10;
}

.slayt-nokta {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    transition: var(--transition-smooth);
}

.slayt-nokta.aktif {
    background-color: var(--text-white);
    transform: scale(1.3);
}

.slider-kontrolleri {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.slider-kontrol-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-kontrol-btn:hover {
    background-color: var(--text-white);
    color: var(--bg-primary);
}

/* 6. Bölüm Başlıkları */
.stil-bolum-baslik-kapsayici {
    margin-bottom: 60px;
}

.stil-bolum-no {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-white);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.stil-bolum-baslik {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-white);
    letter-spacing: -0.03em;
}

/* 7. The Brand */
.stil-bolum-marka {
    padding: 160px 0;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    background-color: var(--bg-primary);
}

.marka-sol-grup {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-left: -60px;
    width: 32%;
    justify-content: flex-start;
    pointer-events: none;
}

.marka-sag-grup {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-right: -60px;
    width: 32%;
    justify-content: flex-end;
    pointer-events: none;
}

.marka-kolon {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 140px;
    flex-shrink: 0;
}

.kolon-tasan {
    width: 90px;
}

.marka-kart {
    width: 100%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.03);
    filter: grayscale(0.2) contrast(1.1) brightness(0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
    transition: var(--transition-smooth);
}

.marka-orta-kapsayici {
    width: 36%;
    max-width: 650px;
    padding: 0 20px;
    z-index: 10;
    box-sizing: border-box;
}

.marka-ana-metin {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 50px;
}

/* Back to Top */
.back-to-top-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--text-white);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 999;
    border: none;
    transition: var(--transition-smooth);
}

.back-to-top-btn:hover {
    transform: translateY(-5px);
}

/* 8. Dream Team & Cember */
.deneyim-cemberi {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--bg-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
}

.deneyim-alt-yazi {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.deneyim-sayisi {
    font-size: 7.25rem;
    font-weight: 800;
    line-height: 1.0;
    color: var(--text-white);
    margin: 8px 0;
    letter-spacing: -0.04em;
}

.alinti-kutusu {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px auto;
}

.alinti-isareti {
    font-size: 7.5rem;
    font-family: serif;
    color: rgba(255,255,255,0.06);
    display: block;
    line-height: 1;
    margin-bottom: -40px;
}

.alinti-metni {
    font-size: 1.45rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.takim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.takim-karti {
    background-color: var(--bg-accent);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.takim-resim {
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.2) brightness(0.85);
    transition: var(--transition-smooth);
}

.takim-bilgi {
    padding: 30px;
    text-align: center;
}

.takim-bilgi h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.takim-bilgi p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.takim-karti:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.08);
}

.takim-karti:hover .takim-resim {
    filter: grayscale(0) brightness(1.0);
}

/* 9. The Services (Sayı Kolonları) */
.servis-sutun-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.servis-sutun-kart {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.servis-sutun-sayi {
    font-size: 8rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 0.75;
    letter-spacing: -0.05em;
}

.servis-sutun-icerik h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-white);
    margin-bottom: 15px;
}

.servis-sutun-icerik p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 10. Yetenekler & Dil Sürgüsü */
.yetenek-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.yetenek-slider-kapsayici {
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.yetenek-resim {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.2) brightness(0.8) contrast(1.15);
}

.slider-yon-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background-color: var(--text-white);
    color: var(--bg-primary);
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.slider-yon-sol {
    left: 25px;
}

.slider-yon-sag {
    right: 25px;
}

.slider-yon-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.yetenek-ilerleme-alani {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.ilerleme-grup {
    width: 100%;
}

.ilerleme-baslik {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.ilerleme-bari {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.08);
}

.ilerleme-doluluk {
    height: 100%;
    background-color: var(--text-white);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 11. The Works (Portfolyo Yan Yana Kartlar) */
.works-resim-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.works-kart {
    border-radius: 12px;
    overflow: hidden;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.works-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) brightness(0.85);
    transition: var(--transition-smooth);
}

.works-kart:hover .works-img {
    filter: grayscale(0) brightness(1.0);
    transform: scale(1.02);
}

/* 12. The News (Haber Listesi & Hover Reveal Yapısı) */
.haber-listesi {
    display: flex;
    flex-direction: column;
}

.haber-karti {
    padding: 50px 40px;
    margin: 0 -40px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.haber-karti-arkaplan {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Koyu Karartma Maskesi */
.haber-karti-arkaplan::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.35) 50%, rgba(10, 10, 10, 0.85) 100%);
    z-index: 2;
}

.haber-karti-icerik {
    position: relative;
    z-index: 3;
}

.haber-no {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: block;
    text-transform: uppercase;
}

.haber-baslik {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.haber-aciklama {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 800px;
    margin-top: 15px;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.haber-cizgi {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.06);
    margin-top: 35px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 3;
}

/* Hover Davranışları */
.haber-karti:hover .haber-karti-arkaplan {
    opacity: 1;
    transform: scale(1.0);
}

.haber-karti:hover .haber-baslik {
    color: var(--text-white);
    padding-left: 20px;
}

.haber-karti:hover .haber-aciklama {
    opacity: 1;
    height: auto;
    margin-top: 20px;
    color: var(--text-secondary);
}

.haber-karti:hover .haber-cizgi {
    background-color: var(--text-white);
}

/* 13. Form & Input Kontrolleri */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--text-white);
    outline: none;
    background-color: var(--bg-accent);
}

textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* 14. Footer Tasarımı */
.footer {
    background-color: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 120px 0 60px 0;
    position: relative;
    z-index: 5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-col h4 {
    color: var(--text-white);
    font-size: 1.15rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: var(--text-white);
    border-color: var(--text-white);
    transform: translateY(-3px);
}

/* WhatsApp sticky on left margin */
.whatsapp-sticky {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 64px;
    height: 64px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.whatsapp-sticky:hover {
    transform: scale(1.1) rotate(10deg);
}

/* 15. Responsive Adaptasyonlar */
@media (max-width: 991px) {
    .header-container {
        padding: 0 30px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .marka-grid {
        grid-template-columns: 1fr;
    }

    /* Marka hikayesi bölümü tablet'te dikey düzene geç */
    .stil-bolum-marka {
        flex-direction: column;
        padding: 80px 30px;
        gap: 50px;
    }

    /* Sağ ve sol görsel grupları tablet'te gizle, sadece orta içerik göster */
    .marka-sol-grup,
    .marka-sag-grup {
        display: none;
    }

    .marka-orta-kapsayici {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px;
    }

    .marka-orta-kapsayici h2.stil-bolum-baslik {
        font-size: 2.8rem !important;
    }

    .misyon-vizyon-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .takim-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .servis-sutun-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .yetenek-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .works-resim-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 120px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        padding-top: 60px;
        transition: var(--transition-smooth);
        z-index: 998;
        border-top: 1px solid rgba(255, 255, 255, 0.03);
    }
    
    .nav-menu.active {
        left: 0;
    }

    /* Detay sayfa düzeni tablet'te tek sütun */
    .detay-sayfa-duzeni {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    /* İletişim düzeni tablet'te dikey */
    .iletisim-detay-grup {
        order: 2;
    }

    /* Hero stilleri */
    .hero-stil-baslik {
        font-size: 3.8rem;
    }

    /* Container padding azalt */
    .container {
        padding: 0 24px;
    }

    /* Stil bölümler padding azalt */
    .stil-bolum {
        padding: 80px 0;
    }

    /* Referanslar — mobilde yatay kaydırmalı */
    .works-resim-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: visible !important;
        gap: 16px !important;
        padding-bottom: 16px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        /* scrollbar gizle ama kaydırma çalışsın */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .works-resim-grid::-webkit-scrollbar {
        display: none;
    }

    /* Referans kartları mobilde sabit genişlik */
    .works-resim-grid .works-kart {
        flex: 0 0 78vw !important;
        max-width: 78vw !important;
        scroll-snap-align: start;
        height: 340px !important;
    }

    /* Yatay kaydırmalı grid section'larında container padding sıfırla */
    .stil-bolum .container:has(.works-resim-grid) {
        padding-left: 0;
        padding-right: 0;
    }
    /* :has() desteklemeyen tarayıcılar için fallback */
    .works-resim-grid {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    /* Header padding */
    .header-container {
        padding: 0 18px;
    }
    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Küçük telefon ekranları için ek optimizasyon */
@media (max-width: 390px) {
    .hero-stil-baslik {
        font-size: 2.1rem !important;
    }
    .hero-stil-alt-etiket {
        font-size: 0.72rem;
        letter-spacing: 0.12em;
    }
    .container {
        padding: 0 14px;
    }
    .watch-video-btn {
        width: 95px;
        height: 95px;
        font-size: 0.65rem;
    }
}

/* 16. Alt Sayfa Tasarımları (Detay & İletişim) */
.stil-ekmek-kirintisi {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
    display: block;
}

.stil-ekmek-kirintisi a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.stil-ekmek-kirintisi a:hover {
    color: var(--text-white);
}

.detay-sayfa-duzeni {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 80px;
    align-items: start;
    margin-top: 50px;
}

.stil-makale-karti {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 55px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 5;
}

.blog-rich-content {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

.blog-rich-content h2, .blog-rich-content h3 {
    font-size: 1.95rem;
    font-weight: 800;
    color: var(--text-white);
    margin-top: 45px;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.blog-rich-content p {
    margin-bottom: 25px;
}

.stil-yan-panel-karti {
    background-color: var(--bg-accent);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stil-yan-panel-baslik {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.stil-liste {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stil-liste-link {
    font-size: 0.92rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.stil-liste-link:hover {
    color: var(--text-white);
    padding-left: 5px;
}

.iletisim-detay-grup {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.iletisim-bilgi-satir {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.iletisim-bilgi-ikon {
    font-size: 1.5rem;
    color: var(--text-white);
}

.iletisim-bilgi-metin strong {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-white);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.iletisim-bilgi-metin p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.harita-cerceve {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    height: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 991px) {
    .detay-sayfa-duzeni {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* 17. Belirginleştirilmiş Neon-Glow Buton Tasarımları */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-cyber-blue {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.15);
    border: 1px solid #ffffff;
}

.btn-cyber-blue:hover {
    background: transparent;
    color: #ffffff;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.45);
    transform: translateY(-3px);
}

.btn-neon-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.btn-neon-outline:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

.btn-neon-whatsapp {
    background: #25d366;
    color: #ffffff;
    border: 1px solid #25d366;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.25);
}

.btn-neon-whatsapp:hover {
    background: transparent;
    color: #25d366;
    border-color: #25d366;
    box-shadow: 0 0 35px rgba(37, 211, 102, 0.45);
    transform: translateY(-3px);
}

/* Diğer Yuvarlak Butonlar İçin Hover Parlama Efekti */
.watch-video-btn, .slider-kontrol-btn, .slider-yon-btn, .back-to-top-btn {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.watch-video-btn:hover, .slider-kontrol-btn:hover, .slider-yon-btn:hover, .back-to-top-btn:hover {
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.4) !important;
    border-color: #ffffff !important;
}

/* 18. İnteraktif Hesaplayıcı Kartları */
.secenek-kart {
    display: block;
    background-color: var(--bg-accent);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.secenek-kart.aktif, .secenek-kart:hover {
    border-color: #ffffff;
    box-shadow: 0 0 25px rgba(255,255,255,0.08);
}

.secenek-kart strong {
    font-size: 0.95rem;
    color: #fff;
    display: block;
    margin-top: 10px;
    font-weight: 700;
}

.secenek-kart-kucuk {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-accent);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.9rem;
}

.secenek-kart-kucuk.aktif, .secenek-kart-kucuk:hover {
    border-color: #ffffff;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.08);
}

.secenek-kart-kucuk-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-accent);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 18px;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 0.9rem;
    user-select: none;
}

.secenek-kart-kucuk-checkbox.aktif, .secenek-kart-kucuk-checkbox:hover {
    border-color: #ffffff;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.08);
}

/* ==========================================================================
   19. PREMİUM GÖRSEL EFEKTLER & DEKORATİF ANİMASYONLAR (KOD DEĞİŞTİRMEDEN)
   ========================================================================== */

/* Ambient Neon Glow Küreleri (Floating Glow Effects) */
.ambient-glow {
    position: fixed;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    animation: floatGlow 22s infinite alternate ease-in-out;
}

.ambient-blue {
    background: radial-gradient(circle, rgba(0, 210, 255, 0.4) 0%, rgba(0, 0, 0, 0) 70%) !important;
    top: -150px;
    left: -150px;
}

.ambient-purple {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, rgba(0, 0, 0, 0) 70%) !important;
    bottom: -200px;
    right: -200px;
    animation-delay: -6s;
    animation-duration: 28s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(120px, 90px) scale(1.15);
    }
    66% {
        transform: translate(-70px, 130px) scale(0.9);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Siber Dikey Sütun Kılavuz Çizgileri - Animasyonlu Işık Akışı */
.siber-sutun-cizgisi {
    position: relative;
    overflow: hidden;
}

.siber-sutun-cizgisi::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    width: 1px;
    height: 35vh;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: siberIsikAkisi 7s infinite linear;
}

.siber-sutun-cizgisi:nth-child(2)::after {
    animation-delay: 2.2s;
    animation-duration: 9s;
}

.siber-sutun-cizgisi:nth-child(3)::after {
    animation-delay: 4.5s;
    animation-duration: 6s;
}

.siber-sutun-cizgisi:nth-child(4)::after {
    animation-delay: 1.1s;
    animation-duration: 8.5s;
}

@keyframes siberIsikAkisi {
    0% {
        top: -50%;
    }
    100% {
        top: 150%;
    }
}

/* Metinler İçin Premium Işıltılı Degrade & Hover Parlaması */
.hero-stil-baslik, 
.stil-bolum-baslik,
.marka-orta-kapsayici h2 {
    background: linear-gradient(135deg, #ffffff 40%, rgba(255, 255, 255, 0.45) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: baslikDegradeShine 10s infinite linear;
    transition: var(--transition-smooth);
}

@keyframes baslikDegradeShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Sayfa İlk Açılışında Yumuşak Giriş Animasyonu (Hero Reveal) */
.hero-stil-alt-etiket {
    animation: heroGirisReveal 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-stil-baslik {
    animation: heroGirisReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.watch-video-btn, 
.hero-stil .btn-neon, 
.hero-stil .btn-neon-outline {
    animation: heroGirisReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes heroGirisReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glassmorphism & Hover İçi Parlama Kart Yapısı (Teklif Kartları) */
.secenek-kart, 
.secenek-kart-kucuk, 
.secenek-kart-kucuk-checkbox {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative;
    overflow: hidden;
}

.secenek-kart::before, 
.secenek-kart-kucuk::before, 
.secenek-kart-kucuk-checkbox::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.secenek-kart:hover::before, 
.secenek-kart-kucuk:hover::before, 
.secenek-kart-kucuk-checkbox:hover::before {
    opacity: 1;
}

/* Referans Kartları & Ekip Görselleri İçin Akışkan Zoom ve Gölge */
.works-kart {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-kart:hover {
    transform: translateY(-8px) scale(1.005);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.06);
}

.works-img {
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.works-kart:hover .works-img {
    transform: scale(1.07);
}

.takim-karti {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.takim-karti:hover {
    transform: translateY(-6px);
}

.takim-resim {
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border-radius: 16px;
    overflow: hidden;
}

.takim-karti:hover .takim-resim {
    transform: scale(1.04);
}

/* Navigasyon Linkleri Hover Çizgi Efekti */
.nav-link {
    position: relative;
    padding-bottom: 6px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #ffffff;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover::after {
    width: 100%;
}

/* ==========================================================================
   20. NATIVE CSS SCROLL-DRIVEN ANIMATIONS (PREMİUM SCROLL EFEKTLERİ)
   ========================================================================== */

/* Arka Plan Izgara Çizgilerinin Scroll ile Parlaması */
@supports (animation-timeline: view()) {
    .siber-sutun-cizgisi {
        animation: lineGlowOnScroll both;
        animation-timeline: view();
        animation-range: entry 10% cover 50%;
    }
    
    @keyframes lineGlowOnScroll {
        from {
            background-color: rgba(255, 255, 255, 0.01);
        }
        to {
            background-color: rgba(255, 255, 255, 0.05);
        }
    }
}

/* ==========================================================================
   21. MOBİL OPTİMİZASYONLAR VE PAGESPEED İYİLEŞTİRMELERİ
   ========================================================================== */
.hero-slayt-gorsel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

button.slayt-nokta {
    border: none;
    outline: none;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0;
}

.bolgeler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}

.ilce-sutun {
    border-left: 2px solid rgba(255, 255, 255, 0.18);
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-left-color 0.4s ease;
}

.ilce-sutun:hover {
    border-left-color: #00d2ff;
}

.ilce-baslik-sade {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0 0 35px 0;
    letter-spacing: -0.01em;
}

.mahalle-2x2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
    width: 100%;
    text-align: center;
}

.mahalle-sade-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mahalle-sade-link,
.mahalle-sade-link:link,
.mahalle-sade-link:visited {
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none !important;
    display: block;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    word-break: break-word;
}

.mahalle-sade-link:hover,
.mahalle-sade-link:active {
    color: #00d2ff !important;
    text-decoration: none !important;
}

.mahalle-sade-sublinks {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.mahalle-sade-sublinks a,
.mahalle-sade-sublinks a:link,
.mahalle-sade-sublinks a:visited {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.mahalle-sade-sublinks a:hover,
.mahalle-sade-sublinks a:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

@media (max-width: 991px) {
    .bolgeler-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 14px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .ilce-sutun {
        padding-left: 12px !important;
        padding-right: 2px !important;
        border-left: 2px solid rgba(255, 255, 255, 0.18) !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    .ilce-baslik-sade {
        font-size: 1.2rem !important;
        margin-bottom: 18px !important;
        color: #ffffff !important;
    }
    .mahalle-2x2-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 14px 6px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .mahalle-sade-link,
    .mahalle-sade-link:link,
    .mahalle-sade-link:visited {
        font-size: 0.85rem !important;
        color: #ffffff !important;
        text-decoration: none !important;
    }
    .mahalle-sade-sublinks a,
    .mahalle-sade-sublinks a:link,
    .mahalle-sade-sublinks a:visited {
        font-size: 0.68rem !important;
        color: rgba(255, 255, 255, 0.7) !important;
        text-decoration: none !important;
    }
}

@media (max-width: 576px) {
    .bolgeler-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .ilce-sutun {
        padding-left: 6px !important;
        padding-right: 1px !important;
        border-left: 1.5px solid rgba(255, 255, 255, 0.2) !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    .ilce-baslik-sade {
        font-size: 0.92rem !important;
        margin-bottom: 10px !important;
        color: #ffffff !important;
    }
    .mahalle-2x2-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px 3px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .mahalle-sade-item {
        min-width: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    .mahalle-sade-link,
    .mahalle-sade-link:link,
    .mahalle-sade-link:visited {
        font-size: 0.7rem !important;
        line-height: 1.25 !important;
        margin-bottom: 2px !important;
        color: #ffffff !important;
        text-decoration: none !important;
        word-break: break-word !important;
    }
    .mahalle-sade-sublinks {
        gap: 3px !important;
    }
    .mahalle-sade-sublinks a,
    .mahalle-sade-sublinks a:link,
    .mahalle-sade-sublinks a:visited {
        font-size: 0.56rem !important;
        color: rgba(255, 255, 255, 0.65) !important;
        text-decoration: none !important;
    }
}

/* Hizmetler Sayfası Mobilde Alt Alta (Tek Sütun) Düzeni */
@media (max-width: 768px) {
    .servis-sutun-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }
    .servis-sutun-kart {
        gap: 15px !important;
    }
    .servis-sutun-sayi {
        font-size: 4rem !important;
        line-height: 0.9 !important;
    }
}

/* ==========================================================================
   22. EK PERFORMANS & CLS ÖNLEYİCİ KURALLAR
   ========================================================================== */

/* Works img aspect-ratio CLS önleme */
.works-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

/* Tüm bağlantı ve buton touch target boyutları (min 44x44px) */
.nav-link,
.footer-links a,
.slayt-nokta,
.slider-kontrol-btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Görsel tembel yükleme için belirgin placeholder */
img[loading="lazy"] {
    background-color: var(--bg-secondary);
}

/* Hero başlığı için clamp tabanlı fluid typography */
.hero-stil-baslik {
    font-size: clamp(2rem, 6vw + 1rem, 7rem);
}

/* Hizmet bölgeleri hero başlık fluid typography */
.hero-stil-baslik[style*="5rem"] {
    font-size: clamp(2rem, 5vw + 1rem, 5rem) !important;
}

/* Hizmet kartları hover efekti touch cihazlarda devre dışı */
@media (hover: none) {
    .servis-kart:hover {
        transform: none;
        box-shadow: none;
    }
    .works-kart:hover {
        transform: none;
    }
}

/* Görünmez dekoratif div'ler için aria-hidden kuralı */
[aria-hidden="true"] {
    pointer-events: none;
    user-select: none;
}

/* Skip link (ekran okuyucular için) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #fff;
    color: #000;
    padding: 8px 16px;
    z-index: 10000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* ==========================================================================
   23. ULTRA PREMİUM INTERSECTION OBSERVER REVEAL & ANİMASYON SİSTEMİ
   ========================================================================== */

/* Fade-Up Yumuşak Görünme */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

/* Scale-Up Görünme (Görseller ve Kartlar İçin) */
.reveal-scale {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

/* Sıralı (Staggered) Gecikmeler */
.servis-sutun-kart:nth-child(1), .works-kart:nth-child(1), .takim-karti:nth-child(1), .secenek-kart:nth-child(1) { transition-delay: 0.04s; }
.servis-sutun-kart:nth-child(2), .works-kart:nth-child(2), .takim-karti:nth-child(2), .secenek-kart:nth-child(2) { transition-delay: 0.12s; }
.servis-sutun-kart:nth-child(3), .works-kart:nth-child(3), .takim-karti:nth-child(3), .secenek-kart:nth-child(3) { transition-delay: 0.20s; }
.servis-sutun-kart:nth-child(4), .works-kart:nth-child(4), .takim-karti:nth-child(4), .secenek-kart:nth-child(4) { transition-delay: 0.28s; }
.servis-sutun-kart:nth-child(5), .works-kart:nth-child(5), .takim-karti:nth-child(5) { transition-delay: 0.36s; }
.servis-sutun-kart:nth-child(6), .works-kart:nth-child(6), .takim-karti:nth-child(6) { transition-delay: 0.44s; }

/* Buton ve Kart Hover Mikro Etkileşimleri */
.btn-neon, .btn-neon-outline, .watch-video-btn {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}

.btn-neon:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 240, 255, 0.35), 0 0 15px rgba(255, 0, 128, 0.25);
}

.btn-neon-outline:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 240, 255, 0.2);
    border-color: rgba(0, 240, 255, 0.8) !important;
}

/* Akıcı Doğal Kaydırma Güvencesi */
html {
    scroll-behavior: smooth;
}
