/* GENEL TASARIM */
#particles-js { 
    position: fixed; width: 100%; height: 100%; top: 0; left: 0; z-index: -2; 
    background-color: #050b14; 
    background-image: radial-gradient(circle, #0d1b2a 0%, #050b14 100%); 
}

/* Meteorların tıklamayı engellememesi için z-index ve pointer-events ayarı */
#meteor-canvas { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; pointer-events: none; 
}

body { 
    color: #ffffff; background-color: #050b14; overflow-x: hidden; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; padding-bottom: 80px; 
}

.navbar { 
    background: rgba(13, 27, 42, 0.9) !important; backdrop-filter: blur(15px); 
    border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 10000;
    padding: 15px 0;
}

.nav-link { color: #fff !important; font-size: 1.1rem; margin-left: 15px; }
.nav-link.active { color: #ffc107 !important; font-weight: bold; }

/* LOGO STİLLERİ */
.navbar-brand img, .footer-logo {
    max-height: 85px;
    width: auto;
    transition: transform 0.3s ease;
}
.navbar-brand:hover img { transform: scale(1.05); }

/* KUTU STİLLERİ */
.dinamik-box, .hero-glass-box { 
    background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 25px; 
    padding: 50px; transition: all 0.3s ease; color: #fff;
    position: relative; z-index: 1; /* Meteorların altında kalmaması için */
}
.dinamik-box:hover { 
    background: rgba(255, 255, 255, 0.1); 
    transform: translateY(-10px); 
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6); 
}

/* HERO BOX ÖZEL */
.hero-glass-box { 
    max-width: 1000px; margin: 0 auto; border: 1px solid rgba(255, 193, 7, 0.3); 
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.7); position: relative; overflow: hidden; 
}

#hero-meteor-canvas {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; 
    pointer-events: none; filter: blur(12px); opacity: 0.6;
}

/* PAKET ÖZELLİKLERİ */
.border-web { border-top: 6px solid #00d2ff !important; }
.border-seo { border-top: 6px solid #32ff7e !important; }
.border-ads { border-top: 6px solid #ff4d4d !important; }
.paket-liste { min-height: 200px; margin-bottom: 25px; padding: 0; list-style: none; }
.paket-liste li { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 1rem; }

/* LOGO SLIDER - DÜZENLENMİŞ */
.logo-slider { 
    overflow: hidden; 
    padding: 60px 0; 
    position: relative; 
    width: 100%; 
    z-index: 2;
}

.logo-track { 
    display: flex; 
    width: max-content; /* İçerik kadar otomatik genişlik */
    animation: scroll 30s linear infinite; 
}

/* LOGO ITEM DÜZENLEME */
.logo-item { 
    width: 250px; 
    display: flex; 
    flex-direction: column; /* Logoyu ve metni alt alta dizer */
    align-items: center; 
    justify-content: center; 
    flex-shrink: 0; 
    padding: 0 40px;
    gap: 15px; /* Logo ile metin arasındaki boşluk */
}

.referans-logo { 
    max-height: 70px; 
    width: auto; 
    filter: grayscale(1) brightness(1.5); 
    opacity: 0.5; 
    transition: 0.3s; 
}

/* YENİ: Başlık Stili */
.referans-baslik {
    color: #bdc3c7;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.6;
    transition: 0.3s;
    white-space: nowrap; /* Başlığın tek satırda kalmasını sağlar */
}

/* Hover Durumu */
.logo-item:hover .referans-logo { 
    filter: grayscale(0) brightness(1); 
    opacity: 1; 
    transform: scale(1.1); 
}

.logo-item:hover .referans-baslik {
    color: #00d2ff; /* Hover olduğunda başlık rengi değişir */
    opacity: 1;
}
.referans-logo:hover { filter: grayscale(0) brightness(1); opacity: 1; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* JS tarafında 2 set olduğu için tam yarıda sıfırlanır */
}

/* STICKY CONTACT BAR */
.sticky-contact-bar {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 650px; height: 75px; display: flex; z-index: 99999;
    background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); overflow: hidden;
}

.sticky-item { flex: 1; display: flex; align-items: center; justify-content: center; text-decoration: none; color: white; font-weight: 700; font-size: 1.1rem; transition: 0.4s; gap: 12px; }
.sticky-whatsapp { background: rgba(37, 211, 102, 0.2); color: #25d366; border-right: 1px solid rgba(255, 255, 255, 0.1); }
.sticky-whatsapp:hover { background: rgba(37, 211, 102, 0.3); }
.sticky-call:hover { background: rgba(0, 210, 255, 0.2); color: #00d2ff; }

/* FOOTER */
footer { background: rgba(5, 11, 20, 0.95); padding: 70px 0 30px; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 100px; position: relative; z-index: 2; }
footer a { color: #bdc3c7; text-decoration: none; font-size: 1.05rem; }
footer a:hover { color: #ffc107; }
.text-muted { color: #bdc3c7 !important; }