/* ---------------------------------------------------
       2. HİZMETLER (KARTLAR) MOBİLDE ALT ALTA DİZİLİR
       (Yatay kaydırma iptal edildi, dikey ve temiz görünüm)
       --------------------------------------------------- */
@media screen and (max-width: 991px) {

    .horizontal-snap-section {
        height: auto !important; /* JS'in verdiği devasa yüksekliği iptal et */
        padding: 50px 0 !important;
    }

    .sticky-wrapper {
        position: relative !important; /* Ekrana yapışmayı bırak */
        height: auto !important;
        overflow: visible !important;
    }

    .horizontal-scroll-container {
        display: flex !important;
        flex-direction: column !important; /* KARTLARI YAN YANA DEĞİL, ALT ALTA DİZ */
        gap: 40px !important; /* Kartlar arası dikey boşluk */
        padding: 0 20px !important;
        transform: none !important; /* JS'in sağa kaydırma animasyonunu zorla durdur */
        align-items: center !important;
    }

    .h-card-wrapper {
        min-width: 100% !important; /* Kart ekranı tam kaplasın */
        width: 100% !important;
        height: auto !important;
        min-height: 450px !important; /* Yüksekliği içeriğe göre esnet */
        margin: 0 !important;
        transform: none !important; 
    }

    .h-card-content {
        padding: 30px 20px !important;
    }

    /* 3D İkonu Mobilde Dengeli Tut */
    .h-product-3d {
        width: 130px !important; 
        top: -15px !important;
        right: -5px !important;
        transform: translateZ(20px) !important; /* Mobilde çok fırlamasın */
    }
}

/* --- 4. SİSTEM AKTİF YAZISINI KÖKTEN YOK ETME KODU --- */
.h-status-indicator {
    display: none !important;
}

/* Temel Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Videolu Giriş Alanı */
.hero-section {
    position: relative;
    height: 100vh; /* Tam ekran yüksekliği */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -2;
    object-fit: cover;
    filter: brightness(1.08) contrast(1.08) saturate(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.42); /* Siyah transparan katman */
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-title span {
    color: #e63946; /* Yangın kırmızısı vurgu */
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #f1faee;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e63946;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.hero-btn:hover {
    background-color: #d62828;
}
/* --- HEADER VE MENÜ TASARIMI --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease; /* Pürüzsüz geçiş */
}

/* Sayfa aşağı kayınca menüye eklenecek sınıf */
#main-header.scrolled {
    background-color: rgba(15, 15, 15, 0.95);
    padding: 15px 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo span {
    color: #e63946; /* Kırmızı vurgu */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #e63946;
}

.nav-btn {
    border: 2px solid #e63946;
    padding: 8px 20px;
    border-radius: 5px;
}

.nav-btn:hover {
    background-color: #e63946;
    color: white !important;
}

/* --- HAKKIMIZDA BÖLÜMÜ TASARIMI --- */
.about-section {
    background-color: #111; /* Koyu, asil bir arka plan */
    color: white;
    padding: 120px 50px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-title span {
    color: #e63946;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
}

.about-stats {
    flex: 1;
    display: flex;
    gap: 30px;
}

.stat-box {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border-bottom: 4px solid #e63946;
    flex: 1;
}

.stat-box h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
}

.stat-box p {
    color: #888;
    font-size: 1rem;
    font-weight: 600;
}
/* --- İNTERAKTİF HİZMETLER BÖLÜMÜ --- */
.services-interactive {
    background-color: #0a0a0a;
    padding: 100px 50px;
    text-align: center;
    color: white;
}

.services-header {
    margin-bottom: 50px;
}

.interactive-map-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.1);
}

.map-bg {
    width: 100%;
    display: block;
    opacity: 0.6; /* Resmi biraz karartıyoruz ki noktalar öne çıksın */
    transition: opacity 0.5s ease;
}

.interactive-map-container:hover .map-bg {
    opacity: 0.4;
}

/* Yanıp Sönen Noktalar (Hotspots) */
.hotspot {
    position: absolute;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hotspot-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    background-color: #e63946;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.8);
    transition: transform 0.3s ease;
}

.hotspot:hover .hotspot-dot {
    transform: translate(-50%, -50%) scale(1.3);
}

.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(230, 57, 70, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Bilgi Kartı (Tıklanınca Çıkan Kutu) */
.info-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 10px;
    width: 350px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.info-card.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.info-card h3 {
    color: #e63946;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.close-btn {
    background: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.close-btn:hover {
    background: white;
    color: black;
}
/* --- İLETİŞİM BÖLÜMÜ TASARIMI --- */
.contact-section {
    background-color: #111;
    padding: 100px 50px;
    color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info p {
    color: #bbb;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-list {
    list-style: none;
}

.info-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #eee;
}

.info-list li strong {
    color: #e63946;
}

.contact-form {
    flex: 1;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #222;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: #e63946;
}

/* --- FOOTER --- */
.site-footer {
    background-color: #050505;
    text-align: center;
    padding: 20px;
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid #222;
}
/* --- YATAY KAYDIRMA VİTRİNİ TASARIMI --- */
.horizontal-scroll-section {
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Dışarı taşan panelleri gizle */
    background-color: #050505;
}


.horizontal-panel {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-right: 2px solid rgba(230, 57, 70, 0.2);
}

.panel-content {
    text-align: center;
    max-width: 700px;
    padding: 50px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px); /* Cam efekti (Glassmorphism) */
    transform: translateY(100px); /* Animasyon için başlangıçta aşağıda */
    opacity: 0; /* Animasyon için başlangıçta görünmez */
}

.panel-content h3 {
    font-size: 3.5rem;
    color: #e63946;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.panel-content p {
    font-size: 1.3rem;
    color: #f1f1f1;
    line-height: 1.7;
}


.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #050505;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-content { text-align: center; }

.loader-logo {
    color: white;
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 5px;
    margin-bottom: 20px;
}
.loader-logo span { color: #e63946; }

.loader-bar-container {
    width: 300px; height: 4px; background-color: #222;
    margin: 0 auto 15px auto; border-radius: 2px; overflow: hidden;
}

.loader-bar {
    width: 0%; height: 100%; background-color: #e63946;
    box-shadow: 0 0 10px #e63946;
}

.loader-text {
    color: #888; font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase;
}
/* --- REFERANSLAR (MARQUEE) TASARIMI --- */
.clients-section {
    background-color: #0a0a0a;
    padding: 80px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    text-align: center;
    color: white; /* Siyah yazıyı beyaza çeviren hayat kurtarıcı satır */
}

.clients-header {
    margin-bottom: 40px;
}

.marquee-container {
    width: 100%;
    overflow: hidden; /* Dışarı taşan logoları gizle */
    position: relative;
    white-space: nowrap;
}

/* Sağdan ve soldan hafif karartma efekti (Logolar sanki karanlıktan çıkıp karanlığa giriyor gibi) */
.marquee-container::before, .marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}

.marquee-track {
    display: inline-flex;
    gap: 50px; /* Logolar arası boşluk */
    animation: scrollMarquee 20s linear infinite; /* 20 saniyede bir tur, hiç durmadan */
}

/* Üzerine gelince animasyonu durdurma (Kullanıcı incelemek isterse) */
.marquee-track:hover {
    animation-play-state: paused;
}

.client-logo {
    width: 200px; /* Logoların genişliği */
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%) opacity(0.5); /* Logoları siyah beyaz ve soluk yap */
    transition: all 0.4s ease;
    cursor: pointer;
}

