/* GENEL SIFIRLAMA */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; }

        body {
            background-color: #fcfcfc;
            font-family: 'Inter', sans-serif;
        }

/* --- HEADER (GENEL) --- */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 80px;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 40px;
    z-index: 1001;
    background-color: rgba(0, 0, 0, 0.9); /* %50 oranında siyah, geri kalanı şeffaf */
    transition: all 0.4s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Gölge */
}

/* Scroll yapılınca Header Beyazlaşsın */
.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.75);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* --- LOGO --- */
.header-name a {
    text-decoration: none;
    font-size: 1.2rem; font-weight: bold; letter-spacing: 1px;
    color: white; /* Resim üzerinde BEYAZ */
    transition: color 0.3s;
}
.header-name span { color: red; margin: 0 5px; }

/* Aradaki Çizgi (|) */
.header-name span {
    font-family: Arial, sans-serif; /* Çizgi düz kalsın */
    color: red;
    margin: 0 5px;
    font-weight: normal;
}

/* Scroll yapılınca Logo SİYAH olsun */
.site-header.scrolled .header-name a { color: #333; }


/* --- MENÜ (MOBİL GÖRÜNÜM - VARSAYILAN) --- */
.main-nav {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75); /* Tam ekran siyah menü */
    display: flex; justify-content: center; align-items: center;
    opacity: 0; visibility: hidden; /* Gizli */
    transition: 0.4s;
    z-index: 1000;
}
.main-nav.active { opacity: 1; visibility: visible; } /* Açılınca görünür */

.main-nav ul { list-style: none; text-align: center; }
.main-nav ul li { margin: 20px 0; }
.main-nav ul li a {
    color: white; text-decoration: none; font-size: 2rem; font-weight: bold;
    transition: 0.3s;
}
.main-nav ul li a:hover { color: red; }


/* --- HAMBURGER BUTONU --- */
.hamburger-menu {
    width: 30px; height: 25px; cursor: pointer;
    display: flex; flex-direction: column; justify-content: space-between;
    z-index: 1002;
}
.hamburger-menu .bar {
    width: 100%; height: 3px; background-color: white; border-radius: 3px; transition: 0.3s;
}
/* Scroll yapılınca hamburger siyah olsun */
.site-header.scrolled .hamburger-menu .bar { background-color: #333; }

/* Hamburger Animasyonu (Çarpı Olma) */
.hamburger-menu.active .bar:nth-child(1) { transform: translateY(11px) rotate(45deg); background-color: red; }
.hamburger-menu.active .bar:nth-child(2) { opacity: 0; }
.hamburger-menu.active .bar:nth-child(3) { transform: translateY(-11px) rotate(-45deg); background-color: red; }


/* =========================================
   MASAÜSTÜ AYARLARI (768px ve üzeri)
   ========================================= */
@media (min-width: 768px) {
    /* Hamburgeri Gizle */
    .hamburger-menu { display: none !important; }

    /* Menüyü Header içine oturt */
    .main-nav {
        position: static; width: auto; height: auto;
        background: none; opacity: 1; visibility: visible;
        display: block;
    }

    /* Linkleri Yan Yana Diz */
    .main-nav ul { display: flex; gap: 30px; }
    .main-nav ul li { margin: 0; }
    
    /* Masaüstü Link Rengi (Başlangıçta Beyaz) */
    .main-nav ul li a { font-size: 1rem; color: white; }

    /* Scroll Yapılınca Linkler SİYAH olsun */
    .site-header.scrolled .main-nav ul li a { color: #333; }
    .site-header.scrolled .main-nav ul li a:hover { color: red; }
}


/* =========================================
   HERO BÖLÜMÜ (BİRLEŞTİRİLMİŞ TEMİZ KOD)
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Tam Ekran Yükseklik */
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px; /* Header'ın altında kalmaması için boşluk */
}

/* Resmin Üzerine Siyah Perde */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.0); /* %40 Siyah Perde */
}

