@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;300;400;600;800&family=Inter:wght@200;400;700&display=swap');

:root {
    --background: #070709;
    --foreground: #ffffff;
    --accent-blue: #3b82f6; /* Premium Kurumsal Safir Mavisi */
    --accent-purple: #8b5cf6; /* Kurumsal Asil Violet Mor */
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.06);
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: auto !important; /* İmleç her yerde zorunlu olarak gösterilsin */
    user-select: none; /* Ekran görüntüsü ve kopyalamayı zorlaştırır */
    -webkit-user-select: none;
}

/* Ekran Alıntısı Koruması (Print) */
@media print {
    body {
        display: none !important;
    }
}

html, body {
    width: 100%;
    overflow-x: hidden;
    /* Metin seçimini engelle */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    
    background: 
        linear-gradient(rgba(7, 7, 9, 0.85), rgba(7, 7, 9, 0.85)),
        url('../noble_tech_bg.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--foreground);
    font-family: var(--font-secondary);
    scroll-behavior: smooth;
}

/* Giriş alanlarında seçime izin ver */
input, textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
}

/* Koyu Temalı Premium Arkaplan Radyal Işıkları */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08), transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.03), transparent 60%),
                radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.03), transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black, transparent 90%);
}

.bg-scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.015), transparent);
    z-index: -1;
    pointer-events: none;
    animation: scan 16s linear infinite;
}

@keyframes scan {
    from { transform: translateY(-100vh); }
    to { transform: translateY(100vh); }
}

/* Konteyner - Mobil Duyarlı */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigasyon - Premium Cam Görünümü */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 100;
    background: rgba(7, 7, 9, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: var(--font-primary);
}

.nav-links a {
    color: #999;
    text-decoration: none;
    margin-left: 1.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Hero Section - Premium Kurumsal Karşılama */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
}

.hero h1 {
    font-size: clamp(2.8rem, 10vw, 6.5rem); /* Kurumsal orantı */
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    background: linear-gradient(180deg, #ffffff 40%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: clamp(0.95rem, 3vw, 1.15rem);
    color: #8a8f98;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
    line-height: 1.75;
    letter-spacing: -0.01em;
}

/* Proje Izgarası - Mobil Uyumlu */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Premium Proje Kartları */
.project-card {
    position: relative;
    aspect-ratio: 4/5;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.project-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 
                0 0 40px rgba(59, 130, 246, 0.08);
    transform: translateY(-4px);
}

.project-card:hover .project-image {
    transform: scale(1.04);
    opacity: 0.8;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.75rem;
    background: linear-gradient(to top, rgba(7,7,9,0.95) 20%, rgba(7,7,9,0.4) 60%, transparent);
}

/* Proje Detay Sayfası - Mobil Uyumlu */
.detail-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: center; /* Merkeze hizala */
}

@media (min-width: 1024px) {
    .detail-hero {
        grid-template-columns: 0.8fr 1.2fr; /* Fotoğraf daha küçük, metin daha geniş */
        gap: 6rem;
    }
}

.detail-img-box {
    width: 100%;
    max-height: 60vh; /* Ekran yüksekliğinin %60'ından fazla olmasın */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    background: rgba(0,0,0,0.3); /* Fotoğraf sığarken arkada kalan boşluk için hafif bir gölge */
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Fotoğrafın TAMAMINI gösterir, asla kesmez */
    display: block;
}

/* Galeri - Mobil Uyumlu */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Neon & Glass Utilities */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
}

.neon-text {
    color: var(--accent-blue);
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.45);
}

/* Intro Overlay */
#intro-overlay {
    position: fixed;
    inset: 0;
    background: black;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.intro-text {
    font-size: clamp(1.5rem, 8vw, 3rem);
    font-weight: 800;
    color: white;
}

.cursor {
    display: none !important; /* Özel imleç gizlendi, varsayılan kullanılıyor */
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s;
}

/* Custom Cursor - Sadece Masaüstünde */
@media (max-width: 1024px) {
    .cursor {
        display: none !important;
    }
}