/* Logoya mouse ile gelince renklenip parlaması */
.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Sonsuz Kaydırma Animasyon Karesi */
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* İçeriği 2 kere kopyaladığımız için yarısına kadar kayması yeterli */
}
/* --- BLOG BÖLÜMÜ TASARIMI --- */
.blog-section {
    background-color: #111;
    padding: 100px 50px;
    color: white;
    text-align: center;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-card {
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #222;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.15);
    border-color: #e63946;
}

.blog-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid #e63946;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #e63946;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.blog-content p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: #e63946;
}


.fixed-title {
    position: absolute;
    top: 60px;
    left: 50px;
    z-index: 10;
    color: white;
}
 
.fixed-title h2 { text-transform: uppercase; letter-spacing: 2px; }
 
 
 
.service-card-3d {
    width: 90%; height: 100%;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #222;
    transition: all 0.5s ease-out;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    display: flex; flex-direction: column;
}


.card-image {
    width: 100%; height: 60%;
    background-size: cover; background-position: center;
    border-bottom: 3px solid #e63946;
}

.card-info {
    padding: 30px;
    color: white;
    text-align: center;
    display: flex; flex-direction: column; justify-content: center; align-items: center; height: 40%;
}

.card-info h3 {
    font-size: 2.2rem; margin-bottom: 15px;
    text-transform: uppercase; color: white; text-shadow: 0 2px 10px black;
}

.card-info p {
    color: #bbb; font-size: 1.1rem; line-height: 1.6;
    max-width: 80%; margin-bottom: 20px;
    white-space: normal; /* Yazıların taşmasını engelle */
}
/* --- ACİL DURUM ALEVLİ İMLEÇ CSS --- */
body, a, button, .h-card, .blog-card, .hotspot {
    cursor: none !important; /* Standart fareyi gizle */
}

@media (hover: none), (pointer: coarse) {
    body, a, button, .h-card, .blog-card, .hotspot {
        cursor: auto !important;
    }

    #fireCursor,
    .fire-particle {
        display: none !important;
    }
}

#fireCursor {
    position: fixed;
    width: 15px; /* Biraz büyüttüm ki fark et */
    height: 15px;
    background: #ff4500;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999999 !important; /* En üst katman */
    box-shadow: 0 0 20px #ff4500, 0 0 40px #ff0000;
    transform: translate(-50%, -50%); /* Tam merkezleme */
    display: block !important; /* Gizli kalmasın */
    left: -100px; /* Sayfa ilk açıldığında kenarda beklesin */
}
.fire-particle {
    position: fixed;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999998;
    filter: blur(1px);
    animation: fire-decay 0.7s forwards;
}

@keyframes fire-decay {
    0% { transform: scale(1.5) translateY(0); opacity: 1; }
    100% { transform: scale(0) translateY(-30px); opacity: 0; }
}

.cursor-hover .fire-cursor {
    transform: scale(3);
    background: #fff;
    box-shadow: 0 0 20px #fff, 0 0 40px #ff4500;
}
/* --- SİSTEM AKTİF IŞIĞI --- */
.h-status-indicator {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid rgba(230, 57, 70, 0.2);
    z-index: 15;
    backdrop-filter: blur(5px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #e63946;
    border-radius: 50%;
    box-shadow: 0 0 10px #e63946;
    animation: h-pulse-red 1.5s infinite ease-in-out;
}

@keyframes h-pulse-red {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.7); }
    70% { transform: scale(1.3); opacity: 0.5; box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(230, 57, 70, 0); }
}

.status-text {
    font-size: 0.75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
/* style.css dosyanın sonuna ekle */
.h-status-indicator {
    display: none !important;
}
/* --- 1. ARKA PLAN FOTOĞRAFLARI (HİZMET GÖRSELLERİ) --- */
.h-card-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 40px !important; /* Kartın köşeleriyle aynı olmalı ki taşmasın */
    z-index: 1 !important; /* En alt katmanda duracak */
    opacity: 0.5 !important; /* Karanlık efekt ki beyaz yazılar net okunsun */
}

/* --- 2. YAZILAR VE BUTON ALANI --- */
.h-card-content {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 5 !important; /* Arka plan resminin üstünde duracak */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 40px !important;
    box-sizing: border-box !important;
    pointer-events: none !important; /* Boşluğa fare tıklamasını engelle */
}

/* --- 3. KAYBOLAN BUTONU GERİ GETİRME --- */
.h-card-content .h-detail-btn,
.h-card-content a {
    position: relative !important;
    z-index: 20 !important; /* Her şeyin üstünde olsun */
    pointer-events: auto !important; /* TIKLANABİLİR OLSUN! */
    display: inline-block !important;
    margin-top: 15px !important; /* Yazıyla arasına biraz boşluk */
}

/* --- 4. 3D İKON KATMANI (Bunu önceden yapmıştık, teyit et) --- */
.h-product-3d {
    z-index: 30 !important; /* En üstte, her şeyden bağımsız */
}
/* --- YATAY KAYDIRMA ALANI BAŞLIK AYDINLATMASI --- */
.horizontal-title h2.section-title {
    color: #ffffff !important; /* "Uzman" kelimesini bembeyaz yapıyoruz */
    text-shadow: 0 5px 15px rgba(0,0,0,0.5) !important; /* Yazıya derinlik katar */
}

.horizontal-title h2.section-title span {
    color: #e63946 !important; /* "Çözümlerimiz" kelimesi senin marka kırmızında kalıyor */
}

.horizontal-title p {
    color: #cccccc !important; /* Altındaki açıklama yazısını şık bir açık gri yaptık */
    font-size: 1.1rem !important; /* Okunabilirliği artırmak için çok hafif büyüttük */
    opacity: 0.9 !important;
}
/* --- YAZILARI BEYAZ VE OKUNUR YAPMA KODLARI --- */
.h-text h3 {
    color: #ffffff !important;
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
}

.h-text p {
    color: #cccccc !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
}

.h-number {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 1.2rem !important;
    font-weight: bold !important;
    margin-bottom: 10px !important;
    display: block !important;
}

/* --- MAVİ LİNKİ TEKRAR KIRMIZI EFSANE BUTONA ÇEVİRME KODU --- */
.h-detail-btn {
    display: inline-block !important;
    background-color: #e63946 !important; /* Kan kırmızısı */
    color: #ffffff !important;
    padding: 10px 25px !important;
    border-radius: 30px !important;
    text-decoration: none !important; /* Alt çizgiyi kaldır */
    font-weight: bold !important;
    font-size: 0.85rem !important;
    pointer-events: auto !important; /* TIKLANABİLSİN */
    transition: background 0.3s ease !important;
    width: max-content !important; /* Sadece yazı kadar yer kaplasın */
    border: none !important;
}

.h-detail-btn:hover {
    background-color: #b02a37 !important;
}

/* --- YAZILARIN ARKASINA KARANLIK DESTEĞİ (GARANTİ OKUNABİLİRLİK) --- */
.h-card-content {
    /* Arka plana ne resim koyarsan koy, yazılar okunsun diye alttan siyah gölge veriyoruz */
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, transparent 100%) !important;
    border-radius: 40px !important; /* Kartın köşeleriyle uyumlu olsun */
}
/* --- ALEVLİ İMLEÇ KESİN ÇÖZÜM (EKRANA SABİTLEME) --- */
#fireCursor {
    position: fixed !important; /* GİZLİ KAHRAMAN BU: absolute yerine fixed yapıyoruz! */
    z-index: 2147483647 !important; /* CSS'in desteklediği maksimum sınır. Bunu hiçbir şey geçemez. */
    pointer-events: none !important;
    /* İmlecin tam ucuna denk gelmesi için ince ayar */
    transform: translate(-50%, -50%); 
}

