@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary: #6A1B9A;
    --primary-dark: #4A148C;
    --accent: #FFD700;
    --bg-dark: #0a0510;
    --text: #ffffff;
    --text-muted: #b0b0b0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* RTL Modu */
body.rtl-mode { direction: rtl; text-align: right; font-family: 'Tahoma', 'Arial', sans-serif; }
body.rtl-mode .nav-links { flex-direction: row-reverse; }
body.rtl-mode .nav-right { flex-direction: row-reverse; }
body.rtl-mode .custom-dropdown { margin-left: 0; margin-right: 20px; }
body.rtl-mode .hero-content { flex-direction: row-reverse; }
body.rtl-mode .feature-container { flex-direction: row-reverse; }
body.rtl-mode .feature-grid-compact { direction: rtl; }
body.rtl-mode .about-content { flex-direction: row-reverse; }
body.rtl-mode .dropdown-menu { left: auto; right: 0; text-align: right; }
body.rtl-mode .dropdown-menu li { flex-direction: row-reverse; }

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body { font-family: 'Poppins', sans-serif; background-color: var(--bg-dark); color: var(--text); overflow-x: hidden; min-height: 100vh; }

#neuro { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: radial-gradient(circle at 50% 50%, #1a0b2e 0%, #050208 100%); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.navbar { padding: 15px 0; position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(10, 5, 16, 0.85); backdrop-filter: blur(15px); border-bottom: 1px solid var(--glass-border); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-right { display: flex; align-items: center; gap: 20px; }

/* --- PREMIUM LOGO STYLING --- */
.logo { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    text-decoration: none; /* Link çizgisini kaldır */
}