/* ==========================================================================
   İletişim Alanı ve Sosyal Medya Butonları
   ========================================================================== */

/* Footer İletişim Kartları */
.footer-contact-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    min-width: 280px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #888;
    transition: all 0.4s ease;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: transform 0.4s ease;
}

.contact-card-info {
    text-align: left;
}

.contact-card-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #666;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.contact-card-value {
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: #fff;
}

/* Kartların Neon Hover Efektleri */
.whatsapp-card:hover {
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.15);
    background: rgba(37, 211, 102, 0.02);
    transform: translateY(-5px);
}
.whatsapp-card:hover .contact-card-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}
.whatsapp-card:hover .contact-card-icon svg {
    transform: scale(1.1);
}
.whatsapp-card:hover .contact-card-title {
    color: #25d366;
}

.instagram-card:hover {
    border-color: rgba(225, 48, 108, 0.4);
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.15);
    background: rgba(225, 48, 108, 0.02);
    transform: translateY(-5px);
}
.instagram-card:hover .contact-card-icon {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.3);
}
.instagram-card:hover .contact-card-icon svg {
    transform: scale(1.1);
}
.instagram-card:hover .contact-card-title {
    color: #e1306c;
}

.phone-copy-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.15);
    background: rgba(59, 130, 246, 0.02);
    transform: translateY(-5px);
}
.phone-copy-card:hover .contact-card-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}
.phone-copy-card:hover .contact-card-icon svg {
    transform: scale(1.1);
}
.phone-copy-card:hover .contact-card-title {
    color: var(--accent-blue);
}

/* Sabit Yüzen Hızlı İletişim Butonları */
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 7, 9, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #999;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.floating-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    transition: transform 0.4s ease;
}

.floating-whatsapp-btn {
    border-color: rgba(37, 211, 102, 0.25);
}
.floating-whatsapp-btn:hover {
    color: #25d366;
    border-color: #25d366;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-5px) scale(1.1);
}

.floating-instagram-btn {
    border-color: rgba(225, 48, 108, 0.25);
}
.floating-instagram-btn:hover {
    color: #e1306c;
    border-color: #e1306c;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.4);
    transform: translateY(-5px) scale(1.1);
}

.floating-btn:hover svg {
    transform: scale(1.15);
}

/* Mobil Cihazlar İçin Ayarlamalar */
@media (max-width: 768px) {
    .floating-contact-wrap {
        bottom: 20px;
        right: 20px;
        flex-direction: row;
        gap: 12px;
    }
    .floating-btn {
        width: 52px;
        height: 52px;
    }
    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
    .contact-card {
        min-width: 100%;
        padding: 1rem 1.2rem;
        gap: 1rem;
    }
    .why-us-wrap {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Yeni Bölüm Tasarımları (Hizmetler, Neden Biz, Teknolojiler, Süreç)
   ========================================================================== */

/* Hizmetlerimiz (Services) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem 2rem;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 35px rgba(139, 92, 246, 0.08);
    transform: translateY(-5px);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.service-card:hover .service-card-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    font-family: var(--font-primary);
}

.service-card p {
    font-size: 0.88rem;
    color: #8a8f98;
    line-height: 1.6;
}

/* Neden Biz? (Why Us) */
.why-us-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3.5rem;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 1024px) {
    .why-us-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.why-us-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-us-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.feature-item {
    padding-left: 1.5rem;
    border-left: 2px solid rgba(59, 130, 246, 0.15);
    transition: all 0.4s ease;
}

.feature-item:hover {
    border-left-color: var(--accent-blue);
    padding-left: 1.75rem;
}

.feature-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.feature-item p {
    font-size: 0.88rem;
    color: #8a8f98;
    line-height: 1.6;
}

/* Teknoloji Altyapımız (Tech Stack) */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.tech-badge {
    padding: 0.75rem 1.6rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.tech-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #777;
    letter-spacing: 0.05em;
    font-family: var(--font-primary);
    transition: color 0.3s ease;
}

.tech-badge:hover {
    border-color: rgba(59, 130, 246, 0.25);
    background: rgba(59, 130, 246, 0.02);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.08);
    transform: translateY(-2px);
}

.tech-badge:hover span {
    color: white;
}

/* Nasıl Çalışıyoruz? (Workflow) */
.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.workflow-step {
    position: relative;
    padding: 2.2rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.workflow-step:hover {
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.01);
    transform: translateY(-3px);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    font-family: var(--font-primary);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    transition: color 0.4s ease;
}

.workflow-step:hover .step-num {
    color: rgba(139, 92, 246, 0.1);
}

.workflow-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
}