.fire-particle {
    position: fixed !important; /* Kıvılcımlar da seninle gelsin */
    z-index: 2147483646 !important;
    pointer-events: none !important;
}

/* SİGORTA KODU: Blog penceresinin (Modal) içine girince normal faren de garanti olarak geri gelsin */
#infoCard, 
.info-card, 
.blog-modal {
    cursor: default !important; 
}

#infoCard a, 
#infoCard button {
    cursor: pointer !important; /* Butonların üzerinde el işareti çıksın */
}
/* --- HERO İNTRO VİDEOSU (KARANLIK VE TAM EKRAN) --- */
#hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Ekranı sündürmeden kaplar */
    z-index: -2 !important; /* En arkada durur */
    filter: brightness(0.4) !important; /* Yazılar parlasın diye videoyu biraz karartır */
}
/* --- HERO METİN TASARIMI (HAVALI VE DİKKAT ÇEKİCİ) --- */

/* 1. ANA BAŞLIK (Endüstriyel Güvenlikte Yeni Standart) */
.article-title {
    font-family: 'Oswald', sans-serif !important; /* Daha kalın ve modern bir yazı tipi */
    font-size: 5.5rem !important; /* Devasa ama elit bir boyut */
    text-transform: uppercase !important; /* Hepsi büyük harf */
    background: linear-gradient(135deg, #ffffff 30%, #444444 100%) !important; /* Metin gradyanı: Beyazdan koyu griye */
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6) !important; /* Derinlik */
    letter-spacing: -2px !important; /* Harfleri biraz sıkıştırdık, daha agresif duruyor */
}

/* 2. ALT BAŞLIK (Oteller, Fabrikalar...) */
.article-body p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.1rem !important; /* Çok hafif büyük */
    color: #cccccc !important; /* Daha açık gri */
    text-transform: uppercase !important; /* Hepsi büyük harf */
    letter-spacing: 1px !important;
    line-height: 1.6 !important;
    opacity: 0.9 !important;
    margin-bottom: 40px !important; /* Butonla arasına boşluk */
}

/* 3. BUTON (Projeye Başla) - CAZİP VE HAREKETLİ */
.h-detail-btn {
    font-family: 'Montserrat', sans-serif !important;
    background: linear-gradient(135deg, #e63946 0%, #b02a37 100%) !important; /* Kırmızı gradyan */
    color: #ffffff !important;
    padding: 15px 35px !important;
    border-radius: 50px !important; /* Daha yuvarlak */
    text-transform: uppercase !important; /* Hepsi büyük harf */
    font-weight: 900 !important;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4) !important;
    animation: pulseButton 2s infinite !important; /* Nabız animasyonu */
    text-decoration: none !important;
    font-size: 0.9rem !important;
    border: none !important;
}

/* Nabız animasyonu tanımı */
@keyframes pulseButton {
    0% { box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4); }
    50% { box-shadow: 0 15px 35px rgba(230, 57, 70, 0.7); }
    100% { box-shadow: 0 10px 25px rgba(230, 57, 70, 0.4); }
}
/* --- BAŞLIKTAKİ LOGO AYARLARI (HEYBETLİ GÜNCELLEME) --- */
.logo img {
    height: 95px !important; /* 60px'ten 95px'e çıkardık, artık tam bir patron logosu oldu */
    width: auto !important; 
    display: block !important; 
    filter: drop-shadow(0 5px 10px rgba(255, 255, 255, 0.2)) !important;
    transition: transform 0.3s ease !important; /* Büyüme efekti için hazırlık */
}

/* Fareyle logoya dokununca hafifçe öne çıksın (Premium His) */
.logo img:hover {
    transform: scale(1.05) !important;
    filter: drop-shadow(0 8px 15px rgba(230, 57, 70, 0.4)) !important; /* Kırmızımsı bir parlama */
}
/* --- EFSANE KURUMSAL ALAN TASARIMI --- */
.h-premium-about {
    padding: 100px 5% !important;
    background: linear-gradient(to bottom, #050505, #0f0f0f) !important;
    color: white !important;
    overflow: hidden !important;
}

.h-about-container {
    max-width: 1250px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 60px !important;
    align-items: center !important;
}

.h-about-text {
    flex: 1 !important;
    min-width: 320px !important;
}

.h-about-text h2 {
    font-family: 'Oswald', sans-serif !important;
    font-size: 3.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    text-transform: uppercase !important;
}

.h-about-text .red-glow {
    color: #e63946 !important;
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.6) !important; /* Etrafa kan kırmızısı alev yayar */
}

.h-about-text p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.15rem !important;
    color: #aaaaaa !important;
    line-height: 1.7 !important;
    margin-bottom: 35px !important;
}

.h-about-btn {
    display: inline-block !important;
    padding: 15px 40px !important;
    background: transparent !important;
    color: #e63946 !important;
    border: 2px solid #e63946 !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.4s ease !important;
}

.h-about-btn:hover {
    background: #e63946 !important;
    color: white !important;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.5) !important;
    transform: translateY(-3px) !important;
}

/* KARTLARIN TASARIMI */
.h-about-stats {
    flex: 1 !important;
    min-width: 320px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* 2x2 Kutu yapar */
    gap: 25px !important;
}

.h-stat-card {
    background: rgba(20, 20, 20, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-bottom: 4px solid #e63946 !important; /* Altında kırmızı jilet çizgi */
    padding: 35px 20px !important;
    border-radius: 15px !important;
    text-align: center !important;
    transition: transform 0.4s, box-shadow 0.4s !important;
    backdrop-filter: blur(10px) !important; /* Arkasını hafif bulanık yapar */
}

.h-stat-card:hover {
    transform: translateY(-10px) !important; /* Fareyle gelince havaya kalkar */
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.25) !important;
    border-color: rgba(230, 57, 70, 0.6) !important;
}

.stat-icon {
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.5)) !important;
}

.stat-number-wrap {
    font-size: 3rem !important;
    font-weight: 900 !important;
    color: white !important;
    font-family: 'Oswald', sans-serif !important;
    margin-bottom: 5px !important;
}

.count-up {
    color: #e63946 !important;
}

.stat-text {
    font-size: 0.95rem !important;
    color: #888888 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-weight: bold !important;
}

/* --- INTERAKTIF MODELLEME STIL PAKETI --- */
.yn-modelleme-alani {
    background: #050505 !important;
    padding: 100px 0 !important;
}

.yn-genis-container {
    max-width: 1400px !important; /* Görseli büyüttük Patron */
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Başlık Tasarımı */
.yn-baslik-wrap {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.yn-baslik-wrap h2 {
    font-family: 'Oswald', sans-serif !important;
    color: #e63946 !important;
    font-size: 2.5rem !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.5) !important;
}

.yn-baslik-wrap .white-text {
    color: #ffffff !important;
}

/* Harita ve Görsel */
.yn-map-wrapper {
    position: relative !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8) !important;
    border: 2px solid #1a1a1a !important;
    width: 100% !important;
}

.yn-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* YANIP SÖNEN SİNYAL NOKTALARI */
.yn-dot {
    position: absolute !important;
    width: 20px !important;
    height: 20px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s ease !important;
}

