/* --- RESET & VARIABLES --- */
:root {
    --bg-dark: #000000;
    --text-white: #ffffff;
    --neon-blue: #00f3ff;
  --font-main: 'Outfit', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background-color: var(--bg-dark); color: var(--text-white); font-family: var(--font-main); overflow-x: hidden; width: 100vw; }

/* --- PRELOADER --- */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #000; z-index: 9999;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader-circle {
    width: 50px; height: 50px; border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--neon-blue); border-radius: 50%;
    animation: spin 1s linear infinite; margin-bottom: 15px;
}
.loader-text { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 2px; color: #888; animation: pulse 1.5s infinite; }

/* --- NAVIGASYON --- */
.vision-nav {
    position: fixed; top: 25px; left: 50%; transform: translateX(-50%); z-index: 1000;
    padding: 3px; border-radius: 100px; width: auto; max-width: 95%;
}
.vision-nav ul {
    display: flex; align-items: center; justify-content: center; gap: 2px; list-style: none;
    background: rgba(20, 20, 20, 0.7); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    padding: 5px; border-radius: 100px; border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.vision-nav li a {
    text-decoration: none; color: #ccc;
    font-family: var(--font-display); font-weight: 500; text-transform: uppercase;
    font-size: 0.75rem; letter-spacing: 0.5px;
    padding: 10px 20px; border-radius: 100px; transition: all 0.3s ease; display: block; white-space: nowrap;
}
.vision-nav li.active a { background: rgba(255, 255, 255, 0.25); color: white; font-weight: 700; }

/* --- HERO SECTION --- */
.hero-section {
    position: relative; height: 100vh; width: 100%; overflow: hidden;
    display: flex; justify-content: center; align-items: center;
    background: radial-gradient(circle at center, #111 0%, #000 70%);
}
.hero-layer {
    position: absolute; width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    pointer-events: none; transition: transform 0.1s ease-out;
}
.layer-back { z-index: 1; }
.layer-middle { z-index: 5; }
.layer-front { z-index: 10; }

.moon-image {
    width: 35vw; max-width: 500px; min-width: 200px; height: auto;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.15));
}

/* YAZI AYARLARI */
.neon-text {
    font-family: var(--font-display);
    font-size: 7vw; 
    line-height: 1; color: #fff; text-align: center;
    text-shadow: 0 0 15px rgba(255,255,255,0.3), 0 0 30px var(--neon-blue);
    letter-spacing: 2px; margin: 0;
    white-space: nowrap; 
}

.top-text { transform: translateY(-120px); opacity: 0.9; }
.bottom-text { transform: translateY(120px); }
.cta-wrapper { margin-top: 40px; pointer-events: auto; transform: translateY(120px); }

.metal-button {
    position: relative; display: inline-block; padding: 16px 45px;
    background: linear-gradient(180deg, #fff 0%, #ccc 50%, #999 51%, #bbb 100%);
    border-radius: 100px; text-decoration: none; color: #000;
    font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; letter-spacing: 1px;
    border: 1px solid #fff; box-shadow: 0 0 25px rgba(255,255,255,0.3);
    overflow: hidden; transition: 0.3s; white-space: nowrap;
}
.shimmer {
    position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
    transform: skewX(-25deg); animation: shimmerAnim 3s infinite;
}

/* =========================================
   WORK PROCESS (DÜZELTİLMİŞ & ORTALANMIŞ)
   ========================================= */
.process-section {
    padding: 100px 5%;
    background: #050505;
    position: relative;
    overflow: hidden; /* Taşmaları gizle */
    text-align: center; /* Her şeyi ortala */
}

/* Başlık Alanı */
.process-header {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center; /* Dikeyde ortala */
}

.process-header .section-title {
    margin-bottom: 10px; /* Alt boşluğu azalttık */
}

.section-subtitle {
    color: #888;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-main);
    margin-top: 0;
}

/* Kapsayıcı */
.process-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* --- ENERJİ HATTI (THE BEAM) --- */
.line-container {
    position: absolute;
    top: 80px; /* Küplerin ortasına denk gelsin */
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 0;
}

.line-base {
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.line-beam {
    position: absolute; top: 0; left: 0;
    width: 0%; /* JS ile %100 olacak */
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), #fff);
    box-shadow: 0 0 20px var(--neon-blue);
    border-radius: 4px;
    transition: width 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- ADIMLAR KUTUSU --- */
.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.step-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
    opacity: 0; 
    transform: translateY(20px);
    transition: 0.5s ease;
}

.step-box.active {
    opacity: 1;
    transform: translateY(0);
}

.step-icon-wrapper {
    position: relative;
    width: 80px; height: 80px;
    margin-bottom: 25px;
    display: flex; justify-content: center; align-items: center;
    background: #050505; /* Çizgi arkada kalsın diye */
    border-radius: 50%; /* Hafif yuvarlaklık */
    z-index: 2;
}

/* HALELER */
.step-halo {
    position: absolute; width: 100%; height: 100%; opacity: 0; transform: scale(0);
    transition: 0.5s; z-index: -1; filter: blur(10px); border-radius: 50%;
}
.step-box:nth-child(1) .step-halo { background: rgba(0, 243, 255, 0.8); }
.step-box:nth-child(2) .step-halo { background: rgba(75, 0, 255, 0.8); }
.step-box:nth-child(3) .step-halo { background: rgba(143, 0, 255, 0.8); }
.step-box:nth-child(4) .step-halo { background: rgba(255, 0, 204, 0.8); }

.step-box.active .step-halo { animation: haloPulse 0.5s forwards; }

/* KRİSTAL KÜPLER */
.crystal-cube {
    width: 80px; height: 80px; background: #000;
    border: 2px solid rgba(255,255,255,0.1);
    transform: rotate(45deg);
    display: flex; justify-content: center; align-items: center;
    transition: 0.4s;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.crystal-cube i { 
    transform: rotate(-45deg); font-size: 1.8rem; transition: 0.3s; color: #666;
}

/* AKTİF DURUMLAR */
.step-box:nth-child(1).active .crystal-cube { border-color: var(--neon-blue); box-shadow: 0 0 30px var(--neon-blue); }
.step-box:nth-child(1).active i { color: var(--neon-blue); }

.step-box:nth-child(2).active .crystal-cube { border-color: #4b00ff; box-shadow: 0 0 30px #4b00ff; }
.step-box:nth-child(2).active i { color: #4b00ff; }

.step-box:nth-child(3).active .crystal-cube { border-color: var(--neon-purple); box-shadow: 0 0 30px var(--neon-purple); }
.step-box:nth-child(3).active i { color: var(--neon-purple); }

.step-box:nth-child(4).active .crystal-cube { border-color: #ff00cc; box-shadow: 0 0 30px #ff00cc; }
.step-box:nth-child(4).active i { color: #ff00cc; }

/* METİNLER */
.step-content h3 {
    font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 10px;
    color: #888; transition: 0.3s; letter-spacing: 1px;
}
.step-box.active h3 { color: white; }
.step-content p { color: #666; font-size: 0.85rem; line-height: 1.4; }

@keyframes haloPulse {
    0% { transform: scale(0); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}
/* --- MOBİL UYUM (WORK PROCESS - ŞEFFAF & ÇİZGİLİ) --- */
@media (max-width: 768px) {
    
    /* 1. Enerji Hattını Geri Getir ve Hizala */
    .line-container {
        display: block; /* Çizgiyi göster */
        width: 200%; /* Ekranın 2 katı uzunlukta olsun ki kaydırınca bitmesin */
        top: 70px; /* (30px padding + 40px ikon yarısı) = Tam merkeze */
        left: 0;
    }

    /* Işın Animasyonu Mobilde de Çalışsın */
    .line-beam {
        width: 100% !important; /* Mobilde hep dolu veya animasyonlu olsun */
        animation: beamPulse 3s infinite; /* Nabız gibi atsın */
    }

    /* 2. Kapsayıcı Ayarları */
    .steps-container {
        justify-content: flex-start; 
        overflow-x: auto; 
        padding-bottom: 30px; 
        gap: 0; /* Aradaki boşluğu kapattık, çizgi bağlayacak */
        padding-left: 20px;
    }
    .steps-container::-webkit-scrollbar { display: none; }

    /* 3. Kutuları Şeffaf Yap (Kutu Görünümü İptal) */
    .step-box {
        min-width: 180px; /* Biraz daha daralt */
        opacity: 1; 
        transform: translateY(0);
        
        /* ŞEFFAFLIK AYARLARI */
        background: transparent !important; /* Arka plan yok */
        border: none !important; /* Çerçeve yok */
        padding: 30px 10px; /* Üstten boşluk (Çizgi hizası için önemli) */
        box-shadow: none !important; /* Gölge yok */
    }
    
    /* İkonları Belirginleştir */
    .crystal-cube {
        background: #000; /* Çizginin üstünde net dursun */
        z-index: 2;
        box-shadow: 0 0 20px rgba(0,0,0,1); /* Arkadaki çizgiyi kessin */
    }

    /* Mobilde direkt renkli görünsün */
    .step-box:nth-child(1) .crystal-cube { border-color: var(--neon-blue); box-shadow: 0 0 15px var(--neon-blue); }
    .step-box:nth-child(1) i { color: var(--neon-blue); }
    
    .step-box:nth-child(2) .crystal-cube { border-color: #4b00ff; box-shadow: 0 0 15px #4b00ff; }
    .step-box:nth-child(2) i { color: #4b00ff; }
    
    .step-box:nth-child(3) .crystal-cube { border-color: var(--neon-purple); box-shadow: 0 0 15px var(--neon-purple); }
    .step-box:nth-child(3) i { color: var(--neon-purple); }
    
    .step-box:nth-child(4) .crystal-cube { border-color: #ff00cc; box-shadow: 0 0 15px #ff00cc; }
    .step-box:nth-child(4) i { color: #ff00cc; }
}

/* Mobil için Işın Nabız Efekti */
@keyframes beamPulse {
    0% { opacity: 0.5; box-shadow: 0 0 10px var(--neon-blue); }
    50% { opacity: 1; box-shadow: 0 0 25px var(--neon-blue); }
    100% { opacity: 0.5; box-shadow: 0 0 10px var(--neon-blue); }
}


/* Footer */
footer { background: linear-gradient(to top, #000, #080808); padding: 80px 20px 40px; border-top: 1px solid #111; }
.footer-content { max-width: 600px; margin: 0 auto; text-align: center; }
.contact-header h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 10px; }
.contact-header p { color: #666; margin-bottom: 30px; }
.clean-form { display: flex; flex-direction: column; gap: 15px; }
.input-row { display: flex; gap: 15px; }
.clean-form input, .clean-form textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid #333; padding: 15px; color: white; border-radius: 8px; outline: none; }
.submit-btn { background: white; color: black; border: none; padding: 15px; font-weight: 700; border-radius: 8px; cursor: pointer; font-family: var(--font-display); width: 100%; margin-top: 10px; }
.footer-bottom { margin-top: 50px; padding-top: 20px; border-top: 1px solid #222; display: flex; justify-content: space-between; align-items: center; }
.socials { display: flex; gap: 15px; }
.socials a { color: #666; font-size: 1.1rem; }

@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes shimmerAnim { 0% { left: -100%; } 20% { left: 200%; } 100% { left: 200%; } }

/* KAYMA ANİMASYONU TANIMI */
@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* İçerik x2 olduğu için %50 kayınca başa döner */
}

/* =========================================
   MOBİL VE TABLET DÜZENLEMELERİ (FİNAL)
   ========================================= */
@media (max-width: 1024px) {
    .neon-text { font-size: 8vw; }
    .top-text { transform: translateY(-90px); }
    .bottom-text { transform: translateY(90px); }
    .cta-wrapper { transform: translateY(90px); }
    .vision-nav { width: 80%; }
}

@media (max-width: 768px) {
    /* 1. YAZI TAŞMASINI ENGELLE (Fix) */
    .neon-text { 
        font-size: 9vw; /* 11vw'den 9vw'ye düşürüldü */
        letter-spacing: 0; /* Aralığı kapat */
    }
    
    .vision-nav { width: 95%; top: 20px; }
    .vision-nav ul { justify-content: space-between; padding: 4px; }
    .vision-nav li a { padding: 8px 6px; font-size: 0.65rem; letter-spacing: 0; }

    .top-text { transform: translateY(-60px); }
    .bottom-text { transform: translateY(60px); }
    .cta-wrapper { transform: translateY(70px); margin-top: 20px; }
    .moon-image { width: 60vw; max-width: 300px; }

    /* 2. WORK PROCESS: OTOMATİK AKIŞ (Fix) */
    .process-container {
        justify-content: flex-start; 
        gap: 0;
        width: max-content; /* İçerik kadar genişle */
        
        /* Animasyon Ayarı: Başlangıçta 'paused' (duruk) */
        animation: scrollLoop 20s linear infinite;
        animation-play-state: paused; 
    }
    
    /* Javascript 'animate' class'ı ekleyince çalışsın */
    .process-container.animate {
        animation-play-state: running;
    }

    .step-card { 
        width: 70vw; /* Kart genişliği */
        margin-right: 20px; /* Kart arası boşluk */
    }
    .track-line { top: 40px; width: 500%; } /* Çizgiyi çok uzun yap */
    .input-row { flex-direction: column; }
    .footer-bottom { flex-direction: column; gap: 20px; }
}

/* =========================================
   NEW SECTION: SERVICES (VISION PRO STYLE)
   ========================================= */
.services-section {
    padding: 100px 5%;
    background: radial-gradient(circle at center, #111 0%, #000 80%);
    position: relative;
    /* Hafif bir grid desen arka planı ekleyelim, Vision Pro havası için */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive Grid */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- VISION PRO GLASS CARD --- */
.glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03); /* Çok hafif beyaz dolgu */
    backdrop-filter: blur(20px); /* BUZLU CAM EFEKTİ */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* İnce cam çerçeve */
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Üst kısım ışık vurmuş gibi daha parlak */
    border-radius: 24px; /* Apple tarzı geniş yuvarlatma */
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); /* Derinlik gölgesi */
}

/* Hover Efekti: Kart havaya kalkar ve cam parlar */
.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.1);
}

/* --- 3D METALİK İKONLAR (CSS İLE) --- */
.card-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FontAwesome İkonunu Metale Çevirme */
.card-icon i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #e0e0e0 0%, #888 50%, #fff 100%); /* Gümüş Gradyan */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 5px rgba(0,0,0,0.5)); /* 3D Gölge */
    transition: 0.3s;
}

.glass-card:hover .card-icon i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.6));
}

/* İkonun üzerindeki küçük rozet (Web dev'deki kod ikonu gibi) */
.icon-badge {
    position: absolute;
    bottom: -5px;
    right: -10px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 5px 10px;
    backdrop-filter: blur(5px);
}

.icon-badge i {
    font-size: 1rem;
    background: none;
    -webkit-text-fill-color: white;
    color: white;
    filter: none;
}

/* Kart Yazıları */
.glass-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    letter-spacing: 0.5px;
}

.glass-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        padding: 0 10px;
    }
    .glass-card {
        padding: 40px 20px;
    }
}
/* =========================================
   PORTFOLIO SECTION (3D CAROUSEL)
   ========================================= */
.portfolio-section {
    padding: 80px 0;
    background: #000;
    overflow: hidden; /* Taşmaları gizle */
    position: relative;
    height: 700px; /* Carousel için yükseklik alanı */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Perspektif derinliğini artırdık ki kartlar daha 3D dursun */
    perspective: 1200px; 
}

.inner {
    /* Eski: 220px / 300px / 280px idi */
    --w: 160px;      /* Genişlik küçüldü */
    --h: 240px;      /* Yükseklik küçüldü */
    --translateZ: 230px; /* Çember daraltıldı (Kartlar birbirine yaklaşsın) */
    
    --rotateX: -10deg;
    --perspective: 1000px;
    position: absolute;
    width: var(--w);
    height: var(--h);
    z-index: 2;
    transform-style: preserve-3d;
    transform: perspective(var(--perspective));
    animation: rotating 30s linear infinite; 
}

@keyframes rotating {
    from {
        transform: perspective(var(--perspective)) rotateX(var(--rotateX)) rotateY(0);
    }
    to {
        transform: perspective(var(--perspective)) rotateX(var(--rotateX)) rotateY(1turn);
    }
}

/* --- VISION PRO STYLE CARD --- */
.card {
    position: absolute;
    inset: 0; /* Kartı kapsayıcıya yay */
    
    /* RGB rengini değişkenden al */
    border: 2px solid rgba(var(--color-card), 0.5); 
    border-radius: 20px;
    overflow: hidden;
    
    /* 3D HESAPLAMA (Dokunma Buraya) */
    transform: rotateY(calc((360deg / var(--quantity)) * var(--index))) translateZ(var(--translateZ));
    
    /* Cam Efekti */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(var(--color-card), 0.2);
    transition: box-shadow 0.3s ease;
}

/* Kartın içindeki "Ekran" görüntüsü (Gradyan) */
.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: radial-gradient(
        circle,
        rgba(var(--color-card), 0.2) 0%,
        rgba(var(--color-card), 0.5) 80%,
        rgba(0, 0, 0, 0.9) 100%
    );
    opacity: 0.8;
}

/* Kartın Üzerine Gelince (Hover) */
.card:hover {
    box-shadow: 0 0 40px rgba(var(--color-card), 0.6);
    border-color: rgba(var(--color-card), 1);
}

/* Kart İçeriği (Yazı ve Buton) */
.card-content {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.card-content h4 {
    font-family: var(--font-display);
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 10px black;
}

.card-content button {
    padding: 8px 20px;
    background: rgba(var(--color-card), 0.2);
    border: 1px solid rgba(var(--color-card), 0.8);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.8rem;
    transition: 0.3s;
}

.card-content button:hover {
    background: rgba(var(--color-card), 1);
    color: black;
    box-shadow: 0 0 15px rgba(var(--color-card), 1);
}

@media (max-width: 768px) {
    .portfolio-section {
        height: 500px;
    }
    .inner {
        --w: 120px;       /* Mobilde daha minik */
        --h: 180px;
        --translateZ: 170px; /* Çember daha dar */
    }
}

/* =========================================
   REVIEWS SECTION (EXPANDABLE CARDS)
   ========================================= */
.reviews-section {
    padding: 100px 5%;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 90%);
    text-align: center;
    position: relative;
}

.reviews-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Mobilde alt alta geçsin */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* --- THE UIVERSE CARD (ADAPTED) --- */
.review-card {
    width: 300px; /* Genişliği artırdık */
    height: 140px; /* Başlangıç yüksekliği */
    padding: 1.5rem;
    
    /* Dark Glass Temasına Uyarlama */
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* Kenarlıklar */
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Skew (Eğme) Efekti */
    transform: skewX(10deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanma efekti */
    overflow: hidden;
    color: white;
    text-align: left;
}

/* HOVER (Üzerine Gelince) */
.review-card:hover {
    height: 280px; /* Uzama miktarı */
    transform: skewX(0deg) translateY(-10px); /* Düzleş ve hafif yukarı çık */
    background: rgba(255, 255, 255, 0.08); /* Biraz daha aydınlık */
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    z-index: 10; /* Diğerlerinin üzerine çıksın */
}

/* Trafik Işıkları (Mac Style Dots) */
.align {
    padding-bottom: 1rem;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-self: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 10px;
}

.red {
    width: 12px; height: 12px; border-radius: 50%;
    background-color: #ff605c;
    box-shadow: 0 0 10px rgba(255, 96, 92, 0.4);
}
.yellow {
    width: 12px; height: 12px; border-radius: 50%;
    background-color: #ffbd44;
    box-shadow: 0 0 10px rgba(255, 189, 68, 0.4);
}
.green {
    width: 12px; height: 12px; border-radius: 50%;
    background-color: #00ca4e;
    box-shadow: 0 0 10px rgba(0, 202, 78, 0.4);
}

/* Başlık (Şirket Adı) */
.review-card h1 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin: 10px 0;
    color: var(--neon-blue); /* Neon mavi başlık */
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
    /* Başlangıçta eğik durduğu için yazıyı düzeltmeye çalışalım */
    transform: skewX(-10deg); 
    transition: 0.4s;
}

.review-card:hover h1 {
    transform: skewX(0deg); /* Kart düzleşince yazı da düzleşsin */
    color: white;
}

/* Yorum Metni */
.review-card p {
    font-family: var(--font-main);
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0; /* Başlangıçta gizli olsun mu? Hayır, yarım görünsün daha merak uyandırır */
    opacity: 0.6;
    transform: translateY(20px) skewX(-10deg);
    transition: 0.4s;
}

.review-card:hover p {
    opacity: 1;
    transform: translateY(0) skewX(0deg);
    color: white;
}

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .review-card {
        width: 100%; /* Telefonta tam genişlik */
        max-width: 350px;
        transform: skewX(0deg); /* Mobilde skew kapat, yoksa taşar */
        height: auto; /* Mobilde direkt açık olsun veya kısa kalsın */
    }
    .review-card h1, .review-card p {
        transform: none; /* Mobilde yazı yamuk durmasın */
    }
    .review-card:hover {
        transform: translateY(-5px); /* Sadece yukarı çıksın */
    }
}
/* =========================================
   YENİ İLETİŞİM FORMU (GRADIENT BORDER)
   ========================================= */

/* Kapsayıcıyı ortalamak için */
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container {
    width: 100%; /* Mobilde ekranı doldur */
    max-width: 450px; /* Masaüstünde çok yayılma */
    /* Arka plan rengini siteyle uyumlu hale getirdik */
    background: linear-gradient(#111, #111) padding-box,
                linear-gradient(145deg, transparent 35%, var(--neon-purple), var(--neon-blue)) border-box;
    border: 2px solid transparent;
    padding: 32px 24px;
    font-size: 14px;
    font-family: inherit;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
    border-radius: 16px;
    margin: 0 auto; /* Ortala */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Derinlik ver */
}

.form-container button:active {
    scale: 0.95;
}

.form-container .form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-container .form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.form-container .form-group label {
    display: block;
    margin-bottom: 5px;
    color: #a0a0a0; /* Biraz daha okunabilir gri */
    font-weight: 600;
    font-size: 12px;
    font-family: var(--font-display); /* Sitenin fontu */
    letter-spacing: 1px;
}

.form-container .form-group input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    background-color: rgba(255,255,255,0.05); /* Hafif şeffaf */
    border: 1px solid #414141;
    transition: 0.3s;
}

.form-container .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    resize: none;
    color: #fff;
    height: 96px;
    border: 1px solid #414141;
    background-color: rgba(255,255,255,0.05);
    font-family: inherit;
    transition: 0.3s;
}

.form-container .form-group input::placeholder {
    opacity: 0.5;
}

/* Focus olunca Neon Mavi Yansın */
.form-container .form-group input:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    background-color: rgba(0, 243, 255, 0.05);
}

.form-container .form-group textarea:focus {
    outline: none;
    border-color: var(--neon-blue);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
    background-color: rgba(0, 243, 255, 0.05);
}

.form-container .form-submit-btn {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    align-self: flex-start;
    font-family: var(--font-display);
    color: #fff;
    font-weight: 600;
    width: 100%; /* Buton tam genişlik olsun, daha şık durur */
    background: #313131;
    border: 1px solid #414141;
    padding: 14px 16px;
    font-size: inherit;
    gap: 8px;
    margin-top: 8px;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.form-container .form-submit-btn:hover {
    background-color: var(--neon-purple);
    border-color: var(--neon-purple);
    color: white;
    box-shadow: 0 0 20px var(--neon-purple);
}
/* =========================================
   FOOTER BOTTOM (MARKA & YASAL)
   ========================================= */

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* İnce çizgi */
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Alt hizalama */
    flex-wrap: wrap;
    gap: 30px;
}

/* Sol Taraf (Marka ve Linkler) */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* MARKA İSMİ (AyTechnology) */
.brand-logo {
    font-family: var(--font-display); /* Orbitron Fontu */
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s;
}

.brand-logo:hover {
    text-shadow: 0 0 20px var(--neon-blue); /* Üzerine gelince neon parlasın */
}

/* YASAL LİNKLER */
.legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-family: var(--font-main);
}

.legal-links a {
    text-decoration: none;
    color: #888;
    transition: 0.3s ease;
    position: relative;
}

.legal-links a:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 8px var(--neon-blue);
}

