@charset "UTF-8";

/* =========================================
   1. RESET & TEMEL AYARLAR
   ========================================= */
* { padding: 0; margin: 0; box-sizing: border-box; }

:root {
    /* RENK AYARLARI (Senin Beğendiğin Canlı Mavi Tonlar) */
  --acc-bg0: #23466f;  /* üst: biraz koyulaştı */
  --acc-bg1: #0d2239;  /* alt: biraz koyulaştı */
    
    --acc-text: rgba(255, 255, 255, .95);
    --acc-muted: rgba(255, 255, 255, .75);
    --acc-border: rgba(255, 255, 255, .15);
    --radius: 18px;
}

/* HTML ve BODY - Scroll Kaymasını Önleyen Yapı */
html {
    height: 100%;
    /* Arka planı HTML'e sabitliyoruz */
    background: radial-gradient(circle at 50% 20%, var(--acc-bg0) 0%, var(--acc-bg1) 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--acc-text);
    min-height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    background: transparent; /* Body şeffaf, HTML rengini gösterir */
}

/* Footer'ı aşağı iten yapı */
main { flex: 1; }
li { list-style: none; }
a { text-decoration: none; }

/* JS Canvas Kalıntılarını Temizle (Performans İçin) */
canvas, #accParticles, .particles-js-canvas-el {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* =========================================
   2. YILDIZLAR & ÇİFT METEOR EFEKTİ (DİNAMİK)
   ========================================= */

/* KATMAN 1: Arka Plan Yıldızları (SAYISI ARTIRILDI) */
body::before {
    content: "";
    position: fixed;
    inset: -100px; /* Kenarlardan taşır */
    pointer-events: none;
    z-index: -1; 
    opacity: 0.8; /* Biraz daha parlak */
    background-image: 
        /* Orijinal Yıldızlar */
        radial-gradient(1.5px 1.5px at 10% 10%, #fff 50%, transparent 55%),
        radial-gradient(1px 1px at 20% 80%, #fff 50%, transparent 55%),
        radial-gradient(2px 2px at 40% 40%, #fff 50%, transparent 55%),
        radial-gradient(1px 1px at 60% 20%, #fff 50%, transparent 55%),
        radial-gradient(1.5px 1.5px at 80% 60%, #fff 50%, transparent 55%),
        radial-gradient(1px 1px at 90% 90%, #fff 50%, transparent 55%),
        
        /* EKSTRA YILDIZLAR (Daha dolu görünüm için eklendi) */
        radial-gradient(1px 1px at 15% 45%, rgba(255,255,255,0.8) 50%, transparent 55%),
        radial-gradient(1.5px 1.5px at 35% 75%, rgba(255,255,255,0.8) 50%, transparent 55%),
        radial-gradient(2px 2px at 55% 15%, rgba(255,255,255,0.9) 50%, transparent 55%),
        radial-gradient(1px 1px at 75% 35%, rgba(255,255,255,0.8) 50%, transparent 55%),
        radial-gradient(1.5px 1.5px at 95% 55%, rgba(255,255,255,0.8) 50%, transparent 55%),
        radial-gradient(1px 1px at 5% 95%, rgba(255,255,255,0.8) 50%, transparent 55%);
        
    background-repeat: repeat;
    background-size: 500px 500px;
    
    /* Hafif Süzülme Animasyonu */
    animation: starDrift 80s linear infinite;
}

@keyframes starDrift {
    from { transform: translateY(0px); }
    to { transform: translateY(-500px); }
}

/* --- METEOR SİSTEMİ (ÇİFT METEOR) --- */

/* METEOR 1: Sağ Üstten (Daha sık) */
html::after {
    content: "";
    position: fixed;
    top: -100px;
    right: 5%; /* Sağ tarafa yakın */
    width: 250px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0), #fff, rgba(255,255,255,0));
    z-index: -1;
    transform: rotate(-45deg);
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
    animation: meteorShoot1 7s ease-in-out infinite; 
}

/* METEOR 2: Orta Üstten (Daha seyrek ve farklı zamanlamayla) */
main::after {
    content: "";
    position: fixed;
    top: -150px;
    right: 40%; /* Ortaya daha yakın */
    width: 200px; /* Biraz daha kısa */
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0), #a5f3fc, rgba(255,255,255,0)); /* Hafif mavimsi */
    z-index: -1;
    transform: rotate(-45deg);
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(165, 243, 252, 0.8));
    animation: meteorShoot2 11s ease-in-out infinite; 
    animation-delay: 3s; /* 1. Meteordan 3 saniye sonra başlasın */
}

@keyframes meteorShoot1 {
    0% { opacity: 0; transform: translate(200px, -200px) rotate(-45deg); }
    10% { opacity: 1; }
    20% { opacity: 0; transform: translate(-1000px, 1000px) rotate(-45deg); }
    100% { opacity: 0; transform: translate(-1000px, 1000px) rotate(-45deg); }
}

@keyframes meteorShoot2 {
    0% { opacity: 0; transform: translate(100px, -100px) rotate(-45deg); }
    15% { opacity: 0.8; }
    30% { opacity: 0; transform: translate(-800px, 800px) rotate(-45deg); }
    100% { opacity: 0; transform: translate(-800px, 800px) rotate(-45deg); }
}

/* =========================================
   3. NAVBAR
   ========================================= */
.navbar { padding-top: 0.5rem; }
.container-fluid { width: 98%; }
.container-85 { width: 85% !important; }

.logo-size {
    width: var(--logo-size);
    height: var(--logo-size);
    object-fit: contain;
    margin-right: 1rem;
}

header nav .nav-item .nav-link {
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: 99px;
    transition: 0.2s ease;
    color: rgba(255,255,255,0.9) !important;
}

header nav .nav-item .nav-link:hover,
header nav .nav-item .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.15);
}

.web-navbar {
    background: transparent !important;
    box-shadow: none !important;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.acc-hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0 60px;
    background: transparent !important;
}

.acc-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.acc-hero-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* SEARCH INPUT */
.acc-hero-search {
    width: min(650px, 92vw);
    margin: 0 auto;
    position: relative;
}

.acc-search-input {
    width: 100%;
    height: 56px;
    padding: 0 56px 0 24px;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(30, 58, 95, 0.85); 
    color: #fff;
    outline: none;
    font-size: 15px;
    transition: border-color 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.acc-search-input:focus {
    border-color: rgba(255,255,255,0.5);
    background: rgba(30, 58, 95, 0.95);
}

.acc-search-input::placeholder { color: rgba(255,255,255,0.7); }

.acc-search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
}

/* =========================================
   5. KATEGORİ KARTLARI
   ========================================= */
.acc-cat-card {
    flex: 0 0 160px !important;
    height: 100px !important;
    border-radius: 16px !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2) !important;
    transition: transform 0.2s ease;
    background-color: #1e3a5f;
}

