/* TEMA DEĞİŞKENLERİ */
:root {
    --zemin-beyaz: #ffffff;
    --zemin-gri: #f8f9fa;
    --yazi-koyu: #111827; 
    --yazi-acik: #6b7280;
    --vurgu-gradient: linear-gradient(135deg, #ef4444 0%, #991b1b 100%);
    --vurgu-duz: #dc2626; 
    --vurgu-hafif: rgba(220, 38, 38, 0.08);
    --golge: 0 10px 40px rgba(0, 0, 0, 0.06);
    --gecis: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; list-style: none; text-decoration: none; }
body { background-color: var(--zemin-gri); color: var(--yazi-koyu); line-height: 1.6; overflow-x: hidden; }

/* --- HERO ALANI --- */
.hero-wrapper {
    max-width: 1400px; 
    margin: 140px auto 40px; 
    padding: 0 5%; 
    display: flex; 
    gap: 50px; 
    height: 520px; 
    align-items: stretch;
}

.hero-main-box {
    flex: 2.6; background: transparent; border-radius: 0; padding: 10px 0; display: flex; align-items: center; gap: 40px; box-shadow: none; 
}
.hero-text-area { flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; }
.text-slide { display: none; animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.text-slide.active { display: block; }
.text-slide h1 { font-size: 2.9rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: var(--yazi-koyu); }
.text-slide h1 span { background: var(--vurgu-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-slide p { font-size: 1.05rem; color: var(--yazi-acik); margin-bottom: 30px; max-width: 95%; line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 20px; margin-top: 10px; }
.slider-nav { display: flex; gap: 10px; }

.slider-btn {
    width: 45px; height: 45px; border-radius: 50%; border: 2px solid rgba(220, 38, 38, 0.2);
    background: transparent; color: var(--vurgu-duz); font-size: 1.1rem; cursor: pointer; display: flex; justify-content: center; align-items: center; transition: var(--gecis);
}
.slider-btn:hover { background: var(--vurgu-gradient); color: white; border-color: transparent; box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3); transform: translateY(-2px); }

.hero-image-area { flex: 1.2; position: relative; height: 100%; }
.image-slider {
     width: 100%; height: 100%; position: relative; background: var(--zemin-gri); border-radius: 20px; overflow: hidden; 
     box-shadow: var(--golge); }
.img-slide { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.6s ease-in-out; 
}
.img-slide.active { opacity: 1; }

.hero-tabs-area { flex: 1; display: flex; flex-direction: column; gap: 0; background: var(--zemin-beyaz); border-radius: 24px; box-shadow: var(--golge); overflow: hidden; }
.hero-tab { flex: 1; display: flex; align-items: center; padding: 0 25px; cursor: pointer; transition: var(--gecis); border-radius: 0; background: transparent; box-shadow: none; border-bottom: 1px solid rgba(0,0,0,0.04); position: relative; }
.hero-tab:last-child { border-bottom: none; }
.tab-icerik { position: relative; z-index: 2; display: flex; align-items: center; gap: 15px; }
.tab-icon { width: 50px; height: 50px; background: var(--vurgu-hafif); color: var(--vurgu-duz); border-radius: 12px; display: flex; justify-content: center; align-items: center; font-size: 1.2rem; flex-shrink: 0; transition: var(--gecis); }
.tab-text h4 { font-size: 1.05rem; color: var(--yazi-koyu); margin-bottom: 2px; transition: var(--gecis); font-weight: 700; }
.tab-text p { font-size: 0.85rem; color: var(--yazi-acik); line-height: 1.3; transition: var(--gecis); margin: 0; }
.hero-tab::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--vurgu-gradient); opacity: 0; transition: opacity 0.4s ease; z-index: 1; }
.hero-tab.active { transform: none; }
.hero-tab.active::before { opacity: 1; }
.hero-tab.active .tab-icon { background: rgba(255,255,255,0.2); color: #fff; }
.hero-tab.active .tab-text h4, .hero-tab.active .tab-text p { color: #fff; }
.hero-tab:hover:not(.active) { background: var(--zemin-gri); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- REFERANSLAR ALANI (Pürüzsüz Beyaz ve Hatasız Döngü) --- */
.referanslar-alani { 
    padding: 60px 0; 
    background: var(--zemin-beyaz); /* Yatay çizgiler kalktı, zeminle birleşti */
    overflow: hidden; 
}
.referans-baslik { text-align: center; margin-bottom: 40px; }
.referans-baslik h2 { font-size: 2rem; font-weight: 800; color: var(--yazi-koyu); }
.referans-baslik p { color: var(--yazi-acik); margin-top: 5px; font-size: 1.05rem; }

.referans-slider { 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto; 
    position: relative; 
    overflow: hidden; 
    padding: 20px 0; 
    /* Yanlardan beyaz silinme efekti */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); 
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); 
}

.referans-slider::before,
.referans-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.referans-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--zemin-beyaz) 0%, rgba(255,255,255,0) 100%);
}
.referans-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--zemin-beyaz) 0%, rgba(255,255,255,0) 100%);
}