/* Linkler arasındaki çizgi */
.separator {
    color: #444;
}

/* Telif Hakkı Yazısı */
.copyright {
    font-size: 0.75rem;
    color: #555;
    margin-top: 5px;
}

/* SOSYAL MEDYA İKONLARI */
.socials {
    display: flex;
    gap: 15px;
}

.socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.socials a:hover {
    background: white;
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 0 15px white;
}

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-left {
        align-items: center; /* Mobilde ortala */
    }
    
    .brand-logo {
        font-size: 1.5rem;
    }
}
/* =========================================
   FAQ SECTION (HOLOGRAPHIC ACCORDION)
   ========================================= */
.faq-section {
    padding: 100px 5%;
    background: #050505; /* Arka plan hafif ayrılsın diye */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-container {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Aktif olduğunda (Açıldığında) */
.faq-item.active {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.15);
    background: rgba(0, 243, 255, 0.02);
}

/* Soru Başlığı Butonu */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: white;
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-align: left;
    transition: 0.3s;
}

.faq-question span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.faq-question i {
    color: #888;
    transition: transform 0.3s ease;
}

/* Hover Durumu */
.faq-question:hover {
    color: var(--neon-blue);
}
.faq-question:hover i {
    color: white;
}

/* Aktif olunca ok işareti dönsün */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--neon-blue);
}

