/* style.css */
body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    transition: background-color 0.3s, color 0.3s; 
}

.glass { 
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px); 
}

.tech-gradient { 
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%); 
}

.nav-scrolled { 
    top: 0 !important; 
    width: 100% !important; 
    border-radius: 0 !important; 
    transition: all 0.3s; 
}

.dark .nav-scrolled { 
    background: rgba(2, 6, 23, 0.95) !important; 
    border-color: transparent; 
}

.light .nav-scrolled { 
    background: rgba(255, 255, 255, 0.95) !important; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}

@keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
}

.logo-track { display: flex; width: calc(250px * 10); animation: scroll 20s linear infinite; }

/* Formlar ve Politikalar için eklediğimiz özel sınıflar */
.policy-content h2 { @apply text-2xl font-bold text-slate-900 dark:text-white mt-12 mb-4; }
.policy-content p { @apply text-slate-600 dark:text-slate-400 mb-4 leading-relaxed; }
.policy-content ul { @apply list-disc list-inside text-slate-600 dark:text-slate-400 mb-6 space-y-2 ml-4; }

/* --- Hizmet Kartları ve Modal Stilleri --- */
/* Modal Arka Planı */
#service-modal {
    transition: opacity 0.3s ease-in-out;
}

/* Modal Açılış Animasyonu */
.modal-content {
    animation: modalSlideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Paket Kartları */
.package-card {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Liste Noktaları */
.package-features li {
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

#service-modal .overflow-y-auto::-webkit-scrollbar-thumb:hover {
    background: #475569; /* Slate-600 */
}