.referans-track { 
    display: flex; 
    align-items: center; 
    width: calc(200px * 16); /* 8 orijinal + 8 kopya = 16 adet logoya göre ayarlandı */
    animation: scroll 25s linear infinite; 
}
.referans-track:hover { animation-play-state: paused; }

.ref-slide { 
    width: 200px; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    padding: 0 30px; 
    transition: var(--gecis); 
}
.ref-slide img { 
    max-width: 100%; 
    max-height: 70px; 
    filter: grayscale(100%) opacity(0.5); 
    transition: var(--gecis); 
}
.ref-slide:hover img { 
    filter: grayscale(0%) opacity(1); 
    transform: scale(1.1); 
}

@keyframes scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(calc(-200px * 8)); } /* 8 logonun bitiminde döngüyü sıfırla */
}

/* --- PREMIUM HİZMETLER ALANI --- */
.hizmetler-modern-bg { background-color: var(--zemin-beyaz); padding: 60px 5% 100px; }
.hizmetler-baslik-modern { text-align: center; margin-bottom: 60px; }
.hizmetler-baslik-modern h2 { font-size: 2.3rem; font-weight: 800; color: var(--yazi-koyu); }
.hizmetler-baslik-modern p { color: var(--yazi-acik); margin-top: 10px; font-size: 1.05rem; }