/* Cevap Alanı (Animasyonlu Açılma) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1); /* Yaylı açılma */
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: var(--font-main);
}
/* =========================================
   TECH STACK MARQUEE
   ========================================= */
.tech-stack-section {
    padding: 40px 0;
    background: black;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Sol ve sağ kenarlara hafif karartma (Fade effect) */
.tech-stack-section::before,
.tech-stack-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.tech-stack-section::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.tech-stack-section::after { right: 0; background: linear-gradient(to left, #000, transparent); }

.tech-track {
    display: flex;
    width: max-content;
    animation: scrollTech 30s linear infinite;
}

.tech-logos {
    display: flex;
    gap: 80px; /* Logolar arası boşluk */
    padding-right: 80px;
}

.tech-logos i {
    font-size: 3rem; /* Logo boyutu */
    color: #333; /* Başlangıçta sönük gri */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* HOVER EFEKTLERİ (Her markanın kendi rengi) */
.tech-logos i:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px currentColor); /* Kendi renginde parlasın */
}

/* Özel Renk Tanımları (FontAwesome classlarına göre) */
.fa-react:hover { color: #61DAFB; }
.fa-js:hover { color: #F7DF1E; }
.fa-python:hover { color: #3776AB; }
.fa-node:hover { color: #339933; }
.fa-aws:hover { color: #FF9900; }
.fa-docker:hover { color: #2496ED; }
.fa-figma:hover { color: #F24E1E; }
.fa-android:hover { color: #3DDC84; }
.fa-apple:hover { color: #fff; }
.fa-html5:hover { color: #E34F26; }

@keyframes scrollTech {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobil Ayar */
@media (max-width: 768px) {
    .tech-logos { gap: 40px; padding-right: 40px; }
    .tech-logos i { font-size: 2.5rem; }
}
/* =========================================
   STATS COUNTER SECTION
   ========================================= */
.stats-section {
    padding: 60px 5%;
    background: #000; /* Reviews ile karışmasın diye tam siyah */
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    
    /* Hafif bir çerçeve içine alalım */
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    position: relative;
    min-width: 150px;
}

/* İkon */
.stat-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #aaa, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    opacity: 0.8;
}

/* Rakam ve Artı İşareti Kapsayıcısı */
.stat-item h3, .stat-item .plus {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1;
    /* Neon Parlama Efekti */
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.stat-item .plus {
    color: var(--neon-blue);
    font-size: 2.5rem;
    vertical-align: super; /* Rakamın biraz üstünde dursun */
}

/* Alt Yazı */
.stat-item p {
    color: #888;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mobil Ayar */
@media (max-width: 768px) {
    .stats-container {
        /* Flex'i iptal edip Grid'e geçiyoruz */
        display: grid; 
        grid-template-columns: 1fr 1fr; /* Ekranı tam ortadan ikiye böl (Yan Yana) */
        gap: 20px; /* Kutular arası boşluğu biraz azalt */
        padding: 20px; /* Kapsayıcı iç boşluğunu azalt */
    }

    .stat-item {
        min-width: auto; /* Genişlik zorlamasını kaldır */
        padding: 10px 0; /* Dikeyde biraz nefes payı */
    }

    /* İkonu küçült */
    .stat-icon i {
        font-size: 1.5rem; 
        margin-bottom: 5px;
    }

    /* Rakamları küçült ama hala okunaklı olsun */
    .stat-item h3 {
        font-size: 2.2rem; 
    }

    .stat-item .plus {
        font-size: 1.5rem;
    }

    /* Alt yazıyı küçült ve sığdır */
    .stat-item p {
        font-size: 0.75rem;
        margin-top: 5px;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }
}
/* =========================================
   PARALLAX QUOTE SECTION (SİNEMATİK GEÇİŞ)
   ========================================= */
.quote-section {
    position: relative;
    height: 60vh; /* Ekranın %60'ı kadar yer kaplasın */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed; /* İŞTE SİHİR BURADA: Sabit Arka Plan */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    /* Arka plan resmi yerine CSS ile Havalı Bir Gradyan/Desen */
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
    /* Not: Bu Unsplash'ten rastgele bir teknoloji/uzay fotosudur. 
       İstersen kendi görselinle değiştir: url('bg.jpg') gibi. */
       
    overflow: hidden;
}

/* Karanlık Perde (Yazı okunsun diye) */
.quote-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7); /* %70 Siyahlık */
    z-index: 1;
}

.quote-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

/* Motto Başlığı */
.quote-content h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease-out forwards;
}

/* Alt Açıklama */
.quote-content p {
    font-family: var(--font-main);
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.3s forwards; /* 0.3s gecikmeli */
}

/* Parlayan Link Buton */
.glow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--neon-blue);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
    transition: 0.3s;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.6s forwards; /* 0.6s gecikmeli */
}

.glow-link:hover {
    color: white;
    text-shadow: 0 0 10px var(--neon-blue);
    border-bottom-color: var(--neon-blue);
    gap: 15px; /* Ok işareti sağa kaysın */
}

/* Basit Giriş Animasyonu */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Ayar */
@media (max-width: 768px) {
    .quote-section { height: 50vh; background-attachment: scroll; /* Mobilde fixed bazen kasar, kapatalım */ }
    .quote-content h2 { font-size: 2rem; }
}
/* --- DİL DEĞİŞTİRME BUTONU --- */
.lang-switch {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px !important; /* Diğer li'lerden farklı padding */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    margin-left: 10px;
}

.lang-switch:hover {
    background: var(--neon-blue);
    color: black;
    box-shadow: 0 0 10px var(--neon-blue);
}

.lang-switch span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
}

/* =========================================
   PORTFOLIO IMAGE FILLS (KAPAK GÖRSELLERİ)
   ========================================= */

/* Tüm kartların resim ayarı */
.card .img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Üzerine hafif siyah perde çekelim ki yazılar okunsun */
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
    transition: transform 0.5s ease;
}

/* Hover olunca resim biraz yakınlaşsın (Zoom In) */
.card:hover .img {
    transform: scale(1.1);
}

/* --- KARTLARA ÖZEL RESİMLER --- */

/* 1. Kart: E-Ticaret (Neon Şehir) */
.card[style*="--index: 0"] .img {
    background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?q=80&w=1000');
}

/* 2. Kart: Kurumsal (Gökdelenler) */
.card[style*="--index: 1"] .img {
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1000&auto=format&fit=crop');
}

/* 3. Kart: SaaS Platform (Veri/Dashboard) */
.card[style*="--index: 2"] .img {
    background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=1000&auto=format&fit=crop');
}

/* 4. Kart: Mobil Uygulama (Telefon/Teknoloji) */
.card[style*="--index: 3"] .img {
    background-image: url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?q=80&w=1000&auto=format&fit=crop');
}

/* 5. Kart: Dashboard (Kod/Matrix) */
.card[style*="--index: 4"] .img {
    background-image: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?q=80&w=1000&auto=format&fit=crop');
}

/* =========================================
   BLOG SECTION (INTERACTIVE STACK)
   ========================================= */
.blog-section {
    padding: 100px 5%;
    background: #080808;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden; /* Taşmaları gizle */
}

/* Kapsayıcı (Container) */
.blog-stack-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; /* Kartların rahat hareket etmesi için alan */
    padding: 40px 0;
}

/* Kartların Temel Yapısı */
.blog-card-stack {
    position: relative;
    width: 280px; /* Kart genişliği */
    height: 380px; /* Kart yüksekliği */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    
    display: flex;
    flex-direction: column;
    
    /* CAM (GLASS) EFEKTİ */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    
    /* ANİMASYON GEÇİŞLERİ */
    transition: 0.5s ease-in-out;
    
    /* BAŞLANGIÇ DURUMU (Üst üste binme) */
    margin: 0 -60px; /* Negatif margin ile iç içe geçiriyoruz */
    transform: rotate(calc(var(--r) * 1deg)); /* HTML'den gelen açı ile döndür */
    z-index: 1;
}

/* HOVER DURUMU (Açılma Efekti) */
.blog-stack-container:hover .blog-card-stack {
    transform: rotate(0deg); /* Düzelt */
    margin: 0 20px; /* Aralarını aç */
    background: rgba(255, 255, 255, 0.08); /* Biraz aydınlat */
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(var(--neon-blue), 0.1); /* Hafif neon gölge */
}

/* Hover'da kartların üzerine gelince öne çıksın */
.blog-card-stack:hover {
    transform: scale(1.05) !important;
    z-index: 10 !important;
    border-color: var(--neon-blue);
}

/* --- KART İÇERİK TASARIMI --- */
.blog-img {
    height: 50%; /* Kartın yarısı resim */
    width: 100%;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.blog-date {
    position: absolute; top: 10px; right: 10px;
    background: rgba(0,0,0,0.8); color: white;
    padding: 4px 8px; font-size: 0.7rem; border-radius: 5px;
    font-family: var(--font-display);
    border: 1px solid rgba(255,255,255,0.2);
}

.blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
}

.blog-tag {
    color: var(--neon-blue);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.blog-card-stack h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: white;
    margin: 10px 0;
    line-height: 1.3;
}

.read-more {
    text-decoration: none;
    color: #aaa;
    font-size: 0.8rem;
    display: flex; align-items: center; gap: 8px;
    transition: 0.3s;
    margin-top: auto; /* En alta it */
}

.blog-card-stack:hover .read-more {
    color: var(--neon-blue);
}

/* --- MOBİL UYUM (DİKEY AÇILMA) --- */
@media (max-width: 1024px) {
    .blog-stack-container {
        flex-direction: column; /* Mobilde alt alta diz */
        min-height: 600px;
        padding-top: 60px; /* Üstten biraz boşluk bırak */
    }

    .blog-card-stack {
        width: 90%; /* Genişlik ekranı doldursun */
        max-width: 400px;
        height: 160px; /* Yüksekliği artırdık ki buton sığsın */
        margin: -50px 0; /* Dikeyde üst üste binme oranı */
        flex-direction: row; /* Resmi sola, yazıyı sağa al */
        overflow: hidden;
        transform: rotate(0deg) !important; /* Açıyı sıfırla */
    }
    
    /* Resim Ayarı */
    .blog-img {
        width: 120px; 
        height: 100%; 
        border-bottom: none; 
        border-right: 1px solid rgba(255,255,255,0.1);
        flex-shrink: 0; /* Resim sıkışmasın */
    }
    
    /* İçerik Alanı */
    .blog-content {
        justify-content: center;
        padding: 15px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Sola yasla */
    }

    .blog-tag {
        font-size: 0.6rem;
        margin-bottom: 5px;
    }

    .blog-content h3 { 
        font-size: 1rem; 
        margin: 5px 0 10px 0;
        line-height: 1.2;
    }

    /* --- BUTON GERİ GELDİ --- */
    .read-more { 
        display: flex; /* GİZLEMİYORUZ ARTIK */
        margin-top: auto; /* En alta it */
        font-size: 0.75rem;
        padding: 5px 10px;
        background: rgba(255,255,255,0.1);
        border-radius: 20px;
        border: 1px solid rgba(255,255,255,0.2);
    }

    /* Mobilde Hover/Click Durumu */
    .blog-stack-container:hover .blog-card-stack {
        margin: 15px 0; /* Aralarını biraz daha aç */
        transform: scale(1);
    }
    
    /* Seçilen kart */
    .blog-card-stack:hover {
        transform: scale(1.02) !important;
        background: #111;
        z-index: 100;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    }
}

/* =========================================
   PRICING SECTION (GLASS CARDS)
   ========================================= */
.pricing-section {
    padding: 100px 5%;
    background: radial-gradient(circle at top, #111 0%, #000 100%);
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center; /* Ortadaki büyük kart için center */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 350px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* ÖNE ÇIKAN KART (ORTADAKİ) */
.pricing-card.featured {
    transform: scale(1.1);
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(188, 19, 254, 0.15);
    background: rgba(188, 19, 254, 0.05);
    z-index: 2;
}

.pricing-card.featured:hover {
    transform: scale(1.15); /* Hoverda daha da büyüsün */
    box-shadow: 0 0 50px rgba(188, 19, 254, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px; left: 50%; transform: translateX(-50%);
    background: var(--neon-purple);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: 0 0 15px var(--neon-purple);
}

/* Fiyat Başlığı */
.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.price {
    display: flex; justify-content: center; align-items: flex-start;
    margin-bottom: 10px; color: white;
}

.currency { font-size: 1.5rem; margin-top: 10px; }
.amount { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; }

.pricing-header p { color: #888; font-size: 0.9rem; margin-bottom: 30px; }

/* Liste */
.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95rem;
    display: flex; align-items: center; gap: 10px;
}

.pricing-features li i { color: var(--neon-blue); }
.pricing-features li.disabled { color: #555; text-decoration: line-through; }
.pricing-features li.disabled i { color: #555; }

/* Buton */
.pricing-btn {
    display: inline-block; width: 100%; padding: 15px 0;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    color: white; text-decoration: none;
    font-family: var(--font-display); font-weight: 700;
    transition: 0.3s;
}

.pricing-card.featured .pricing-btn {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.4);
}

.pricing-btn:hover {
    background: white;
    color: black;
    box-shadow: 0 0 20px white;
}

/* MOBİL UYUM */
@media (max-width: 1024px) {
    .pricing-container { flex-direction: column; gap: 50px; }
    .pricing-card.featured { transform: scale(1); } /* Mobilde büyümesin */
    .pricing-card.featured:hover { transform: translateY(-10px); }
    .pricing-card { width: 100%; max-width: 400px; }
}

/* =========================================
   CUSTOM NOTIFICATIONS (TOAST)
   ========================================= */

.notification-container {
    position: fixed;
    top: 20px;
    right: 20px; /* Sağ üstte dursun, daha modern */
    z-index: 10000; /* Her şeyin üstünde */
    max-width: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style-type: none;
    pointer-events: none; /* Tıklamalar arkaya geçebilsin (boşluklarda) */
}

.notification-item {
    pointer-events: auto; /* Bildirim tıklanabilir olsun */
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1em;
    overflow: hidden;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background-color: #f3f3f3;
    transition: all 0.3s ease;
    animation: slideIn 0.3s ease forwards;
    /* Grid Pattern */
    --grid-color: rgba(225, 225, 225, 0.7);
    background-image: linear-gradient(0deg, transparent 23%, var(--grid-color) 24%, var(--grid-color) 25%, transparent 26%, transparent 73%, var(--grid-color) 74%, var(--grid-color) 75%, transparent 76%, transparent),
                      linear-gradient(90deg, transparent 23%, var(--grid-color) 24%, var(--grid-color) 25%, transparent 26%, transparent 73%, var(--grid-color) 74%, var(--grid-color) 75%, transparent 76%, transparent);
    background-size: 55px 55px;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    to { transform: translateX(100%); opacity: 0; }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-text {
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #333;
}

.notification-icon svg {
    width: 24px;
    height: 24px;
}

.notification-close {
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
}
.notification-close:hover svg { transform: scale(1.1); }

/* SUCCESS THEME */
.success {
    background-color: #d1fae5;
    border-left: 4px solid #047857;
    --grid-color: rgba(16, 185, 129, 0.1);
}
.success .notification-text { color: #065f46; }
.success svg { color: #047857; }
.success .notification-progress-bar { background-color: #047857; }

/* ERROR THEME */
.error {
    background-color: #fee2e2;
    border-left: 4px solid #b91c1c;
    --grid-color: rgba(239, 68, 68, 0.1);
}
.error .notification-text { color: #991b1b; }
.error svg { color: #b91c1c; }
.error .notification-progress-bar { background-color: #b91c1c; }

/* INFO THEME */
.info {
    background-color: #dbeafe;
    border-left: 4px solid #1d4ed8;
    --grid-color: rgba(59, 131, 246, 0.1);
}
.info .notification-text { color: #1e40af; }
.info svg { color: #1d4ed8; }
.info .notification-progress-bar { background-color: #1d4ed8; }

/* PROGRESS BAR */
.notification-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    transform-origin: left;
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    0% { width: 100%; }
    100% { width: 0%; }
}