.workflow-step p {
    font-size: 0.85rem;
    color: #8a8f98;
    line-height: 1.6;
}

/* ==========================================================================
   Geliştirici Terminali (Cyber Console)
   ========================================================================== */
#cyber-terminal {
    position: fixed;
    top: -400px;
    left: 0;
    width: 100%;
    height: 350px;
    background: rgba(7, 7, 9, 0.96);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--accent-blue);
    z-index: 10000;
    transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: monospace;
    color: #0f0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

#cyber-terminal.open {
    top: 0;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-title {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 1px;
}

.terminal-close {
    background: transparent !important;
    border: none !important;
    color: #666 !important;
    font-size: 1.25rem !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    font-weight: 300 !important;
    cursor: pointer;
    transition: color 0.3s;
    outline: none !important;
    box-shadow: none !important;
}

.terminal-close:hover {
    color: #ff3366 !important;
}

.terminal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terminal-body::-webkit-scrollbar {
    width: 6px;
}
.terminal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.terminal-input-row {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.prompt-symbol {
    color: var(--accent-blue);
    font-weight: bold;
    margin-right: 0.75rem;
}

#terminal-input {
    flex: 1;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    color: #0f0 !important;
    font-family: monospace;
    font-size: 0.9rem;
    outline: none !important;
    box-shadow: none !important;
}

.system-line {
    color: #888;
}

/* ==========================================================================
   Mobil Navigasyon Duyarlılık (Mobile Nav Scroll)
   ========================================================================== */
@media (max-width: 768px) {
    header {
        padding: 0.6rem 0 !important;
    }
    nav {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    .logo {
        font-size: 1.2rem !important;
    }
    .nav-links {
        display: flex !important;
        width: 100% !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        justify-content: flex-start !important;
        padding: 0.25rem 0.75rem !important;
        gap: 1.25rem !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important; /* Firefox */
    }
    .nav-links::-webkit-scrollbar {
        display: none !important; /* Safari and Chrome */
    }
    .nav-links a {
        margin-left: 0 !important;
        font-size: 0.7rem !important;
        flex-shrink: 0 !important;
        padding: 0.25rem 0 !important;
    }
    .sound-toggle {
        margin-left: 0 !important;
        flex-shrink: 0 !important;
    }
}
.error-line {
    color: #ff3366;
}
.success-line {
    color: #00ffaa;
}



/* ==========================================================================
   Ses Kontrolleri (Sound Toggle)
   ========================================================================== */
.sound-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sound-toggle:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.sound-toggle.active {
    color: var(--accent-blue);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.15);
    background: rgba(59, 130, 246, 0.03);
}

/* ==========================================================================
   Web Sitesi Paketleri ve Fiyatları (Pricing Section)
   ========================================================================== */
#pricing {
    margin-bottom: 7rem;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    padding: 3.5rem 2rem 2.5rem;
    border-radius: 24px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.pricing-card.one:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(59, 130, 246, 0.12);
}

.pricing-card.class {
    border-color: rgba(139, 92, 246, 0.2);
}

.pricing-card.class:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(139, 92, 246, 0.18);
}

.pricing-card.business:hover {
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(236, 72, 153, 0.12);
}

/* En Popüler Kartı İçin Üst Çizgi */
.pricing-card.class::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
}