.hizmet-kartlari-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; max-width: 1400px; margin: 0 auto; }
.hizmet-karti-modern { position: relative; display: flex; flex-direction: column; border-radius: 24px; background: transparent; }
.karti-resim { width: 100%; height: 300px; border-radius: 24px; overflow: hidden; position: relative; box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.karti-resim img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.hizmet-karti-modern:hover .karti-resim img { transform: scale(1.08); }

.karti-icerik { width: 88%; margin: -60px auto 0; background: #ffffff; padding: 30px; border-radius: 20px; position: relative; z-index: 2; box-shadow: 0 15px 40px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.03); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.hizmet-karti-modern:hover .karti-icerik { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15); }
.karti-ikon { width: 50px; height: 50px; background: var(--vurgu-gradient); color: #fff; border-radius: 14px; display: flex; justify-content: center; align-items: center; font-size: 1.3rem; margin-bottom: 20px; box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3); }
.karti-icerik h3 { font-size: 1.35rem; font-weight: 700; color: var(--yazi-koyu); margin-bottom: 12px; }
.karti-icerik p { font-size: 0.95rem; color: var(--yazi-acik); line-height: 1.6; margin-bottom: 25px; }
.karti-link { display: inline-flex; align-items: center; gap: 8px; color: var(--vurgu-duz); font-weight: 700; font-size: 0.9rem; transition: var(--gecis); }
.karti-link i { transition: transform 0.3s ease; }
.karti-link:hover { color: #991b1b; }
.karti-link:hover i { transform: translateX(5px); }

/* --- ÜRETİM SÜRECİMİZ --- */
.uretim-sureci-bg { background-color: var(--zemin-beyaz); padding: 100px 5%; border-top: 1px solid rgba(0,0,0,0.03); }
.surec-baslik-alani { text-align: center; margin-bottom: 70px; }
.surec-baslik-alani h2 { font-size: 2.3rem; font-weight: 800; color: var(--yazi-koyu); }
.surec-baslik-alani p { color: var(--yazi-acik); margin-top: 10px; font-size: 1.05rem; }
.surec-container { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; position: relative; }
.surec-container::before { content: ''; position: absolute; top: 40px; left: 10%; width: 80%; height: 2px; background: dashed 2px rgba(220, 38, 38, 0.2); z-index: 1; }
.surec-adim { flex: 1; text-align: center; position: relative; z-index: 2; padding: 0 20px; }
.adim-ikon { width: 80px; height: 80px; margin: 0 auto 20px; background: #fff; border: 2px solid var(--vurgu-duz); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; color: var(--vurgu-duz); box-shadow: 0 10px 20px rgba(0,0,0,0.05); transition: var(--gecis); }
.surec-adim:hover .adim-ikon { background: var(--vurgu-gradient); color: #fff; transform: scale(1.1); }
.adim-sayi { background: var(--vurgu-hafif); color: var(--vurgu-duz); font-weight: 800; padding: 4px 12px; border-radius: 20px; display: inline-block; margin-bottom: 15px; font-size: 0.85rem; }
.surec-adim h4 { font-size: 1.2rem; color: var(--yazi-koyu); margin-bottom: 10px; }
.surec-adim p { font-size: 0.9rem; color: var(--yazi-acik); line-height: 1.5; }

/* --- NEDEN BİZ & SAYAÇLAR --- */
.neden-biz-bg { background-color: var(--zemin-gri); padding: 100px 5%; border-top: 1px solid rgba(0,0,0,0.03); }
.neden-biz-container { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.neden-sol { flex: 1.1; }
.neden-sol h2 { font-size: 2.3rem; font-weight: 800; color: var(--yazi-koyu); margin-bottom: 15px; }
.neden-alt-baslik { font-size: 1.1rem; color: var(--yazi-acik); line-height: 1.6; margin-bottom: 35px; }
.avantajlar-listesi { display: flex; flex-direction: column; gap: 20px; }
.avantajlar-listesi li { display: flex; align-items: flex-start; gap: 15px; }
.avantajlar-listesi li i { font-size: 1.4rem; color: var(--vurgu-duz); margin-top: 3px; }
.avantaj-metin strong { display: block; color: var(--yazi-koyu); font-size: 1.1rem; margin-bottom: 3px; }
.avantaj-metin span { color: var(--yazi-acik); font-size: 0.95rem; line-height: 1.5; }
.neden-sag { flex: 1; }
.sayac-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.sayac-kutu { background: #ffffff; padding: 35px 20px; border-radius: 20px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: var(--gecis); border: 1px solid transparent; }
.sayac-kutu:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1); border-color: rgba(220, 38, 38, 0.1); }
.sayac-ikon { font-size: 2rem; color: var(--vurgu-duz); margin-bottom: 15px; opacity: 0.8; }
.sayac-rakam-alani { display: flex; justify-content: center; align-items: center; font-size: 2.8rem; font-weight: 800; color: var(--yazi-koyu); margin-bottom: 5px; line-height: 1; }
.sayac-arti { color: var(--vurgu-duz); font-size: 2.2rem; }
.sayac-baslik { font-size: 1rem; font-weight: 500; color: var(--yazi-acik); }

.blog-alani-bg {
    background-color: var(--zemin-beyaz);
    padding: 80px 5% 100px;
}
.blog-container {
    max-width: 1400px;
    margin: 0 auto;
}
.blog-baslik-merkez {
    text-align: center;
    margin-bottom: 50px;
}
.blog-baslik-merkez h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--yazi-koyu);
    margin-bottom: 15px;
}
.blog-baslik-merkez p {
    font-size: 1.05rem;
    color: var(--yazi-acik);
    max-width: 700px;
    margin: 0 auto; /* Açıklamayı da ortalar */
}

/* YENİ: Butonu Alta ve Ortaya Alma */
.blog-buton-alani {
    display: flex;
    justify-content: center;
    margin-top: 40px; /* Kartlarla buton arasındaki boşluk */
}

.btn-tum-yazilar {
    background-color: #000;
    color: #fff;
    padding: 14px 35px; /* Biraz daha geniş ve gösterişli yaptık */
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--gecis);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Hafif gölge eklendi */
}
.btn-tum-yazilar:hover {
    background-color: var(--vurgu-duz);
    color: #fff;
    transform: translateY(-3px);
}
.blog-ust-alan {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.blog-baslik-sol h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--yazi-koyu);
    margin-bottom: 10px;
}
.blog-baslik-sol p {
    font-size: 1.05rem;
    color: var(--yazi-acik);
    max-width: 700px;
}
.btn-tum-yazilar {
    background-color: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--gecis);
}
.btn-tum-yazilar:hover {
    background-color: var(--vurgu-duz);
    color: #fff;
}
.blog-grid-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* İçerideki kartları tam ortalar */
    gap: 25px;
    margin-bottom: 50px;
}
.blog-kart-modern {
    width: calc(25% - 19px); /* Orijinal tasarımdaki 4'lü boyutu korur */
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--gecis);
}
.blog-kart-modern:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-5px);
    border-color: rgba(0,0,0,0.12);
}
.blog-gorsel-modern {
    height: 180px;
    overflow: hidden;
}
.blog-gorsel-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--gecis);
}
.blog-kart-modern:hover .blog-gorsel-modern img {
    transform: scale(1.05);
}
.blog-icerik-modern {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-etiketler {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.etiket-kategori {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--yazi-koyu);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.etiket-sure {
    color: var(--yazi-acik);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.blog-icerik-modern h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yazi-koyu);
    margin-bottom: 25px;
    line-height: 1.4;
    flex-grow: 1; /* Metin kısaysa bile alt kısmı aşağı iter */
}
.blog-alt-bilgi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}
.blog-tarih {
    color: var(--yazi-acik);
    font-size: 0.85rem;
    font-weight: 500;
}
.blog-link-modern {
    color: var(--yazi-koyu);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--gecis);
}
.blog-link-modern:hover {
    color: var(--vurgu-duz);
}
.blog-sayfalama {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.sayfa-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff;
    color: var(--yazi-koyu);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--gecis);
}
.sayfa-btn:hover {
    border-color: var(--yazi-koyu);
}
.sayfa-num {
    font-weight: 600;
    color: var(--yazi-acik);
    cursor: pointer;
    transition: var(--gecis);
    font-size: 1rem;
}
.sayfa-num.aktif { color: var(--yazi-koyu); }
.sayfa-num:hover { color: var(--yazi-koyu); }