/* Radar Sinyali */
.yn-dot::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    height: 100% !important;
    border: 3px solid #ffffff !important;
    border-radius: 50% !important;
    animation: ynSignalPulse 1.8s infinite !important;
}

@keyframes ynSignalPulse {
    0% { width: 100%; height: 100%; opacity: 1; }
    100% { width: 450%; height: 450%; opacity: 0; }
}

/* Üzerine Gelince Nokta Kızarır */
.yn-dot:hover {
    background: #e63946 !important;
    transform: translate(-50%, -50%) scale(1.3) !important;
    box-shadow: 0 0 25px rgba(230, 57, 70, 1) !important;
}

/* BEYAZ BILGI PENCERESI (TOOLTIP) */
.yn-hint {
    position: absolute !important;
    bottom: 180% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(10px) !important;
    background: #ffffff !important;
    color: #111 !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    z-index: 30 !important;
}

/* Masaüstünde hover ile göster */
@media (hover: hover) and (pointer: fine) {
    .yn-dot:hover .yn-hint {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
    }
}

/* Tıklayınca (PC + mobil) göster: mobilde ayrıca fixed modal override geliyor */
.yn-dot.active .yn-hint {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Ok İşareti */
.yn-hint::after {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    border-width: 8px !important;
    border-style: solid !important;
    border-color: #ffffff transparent transparent transparent !important;
}

@media screen and (max-width: 991px) {
    .yn-modelleme-alani { padding: 60px 0 !important; }
    .yn-genis-container { padding: 0 !important; }

    .yn-baslik-wrap { margin-bottom: 25px !important; }
    .yn-baslik-wrap h2 { font-size: 1.6rem !important; line-height: 1.2 !important; }

    .yn-map-wrapper {
        border-radius: 12px !important;
        overflow: visible !important;
        width: 100vw !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
    }

    .yn-dot {
        width: 28px !important;
        height: 28px !important;
    }

    .yn-hint {
        white-space: normal !important;
        width: min(320px, calc(100vw - 48px)) !important;
        text-align: center !important;
        padding: 10px 12px !important;
        font-size: 15px !important;
        line-height: 1.35 !important;
        word-break: break-word !important;
        overflow-wrap: anywhere !important;
        hyphens: auto !important;
    }

    .yn-dot:hover .yn-hint {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(-50%) translateY(10px) !important;
    }

    .yn-dot.active .yn-hint {
        position: fixed !important;
        left: 50% !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 60vh !important;
        overflow: auto !important;
        padding: 20px !important;
    }
}

@media (hover: none), (pointer: coarse) {
    .yn-dot:hover .yn-hint {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(-50%) translateY(10px) !important;
    }
}

/* --- PREMİUM HAKKIMIZDA TASARIMI --- */
.yn-about-premium {
    padding: 120px 0 !important;
    background: #080808 !important; /* Daha derin bir siyah */
    position: relative !important;
    overflow: hidden !important;
}

/* Arka plana hafif bir kırmızı sis ekleyelim */
.yn-about-premium::before {
    content: '' !important;
    position: absolute !important;
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%) !important;
    top: -100px !important;
    right: -100px !important;
}

.yn-container {
    max-width: 1250px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.yn-about-grid {
    display: flex !important;
    align-items: center !important;
    gap: 80px !important;
    flex-wrap: wrap !important;
}

.yn-content-side { flex: 1 !important; min-width: 350px !important; }

.yn-badge {
    color: #e63946 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 3px !important;
    margin-bottom: 20px !important;
    border-left: 3px solid #e63946 !important;
    padding-left: 15px !important;
}

.yn-main-title {
    font-family: 'Oswald', sans-serif !important;
    font-size: 3.5rem !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin-bottom: 30px !important;
}

.yn-main-title span { color: #e63946 !important; }

.yn-description {
    font-size: 1.1rem !important;
    color: #999 !important;
    line-height: 1.8 !important;
    margin-bottom: 40px !important;
}

/* KARTLARIN OLDUĞU IZGARA */
.yn-stats-grid {
    flex: 1 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
}

.yn-stat-box {
    background: rgba(255, 255, 255, 0.03) !important; /* Cam etkisi */
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
}

/* Kırmızı Vurgulu Kart */
.yn-stat-box.accent {
    border-color: rgba(230, 57, 70, 0.3) !important;
    background: linear-gradient(145deg, rgba(230, 57, 70, 0.05) 0%, rgba(0,0,0,0) 100%) !important;
}

.yn-stat-box:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: #e63946 !important;
}

.yn-icon-wrap {
    font-size: 28px !important;
    color: #e63946 !important;
    margin-bottom: 20px !important;
    opacity: 0.8 !important;
}

.yn-num {
    font-family: 'Oswald', sans-serif !important;
    font-size: 3rem !important;
    color: #fff !important;
    font-weight: 700 !important;
    margin-bottom: 10px !important;
}

.yn-lab {
    font-size: 14px !important;
    color: #666 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
}

/* BUTON TASARIMI */
.yn-btn-primary {
    display: inline-block !important;
    padding: 18px 45px !important;
    background: #e63946 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    border-radius: 5px !important;
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3) !important;
    transition: 0.3s !important;
}

.yn-btn-primary:hover {
    background: #fff !important;
    color: #e63946 !important;
    transform: translateY(-2px) !important;
}

    .service-card {
        display: flex !important; /* İkon ve metni yan yana getir */
        align-items: center !important;
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 20px !important; /* Kartlar arasına boşluk koy */
        padding: 15px !important;
        background: #1a1a1a !important; /* Hafif arka plan */
        border-radius: 8px !important;
    }

    .service-icon {
        width: 50px !important; /* Mobilde ikon boyutunu sabitle */
        height: 50px !important;
        margin-right: 15px !important; /* Metinle ikon arasına boşluk */
        margin-bottom: 0 !important; /* Alt boşluğu sıfırla */
    }

    .service-content {
        flex: 1 !important; /* Metni geri kalan alana yay */
        text-align: left !important; /* Metni sola hizala */
    }

    /* =========================================
       REFERANSLAR MOBİL TASARIMI (2 Sütunlu Grid)
       ========================================= */
    .references-container {
        display: grid !important; /* Grid yapısını kullan */
        grid-template-columns: repeat(2, 1fr) !important; /* Tam olarak yan yana 2 sütun yap */
        gap: 15px !important; /* Logolar arasına boşluk */
    }

    .reference-item {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
        background: #1a1a1a !important; /* Logo arka plan kartı */
        padding: 10px !important;
        border-radius: 5px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .reference-logo {
        max-width: 100% !important; /* Logonun kutudan taşmasını engelle */
        height: auto !important;
    }

    /* =========================================
   GLOBAL MOBİL GÜVENLİK ZIRHI (Yatay Kaydırmayı Bitirir)
   ========================================= */
html, body {
    max-width: 100% !important;
    overflow-x: hidden !important; /* Sağa kaymayı zorla kapat */
    width: 100%;
}

.service-icon {
width: 50px !important; /* Mobilde ikon boyutunu sabitle */
height: 50px !important;
margin-right: 15px !important; /* Metinle ikon arasına boşluk */
margin-bottom: 0 !important; /* Alt boşluğu sıfırla */
}

.service-content {
flex: 1 !important; /* Metni geri kalan alana yay */
text-align: left !important; /* Metni sola hizala */
}

/* =========================================
REFERANSLAR MOBİL TASARIMI (2 Sütunlu Grid)
========================================= */
.references-container {
display: grid !important; /* Grid yapısını kullan */
grid-template-columns: repeat(2, 1fr) !important; /* Tam olarak yan yana 2 sütun yap */
gap: 15px !important; /* Logolar arasına boşluk */
}

.reference-item {
width: 100% !important;
margin-right: 0 !important;
margin-bottom: 0 !important;
background: #1a1a1a !important; /* Logo arka plan kartı */
padding: 10px !important;
border-radius: 5px !important;
display: flex !important;
justify-content: center !important;
align-items: center !important;
}

.reference-logo {
max-width: 100% !important; /* Logonun kutudan taşmasını engelle */
height: auto !important;
}

/* =========================================
GLOBAL MOBİL GÜVENLİK ZIRHI (Yatay Kaydırmayı Bitirir)
========================================= */
html, body {
max-width: 100% !important;
overflow-x: hidden !important; /* Sağa kaymayı zorla kapat */
width: 100%;
}

* {
box-sizing: border-box !important; /* Padding ve borderlar genişliğe dahil olsun kanka, taşmasın */
}

img, video, embed, iframe {
max-width: 100% !important; /* Resimler ekrandan taşmasın */
height: auto !important;
}

.yn-toast {
position: fixed;
top: 18px;
left: 50%;
transform: translateX(-50%) translateY(-140%);
z-index: 2147483000;
width: max-content;
min-width: 260px;
max-width: min(520px, calc(100vw - 32px));
border-radius: 16px;
padding: 14px 16px;
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
box-shadow: 0 18px 45px rgba(0,0,0,0.55);
border: 1px solid rgba(255,255,255,0.10);
background: rgba(10,10,10,0.70);
transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
opacity: 0;
}

.yn-toast::before {
content: '';
position: absolute;
inset: -2px;
border-radius: 18px;
background: radial-gradient(120% 120% at 0% 0%, rgba(230,57,70,0.35) 0%, rgba(230,57,70,0.00) 55%),
          radial-gradient(120% 120% at 100% 100%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.00) 60%);
filter: blur(10px);
z-index: -1;
}

