@charset "UTF-8";
 
        /* --- ALENGİRLİ VE BİRLEŞİK HEADER ALANI --- */
        .integrated-header {
            position: relative;
            background: radial-gradient(circle at 80% 20%, #e0f2fe 0%, #fafafa 50%, #ffffff 100%);
            overflow: hidden;
            border-bottom: 1px solid #e2e8f0;
        }
        
        /* Arka plandaki alengirli soyut küreler/ışık sızıntıları */
        .integrated-header::before {
            content: "";
            position: absolute;
            top: -10%;
            right: -10%;
            width: 50vw;
            height: 50vw;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, rgba(255,255,255,0) 70%);
            filter: blur(60px);
            z-index: 1;
            pointer-events: none;
        }
        .integrated-header::after {
            content: "";
            position: absolute;
            bottom: -5%;
            left: -5%;
            width: 35vw;
            height: 35vw;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(255,255,255,0) 70%);
            filter: blur(50px);
            z-index: 1;
            pointer-events: none;
        }

        .header-top-bar {
            background-color: #0f172a;
            color: #94a3b8;
            font-size: 13px;
            padding: 8px 0;
            border-bottom: 1px solid #1e293b;
            position: relative;
            z-index: 10;
        }
        .header-top-bar a { color: #cbd5e1; transition: color 0.2s; }
        .header-top-bar a:hover { color: var(--primary-color); text-decoration: none; }
        
        .uk-navbar-container { 
            background: transparent !important; 
        }
        /* Sayfa aşağı kaydırıldığında devreye giren modern yapışkan menü */
        .uk-navbar-sticky {
            box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
            background: rgba(255, 255, 255, 0.90) !important;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
        }
        .uk-navbar-nav > li > a { 
            color: var(--secondary-color) !important; 
            font-weight: 600; 
            text-transform: none;
            transition: color 0.2s;
        }
        .uk-navbar-nav > li > a:hover, .uk-navbar-nav > li.uk-active > a { 
            color: var(--primary-color) !important; 
        }
        
        /* Giriş (Hero Panel) Tasarımı - Header'ın İç Parçası */
        .header-hero-panel {
            position: relative;
            z-index: 5;
            padding-top: 60px;
            padding-bottom: 80px;
        }
        
        /* Masaüstünde görselin arkasına gelen şık dekoratif çizgi gradyanı */
        .decor-mesh {
            position: relative;
        }
        .decor-mesh::before {
            content: "";
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            border: 2px dashed rgba(2, 132, 199, 0.2);
            border-radius: 16px;
            z-index: -1;
        }

        /* Dropdown/Mega Menü Tasarımı */
        .custom-dropdown {
            background: #ffffff !important;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.12) !important;
            border: 1px solid #e2e8f0;
            padding: 20px !important;
            width: 320px !important;
        }
        .dropdown-link {
            padding: 10px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .dropdown-link:hover {
            background: #f0f9ff;
            text-decoration: none;
        }
        
        /* Mobil İyileştirmeleri */
        @media (max-width: 959px) {
            .uk-logo { font-size: 20px !important; }
            .header-hero-panel { padding-top: 30px !important; padding-bottom: 50px !important; }
            .hero-buttons a { width: 100%; display: block; text-align: center; margin-left: 0 !important; margin-bottom: 12px; }
            .mobile-contact-list li { margin-bottom: 12px; font-size: 14px; }
            .decor-mesh::before { display: none; }
        }
        
        /* Diğer Alan Stilleri */
        .uk-card-default { background: #ffffff; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s; }
        .uk-card-default:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); transform: translateY(-2px); }
        .text-brand-gradient {
            background: linear-gradient(to right, #0284c7, #2563eb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
		 /* Doğrudan Arama Butonu */
        .call-card {
            background: var(--bg-light);
            border: 1px solid var(--border-color);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
        }
		
        /* ALT SAYFA BREADCRUMB / BAŞLIK ALANI */
        .page-title-bar {
            background-color: var(--bg-light);
            padding: 40px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .page-title-bar h1 {
            color: var(--secondary-color);
            font-size: 28px;
            font-weight: 700;
            margin: 0 0 8px 0;
        }
  
	 :root {
            --primary-color: #0284c7;
            --secondary-color: #0f172a;
            --bg-light: #f8fafc;
            --text-dark: #334155;
            --border-color: #e2e8f0;
        }
        body { 
            background-color: #ffffff; 
            color: var(--text-dark); 
            font-family: sans-serif;
        }

        /* ALT SAYFA SADE HEADER YAPISI */
        .inner-header {
            background: #ffffff;
            border-bottom: 1px solid var(--border-color);
        }
        .uk-navbar-nav > li > a { 
            color: var(--secondary-color) !important; 
            font-weight: 600; 
            text-transform: none;
        }
        .uk-navbar-nav > li > a:hover { 
            color: var(--primary-color) !important; 
        }

      
        /* İletişim Kartları ve İkonlar */
        .contact-icon-box {
            background: #ffffff;
            border: 1px solid var(--border-color);
            padding: 24px;
            border-radius: 12px;
            transition: box-shadow 0.2s;
        }
        .contact-icon-box:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.04);
        }

        /* Form Elemanları İyileştirmesi */
        .uk-input, .uk-select, .uk-textarea {
            border: 1px solid #cbd5e1;
            transition: border-color 0.2s;
        }
        .uk-input:focus, .uk-select:focus, .uk-textarea:focus {
            border-color: var(--primary-color) !important;
            background: #ffffff !important;
        }

        .footer-bg { 
            background-color: #1e293b; 
            color: #94a3b8; 
        }
        .footer-bg h5 { color: #ffffff; font-weight: 600; }
        .footer-bg a { color: #cbd5e1; }
        .footer-bg a:hover { color: #38bdf8; }
/* sss style */
.custom-faq-item {
        background: #ffffff;
        border: 1px solid #e5e5e5;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 15px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
        transition: all 0.3s ease-in-out;
    }
    
    /* Kartın üzerine gelindiğinde (Hover) efekt */
    .custom-faq-item:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-color: #dae1e7;
    }

    /* Kart açıldığında (Active) arka planı ve sol çizgisi değişsin */
    .custom-faq-item.uk-open {
        background: #f8fafc;
        border-left: 4px solid #1e87f0; /* UIkit Primary rengi */
        padding-left: 17px; /* Sol çizgi geldiğinde kaymayı önlemek için */
    }

    /* Standart çizgiyi kaldırıyoruz çünkü kart yapısı kullanıyoruz */
    .custom-faq-wrapper .uk-accordion-title::before {
        display: none !important;
    }

    /* Sağ tarafa şık bir açılır/kapanır ikon efekti */
    .faq-toggle-icon {
        transition: transform 0.3s ease;
    }
    .uk-open .faq-toggle-icon {
        transform: rotate(45px); /* Artı ikonunu çarpı işaretine döndürür */
        color: #1e87f0;
    }
	.marquee-container {
        overflow: hidden;
        user-select: none;
        display: flex;
        gap: 2rem;
        background: #111111; /* Arka plan rengi */
        padding: 15px 0;
        width: 100%;
    }

    /* Sağdan Sola Doğru Kayan Grup */
    .marquee-content {
        flex-shrink: 0;
        display: flex;
        justify-content: space-around;
        min-width: 100%;
        gap: 2rem;
        /* Animasyon yönü standart (sola doğru) ayarlandı */
        animation: scroll-left 25s linear infinite;
    }

    /* Döngüden Gelen Her Bir Linkin Stili */
    .marquee-content a {
        font-family: sans-serif;
        font-weight: 600;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 1px;
        white-space: nowrap;
        display: flex;
        align-items: center;
    }

    /* Etiketlerin Arasındaki Ayırıcı Simge */
    .marquee-content a::after {
        content: "✦";
        margin-left: 2rem;
        color: #00ffcc; /* Neon detay rengi */
    }

    /* Mouse üzerine geldiğinde kaymayı durdurur */
    .marquee-container:hover .marquee-content {
        animation-play-state: paused;
    }
	/* Sağdan Sola Akış Animasyonu */
    @keyframes scroll-left {
        0% { transform: translateX(0%); }
        100% { transform: translateX(-100%); }
    }
	.whatsapp-sabit-buton {
    position: fixed;
    bottom: 20px; /* Alttan boşluk */
    left: 20px;   /* Soldan boşluk */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999; /* Sayfadaki diğer elementlerin üstünde kalması için */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

/* Fareyle üzerine gelindiğinde (Hover) efektler */
.whatsapp-sabit-buton:hover {
    transform: scale(1.1); /* %10 büyütme */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    background-color: #20ba5a; /* Hafif koyu yeşil */
}

/* İkon Boyutu */
.whatsapp-svg {
    width: 35px;
    height: 35px;
}

/* Mobil Ekranlar için Boyut Ayarı (Opsiyonel - biraz küçültüyoruz) */
@media (max-width: 768px) {
    .whatsapp-sabit-buton {
        bottom: 15px;
        left: 15px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-svg {
        width: 28px;
        height: 28px;
    }
}