.popular-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.08em;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.45);
    font-family: var(--font-primary);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-family: var(--font-primary);
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing-card.one .pricing-name {
    color: var(--accent-blue);
    text-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.pricing-card.class .pricing-name {
    color: var(--accent-purple);
    text-shadow: 0 0 15px rgba(139, 92, 246, 0.25);
}

.pricing-card.business .pricing-name {
    color: #ec4899;
    text-shadow: 0 0 15px rgba(236, 72, 153, 0.25);
}

.pricing-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-val {
    font-family: var(--font-primary);
    font-size: 2.85rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-left: 0.25rem;
}

.price-sub {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

.pricing-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 1.5rem 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.92rem;
    color: #8a8f98;
    line-height: 1.5;
}

.pricing-feature svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pricing-card.one .pricing-feature svg {
    color: var(--accent-blue);
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.pricing-card.class .pricing-feature svg {
    color: var(--accent-purple);
    filter: drop-shadow(0 0 5px rgba(139, 92, 246, 0.5));
}

.pricing-card.business .pricing-feature svg {
    color: #ec4899;
    filter: drop-shadow(0 0 5px rgba(236, 72, 153, 0.5));
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 1.1rem 1.5rem;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    color: white;
}

.pricing-card.one .pricing-cta:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

.pricing-card.class .pricing-cta {
    background: rgba(139, 92, 246, 0.05);
    border-color: rgba(139, 92, 246, 0.2);
    color: #c084fc;
}

.pricing-card.class .pricing-cta:hover {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
}

.pricing-card.business .pricing-cta {
    background: rgba(236, 72, 153, 0.03);
    border-color: rgba(236, 72, 153, 0.2);
    color: #f472b6;
}

.pricing-card.business .pricing-cta:hover {
    background: #ec4899;
    color: white;
    border-color: #ec4899;
    box-shadow: 0 0 25px rgba(236, 72, 153, 0.5);
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .pricing-card {
        padding: 3rem 1.5rem 2rem;
    }
}

/* ==========================================================================
   Fiyat Kartları İçin Üst İkon Vurguları (Package Icons)
   ========================================================================== */
.package-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.package-icon svg {
    transition: transform 0.4s ease;
}

.pricing-card:hover .package-icon svg {
    transform: scale(1.1);
}

.pricing-card.one .package-icon {
    color: var(--accent-blue);
    box-shadow: inset 0 0 15px rgba(59, 130, 246, 0.1);
}

.pricing-card.one:hover .package-icon {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
    color: white;
}

.pricing-card.class .package-icon {
    color: var(--accent-purple);
    box-shadow: inset 0 0 15px rgba(139, 92, 246, 0.1);
}

.pricing-card.class:hover .package-icon {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
    color: white;
}

.pricing-card.business .package-icon {
    color: #ec4899;
    box-shadow: inset 0 0 15px rgba(236, 72, 153, 0.1);
}

.pricing-card.business:hover .package-icon {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.35);
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.25);
    color: white;
}

/* ==========================================================================
   Kendi Web Siteni Kendin Oluştur Sihirbazı (Configurator UI)
   ========================================================================== */

/* Giriş Çağrı Kartı (CTA Card) */
.wizard-cta-box {
    margin-top: 4rem;
    padding: 3rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.wizard-cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.wizard-cta-content {
    position: relative;
    z-index: 1;
}

.wizard-cta-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #ffffff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wizard-cta-desc {
    color: #8a8f98;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.wizard-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-primary);
}

.wizard-start-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
}

.wizard-start-btn svg {
    transition: transform 0.4s ease;
}

.wizard-start-btn:hover svg {
    transform: translateX(4px);
}

/* Sihirbaz Tam Ekran Modal Overlay */
#wizard-overlay {
    position: fixed;
    inset: 0;
    z-index: 15000;
    background: rgba(7, 7, 9, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: none;
    flex-direction: column;
}

/* Sihirbaz Header */
.wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wizard-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.wizard-close-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #888;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-close-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
    transform: rotate(90deg);
}

/* Sihirbaz Ana Gövde */
.wizard-body {
    flex: 1;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    overflow: hidden;
    height: calc(100vh - 80px);
}