/* Mobil Uyumluluk */
/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .blog-kart-modern { width: calc(50% - 13px); } /* Tablette yan yana 2 ortalı kart */
    .blog-ust-alan { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 768px) {
    .blog-kart-modern { width: 100%; } /* Mobilde tam ekran tek kart */
    .blog-baslik-sol h2 { font-size: 2rem; }
}

/* --- CTA (TEKLİF) BANDI --- */
.cta-bandi { padding: 70px 5%; background: var(--vurgu-gradient); position: relative; overflow: hidden; }
.cta-bandi::before { content: ''; position: absolute; top: -50%; right: -10%; width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.cta-bandi::after { content: ''; position: absolute; bottom: -50%; left: -5%; width: 300px; height: 300px; background: rgba(255,255,255,0.08); border-radius: 50%; }
.cta-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.cta-sol { flex: 1.5; }
.cta-sol h2 { color: #ffffff; font-size: 2.2rem; font-weight: 800; margin-bottom: 15px; }
.cta-sol p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 90%; line-height: 1.6; }
.cta-sag { flex: 1; display: flex; justify-content: flex-end; align-items: center; gap: 20px; }
.btn-cta-beyaz { background: #ffffff; color: var(--vurgu-duz); padding: 15px 35px; border-radius: 12px; font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: 10px; transition: var(--gecis); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
.btn-cta-beyaz:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); color: #991b1b; }
.btn-cta-seffaf { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); color: #ffffff; padding: 15px 25px; border-radius: 12px; font-size: 1.05rem; font-weight: 600; display: flex; align-items: center; gap: 10px; transition: var(--gecis); }
.btn-cta-seffaf:hover { background: rgba(255,255,255,0.2); border-color: #ffffff; transform: translateY(-3px); }


/* --- MEGA FOOTER (TEMAYA UYGUN AÇIK RENK TASARIM) --- */
.mega-footer { 
    background-color: var(--zemin-gri); /* Koyu siyah yerine sitenin ferah grisi kullanıldı */
    color: var(--yazi-acik); 
    padding-top: 80px; 
    border-top: 1px solid rgba(0,0,0,0.05); 
}
.footer-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
.footer-logo { color: var(--yazi-koyu); font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; letter-spacing: 1px; }
.marka-sutunu p { line-height: 1.7; margin-bottom: 25px; font-size: 0.95rem; opacity: 0.9; }
.sosyal-medya { display: flex; gap: 15px; }
.sosyal-medya a { 
    width: 40px; height: 40px; background: #fff; display: flex; justify-content: center; align-items: center; 
    border-radius: 50%; color: var(--vurgu-duz); transition: var(--gecis); 
    border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 10px rgba(0,0,0,0.03); 
}
.sosyal-medya a:hover { background: var(--vurgu-gradient); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 15px rgba(220,38,38,0.2); }
.footer-sutun h4 { color: var(--yazi-koyu); font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; font-weight: 700; }
.footer-sutun h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--vurgu-gradient); border-radius: 2px; }
.footer-sutun ul { list-style: none; padding: 0; }
.footer-sutun ul li { margin-bottom: 15px; }
.footer-sutun ul li a { color: var(--yazi-acik); transition: var(--gecis); font-size: 0.95rem; font-weight: 500; }
.footer-sutun ul li a:hover { color: var(--vurgu-duz); padding-left: 8px; }
.iletisim-liste li { display: flex; align-items: flex-start; gap: 15px; }
.iletisim-liste li i { color: var(--vurgu-duz); margin-top: 5px; font-size: 1.1rem; }
.iletisim-liste li span, .iletisim-liste li a { color: var(--yazi-acik); font-size: 0.95rem; line-height: 1.5; font-weight: 500; }
.iletisim-liste li a:hover { color: var(--vurgu-duz); padding-left: 0; }