.logo span {
    font-weight: 700; 
    font-size: 1.5rem; 
    letter-spacing: 0.5px;
    background: linear-gradient(to bottom, #ffffff, #e0e0e0); /* Gümüş/Beyaz Gradyan */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255,255,255,0.1); /* Hafif Parlama */
    transition: 0.3s ease;
}

.logo-img { height: 35px; filter: drop-shadow(0 0 5px rgba(106, 27, 154, 0.5)); }

/* Logo Hover Efekti */
.logo:hover span {
    background: linear-gradient(to right, #fff, var(--accent)); /* Altın Sarısına Geçiş */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.02); /* Çok hafif büyüme */
}
/* ----------------------------- */

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-weight: 500; transition: 0.3s; font-size: 0.95rem; }
.nav-links a:hover { color: var(--accent); }

/* PROFESSIONAL CUSTOM DROPDOWN */
.custom-dropdown { position: relative; margin-left: 10px; font-size: 0.9rem; }
.dropdown-trigger {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}
.dropdown-trigger:hover, .dropdown-trigger.active { background: rgba(255, 255, 255, 0.1); border-color: var(--primary); }
.dropdown-trigger i { color: var(--accent); }
.arrow { font-size: 0.7rem; color: var(--text-muted); transition: 0.3s; }
.dropdown-trigger.active .arrow { transform: rotate(180deg); }

.dropdown-menu {
    position: absolute;
    top: 120%; left: 0;
    width: 140px;
    background: rgba(20, 10, 30, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    list-style: none;
    padding: 8px;
    display: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1001;
}
.dropdown-menu.show { display: block; animation: fadeIn 0.2s ease-in-out; }
.dropdown-menu li {
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    display: flex; align-items: center; gap: 10px;
    transition: 0.2s;
    color: var(--text-muted);
}
.dropdown-menu li:hover { background: var(--primary); color: white; }
.dropdown-menu img { width: 20px; border-radius: 2px; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

.btn-contact {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 8px 24px;
    border-radius: 50px;
    color: white !important;
    box-shadow: 0 4px 15px rgba(106, 27, 154, 0.4);
    font-weight: 600;
}

/* Hero Section */
.hero { padding: 160px 0 100px; position: relative; }
.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.hero-text { flex: 1; z-index: 2; }
.badge { display: inline-block; padding: 6px 16px; background: rgba(106, 27, 154, 0.2); border: 1px solid var(--primary); border-radius: 20px; font-size: 0.85rem; color: #d1c4e9; margin-bottom: 20px; font-weight: 500; }
.hero-text h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 24px; font-weight: 700; }
.highlight { background: linear-gradient(to right, #b388ff, #7c4dff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; line-height: 1.7; }

.cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.store-btn { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 12px 24px; border-radius: 14px; text-decoration: none; color: white; transition: 0.3s; }
.store-btn i { font-size: 24px; }
.store-btn div { display: flex; flex-direction: column; }
.store-btn span { font-size: 9px; opacity: 0.7; }
.store-btn strong { font-size: 14px; line-height: 1; }
.store-btn:hover { background: rgba(255,255,255,0.15); border-color: var(--primary); }

.hero-image { flex: 1; display: flex; justify-content: center; position: relative; }
.phone-frame { width: 280px; height: 580px; background: #000; border-radius: 40px; border: 8px solid #1a1a1a; position: relative; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.6); z-index: 2; }
.phone-frame img { width: 100%; height: 100%; object-fit: cover; }

/* Features (2 Kolonlu) */
.features { padding: 80px 0; }
.feature-container { display: flex; align-items: center; gap: 60px; }
.feature-visual { flex: 1; display: flex; justify-content: center; }
.phone-frame-small { width: 260px; height: 540px; background: #000; border-radius: 35px; border: 6px solid #222; overflow: hidden; box-shadow: 0 20px 50px rgba(106, 27, 154, 0.2); }
.phone-frame-small img { width: 100%; height: 100%; object-fit: cover; }

.feature-content { flex: 1.5; }
.section-header-left { margin-bottom: 40px; }
.section-header-left h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-header-left p { color: var(--text-muted); font-size: 1.1rem; }

.feature-grid-compact { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feature-card-compact { background: var(--glass); border: 1px solid var(--glass-border); padding: 20px; border-radius: 20px; display: flex; align-items: center; gap: 15px; transition: 0.3s; }
.feature-card-compact:hover { background: rgba(255,255,255,0.08); transform: translateX(5px); border-color: var(--primary); }
.feature-card-compact h4 { font-size: 1rem; margin-bottom: 4px; color: white; }
.feature-card-compact span { font-size: 0.8rem; color: var(--text-muted); display: block; }

.icon-small { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.color-purple { background: rgba(156, 39, 176, 0.2); color: #e1bee7; }
.color-pink { background: rgba(233, 30, 99, 0.2); color: #f8bbd0; }
.color-gold { background: rgba(255, 193, 7, 0.2); color: #ffecb3; }
.color-blue { background: rgba(33, 150, 243, 0.2); color: #90caf9; }
.color-indigo { background: rgba(63, 81, 181, 0.2); color: #c5cae9; }
.color-green { background: rgba(76, 175, 80, 0.2); color: #a5d6a7; }

/* About Section (Kart) */
.about { padding: 100px 0; }
.about-card { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border); border-radius: 40px; padding: 60px; backdrop-filter: blur(10px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.about-content { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 2; }
.about-text h2 { font-size: 2.5rem; margin-bottom: 20px; }
.divider { width: 60px; height: 4px; background: var(--primary); margin-bottom: 25px; border-radius: 2px; }
.about-text p { color: var(--text-muted); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.8; }
.stats-row { display: flex; gap: 40px; margin-top: 30px; border-top: 1px solid var(--glass-border); padding-top: 30px; }
.stat-box strong { display: block; font-size: 2.5rem; color: var(--accent); line-height: 1; margin-bottom: 5px; }
.stat-box small { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.about-icon-area { flex: 1; display: flex; justify-content: center; }
.huge-icon { font-size: 12rem; color: rgba(255,255,255,0.03); transform: rotate(-15deg); }

/* Footer */
footer { border-top: 1px solid var(--glass-border); background: rgba(0,0,0,0.3); padding: 50px 0 20px; }
.footer-wrapper { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 30px; }
.mail-link { display: flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 500; text-decoration: none; margin-bottom: 20px; font-size: 1.1rem; }
.socials a { width: 45px; height: 45px; border-radius: 50%; background: var(--glass); display: flex; align-items: center; justify-content: center; color: white; transition: 0.3s; font-size: 1.2rem; border: 1px solid var(--glass-border); }
.socials a:hover { background: #E1306C; border-color: #E1306C; }
.copyright { text-align: center; border-top: 1px solid var(--glass-border); padding-top: 20px; color: #666; font-size: 0.85rem; }

/* Animations */
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }
.pulse-anim { animation: pulse 3s infinite ease-in-out; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }
.floating-anim { animation: float 6s infinite ease-in-out; }
.floating-anim-delayed { animation: float 6s infinite ease-in-out; animation-delay: 2s; }

/* Mobile */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text { margin-bottom: 50px; }
    .hero-text h1 { font-size: 2.5rem; }
    .cta-buttons { justify-content: center; }
    .feature-container { flex-direction: column; }
    .feature-visual { margin-bottom: 40px; }
    .feature-grid-compact { grid-template-columns: 1fr; }
    .about-content { flex-direction: column; text-align: center; }
    .divider { margin: 0 auto 25px auto; }
    .stats-row { justify-content: center; }
    .about-icon-area { display: none; }
    .footer-wrapper { flex-direction: column; text-align: center; }
    .mail-link, .socials { justify-content: center; }
    
@media (max-width: 768px) {
    /* Mobilde 2. telefonu gizle, sadece kartlar görünsün */
    .feature-visual {
        display: none;
    }
    
    /* Mobilde özellikler kutusunun boşluğunu al */
    .feature-content {
        flex: 1;
        width: 100%;
    }

    /* Dil seçicinin mobilde taşmasını engelle */
    .custom-dropdown {
        margin-left: 5px;
    }
    
    .dropdown-trigger {
        padding: 6px 12px; /* Mobilde butonu biraz küçült */
    }
}
    
    
    
    
}