/* Sol Panel (Seçim Alanı) */
.wizard-left-panel {
    overflow-y: auto;
    padding: 2.5rem 3rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.05) transparent;
}

.wizard-left-panel::-webkit-scrollbar {
    width: 6px;
}
.wizard-left-panel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.wizard-category {
    margin-bottom: 3.5rem;
}

.category-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--accent-purple);
    letter-spacing: -0.01em;
}

.wizard-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.25rem;
}

/* Sihirbaz Seçim Kartı */
.wizard-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.wizard-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.wizard-card.selected {
    background: rgba(59, 130, 246, 0.03);
    border-color: var(--accent-blue);
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.12), inset 0 0 15px rgba(59, 130, 246, 0.05);
}

/* Custom Cyber Checkbox */
.cyber-checkbox {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wizard-card:hover .cyber-checkbox {
    border-color: rgba(59, 130, 246, 0.5);
}

.wizard-card.selected .cyber-checkbox {
    border-color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.cyber-checkbox-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-blue);
    transform: scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 8px var(--accent-blue);
}

.wizard-card.selected .cyber-checkbox-dot {
    transform: scale(1);
}

.wizard-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wizard-card-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.wizard-card.selected .wizard-card-name {
    color: white;
}

.wizard-card-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7280;
    font-family: var(--font-primary);
}

.wizard-card.selected .wizard-card-price {
    color: var(--accent-blue);
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.25);
}

/* Sağ Panel (Özet & Canlı Tutar) */
.wizard-right-panel {
    background: rgba(255, 255, 255, 0.01);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
}

.wizard-summary-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
    overflow: hidden;
}

.wizard-summary-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: white;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wizard-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 0.5rem;
}

.wizard-summary-list::-webkit-scrollbar {
    width: 4px;
}
.wizard-summary-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.wizard-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #9ca3af;
    animation: fadeInSlide 0.3s ease forwards;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateX(10px); }
    to { opacity: 1; transform: translateX(0); }
}

.wizard-summary-item-name {
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wizard-summary-item-price {
    font-weight: 700;
    color: white;
    font-family: var(--font-primary);
}

.wizard-empty-text {
    color: #4b5563;
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Fiyat & Sipariş Kutusu */
.wizard-footer-box {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1.5rem;
}

.wizard-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
}

.wizard-price-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
}

.wizard-price-total {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.wizard-price-total span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #9ca3af;
    margin-left: 0.25rem;
}

.wizard-complete-btn {
    width: 100%;
    padding: 1.1rem;
    border-radius: 14px;
    border: none;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.25);
    font-family: var(--font-primary);
}

.wizard-complete-btn:hover {
    box-shadow: 0 0 35px rgba(139, 92, 246, 0.45);
    transform: translateY(-2px);
}

.wizard-complete-btn:disabled {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #4b5563 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: none !important;
    cursor: not-allowed;
}

/* Mobil / Tablet Düzenleme */
@media (max-width: 1024px) {
    .wizard-body {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr auto;
        height: calc(100vh - 75px);
    }
    
    .wizard-left-panel {
        padding: 1.5rem 1.5rem 3rem;
    }
    
    .wizard-right-panel {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
        height: auto;
        background: rgba(7, 7, 9, 0.95);
    }
    
    .wizard-summary-list {
        display: none; /* Mobilde listeyi gizle, sadece toplam fiyatı ve butonu göster */
    }
    
    .wizard-summary-title {
        display: none;
    }
    
    .wizard-footer-box {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
    
    .wizard-price-row {
        margin-bottom: 1rem;
    }
    
    .wizard-price-total {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .wizard-header {
        padding: 1rem 1.5rem;
    }
    
    .wizard-title {
        font-size: 1.2rem;
    }
    
    .wizard-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .wizard-cta-box {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .wizard-cta-title {
        font-size: 1.6rem;
    }
}

/* ==========================================================================
   Web Sitesi Kategori Filtre Butonları
   ========================================================================== */
.filter-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #8a8f98;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.filter-tab.active {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--accent-purple);
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}