.footer-alt-cizgi { border-top: 1px solid rgba(0,0,0,0.06); padding: 25px 0; background-color: var(--zemin-beyaz); }
.footer-alt-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; }
.footer-yasal a { color: var(--yazi-acik); margin-left: 15px; transition: var(--gecis); font-weight: 500; }
.footer-yasal a:hover { color: var(--vurgu-duz); }


/* =========================================
   MOBİL UYUMLULUK KODLARI (TELEFON & TABLET)
========================================= */
@media (max-width: 1024px) {
    .hero-wrapper { 
        flex-direction: column; 
        height: auto; 
        margin-top: 100px; 
        padding-top: 0;    
        gap: 40px; 
    }
    
    .hero-main-box { flex-direction: column; padding: 0; }
    .hero-image-area { height: 350px; width: 100%; }
    .text-slide h1 { font-size: 2.6rem; }
    
    .hero-tabs-area { 
        background: transparent; 
        box-shadow: none; 
        gap: 15px; 
        border-radius: 0; 
    }
    
    .hero-tab { 
        border-radius: 16px; 
        background: #ffffff; 
        box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
        padding: 20px;
        border: 1px solid rgba(0,0,0,0.04);
    }
    
    .surec-container { flex-direction: column; gap: 40px; }
    .surec-container::before { display: none; }
    
    .neden-biz-container { flex-direction: column; gap: 40px; }
    
    .cta-container { flex-direction: column; text-align: center; gap: 30px; }
    .cta-sol p { max-width: 100%; }
    .cta-sag { justify-content: center; flex-wrap: wrap; }
    
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    /* 1. SAYAÇLAR (NEDEN BİZ) MOBİLDE YAN YANA (2x2) YAPILDI */
    .sayac-grid { 
        grid-template-columns: repeat(2, 1fr); /* 1 sütun yerine 2 sütun! */
        gap: 15px; 
    }
    .sayac-kutu { 
        padding: 20px 10px; /* Kutuların iç boşluğunu küçülttük ki sığsınlar */
    } 
    .sayac-rakam-alani { 
        font-size: 1.8rem; /* Rakamı biraz ufaltık */
    }
    .sayac-arti { 
        font-size: 1.4rem; 
    }
    .sayac-ikon { 
        font-size: 1.5rem; 
        margin-bottom: 10px; 
    }
    .sayac-baslik { 
        font-size: 0.85rem; 
    }

    /* Diğer Mobil Ayarlar */
    .footer-container { grid-template-columns: 1fr; }
    .footer-alt-container { flex-direction: column; gap: 15px; text-align: center; }
}
/* --- SIKÇA SORULAN SORULAR (FAQ) MODERN TASARIM --- */
.faq-alani-bg {
    background-color: var(--zemin-gri); /* Hafif gri ferah zemin */
    padding: 80px 5% 100px; 
}