.yn-toast-inner {
color: #eaeaea;
font-weight: 700;
letter-spacing: 0.2px;
line-height: 1.35;
font-size: 14px;
display: flex;
align-items: center;
gap: 10px;
}

.yn-toast-inner::before {
content: '';
width: 10px;
height: 10px;
border-radius: 999px;
background: #e63946;
box-shadow: 0 0 0 4px rgba(230,57,70,0.12);
flex: 0 0 auto;
}

.yn-toast.yn-toast-success {
border-color: rgba(46, 204, 113, 0.35);
}
.yn-toast.yn-toast-success .yn-toast-inner::before {
background: #2ecc71;
box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.14);
}

.yn-toast.yn-toast-error {
border-color: rgba(230, 57, 70, 0.45);
}

@media (prefers-reduced-motion: reduce) {
.yn-toast {
transition: none;
}
}

@media screen and (max-width: 480px) {
.yn-toast {
min-width: 0;
width: calc(100vw - 24px);
}
}
    .hizmet-kutu {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 20px !important; /* Aralarına boşluk */
        float: none !important; /* Float varsa iptal */
    }

    /* --- SORUN 3: MAKALEYİ İNCELE VE BAŞLIKLAR İÇ İÇE GİRMİŞ (overlapping) --- */
    h1, h2, h3, h4, .main-title, .sub-title {
        font-size: 1.4rem !important; /* Başlık boyutunu küçült */
        line-height: 1.3 !important; /* Aralarını aç */
        margin-bottom: 10px !important;
        position: static !important; /* Absolute varsa iptal, static yap */
        top: auto !important;
        left: auto !important;
    }

    .btn-read-more, 
    .makale-oku, 
    .incele-btn,
    .btn-main { /* Butonlar */
        display: block !important;
        width: 100% !important;
        margin: 10px auto !important;
        text-align: center;
        position: static !important; /* Absolute varsa iptal */
    }

    /* --- SORUN 4: 3D MODELLEME/BLOG OKUMA SAYFASI DARALMIŞ (Kutu dar kalmış) --- */
    /* Muhtemelen .content-area, .blog-read, #ana-icerik gibi bir sınıfın var */
    .content-area, 
    .blog-read, 
    .single-page-content,
    #ana-icerik {
        width: 100% !important; /* Dar kalmasını engelle, tam ekran yap */
        max-width: 100% !important;
        padding: 15px !important;
        margin: 0 !important;
    }

    /* Eğer sidebar varsa mobilde alt alta getir */
    .main-content {
        display: block !important;
    }

    .sidebar {
        width: 100% !important;
        margin-top: 20px !important;
        position: static !important;
    }

/* ==========================================================================
   📱 YANGINEXT MASTER MOBİL ZIRHI (ÖZEL ÇÖZÜM)
   Bu kod masaüstünü asla etkilemez, sadece 768px altı cihazlarda çalışır.
   ========================================================================== */

/* 1. SİTENİN SAĞA SOLA YALPALAMASINI KESİN OLARAK DURDURAN ZIRH */
html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important; /* Sağa kaymayı zorla kapat */
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

* {
    box-sizing: border-box !important;
}

@media screen and (max-width: 768px) {
    
    /* ---------------------------------------------------
       1. GENEL BOŞLUKLAR (PADDING) VE YAZI BOYUTLARI
       (100px paddingleri telefona göre daralttık)
       --------------------------------------------------- */
    .hero-title, .article-title, .yn-main-title { font-size: 2.2rem !important; line-height: 1.2 !important; letter-spacing: 0 !important; }
    .hero-subtitle, .about-text p, .h-text p { font-size: 1rem !important; }
    .section-title, .panel-content h3 { font-size: 2rem !important; }
    
    .about-section, .services-interactive, .contact-section, .blog-section, .yn-about-premium, .yn-modelleme-alani {
        padding: 60px 20px !important; /* Yanlardaki 50px boşluğu 20px'e düşürdük */
    }

    /* ==========================================================================
    📱 HİZMETLER BÖLÜMÜ ÖZEL MOBİL TASARIMI (MOBILE-APP STYLE)
    Masaüstündeki 3D ve yatay kaydırmayı mobilde tamamen iptal eder.
    ========================================================================== */
    
    /* 1. KAPSAYICIYI DÜZELT (JS İnadını Kırıyoruz) */
    .horizontal-snap-section {
        height: auto !important;
        padding: 50px 0 !important;
        background: #050505 !important;
    }

    .sticky-wrapper {
        position: static !important; /* Ekrana yapışmayı bırak */
        height: auto !important;
        overflow: visible !important;
    }

    .horizontal-scroll-container {
        display: flex !important;
        flex-direction: column !important; /* YAN YANA DEĞİL, ALT ALTA DİZ */
        gap: 30px !important; /* Kartlar arası boşluk */
        padding: 0 20px !important;
        transform: none !important; /* JS'in sağa kaydırma animasyonunu ZORLA DURDUR */
        width: 100% !important;
    }

    /* 2. KARTLARI TAM EKRAN VE DÜZ (2D) YAP */
    .h-card-wrapper {
        min-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 400px !important; /* Telefondaki ideal kart yüksekliği */
        margin: 0 !important;
        perspective: none !important; /* 3D KÜÇÜLME HATASINI KÖKTEN ÇÖZDÜK */
        transform: none !important;
    }

    .h-card {
        border-radius: 20px !important; /* Mobilde çok yuvarlak olmasın */
        transform: none !important; /* Hover efektlerini mobilde iptal et */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
    }

    /* 3. 3D İKONU KÖŞEYE SABİT BİR ROZET GİBİ KOY */
    .h-product-3d {
        width: 120px !important; /* Büyüklüğü sabitledik */
        top: 15px !important;
        right: 15px !important;
        transform: none !important; /* Z ekseninden çıkar, düzelt */
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.8)) !important;
    }

    /* 4. YAZI ALANINI VE BUTONU MOBİLE UYARLA */
    .h-card-content {
        position: relative !important;
        padding: 30px 20px 20px 20px !important;
        height: auto !important;
        /* Yazılar net okunsun diye alt tarafı simsiyah yapıyoruz */
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 60%, transparent 100%) !important;
    }

    .h-text h3 {
        font-size: 1.5rem !important; /* Başlık mobilde netleşti */
    }

    .h-text p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }

    .h-detail-btn {
        width: 100% !important; /* Buton ekranı tam kaplasın (Kolay tıklanır) */
        text-align: center !important;
        padding: 15px !important;
        font-size: 1rem !important;
        border-radius: 10px !important; /* Daha modern karemsi buton */
    }
}
/* ==========================================================================
   🚫 MOBİL YATAY KAYDIRMA (YALPALAMA) KİLİDİ - KESİN ÇÖZÜM
   ========================================================================== */