/* İçerik Kutusu */
.hero-content {
    position: relative;
    z-index: 1; /* Perdenin üzerinde dursun */
    max-width: 900px;
    padding: 20px;
}

/* Başlık ve Metin Ayarları */
.hero-content h1 { font-size: 5rem; margin-bottom: 15px; }

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

/* Alt Açıklama Yazısı */
.hero-subtitle {
    font-size: 2rem;
    font-weight: 350;
    margin-bottom: 40px;
    color: #555 !important;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Aksiyon Butonu */
.btn-hero {
    padding: 12px 30px; 
    background: red; 
    color: white; 
    text-decoration: none;
    font-weight: bold; 
    border-radius: 50px; 
    transition: 0.3s;
}

.btn-hero:hover { 
    background: darkred; 
}

/* =========================================
   DİĞER İÇERİK
   ========================================= */
.content { 
    padding: 100px 20px; 
    text-align: center; 
    background: white; 
    min-height: 100vh; 
}


/* --- DAKTİLO EFEKTİ --- */
.typewriter-container {
    min-height: 60px; /* Zıplamayı önlemek için sabit yükseklik */
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.typewriter-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ff4757; /* Kırmızı Renk */
}

/* Yanıp Sönen İmleç */
.cursor {
    display: inline-block;
    width: 3px;
    height: 40px;
    background-color: #ff4757;
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* --- BUTONLAR --- */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Mobilde alt alta geçebilsin */
}

/* --- SİYAH BUTON (Normal Hali) --- */
.ozel-buton {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    
    /* SİYAH OLSUN */
    background-color: #000000; 
    color: #ffffff; 
    border: 2px solid #ffffff; /* Beyaz çerçeve */
}

/* --- ÜSTÜNE GELİNCE (HOVER) KIRMIZI OLSUN --- */
.ozel-buton:hover {
    /* İŞTE KIRMIZI KODU BURADA: */
    background-color: #ff4757; 
    border-color: #ff4757; 
    
    color: #ffffff;
    transform: translateY(-3px);
}


/* --- MOBİL İÇİN TEK VE NET AYAR --- */
@media (max-width: 768px) {
    
    /* Ana Başlık Ayarı */
    .hero-title { 
        font-size: 2.1rem !important; 
        line-height: 1.3 !important; 
    }
    
    /* Alt Başlık (Paragraf) Ayarı - Sizin Değiştirmek İstediğiniz Yer */
    .hero-subtitle { 
        font-size: 1.2rem !important; /* İstediğiniz mobil boyutu buraya yazın (örn: 1.1rem, 1.3rem) */
        line-height: 1.6 !important; 
        color: #f5f5f5 !important; 
        margin-bottom: 15px !important;
    }

    /* Efektli Yazı Ayarı */
    .typewriter-text { 
        font-size: 1.4rem !important; 
    }
    
    .cursor { 
        height: 25px !important; 
    }

    /* Buton Ayarları */
    .button-group { 
        gap: 10px !important; 
    }
    
    .ozel-buton { 
        padding: 12px 25px !important; 
        font-size: 1rem !important; 
    }
}







@media (max-width: 768px) {
    
    /* Üstteki Paragraf */
    p.hero-subtitle[style*="margin-bottom: 5px"] {
        font-size: 1.35rem !important;
        /* RENK AYARI BURADA: Eğer çok açıksa #333 yapabilirsin */
        color: #555 !important; 
        opacity: 1 !important; /* Şeffaflığı tamamen kapat, renk canlansın */
    }

    /* Alttaki Paragraf */
    p.hero-subtitle:not([style*="margin-bottom: 5px"]) {
        font-size: 1.25rem !important;
        /* RENK AYARI BURADA: #444 yerine #333 deneyebilirsin */
        color: #444 !important; 
        opacity: 1 !important; 
    }
}

/* HERO SUB TELEFONDA ZORLA BÜYÜT VE RENGİ SABİTLE */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.35rem !important; 
        
        /* Tam beyaz istiyorsan ffffff yap: */
        color: #444 !important; 
        -webkit-text-fill-color: #f5f5f5 !important;
        
        opacity: 1 !important; /* Solukluğu kaldırır, rengi netleştirir */
        line-height: 1.6 !important;
    }
}