.faq-container-modern {
    max-width: 900px; /* Kutuları ekranın ortasında kibarca toplar */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.faq-baslik-modern {
    text-align: center;
}

.faq-baslik-modern h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yazi-koyu);
    margin-bottom: 10px;
}

.faq-baslik-modern p {
    font-size: 1.05rem;
    color: var(--yazi-acik);
}

.faq-liste {
    display: flex;
    flex-direction: column;
    gap: 16px; 
}

.faq-kutu {
    background: var(--zemin-beyaz);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
    overflow: hidden;
    transition: var(--gecis);
    border: 1px solid transparent;
}

.faq-kutu:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.faq-kutu.aktif {
    border-color: rgba(220, 38, 38, 0.1); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.faq-soru {
    padding: 22px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--yazi-koyu);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--gecis);
    user-select: none;
}

.faq-ikon {
    width: 36px;
    height: 36px;
    background-color: var(--vurgu-hafif); 
    color: var(--vurgu-duz);
    border-radius: 8px; 
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s, color 0.3s;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-kutu.aktif .faq-ikon {
    background-color: var(--vurgu-gradient); 
    color: white;
    transform: rotate(180deg);
}

.faq-cevap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-cevap p {
    padding: 0 25px 25px;
    color: var(--yazi-acik);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}
.faq-buton-alani {
    display: flex;
    justify-content: center; /* Butonu tam merkeze alır */
    margin-top: 15px; /* Üstteki kutularla arasına nefes alma boşluğu ekler */
}

.btn-faq-more {
    padding: 12px 35px;
    font-size: 1.05rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.btn-faq-more i {
    transition: transform 0.3s ease;
}

.btn-faq-more:hover i {
    transform: translateX(5px); /* Üzerine gelince ok işareti sağa kayar */
}
@media (max-width: 768px) {
    .faq-baslik-modern h2 { font-size: 2rem; }
    .faq-soru { font-size: 1rem; padding: 16px 20px; }
    .faq-cevap p { padding: 0 20px 20px; }
    .faq-ikon { width: 32px; height: 32px; font-size: 0.8rem; }
}