/* 1. TARAYICI SEVİYESİNDE ZORUNLU KİLİT */
html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important; /* X eksenini (yatay) tamamen yok et */
    position: relative !important;
    overscroll-behavior-x: none !important; /* iOS/iPhone'larda ekranın yanlardan sekmesini engeller */
}

/* 2. JAVASCRIPT'İN ZORLA VERDİĞİ GENİŞLİKLERİ İPTAL ET */
@media screen and (max-width: 768px) {
    
    /* Siteyi sağa doğru itme potansiyeli olan tüm ana kapsayıcılara kelepçe taktık */
    body > *, 
    .horizontal-scroll-container, 
    .horizontal-snap-section,
    .sticky-wrapper,
    .horizontal-panel,
    .hero-section,
    .main-content {
        width: 100% !important;
        max-width: 100% !important;
        /* JS'in satır içi (inline) verdiği sağa itme komutlarını eziyoruz */
        transform: none !important; 
        left: 0 !important;
        box-sizing: border-box !important;
    }

    /* Mobilde 100vw (viewport width) bazen scrollbar yüzünden taşma yapar, 100% garantidir */
    .horizontal-panel { 
        width: 100% !important; 
    }
}
/* ==========================================================================
   📱 YANGINEXT MOBİL ESTETİK VE HİZALAMA OPERASYONU (768px Altı)
   ========================================================================== */
@media screen and (max-width: 768px) {

    /* --- 1. SEKTÖREL BİLGİ BANKASI (BLOG) 3D İPTALİ --- */
    .blog-card {
        transform: none !important; /* Başlangıçta düz dur */
        margin: 0 auto 25px auto !important; /* Tam ortaya hizala */
        width: 100% !important;
        max-width: 400px !important; /* Çok da sündürme, şık dursun */
    }
    
    .blog-card:hover {
        transform: none !important; /* MOBİLDE ÜSTÜNE GELİNCE UÇMAYI/BÜYÜMEYİ KES */
        box-shadow: 0 5px 15px rgba(0,0,0,0.5) !important; /* Sadece hafif bir gölge ver */
    }

    /* --- 2. FORM GÖNDERME KISMI (Yarısı yok olan formun kurtarılışı) --- */
    .contact-form, .auth-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 30px 20px !important; /* İç boşluğu daralttık ki dışarı taşmasın */
        margin: 0 auto !important; /* Tam ortaya sabitle */
        box-sizing: border-box !important; /* Padding'i genişliğe dahil et (Taşmayı önler) */
        border-radius: 15px !important;
    }

    .contact-container {
        padding: 0 10px !important; /* Dışarıdan nefes payı bırak */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* --- 3. 20. YIL VE DİĞER SAYAÇLARIN ORTALANMASI --- */
    .about-stats, .yn-stats-grid, .h-about-stats {
        display: flex !important;
        flex-direction: column !important; /* Alt alta diz */
        align-items: center !important; /* Yatayda GÖBEĞE (ortaya) hizala */
        justify-content: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .stat-box, .yn-stat-box, .h-stat-card {
        width: 100% !important;
        max-width: 350px !important; /* Kutular devasa olmasın, derli toplu dursun */
        margin: 0 auto 20px auto !important; /* Kutuları ortala */
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* --- 4. MOBİL MENÜ REVİZYONU (Çirkinlikten Premium Uygulamaya) --- */
    #main-header {
        padding: 15px 20px !important;
        background: #050505 !important; /* Arka planı kesin siyah yap */
    }

    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        background: #111 !important; /* Menüye şık bir koyu gri kutu ver */
        border-radius: 10px !important;
        padding: 0 !important;
        margin-top: 15px !important;
        overflow: hidden !important; /* Köşeleri yuvarla */
        border: 1px solid #222 !important;
    }

    .nav-links li {
        width: 100% !important;
        border-bottom: 1px solid #222 !important; /* Linkler arasına ince jilet çizgi */
        margin: 0 !important;
    }

    .nav-links li:last-child {
        border-bottom: none !important; /* Son çizgiye gerek yok */
    }

    .nav-links li a {
        display: block !important; /* Buton gibi davranmasını sağla */
        padding: 15px !important;
        text-align: center !important; /* Yazıları tam ortala */
        font-size: 1.1rem !important;
        color: #fff !important;
    }

    /* Menüdeki özel buton (Bize Ulaşın vb.) */
    .nav-btn {
        display: block !important;
        width: 100% !important;
        border-radius: 0 !important;
        border: none !important;
        border-top: 1px solid #e63946 !important;
        background: rgba(230, 57, 70, 0.1) !important; /* Hafif kırmızımtırak arkaplan */
    }
}
/* ==========================================================================
   🍔 PREMIUM AÇILIR MOBİL MENÜ (HAMBURGER)
   ========================================================================== */

/* Masaüstünde butonları gizle */
.hamburger-btn, .close-menu-btn {
    display: none;
}

@media screen and (max-width: 900px) { /* Tabletleri de kapsayalım ki menü sıkışmasın */
    
    /* 1. Hamburger Butonunu Göster */
    .hamburger-btn {
        display: block !important;
        cursor: pointer !important;
        z-index: 1001 !important;
    }

    /* 2. Menüyü Tam Ekran Sağda Gizle */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Ekranın dışına sakla */
        width: 100% !important;
        height: 100vh !important;
        background: rgba(10, 10, 10, 0.95) !important; /* Siyah arkaplan */
        backdrop-filter: blur(15px) !important; /* Cam efekti */
        flex-direction: column !important; /* Yan yana değil alt alta diz */
        justify-content: center !important;
        align-items: center !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important; /* Janti kayma animasyonu */
        z-index: 9999 !important;
        gap: 30px !important; /* Linkler arası boşluk */
    }

    /* JavaScript Bu Sınıfı Ekleyince Menü Ekrana Kayacak */
    .nav-links.active {
        right: 0 !important;
    }

    /* 3. Çarpı Butonu Tasarımı */
    .close-menu-btn {
        display: block !important;
        position: absolute !important;
        top: 25px !important;
        right: 25px !important;
        font-size: 2.5rem !important;
        color: #e63946 !important;
        cursor: pointer !important;
        transition: transform 0.3s !important;
    }

    .close-menu-btn:hover {
        transform: rotate(90deg) !important;
    }

    /* 4. Menü İçindeki Linkleri Büyüt */
    .nav-links li a {
        font-size: 1.5rem !important; /* Mobilde yazılar dev gibi şık dursun */
    }

    /* Alt alta giren giriş ve alışveriş butonlarını düzenle */
    .mobile-action-btns {
        flex-direction: column !important;
        gap: 20px !important;
        margin-left: 0 !important;
        margin-top: 20px !important;
    }
}
/* ==========================================================================
   🚑 MOBİL LOGO VE MENÜ BUTONU ACİL MÜDAHALE
   ========================================================================== */