.acc-cat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.35) !important;
}

.acc-cat-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%) !important;
}

.acc-cat-name {
    position: absolute !important;
    left: 14px !important;
    bottom: 10px !important;
    z-index: 2 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

/* =========================================
   6. GÜVENLİ TİCARET & FAQ
   ========================================= */
.timeline-visual-wrapper {
    position: relative;
    padding: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.timeline-card {
    background: #1e3a5f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3); 
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    position: relative;
}

.timeline-step:last-child { margin-bottom: 0; }

.timeline-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: -25px;
    width: 2px;
    background: rgba(34, 197, 94, 0.3);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    flex-shrink: 0;
    margin-right: 15px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.step-content .step-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 4px;
    font-weight: 600;
}

.step-content .step-desc {
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.4;
}

.floating-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: #2a4b75;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    z-index: 2;
    animation: floatBadge 4s ease-in-out infinite; 
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.floating-badge .badge-icon { font-size: 22px; color: #60a5fa; }
.floating-badge .badge-text strong { color: #fff; font-size: 13px; display: block; }
.floating-badge .badge-text span { color: #cbd5e1; font-size: 11px; }

/* FAQ */
.custom-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 10px;
}

.custom-accordion .accordion-button {
    background-color: #1e3a5f;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    padding: 18px 24px;
    border-radius: 8px !important;
    box-shadow: none !important;
    border: 1px solid rgba(255,255,255,0.08);
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #2a4b75;
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.2);
}

.custom-accordion .accordion-body {
    color: #e2e8f0 !important;
    background-color: transparent;
    font-size: 14px;
    line-height: 1.6;
    padding: 20px 25px;
}

.custom-accordion .accordion-button::after {
    filter: invert(1);
    opacity: 0.7;
    background-size: 14px;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(90deg);
    opacity: 1;
}

/* =========================================
   7. FOOTER (FİX)
   ========================================= */
.main-footer {
    /* Footer zemin rengi: Koyu lacivert */
    background-color: #0a1929; 
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto; 
    padding-top: 50px;
    padding-bottom: 30px;
    position: relative;
    z-index: 10; 
}

.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #94a3b8;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s;
}
.social-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* =========================================
   8. HELPER CLASSES
   ========================================= */
.text-color-sub { color: #94a3b8 !important; }
.section-title { font-weight: 700; color: #fff; }
.h5 { color: #fff; font-weight: 600; }

/* Mobilde Düzenlemeler */
@media (max-width: 768px) {
    .acc-hero-title { font-size: 36px; }
    .floating-badge { right: 0; bottom: -20px; }
    .main-footer { text-align: left; }
    .acc-search-input { height: 50px; font-size: 14px; }
    
    /* Mobilde kayan yıldız animasyonu biraz daha yavaş olsun */
    html::after { animation-duration: 9s; }
}


html{
  min-height: 100%;
  background-color: var(--acc-bg1); /* fallback */
}

body{
  min-height: 100%;
  background: transparent; /* gradient HTML’den gelsin */
  margin: 0;
}





img{ display:block; }

@media (max-width: 991px){
  .glass, .blur{
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }
}


/* WebKit Tarayıcılar (Chrome, Edge, Safari, Opera) İçin */

/* 1. Scrollbar'ın genel genişliği */
::-webkit-scrollbar {
  width: 10px; /* İstersen 8px ile daha ince yapabilirsin */
}

/* 2. Arka plan (Track) - Sitenin koyu zeminine uyumlu olsun */
::-webkit-scrollbar-track {
  background: #0b1120; /* Sitenin header rengine yakın çok koyu bir ton */
  border-radius: 0px;
}

/* 3. Kaydırma çubuğu (Thumb) - Profil butonundaki mavi tonu */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563eb, #1d4ed8); /* Hafif gradyanlı mavi */
  border-radius: 6px; /* Kenarları yuvarlatarak modern görünüm */
  border: 2px solid #0b1120; /* Etrafına ince bir boşluk bırakır, daha şık durur */
}

/* 4. Üzerine gelince (Hover) rengi değişsin */
::-webkit-scrollbar-thumb:hover {
  background: #1e40af; /* Biraz daha koyu bir mavi */
}

/* Firefox İçin Standart Kod (Daha sınırlı ama gerekli) */
* {
  scrollbar-width: thin; /* İnce çubuk */
  scrollbar-color: #2563eb #0b1120; /* Çubuk Rengi - Arka Plan Rengi */
}
