/* GENEL AYARLAR */
/* ÖZEL SCROLLBAR TASARIMI */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000; /* Çubuğun yolu siyah olsun */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#00f2ff, #9d00ff); /* Çubuk neon olsun */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #fff; /* Üzerine gelince beyaz olsun */
}
body {
    margin: 0;
    padding: 0;
    background-color: #050505; /* Kapkara zemin */
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ÜST KISIM (HEADER) */
header {
    padding: 20px 0;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Logo Ayarı */
.logo {
    height: 250px; /* Logonun büyüklüğü */
    object-fit: contain;
}

/* Menü Linkleri */
nav a {
    color: #b3b3b3;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: white;
}

.iletisim-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
}

/* VİTRİN BÖLÜMÜ (HERO) */
.hero {
    height: 80vh; /* Ekranın %80'ini kaplar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Arka plana logondaki mor ışık hüzmesini ekliyoruz */
    background: radial-gradient(circle at center, #1e0b36 0%, #050505 70%);
}

.tag {
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff; /* Neon Mavi */
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 242, 255, 0.3);
}

h1 {
    font-size: 4rem; /* Büyük başlık */
    margin: 20px 0;
    line-height: 1.1;
}

/* Logodaki Mavi-Mor Geçişi Yazıya Veriyoruz */
.gradient-text {
    background: linear-gradient(90deg, #00f2ff, #9d00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: #888;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.2rem;
}

/* Büyük Buton */
.cta-btn {
    background: linear-gradient(90deg, #00f2ff, #9d00ff);
    color: white;
    text-decoration: none;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 0 30px rgba(157, 0, 255, 0.4); /* Neon Parlama */
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05); /* Üzerine gelince büyür */
}
/* ÖRNEK ÇALIŞMA ALANI */
.showcase {
    padding: 80px 0;
    background-color: #000; /* Koyu zemin devam ediyor */
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
}

.section-desc {
    color: #888;
    margin-bottom: 50px;
}

.karsilastirma {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px; /* Resimler arası boşluk */
    flex-wrap: wrap; /* Mobilde alt alta geçsin diye */
}

.kart {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.resim-cerceve {
    width: 100%;
    height: 500px; /* Resimlerin boyu eşit olsun */
    overflow: hidden;
    border-radius: 20px;
    background: #111;
    border: 2px solid #333;
}

.resim-cerceve img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi kutuya sığdır */
    transition: transform 0.5s;
}

/* Sağdaki (Manken) Resim İçin Neon Efekt */
.neon-cerceve {
    border: 2px solid #00f2ff;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

/* Üzerine gelince hafif yakınlaşma */
.kart:hover img {
    transform: scale(1.1);
}

.etiket {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.etiket.sol { color: #888; }
.etiket.sag { color: #00f2ff; }

.ok-isareti {
    font-size: 3rem;
    color: #333;
    animation: bounce 2s infinite; /* Hareketli ok */
}

/* Ok işareti animasyonu */
@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* MOBİL AYARLAR */
@media (max-width: 768px) {
    .ok-isareti {
        transform: rotate(90deg); /* Mobilde ok aşağı baksın */
        margin: 20px 0;
    }
}
/* Satırlar arası boşluk */
.karsilastirma {
    margin-bottom: 60px; /* Her örneğin arasına boşluk koyar */
    padding-bottom: 40px;
    border-bottom: 1px solid #222; /* İnce bir çizgi çeker */
}

/* Son çizgiyi kaldırmak için */
.karsilastirma:last-child {
    border-bottom: none;
}
/* NASIL ÇALIŞIR ALANI */
.how-it-works {
    padding: 80px 0;
    background-color: #0a0a0a; /* Biraz daha farklı bir siyah tonu */
    text-align: center;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.step-card {
    background: #111;
    padding: 40px 20px;
    border-radius: 20px;
    width: 300px;
    transition: 0.3s;
    border: 1px solid #222;
}

.step-card:hover {
    transform: translateY(-10px); /* Üzerine gelince yukarı kalkar */
    border-color: #00f2ff; /* Çerçevesi mavi olur */
}

.step-number {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00f2ff;
    border: 2px solid #00f2ff;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3); /* Neon parlama */
}

.step-card h3 {
    margin-bottom: 15px;
    color: white;
}

.step-card p {
    color: #999;
    font-size: 0.9rem;
}
/* İLETİŞİM ALANI */
.cta-section {
    padding: 100px 0;
    text-align: center;
    /* Hafif morumsu bir bitiş arka planı */
    background: linear-gradient(to top, #1a0b2e 0%, #000000 100%);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25D366; /* WhatsApp Yeşili */
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    margin-top: 30px;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4); /* Yeşil Parlama */
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

/* FOOTER */
footer {
    padding: 40px 0;
    background-color: #000;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: #888;
    margin: 0 10px;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    color: #00f2ff; /* Üzerine gelince neon mavi */
}
/* SSS (FAQ) TASARIMI */
.faq-section {
    padding: 60px 0;
    /* Eski renk: #050505 idi */
    /* Yeni renk: İletişim bölümünün bittiği siyah tona uyumlu olsun */
    background-color: #000000; 
    border-top: 1px solid #111; /* Araya ince bir çizgi çektik */
}

.faq-item {
    background: #111;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #222;
    max-width: 800px; /* Çok geniş olmasın, okunması kolay olsun */
    margin-left: auto; /* Ortalamak için */
    margin-right: auto;
}

details {
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
}

summary {
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    list-style: none; /* Yanındaki oku gizle, biz kendimiz ekleriz */
    position: relative;
}

/* Yanına + işareti ekleyelim */
summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: #00f2ff;
    transition: 0.3s;
}

/* Tıklayınca + işareti dönsün */
details[open] summary::after {
    transform: rotate(45deg);
    color: #ff0055;
}

details p {
    margin-top: 15px;
    color: #aaa;
    line-height: 1.6;
    border-top: 1px solid #333;
    padding-top: 15px;
}
/* YENİ SOSYAL MEDYA BUTONLARI */
.social-links {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px; /* Butonlar arası boşluk */
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background-color: #1a1a1a; /* Koyu gri zemin */
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    border: 1px solid #333;
    transition: 0.4s;
}

.social-btn i {
    margin-right: 10px; /* İkon ile yazı arası boşluk */
    font-size: 1.2rem;
}

/* Instagram için özel renk (Pembe/Mor Geçiş) */
.insta-btn:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.5); /* Pembe parlama */
    transform: translateY(-5px); /* Yukarı zıplar */
}

/* Email için özel renk (Neon Mavi) */
.mail-btn:hover {
    background: #0072ff;
    border-color: #0072ff;
    box-shadow: 0 0 20px rgba(0, 114, 255, 0.5); /* Mavi parlama */
    transform: translateY(-5px);
}