@media screen and (max-width: 900px) {
    /* 1. Logoyu Ehlileştiriyoruz */
    .header-logo {
        max-width: 160px !important; /* Eşşek kadar olmasını engeller */
        max-height: 45px !important; /* Kibar ve şık durmasını sağlar */
        height: auto !important;
        object-fit: contain !important;
    }

    /* 2. Header içini hizalayıp butonu SAĞ ÜST köşeye çiviliyoruz */
    .header-container {
        display: flex !important;
        justify-content: space-between !important; /* Biri en sola, biri en sağa */
        align-items: center !important;
        width: 100% !important;
    }

    /* 3. Menü Butonunu Sağa Yasla */
    .hamburger-btn {
        display: block !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 1001 !important;
    }
}
/* ==========================================================================
   🔨 KESİN ÇÖZÜM: MOBİL LOGO VE SAĞ ÜST KÖŞE ÇİVİSİ
   ========================================================================== */
@media screen and (max-width: 900px) {
    
    /* 1. Eşşek Kadar Logoyu Kesin Olarak Küçült */
    /* Direkt #main-header içindeki img'yi hedef alıyoruz ki kaçamasın */
    #main-header img {
        max-width: 160px !important;
        width: 160px !important; /* Genişliği zorla 160px yap */
        height: auto !important;
        margin-top: 5px !important;
    }

    /* 2. Header Kutusunu Sabitle */
    #main-header {
        position: fixed !important;
        width: 100% !important;
        min-height: 70px !important;
        padding: 10px 20px !important;
        box-sizing: border-box !important;
    }

    /* 3. Butonu Sağ Üst Köşeye ÇİVİLE (Absolute Power) */
    #mobile-menu-btn {
        display: block !important;
        position: absolute !important; /* Bulunduğu kutudan bağımsız hareket et */
        right: 20px !important; /* Ekrana sağdan 20px mesafe bırak */
        top: 20px !important; /* Ekrana yukarıdan 20px mesafe bırak */
        z-index: 1001 !important;
    }
}
/* ==========================================================================
   ⚡ PERFORMANS VE BOŞLUK TEMİZLİĞİ
   ========================================================================== */

/* 1. Hizmetler bölümündeki fazla boşluğu mobilde daralt */
@media screen and (max-width: 900px) {
    .horizontal-snap-section {
        margin-bottom: -50px !important; /* Siyah boşluğu yukarı çeker */
        padding-bottom: 0 !important;
    }
}

/* 2. Donmayı önleyen Donanım Hızlandırma (GPU Acceleration) */
.h-card, .h-product-3d, .blog-card {
    will-change: transform; /* Tarayıcıya "hazır ol, hareket var" der */
    backface-visibility: hidden; /* Arkadaki gereksiz render'ı siler */
    transform: translateZ(0); /* Ekran kartını zorla devreye sokar, yağ gibi akar */
}

/* 3. Kasma yapan Snap efektini mobilde hafiflet */
.horizontal-scroll-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* iPhone'larda kaydırma kalitesini artırır */
}
/* ==========================================================================
   🚀 YANGINEXT MASTER HEADER (PC & MOBİL %100 UYUMLU)
   ========================================================================= */

/* --- 💻 MASAÜSTÜ (PC) İÇİN KURTARMA KODLARI --- */
#main-header {
    background: #050505;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Masaüstünde Butonları Gizle */
.hamburger-btn, .close-menu-btn {
    display: none !important;
}

