
        :root {
            --bg-dark: #020617; 
            --bg-card: #0f172a; 
            --accent: #60a5fa; 
            --accent-hover: #3b82f6;
            --success: #10b981; 
            --text-light: #f1f5f9;
            --text-dim: #94a3b8;
            --border: rgba(255, 255, 255, 0.08);
            --glass: rgba(30, 41, 59, 0.5);
            --ease-out: cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        html { scroll-behavior: smooth; }
        body { 
            font-family: 'Poppins', sans-serif; 
            margin: 0; padding: 0; 
            color: var(--text-light); 
            background-color: var(--bg-dark); 
            line-height: 1.6; 
            overflow-x: hidden;
            position: relative;
        }

        /* --- ZENGİNLEŞTİRİLMİŞ ARKA PLAN ANIMASYONU --- */
        .mesh-gradient {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at 50% -20%, #1e293b 0%, transparent 50%);
            z-index: -2;
            opacity: 0.6;
        }
        .bg-blobs {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            overflow: hidden;
            opacity: 0.3;
        }
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            animation: blobFloat 20s infinite alternate;
        }
        .blob-1 { top: -10%; left: 10%; width: 400px; height: 400px; background: #1e40af; animation-delay: 0s; }
        .blob-2 { bottom: -10%; right: 10%; width: 350px; height: 350px; background: #0f172a; animation-delay: -5s; }
        .blob-3 { top: 50%; left: 50%; width: 300px; height: 300px; background: #312e81; animation-delay: -10s; }

        @keyframes blobFloat {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, 30px) scale(1.1); }
            100% { transform: translate(-30px, 50px) scale(1); }
        }

        header { 
            background: rgba(2, 6, 23, 0.8); 
            backdrop-filter: blur(15px); 
            position: sticky; top: 0; z-index: 1000; 
            border-bottom: 1px solid var(--border); 
            transition: background 0.3s;
        }
        .nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 15px 20px; }
        .logo { font-size: 24px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -1px; }
        .logo span { color: var(--accent); }

        .hero { 
            position: relative;
            background: linear-gradient(to bottom, rgba(2, 6, 23, 0.2), var(--bg-dark)), 
                         url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?auto=format&fit=crop&w=1600&q=80');
            background-size: cover; background-position: center;
            padding: 180px 20px 220px; text-align: center;
        }

        /* --- HERO YAZI ANIMASYONU --- */
        .hero h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); margin-bottom: 24px; font-weight: 800; letter-spacing: -2px; line-height: 1.1; }
        .hero h1 span { color: var(--accent); position: relative; display: inline-block; }
        .hero h1 span::after {
            content: ''; position: absolute; bottom: 5px; left: 0; width: 100%; height: 8px;
            background: rgba(96, 165, 250, 0.2); border-radius: 4px;
            transform: scaleX(0); transform-origin: right; transition: transform 0.6s 1s var(--ease-out);
        }
        .aos-animate .hero h1 span::after { transform: scaleX(1); transform-origin: left; }

        .hero p { font-size: 1.1rem; color: var(--text-dim); max-width: 600px; margin: 0 auto; }

        .quote-wrapper { max-width: 1000px; margin: -140px auto 100px; padding: 0 20px; position: relative; z-index: 10; }
        .quote-card { background: var(--bg-card); padding: 50px; border-radius: 40px; box-shadow: 0 50px 100px -20px rgba(0,0,0,0.8); border: 1px solid var(--border); transition: transform 0.3s var(--ease-out), box-shadow 0.3s; }
        .quote-card:hover { transform: translateY(-5px); box-shadow: 0 60px 110px -20px rgba(0,0,0,0.9); }

        .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
        input, select, textarea { padding: 18px; border: 1px solid var(--border); border-radius: 16px; font-size: 15px; width: 100%; background: rgba(2, 6, 23, 0.5); color: #fff; box-sizing: border-box; transition: all 0.3s; }
        input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: none; background: rgba(2, 6, 23, 0.8); box-shadow: 0 0 15px rgba(96, 165, 250, 0.1); }
        
        /* --- PREMIUM BUTON SHIMMER ANIMASYONU --- */
        .btn-premium { grid-column: span 2; background: linear-gradient(135deg, var(--success), #059669); color: white; font-weight: 700; border: none; padding: 22px; font-size: 18px; border-radius: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; position: relative; overflow: hidden; transition: 0.4s var(--ease-out); box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2); }
        .btn-premium:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4); }
        .btn-premium::after {
            content: ''; position: absolute; top: -50%; left: -60%; width: 20%; height: 200%;
            background: rgba(255, 255, 255, 0.2); transform: rotate(30deg);
            transition: 0s;
        }
        .btn-premium:hover::after { left: 120%; transition: 0.8s var(--ease-out); }

        /* Hizmet Bölgeleri */
        .region-section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
        .region-container { background: linear-gradient(135deg, var(--bg-card) 0%, #1e293b 100%); padding: 50px; border-radius: 32px; border: 1px solid var(--border); display: flex; flex-wrap: wrap; align-items: center; gap: 50px; position: relative; overflow: hidden; transition: 0.3s; }
        .region-container:hover { border-color: rgba(96, 165, 250, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
        .region-text { flex: 1.2; min-width: 300px; }
        .region-list { flex: 1; min-width: 300px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .region-item { background: rgba(255,255,255,0.03); padding: 15px 20px; border-radius: 14px; font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 12px; border: 1px solid transparent; transition: all 0.3s var(--ease-out); cursor: default; }
        .region-item:hover { background: rgba(96, 165, 250, 0.08); border-color: rgba(96, 165, 250, 0.2); transform: translateX(5px); color: #fff; }
        .region-item i { color: var(--accent); font-size: 14px; transition: transform 0.3s; }
        .region-item:hover i { transform: scale(1.2); }

        /* Fiyat Tablosu */
        .pricing-section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
        .price-card { background: var(--bg-card); padding: 50px 40px; border-radius: 30px; border: 1px solid var(--border); text-align: center; position: relative; transition: all 0.4s var(--ease-out); }
        .price-card:hover { transform: translateY(-10px); border-color: var(--accent); box-shadow: 0 30px 60px -10px rgba(96, 165, 250, 0.15); }
        .price-value { font-size: 3rem; font-weight: 800; margin: 25px 0; letter-spacing: -1px; }
        .price-value span { font-size: 16px; color: var(--text-dim); font-weight: 400; }
        .price-features { list-style: none; padding: 0; margin-bottom: 40px; color: var(--text-dim); text-align: left; display: inline-block; }
        .price-features li { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
        .price-features li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: var(--success); font-size: 14px; }
        
        .popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 6px 24px; border-radius: 20px; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; box-shadow: 0 5px 15px rgba(96, 165, 250, 0.3); transition: 0.3s; }
        .price-card:hover .popular-badge { transform: translateX(-50%) translateY(-3px); box-shadow: 0 8px 20px rgba(96, 165, 250, 0.4); }

        /* Blog Bölümü */
        .blog-section { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
        .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 60px; }
        .blog-card { background: var(--bg-card); border-radius: 28px; border: 1px solid var(--border); padding: 40px; transition: all 0.3s var(--ease-out); position: relative; overflow: hidden; }
        .blog-card:hover { border-color: var(--accent); transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
        .blog-card i { color: var(--accent); font-size: 36px; margin-bottom: 25px; transition: transform 0.3s; display: inline-block; }
        .blog-card:hover i { transform: scale(1.1) rotate(-5deg); }
        .blog-card h3 { font-size: 22px; margin-bottom: 15px; }

        /* SSS Bölümü */
        .faq-section { padding: 100px 20px; max-width: 900px; margin: 0 auto; }
        .faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; margin-bottom: 18px; overflow: hidden; transition: 0.3s; }
        .faq-header { padding: 22px 30px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 17px; }
        .faq-header:hover { background: rgba(255,255,255,0.02); }
        .faq-content { padding: 0 30px; max-height: 0; overflow: hidden; transition: all 0.4s var(--ease-out); color: var(--text-dim); font-size: 15px; }
        .faq-item.active { border-color: var(--accent); box-shadow: 0 10px 30px rgba(96, 165, 250, 0.08); }
        .faq-header i { transition: transform 0.3s; color: var(--accent); }
        .faq-item.active .faq-header i { transform: rotate(180deg); }

        /* Müşteri Yorumları */
        .testimonials { padding: 100px 20px; max-width: 1200px; margin: 0 auto; }
        .test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .test-card { background: var(--bg-card); padding: 40px; border-radius: 28px; border: 1px solid var(--border); transition: 0.3s; position: relative; }
        .test-card:hover { border-color: rgba(255,255,255,0.15); transform: scale(1.02); }
        .test-card::before { content: '\f10d'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; top: 30px; right: 40px; font-size: 40px; color: rgba(255,255,255,0.03); }
        .stars { color: #fbbf24; margin-bottom: 15px; font-size: 14px; }

        /* WhatsApp Floating */
        .whatsapp-float { position: fixed; bottom: 40px; right: 40px; background: #25d366; color: white; width: 65px; height: 65px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; z-index: 1000; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); transition: all 0.3s var(--ease-out); }
        .whatsapp-float:hover { transform: scale(1.1) rotate(10deg); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5); }

        footer { padding: 80px 20px; text-align: center; border-top: 1px solid var(--border); background: #010409; }

        /* --- AOS OPTİMİZASYONU VE CLAMP --- */
        [data-aos] { pointer-events: none; }
        .aos-animate { pointer-events: auto; }

        @media (max-width: 768px) { 
            .hero { padding: 150px 20px 180px; }
            .quote-wrapper { margin-top: -100px; }
            .quote-card { padding: 30px; }
            .form-grid { grid-template-columns: 1fr; gap: 15px; } 
            .btn-premium { grid-column: span 1; padding: 18px; } 
            .region-container { flex-direction: column; text-align: center; padding: 30px; gap: 30px; } 
            .region-list { grid-template-columns: 1fr; width: 100%; }
        }
        
        
        
        
        /* --- HERO --- */
        .hero {             position: relative;            background: linear-gradient(to bottom, rgba(2, 6, 23, 0.4), var(--bg-dark)),                          url('https://images.unsplash.com/photo-1587293852726-70cdb56c2866?auto=format&fit=crop&w=1600&q=80');            background-size: cover; background-position: center;            padding: 100px 20px 140px; text-align: center;        }        .hero h1 { font-size: clamp(2.2rem, 8vw, 4.5rem); margin-bottom: 20px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.1; }        .hero h1 span { color: var(--accent); position: relative; }        .hero p { font-size: 1rem; color: var(--text-dim); max-width: 500px; margin: 0 auto; padding: 0 10px; }

        /* --- FORM KARTI --- */
        .quote-wrapper { max-width: 800px; margin: -80px auto 60px; padding: 0 15px; position: relative; z-index: 10; }        .quote-card { background: var(--bg-card); padding: 40px 30px; border-radius: 30px; border: 1px solid var(--border); box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7); }        .form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }        input, select, textarea {             padding: 16px; border: 1px solid var(--border); border-radius: 14px;             font-size: 16px; /* Mobil Safari zoom engellemek için 16px */            background: rgba(2, 6, 23, 0.5); color: #fff; width: 100%; box-sizing: border-box;        }        .btn-premium {             grid-column: span 2; background: linear-gradient(135deg, var(--success), #059669);             color: white; font-weight: 700; border: none; padding: 20px;             font-size: 17px; border-radius: 14px; cursor: pointer;             display: flex; align-items: center; justify-content: center; gap: 10px;        }

        /* --- BÖLGELER --- */
        .region-section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }        .region-container { background: var(--bg-card); padding: 35px; border-radius: 24px; border: 1px solid var(--border); display: flex; flex-direction: column; gap: 30px; }        .region-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }        .region-item { background: rgba(255,255,255,0.03); padding: 12px; border-radius: 12px; font-size: 13px; display: flex; align-items: center; gap: 10px; border: 1px solid transparent; }

        /* --- FIYATLANDIRMA --- */
        .pricing-section { padding: 60px 20px; }        .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 40px; }        .price-card { background: var(--bg-card); padding: 35px 25px; border-radius: 24px; border: 1px solid var(--border); text-align: center; }        .price-value { font-size: 2.5rem; font-weight: 800; margin: 15px 0; }

        /* --- FOOTER & WHATSAPP --- */
        .whatsapp-float { position: fixed; bottom: 25px; right: 20px; background: #25d366; color: white; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 1000; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); }

        /* --- MOBIL ÖZEL AYARLAR --- */
        @media (max-width: 768px) {
            .form-grid { grid-template-columns: 1fr; }
            .form-grid input, .form-grid select, .form-grid textarea { grid-column: span 1; }
            .hero { padding: 80px 15px 120px; }
            .quote-wrapper { margin-top: -60px; }
            .quote-card { padding: 30px 20px; }
            .nav-container { padding: 10px 15px; }
            .logo { font-size: 18px; }
            h2 { font-size: 28px !important; }
        }
        /* Footer Link Stilleri */
    .footer-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
        padding: 0;
        list-style: none;
    }
    .footer-links li a {
        color: var(--text-dim);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
        border-bottom: 1px solid transparent;
    }
    .footer-links li a:hover {
        color: var(--accent);
        border-bottom: 1px solid var(--accent);
    }
    @media (max-width: 600px) {
        .footer-links {
            gap: 10px;
            flex-direction: column;
        }
    }
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        text-align: left;
        max-width: 1200px;
        margin: 0 auto 40px;
        padding: 0 20px;
    }
    .footer-col h4 {
        color: #fff;
        margin-bottom: 20px;
        font-size: 16px;
        border-left: 3px solid var(--accent);
        padding-left: 10px;
    }
    .footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-list li {
        margin-bottom: 8px;
    }
    .footer-list a {
        color: var(--text-dim);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s;
    }
    .footer-list a:hover {
        color: var(--accent);
        padding-left: 5px;
    }
    .footer-bottom {
        border-top: 1px solid var(--border);
        padding-top: 30px;
        margin-top: 30px;
    }
    @media (max-width: 768px) {
        .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
        .footer-col h4 { font-size: 14px; }
    }
    