/* --- MOBİLDE ALTAKİ YAZIYI KÜÇÜLTME --- */
@media (max-width: 768px) {
    
    /* Sadece kalın (700) ve f5f5f5 olan paragrafı hedef alır */
    p.hero-subtitle[style*="font-weight: 700"] {
        font-size: 1.0rem !important; /* Masaüstündeki 1rem'den daha küçük yaptık */
        line-height: 1.4 !important;
        margin-top: 5px !important;
    }
    
}





        /* Kartların yan yana dizilmesini sağlar */
.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) { .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Kartın Genel Tasarımı */
.group {
  position: relative;
  padding: 1.5rem;
  border-radius: 2rem;
  border: 1px solid #f3f4f6;
  background-color: white;
  transition: all 0.3s;
  overflow: hidden;
  cursor: pointer;
}

.group:hover {
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* İkon Kutusu */
.w-14 {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background-color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.group:hover .w-14 {
  background-color: font ; /* Parlayan Yeşil */
  transform: scale(1.1);
}

/* İkonun normal hali (geçiş efekti eklendi) */
.custom-card svg {
    color: black;
    transition: color 0.3s ease; /* Fade efekti burada */
}

/* Kartın üzerine gelince (hover) ikon ne olsun? */
.custom-card:hover svg {
    color: #dc2626; /* Kırmızı renk kodu */
}

/* Metin Stilleri */
.text-xl { font-size: 1.25rem; font-weight: 700; color: black; margin-bottom: 0.25rem; }
.text-xs { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; color: #166534; letter-spacing: 0.05em; margin-bottom: 1rem; display: block; }
.text-sm { font-size: 0.875rem; color: #6b7280; line-height: 1.6; }


/* 1. Kırmızı ve Küçük Yazı */
.label {
    display: block;
    color: #dc2626;          /* Profesyonel bir kırmızı tonu */
    font-size: 14px;         /* Küçük boyut */
    font-weight: 700;        /* Kalın */
    text-transform: uppercase; /* Tüm harfleri büyütür */
    letter-spacing: 2px;     /* Harf aralığını açar */
    margin-bottom: 12px;     /* Altındaki başlıkla mesafe bırakır */
}

/* 2. Ana Başlık */
.title {
    font-size: 42px;         /* Büyük puntolu başlık */
    font-weight: 800;        /* Ekstra kalın */
    color: #111;             /* Koyu siyah */
    margin: 0 0 16px 0;      /* Alt boşluk */
    line-height: 1.2;        /* Satır yüksekliği */
}

/* 3. Açıklama Yazısı */
.description {
    font-size: 18px;         /* Okunabilir boyut */
    color: #666;             /* Gri tonu */
    line-height: 1.6;        /* Satır aralığı */
    font-weight: 400;
}

/* MODAL STİLLERİ */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 9999;
            display: none; /* Başlangıçta gizli */
            align-items: center;
            justify-content: center;
            padding: 1rem;
            backdrop-filter: blur(3px);
        }

        .modal-content {
            background-color: white;
            border-radius: 1.5rem;
            padding: 2rem;
            max-width: 32rem;
            width: 100%;
            position: relative;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            animation: modalPop 0.3s ease-out;
        }

        /* Açılma Animasyonu */
        @keyframes modalPop {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Kapatma Butonu */
        .close-btn {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #f3f4f6;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.2s;
        }
        .close-btn:hover { background: #e5e7eb; }

        body {
    background-color: #f4f7f6; /* İşte senin tema rengin */
    color: #333; /* Yazı rengin */
    font-family: 'Inter', sans-serif; /* Fontun */
}



/* Genel Kapsayıcı Ayarları */
.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* Başlıkları ortalamak için */
}

/* YENİ EKLENEN: Kırmızı S.S.S. Etiketi */
.faq-label {
    display: block;
    color: #ff4757; /* Kırmızı renk */
    font-weight: bold;
    font-size: 1.6rem;
    letter-spacing: 1px;
    margin-bottom: 1px;
    text-transform: uppercase;
}

/* Başlık */
.faq-title {
    font-size: 2rem;
    color: #333;
    margin: 0 0 10px 0;
    
}

/* YENİ EKLENEN: Açıklama Yazısı */
.faq-desc {
    color: #666;
    font-size: 1.3rem;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 400;
}


/* Başlık Ayracı (Çizgi) */
.baslik-ayrac {
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    margin: 0 auto 40px auto;
    border-radius: 2px;
}


/* ... SSS ... */

.baslik-ayrac { 
    width: 80px; 
    height: 4px; 
    background: #ff4757; 
    margin: 20px auto 60px !important; 
    border-radius: 2px; 
    display: block !important; 
    clear: both;
 }   
.faq-section { padding: 80px 20px; background: #f4f7f6; }
.faq-container { max-width: 800px; margin: 10px auto 50px; }
.faq-title { font-weight: bold; text-align: center; margin-bottom: 10px; font-size: 2.5rem; color: #222; }

.faq-item { background: #fff; margin-bottom: 20px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }

.faq-question { 

    padding: 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    cursor: pointer; 
    font-weight: 600; 
    transition: 0.3s;
    user-select: none;

}
    
.faq-question:hover { background: #fafafa; color: #ff4757; }

.faq-answer { 
    max-height: 0;
    overflow: hidden; 
    transition: all 0.4s ease-out; 
    background: #fff;
    padding: 0 20px; 
}

.faq-answer p { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* Aktif Soru Ayarı */
.faq-item.active .faq-answer { 
    max-height: 500px; 
    padding: 20px; 
    border-top: 1px solid #f1f1f1;
}

.faq-item.active .faq-question { color: #ff4757; }
.faq-item.active .fa-chevron-down { transform: rotate(180deg); transition: 0.3s; }  




/* ... Birlikte İnşa Edelim ... */

.gemo-cta-wrapper {
        background-color: #0a0a0a; /* Derin siyah arka plan */
        padding: 120px 20px;
        text-align: center;
        font-family: 'Inter', sans-serif;
        border-top: 1px solid #1a1a1a;
    }

    .gemo-cta-content {
        max-width: 850px;
        margin: 0 auto;
    }

    .gemo-cta-title {
        color: #ffffff;
        font-size: clamp(2.5rem, 5vw, 4rem); /* Ekrana göre otomatik boyutlanır */
        font-weight: 900;
        margin-bottom: 24px;
        letter-spacing: -2px;
    }

    .gemo-dot {
        color: #ff0000; /* İmza kırmızı nokta */
    }

    .gemo-cta-description {
        color: #a0a0a0;
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 48px;
        font-weight: 400;
    }

    /* İşte O Kırmızıya Dönüşen Buton */
    .gemo-cta-button {
    display: inline-flex;  /* Inline-block yerine inline-flex daha derli toplu durur */
    align-items: center;
    justify-content: center;
    padding: 12px 30px;    /* Yanlardaki boşluğu iyice daralttık */
    font-size: 0.9rem;    /* Yazıyı biraz daha kibarlaştırdık */
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px; /* Harf arasını daralttık */
    width: auto;           /* Genişliği içeriğe göre ayarla dedik */
}

    /* Hover Durumu */
    .gemo-cta-button:hover {
        background-color: #ff0000; /* Buton kırmızıya döner */
        border-color: #ff0000;
        box-shadow: 0 15px 40px rgba(255, 0, 0, 0.35); /* Kırmızı parlama efekti */
        transform: scale(1.05) translateY(-5px); /* Hafif büyüme ve yükselme */
    }

  /* Mobil Ayarlar */
@media (max-width: 768px) {
    .gemo-cta-wrapper {
        padding: 60px 20px; /* Üst ve alt boşluğu mobilde biraz azalttık */
    }
    .gemo-cta-button {
        width: auto;           /* İŞTE KRİTİK NOKTA: 100% yerine auto yaptık */
        display: inline-block; /* Yan yana gelme özelliğini koru */
        padding: 10px 24px;    /* Mobildeki iç boşluğu daralttık */
        font-size: 0.8rem;     /* Yazıyı mobilde bir tık daha küçülttük */
        box-sizing: border-box;
    }
}



/* Ana Kapsayıcı slayt2 */
.fark-kesfet-container {
    background-color: #f4f7f6; /* Sitenin koyu temasına uygun slayt2 */
    padding-top: 50px;      /* Üst boşluk */
    padding-bottom: 5px;   /* Alt boşluk (Bunu azaltırsan footer'a yaklaşır) */    text-align: center;
}

.sliding-headline {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3.5rem); /* Responsive boyut slayt2 */
    color: #0a0a0a;
    margin: 0;
    line-height: 1.2;
}

/* Değişen kelimelerin kapsayıcısı slayt2 */
.words-wrapper {
    display: inline-block;
    position: relative;
    text-align: left;
    color: #ff0000; /* İmza kırmızı renk slayt2 */
    /* Genişlik değişiminde titremeyi önlemek için min-width verilebilir ama zorunlu değil */
}

/* Tüm kelimelerin ortak özellikleri (Gizli durum) slayt2 */
.words-wrapper b {
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(20px); /* Aşağıdan gelmesi için slayt2 */
    transition: opacity 0.5s, transform 0.5s;
    font-weight: 900;
}

/* Sadece görünür olan kelimenin özellikleri slayt2 */ 
.words-wrapper b.is-visible {
    position: relative; /* Relative yaparak yer kaplamasını sağlıyoruz */
    opacity: 1;
    transform: translateY(0);
}



/* FOOTER */
        .main-footer { background: #0a0a0a; color: #fff; padding: 60px 20px 20px; margin-top: 50px; }
        .footer-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
        .footer-column { flex: 1; min-width: 280px; }
        .footer-logo { font-family: 'Bodoni Moda', serif; font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 20px; display: block; color: #fff; }
        .footer-column h4 { margin-bottom: 25px; border-left: 3px solid #ff4757; padding-left: 12px; font-size: 1.1rem; text-transform: uppercase; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 12px; }
        .footer-links a { color: #bbb; font-size: 0.95rem; }
        .footer-links a:hover { color: #fff; padding-left: 5px; }
        .subscribe-btn { background: #ff4757; color: #fff; border: none; padding: 12px 25px; border-radius: 50px; cursor: pointer; font-weight: 700; transition: 0.3s; margin-top: 15px; }
        .footer-socials { margin-top: 25px; display: flex; gap: 15px; }
        .footer-socials a { color: #fff; font-size: 1.3rem; transition: 0.3s; }
        .footer-socials a:hover { color: #ff4757; transform: translateY(-3px); }
        .footer-bottom { text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid #333; color: #777; font-size: 0.9rem; }
         /* Bluesky ikonunun üzerine gelince (hover) rengi değiştir */
        .footer-socials a[title="Bluesky"]:hover svg {
           fill: #ff6b6b !important; /* Hafif Kırmızı tonu */
           transition: fill 0.3s ease; /* Yumuşak geçiş efekti */
}



/* =========================================
   POLİTİKA SAYFASI (SİYAH BAŞLIK + TAM EKRAN KART)
   ========================================= */

/* --- 1. SİYAH BAŞLIK ALANI (HERO) --- */
.policy-hero {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 160px 20px 80px; /* Üst menü altında kalmaması için */
    width: 100%;
}

.policy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff !important;
}

.policy-hero .meta {
    color: #ff4757;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .policy-hero { padding: 120px 20px 60px; }
    .policy-hero h1 { font-size: 2.2rem; }
}

/* --- 2. DOĞRUDAN SAYFAYA YAZILMIŞ DÜZEN --- */
.policy-container {
    width: 100%; 
    max-width: 1650px; /* Metnin devasa ekranlarda çok uzayıp okunmasını zorlaştırmaması için sınır */
    margin: 50px auto 80px; /* EKSİ MARGİN KALDIRILDI: Artık siyah başlığın üstüne binmeyecek, altında normal başlayacak */
    padding: 0 20px; /* Mobilde yazılar kenara yapışmasın diye */
    position: relative;
    z-index: 10;
    background-color: transparent; /* Arka planı şeffaf yaptık */
}

.policy-card {
    background: transparent; /* BEYAZ KUTU İPTAL EDİLDİ */
    padding: 0; /* Artık kutu olmadığı için iç boşluğa gerek yok */
    border-radius: 0; 
    box-shadow: none; /* GÖLGE İPTAL EDİLDİ */
    border: none; /* ÇERÇEVE İPTAL EDİLDİ */
    width: 100%;
}


/* İÇERİK DÜZENİ */
.policy-content {
    font-size: 1.05rem; /* Okunabilirlik için yazı boyutu hafif artırıldı */
}

.policy-content h3 { color: #1a1a1a; font-size: 1.5rem; margin-top: 40px; margin-bottom: 20px; border-left: 5px solid #ff4757; padding-left: 15px; font-weight: 800; }
.policy-content h4 { color: #222; font-size: 1.2rem; margin-top: 25px; margin-bottom: 10px; font-weight: 700; }

/* Paragraflar tablo gibi görünmesin diye geniş alana yayılıyor */
.policy-content p { 
    margin-bottom: 18px; 
    color: #444; 
    line-height: 1.8; 
    max-width: 100%; /* Sınırlama kaldırıldı */
}

.policy-content ul { margin-bottom: 20px; padding-left: 20px; list-style: none; }
.policy-content ul li { position: relative; padding-left: 25px; margin-bottom: 10px; color: #444; }
.policy-content ul li::before { content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #ff4757; position: absolute; left: 0; font-size: 0.8rem; top: 6px; }
.policy-content a { color: #ff4757; font-weight: 600; text-decoration: none; }

.policy-content address {
    font-style: normal;
    background: #fcfcfc;
    padding: 25px;
    border: 1px solid #eee;
    border-left: 5px solid #1a1a1a;
    margin-top: 20px;
    width: fit-content; /* Sadece adres kutusu kompakt kalsın */
    min-width: 300px;
}



/* --- 3. İÇİNDEKİLER TABLOSU (Sizin ayarlarınız + Numara Fix) --- */
/* --- 3. İÇİNDEKİLER TABLOSU --- */
.toc { 
    background: #f4f7f6; /* Sayfa gri olduğu için, bu kısım beyaz şık bir kutu olarak kalsın */
    padding: 30px; 
    border-radius: 8px; 
    margin-bottom: 40px; 
    border: 1px solid #f4f7f6;
    
    /* TAŞMA KODLARI SIFIRLANDI */
    width: 100% !important; 
    margin-left: 0 !important; 
    margin-right: 0 !important;
    box-sizing: border-box;
}
.toc h4 { margin-top: 0; color: #1a1a1a; font-size: 1.2rem; margin-bottom: 15px; }

/* 1,2,3... NUMARALARININ GÖRÜNMESİ İÇİN GÜNCELLEDİĞİM ALAN */
.toc ol { 
    padding-left: 30px !important; 
    list-style-type: decimal !important;
}
.toc li { 
    margin-bottom: 8px; 
    display: list-item !important; /* Listenin nokta/numara göstermesini zorunlu kılar */
}

.toc a { color: #333; font-weight: 500; text-decoration: none !important;}
.toc a:hover { color: #ff4757; text-decoration: none !important;}


 /* TABLO TASARIMI */
        .table-responsive {
            overflow-x: auto;
            margin-bottom: 30px;
            border: 1px solid #f4f6f7;
            border-radius: 8px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: #f4f6f7;
            min-width: 700px;
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #f4f6f7;
            vertical-align: top;
        }
        th {
            background-color: #f4f6f7;
            font-weight: 700;
            color: #1a1a1a;
        }
        tr:hover { background-color: #f4f6f7; }



         /* --- HAKKIMIZDA HERO HİZMET BAŞLIK ALANI --- */
        .hero-mini { padding: 80px 20px; text-align: center; background: #000000; border-bottom: 1px solid #f4f7f6; margin-bottom: 5px; }
        .hero-mini h1 { font-size: 2.5rem; color: #ffffff; font-weight: 800; margin-top: 10px; }
        .hero-mini p { color: #ff4757; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; }
        

        /* HAKKIMIZDA SECTION */
        .about { padding: 80px 20px; max-width: 1200px; margin: 40px auto; background: #fff; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
        .about h1 { text-align: center; font-size: 2.5rem; margin-bottom: 40px; color: #222; position: relative; padding-bottom: 15px; }
        .about h1::after { content: ''; width: 80px; height: 4px; background: #ff4757; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); }
        .about p { font-size: 1.1rem; margin-bottom: 25px; color: #444; }
        
        .mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 60px 0; }
        .mission-vision div { background: #f9f9f9; padding: 30px; border-radius: 10px; border: 1px solid #eee; }
        .mission-vision h2 { color: #ff4757; margin-bottom: 20px; font-size: 1.6rem; }

        .values { margin-top: 60px; }
        .values h2 { text-align: center; font-size: 2rem; margin-bottom: 40px; color: #222; }
        .value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; justify-items: center; }
        .value-card { background: #fff; padding: 30px; border-radius: 12px; text-align: center; border: 1px solid #eee; transition: transform 0.3s; width: 100%; }
        .value-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: #ff4757; }
        .value-card h3 { color: #ff4757; margin-bottom: 15px; font-size: 1.4rem; }



        /* HAKKIMIZDA GÜNCEL */

        @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  @keyframes float-delayed {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  .animate-float { animation: float 4s ease-in-out infinite; }
  .animate-float-delayed { animation: float-delayed 4s ease-in-out infinite; animation-delay: 2s; }




     /* --- PARALLAX EFEKTİ --- */
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }
        .overlay-dark {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.5); 
        }

        /* --- ANİMASYONLAR --- */
        .fade-up-scroll {
            animation: fadeUp 1s ease-out forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }



                /* --- HERO alanında lider markalara projeler yazısı için sadece --- */

        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

*/ Başlığın genel flex yapısı */
.hero-custom-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}

/* Üstteki düz, aralıklı metin (Alanında Lider) */
.hero-custom-title .line-one {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 4px; /* Harfler arası geniş boşluk lüks hissi verir */
  text-transform: none; /* Yazdığın gibi (büyük/küçük) görünür */
  display: block;
}

/* Alttaki büyük ve italik metin (Markalara Projeler) */
.hero-custom-title .line-two {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  display: block;
  margin-top: -15px; /* İki satırı birbirine şık bir şekilde yaklaştırır */
}

/* Mobil cihazlar için responsive uyarlama (Tailwind'in md: breakpoint'i gibi) */
@media (max-width: 768px) {
  .hero-custom-title .line-one {
    font-size: 2.1rem;
    letter-spacing: 2px;
  }
  .hero-custom-title .line-two {
    font-size: 2.1rem;
    margin-top: -5px;
  }
}