/* Kanka, senin PC menüsünün eski Premium hali burası */
.nav-links {
    display: flex !important; /* Masaüstünde zorla yan yana diz */
    align-items: center !important;
    gap: 25px !important; /* Aradaki boşluk */
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Sen inline style yazmıştın, ben buraya aldım ki hover falan çalışsın */
.nav-links li a {
    color: #ddd;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #e63946;
}

.yanginext-dropdown { position: relative; }
.yanginext-dropdown-content { display: none; position: absolute; top: 100%; left: 0; background: #111; min-width: 180px; box-shadow: 0 8px 16px rgba(0,0,0,0.5); z-index: 1; border-radius: 5px; overflow: hidden; }
.yanginext-dropdown-content a { display: block; padding: 12px 16px; border-bottom: 1px solid #222; }
.yanginext-dropdown:hover .yanginext-dropdown-content { display: block; } /* PC Hover'ı */

/* Giriş ve Alışveriş Butonları (PC Hali) */
.mobile-action-btns { display: flex; align-items: center; gap: 12px; margin-left: 10px; }
.giris-btn { color: #ddd; padding: 10px 18px; border-radius: 4px; border: 1px solid #333; }
.giris-btn:hover { border-color: #e63946; color: #fff; background: #1a1a1a; }
.alisveris-btn { background: #e63946; color: #fff; padding: 10px 22px; border-radius: 4px; box-shadow: 0 4px 15px rgba(230,57,70,0.4); border: 1px solid #e63946; display: flex; align-items: center; gap: 8px; }
.alisveris-btn:hover { background: #c53030; color: #fff; transform: translateY(-2px); }

/* --- 📱 MOBİL (900px Altı) İÇİN KUSURSUZ DROPDOWN MENÜ --- */
@media screen and (max-width: 900px) {
    /* Logoyu Mobilde Kibarlaştır */
    #main-header img {
        max-width: 160px !important;
        width: 160px !important;
        height: auto !important;
    }

    /* 2. Header içini hizalayıp butonu SAĞ ÜST köşeye çiviliyoruz */
    .header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
    }

    /* 3. Butonu Sağ Üst Köşeye ÇİVİLE (Absolute Power) */
    .hamburger-btn {
        display: block !important;
        cursor: pointer !important;
        position: absolute !important;
        right: 20px !important;
        top: -15px !important; /* Logonun hizasına getirmek için yukarı çektik */
        z-index: 1001 !important;
    }

    /* 4. Menüyü Tam Ekran Sağda Gizle (Cam Efekti) */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Ekranın dışına sakla */
        width: 100% !important;
        height: 100vh !important;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        flex-direction: column !important; /* Mobilde alt alta */
        justify-content: center !important;
        align-items: center !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 9999 !important;
        gap: 30px !important;
    }

    .nav-links.active { right: 0 !important; }

    .close-menu-btn { display: block !important; position: absolute !important; top: 25px !important; right: 25px !important; font-size: 2.5rem !important; color: #e63946 !important; cursor: pointer !important; }

    .nav-links li a { font-size: 1.5rem !important; font-family: 'Oswald', sans-serif !important; letter-spacing: 2px !important; }

    /* Kurumsal Menü Mobilde Tıklanınca Aşağı Uzayacak */
    .yanginext-dropdown-content { position: static !important; background: transparent !important; box-shadow: none !important; text-align: center !important; width: 100% !important; display: none !important; }
    .yanginext-dropdown-content.show-mobile { display: flex !important; flex-direction: column !important; gap: 10px !important; }

    .mobile-action-btns { flex-direction: column !important; gap: 15px !important; margin: 20px 0 0 0 !important; width: 80% !important; }
    .mobile-action-btns a { width: 100% !important; text-align: center !important; font-size: 1.1rem !important; }
}
/* ==========================================================================
   🚀 PATRON SİGORTASI: PC EFEKTLERİNİ KORUR, MOBİLİ DÜZELTİR
   Bu kod en altta durmalı ki yukarıdaki çakışmaları temizlesin.
   ========================================================================== */

/* --- 💻 1. MASAÜSTÜ (PC) KURTARMA OPERASYONU --- */
@media screen and (min-width: 901px) {
    #main-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 20px 50px !important;
        background: transparent; /* Scrolled sınıfı gelince kararır */
    }

    /* Menüyü tekrar yan yana diziyoruz kanka */
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        gap: 30px !important;
        position: static !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-links li a {
        font-size: 14px !important;
        color: #ddd !important;
    }

    /* Logo PC'de heybetli kalsın */
    #main-header img {
        height: 95px !important;
        width: auto !important;
    }

    .hamburger-btn, .close-menu-btn {
        display: none !important;
    }
}

/* --- 📱 2. MOBİL (900PX ALTI) ACİL MÜDAHALE --- */
@media screen and (max-width: 900px) {
    
    /* Logoyu mobilde ölçekle */
    #main-header img {
        max-width: 150px !important;
        height: auto !important;
        margin-top: 5px !important;
    }
}

#main-header {
    padding: 10px 20px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* --- ⚡ 3. PERFORMANS (KASMA ÖNLEYİCİ) --- */
.h-card, .blog-card, .h-product-3d {
    will-change: transform !important;
    transform: translateZ(0) !important; /* Ekran kartını devreye sokar */
}
/* ==========================================================================
   🚀 YANGINEXT MASTER OVERRIDE - PC KURTARMA VE MOBİL DENGESİ
   (Kanka bu kodu CSS dosyanın EN ALTINA yapıştır, yukarıyı elleme)
   ========================================================================== */

/* --- 💻 MASAÜSTÜ (PC) RESTORASYONU (901px ve Üzeri) --- */
@media screen and (min-width: 901px) {
    #main-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 25px 50px !important;
        background: transparent; /* Scrolled gelince kararır */
        height: auto !important;
    }

    /* Logo PC'de eski heybetine dönsün */
    #main-header img, .logo img {
        height: 95px !important;
        width: auto !important;
        max-width: none !important;
    }

    /* Menü PC'de yan yana, tertemiz Premium duracak */
    .nav-links {
        display: flex !important;
        flex-direction: row !important;
        position: static !important; /* Mobildeki fixed olayını öldürdük */
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        gap: 30px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        padding: 0 !important;
    }

    .nav-links li a {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #ddd !important;
    }

    /* Masaüstünde Hamburger ve Çarpı ASLA gözükmez */
    .hamburger-btn, .close-menu-btn {
        display: none !important;
    }

    /* Giriş ve Alışveriş Butonları Yan Yana */
    .mobile-action-btns {
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        margin-left: 10px !important;
    }
}

/* --- 📱 MOBİL (900PX VE ALTI) KESİN ÇÖZÜM --- */
@media screen and (max-width: 900px) {
    /* Logoyu dizginle kanka (Eşşek logo bitti) */
    #main-header img {
        max-width: 140px !important;
        height: auto !important;
        margin-top: 5px !important;
    }

    #main-header {
        padding: 10px 20px !important;
        min-height: 70px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* Hamburger Butonunu Sağ Üste Çivile */
    .hamburger-btn {
        display: block !important;
        position: absolute !important;
        right: 20px !important;
        top: 20px !important;
        z-index: 1001 !important;
    }

    /* Mobil Menü (Cam Efektli Açılır Ekran) */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Başta gizli */
        width: 100% !important;
        height: 100vh !important;
        background: rgba(5, 5, 5, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 9999 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-links.active {
        right: 0 !important; /* JS ile açılınca buraya gelir */
    }

    .close-menu-btn {
        display: block !important;
        position: absolute !important;
        top: 25px !important;
        right: 25px !important;
        font-size: 2.5rem !important;
        color: #e63946 !important;
    }

    /* Mobilde linkleri dev yap (Okunabilirlik) */
    .nav-links li a {
        font-size: 1.8rem !important;
        font-family: 'Oswald', sans-serif !important;
    }

    /* Hizmetler ve Diğer Bölümlerin Mobilde Kaymasını Durdur */
    .horizontal-scroll-container {
        flex-direction: column !important;
        transform: none !important;
    }
}

/* ⚡ PERFORMANS SİGORTASI */
.h-card, .blog-card, .h-product-3d {
    will-change: transform !important;
    transform: translateZ(0) !important;
}

/* ==========================================================================
   💻 HİZMETLER (PC) - YATAY SCROLL ALANI
   ========================================================================= */
@media screen and (min-width: 992px) {
    #hizmetler.horizontal-snap-section {
        height: 100vh !important;
        overflow: hidden !important;
        background: #050505 !important;
    }

    #hizmetler.horizontal-snap-section .sticky-wrapper {
        position: sticky !important;
        top: 0 !important;
        height: 100vh !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 0 !important;
    }

    #hizmetler.horizontal-snap-section .horizontal-title {
        max-width: 1400px !important;
        width: 100% !important;
        margin: 0 auto 22px auto !important;
        padding: 0 60px !important;
    }

    #hizmetler.horizontal-snap-section .horizontal-scroll-container {
        display: flex !important;
        flex-direction: row !important;
        align-items: stretch !important;
        gap: 34px !important;
        padding: 0 60px !important;
        width: max-content !important;
        max-width: none !important;
        will-change: transform !important;
    }

    #hizmetler.horizontal-snap-section .h-card-wrapper {
        flex: 0 0 420px !important;
        width: 420px !important;
        height: 560px !important;
        min-width: 420px !important;
        max-width: 420px !important;
        margin: 0 !important;
    }

    #hizmetler.horizontal-snap-section .h-card {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 36px !important;
        overflow: hidden !important;
        background: #0a0a0a !important;
        border: 1px solid rgba(255,255,255,0.06) !important;
        box-shadow: 0 18px 55px rgba(0,0,0,0.65) !important;
    }

    #hizmetler.horizontal-snap-section .h-card-img {
        opacity: 0.45 !important;
        filter: saturate(1.1) contrast(1.05) !important;
    }

    #hizmetler.horizontal-snap-section .h-card-content {
        padding: 44px !important;
    }

    #hizmetler.horizontal-snap-section .h-text p {
        max-width: 100% !important;
        overflow: hidden !important;
        display: -webkit-box !important;
        line-clamp: 4 !important;
        -webkit-line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
    }

    #hizmetler.horizontal-snap-section .h-product-3d {
        width: 190px !important;
        right: 14px !important;
        top: -18px !important;
        opacity: 1 !important;
        mix-blend-mode: normal !important;
        filter: drop-shadow(0 22px 45px rgba(0,0,0,0.75)) contrast(1.18) saturate(1.25) brightness(1.05) !important;
        z-index: 40 !important;
    }
}