/* * Project: DijitX Bilişim Teknolojileri A.Ş.
 * Theme: Premium Corporate Agency
 * Author: Senior UX/Dev Architect
 * Core: Vanilla CSS3 (No Frameworks)
 */

:root {
    /* Renk Paleti (AA/AAA Contrast Uyumlu) */
    --djt-bg-main: #f0f4f8;
    --djt-text-dark: #2C3E50;
    --djt-text-light: #546E7A;
    --djt-brand-accent: #3498DB;
    --djt-logo-bg-accent: #db1111;
    --djt-brand-hover: #2980B9;
    --djt-white: #FFFFFF;
    --djt-footer-bg: #1A252F;
    
    /* Spacing & Layout */
    --djt-gutter: 1.5rem;
    --djt-max-width: 1280px;
    --djt-radius: 8px;
    
    /* Transitions */
    --djt-trans-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--djt-bg-main);
    color: var(--djt-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--djt-trans-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Utility Classes (Obfuscated) --- */
.djt-container-zyn {
    width: 100%;
    max-width: var(--djt-max-width);
    margin: 0 auto;
    padding: 0 var(--djt-gutter);
}

.djt-section-pad-zmh {
    padding: 10px 0;
}

.djt-btn-action-zyn {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--djt-brand-accent);
    color: var(--djt-white);
    font-weight: 600;
    border-radius: var(--djt-radius);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(52, 152, 219, 0.2);
}

.djt-btn-action-zyn:hover {
    background-color: var(--djt-brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(52, 152, 219, 0.3);
}

/* --- Header & Navigation --- */
.zmh-header-wrapper-djx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.445);
    backdrop-filter: blur(10px);
    transition: all var(--djt-trans-fast);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.zmh-header-wrapper-djx.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.zmh-nav-inner-zyn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    transition: height var(--djt-trans-fast);
}

.zmh-header-wrapper-djx.scrolled .zmh-nav-inner-zyn {
    height: 30px;
}

.djt-logo-box-zmh {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--djt-text-dark);
    letter-spacing: -1px;
}

.djt-logotr-box-zmh {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--djt-white);
    letter-spacing: -1px;
    background-color: var(--djt-logo-bg-accent);
}

.djt-logo-accent { color: var(--djt-brand-accent); }

/* Hamburger Menu */
.djt-hamburger-btn-zmh {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
}

.djt-line-djx {
    width: 30px;
    height: 2px;
    background-color: var(--djt-text-dark);
    transition: var(--djt-trans-fast);
}

.djt-menu-overlay-zyn {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--djt-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1001;
}

.djt-menu-overlay-zyn.active {
    transform: translateY(0);
}

.djt-nav-links-djx {
    text-align: center;
}

.djt-nav-links-djx li { margin: 20px 0; }

.djt-nav-links-djx a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--djt-text-dark);
}

/* --- Hero Slider (Multi-Layer) --- */
.djt-hero-section-zyn {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    padding-top: 90px; /* Header payı */
}

.djt-slide-wrapper-zmh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: hidden;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}

.djt-slide-wrapper-zmh.active {
    opacity: 1;
    visibility: visible;
}

.djt-slide-content-djx {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.djt-hero-title-zyn {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.djt-slide-wrapper-zmh.active .djt-hero-title-zyn {
    transform: translateY(0);
    opacity: 1;
}

/* Layered Animations */
.djt-visual-layer-zmh {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
}

.djt-layer-img-djx {
    position: absolute;
    transition: transform 1s ease-out;
}

.djt-layer-1 { z-index: 1; top: 10%; right: 0; animation: float 6s ease-in-out infinite; }
.djt-layer-2 { z-index: 2; top: 30%; right: 20%; animation: float 8s ease-in-out infinite reverse; }

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

/* --- Services Cards --- */
.djt-services-grid-zyn {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.djt-card-zmh {
    background: var(--djt-white);
    padding: 30px;
    border-radius: var(--djt-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--djt-trans-fast);
    opacity: 0; /* Observer için */
    transform: translateY(30px);
}

.djt-card-zmh.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.djt-card-zmh:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* --- Footer --- */
.zmh-footer-main-djx {
    background-color: var(--djt-footer-bg);
    color: var(--djt-white);
    padding: 20px 0 0px 0; /* Mobil bar için pay */
}

/* --- Mobile Sticky Footer & Tools --- */
.djt-mobile-sticky-bar-zyn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--djt-white);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    display: flex;
    z-index: 999;
    height: 60px;
}

.djt-sticky-btn-zmh {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.djt-sticky-whatsapp { background: #25D366; color: white; }
.djt-sticky-call { background: var(--djt-brand-accent); color: white; }

.djt-scroll-top-djx {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--djt-text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--djt-trans-fast);
    z-index: 998;
}

.djt-scroll-top-djx.visible { opacity: 1; pointer-events: all; }

/* Responsive adjustments */
@media (max-width: 768px) {
    /* Başlık boyutunu dengele */
    .djt-hero-title-zyn { 
        font-size: 2.2rem; 
        text-align: center;
    }

    /* İçeriği ortala */
    .djt-slide-content-djx {
        text-align: center;
        margin: 0 auto;
        padding-bottom: 250px; /* Görsellere yer açmak için alt boşluk */
        z-index: 20; /* Metni görselin üstüne çıkar */
    }

    /* --- GÖRSEL KATMAN DÜZELTMESİ --- */
    .djt-visual-layer-zmh {
        display: block; /* GİZLEME İPTAL EDİLDİ */
        position: absolute;
        width: 100%;
        height: 300px;
        right: 0;
        bottom: 50px; /* Mobilde en alta sabitle */
        top: auto; /* Dikey ortalamayı iptal et */
        transform: none;
        z-index: 1; /* Metnin arkasında veya altında kalsın */
        pointer-events: none; /* Dokunmayı engellemesin */
    }

    /* Görselleri mobilde ortala ve küçült */
    .djt-layer-img-djx {
        left: 50%;
        transform: translateX(-50%); /* Yatay ortalama */
    }

    /* 1. Görsel (Örn: Laptop) */
    .djt-layer-1 {
        top: auto;
        bottom: 20px;
        width: 200px; /* Mobilde daha küçük */
        height: auto;
        right: auto;
        animation: floatMobile 6s ease-in-out infinite;
    }

    /* 2. Görsel (Örn: Sepet/Grafik) */
    .djt-layer-2 {
        top: auto;
        bottom: 100px; /* Diğer görselin biraz üstünde */
        width: 100px;
        height: auto;
        right: auto;
        margin-left: 80px; /* Hafif sağa kaydır */
        animation: floatMobile 8s ease-in-out infinite reverse;
    }

    /* Mobilde Header ve Footer ayarları */
    .djt-mobile-sticky-bar-zyn { display: flex; }
    .zmh-header-wrapper-djx { padding: 10px 0; }
}

/* Mobil için özel animasyon (Daha hafif hareket) */
@keyframes floatMobile {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}
@media (min-width: 769px) {
    .djt-mobile-sticky-bar-zyn { display: none; }
}

/* --- PAGE: HAKKIMIZDA (Typography & Layouts) --- */

/* Alt Sayfa Hero Alanı (Daha kompakt) */
.djt-page-header-zmh {
    background: linear-gradient(135deg, #F0F4F8 0%, #E1E8ED 100%);
    padding: 50px 0 20px 0; /* Header payı dahil */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.djt-page-title-zyn {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: -webkit-linear-gradient(45deg, var(--djt-text-dark), var(--djt-brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.djt-page-subtitle-djx {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--djt-text-light);
}

/* İçerik Blokları (Zikzak Yapı) */
.djt-content-block-zmh {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.djt-content-block-zmh:nth-child(even) {
    flex-direction: row-reverse; /* Görseli sağa/sola alma mantığı */
}

.djt-text-side-zyn {
    flex: 1;
}

.djt-img-side-djx {
    flex: 1;
    position: relative;
}

.djt-img-side-djx img {
    border-radius: var(--djt-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.5s ease;
}

.djt-img-side-djx:hover img {
    transform: scale(1.02);
}

.djt-block-title-zmh {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--djt-text-dark);
    position: relative;
    display: inline-block;
}

.djt-block-title-zmh::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--djt-brand-accent);
}

.djt-text-content-djx p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--djt-text-light);
    line-height: 1.8; /* Okuma kolaylığı için artırıldı */
}

/* İstatistik/Deneyim Barı */
.djt-stats-bar-zyn {
    background-color: var(--djt-text-dark);
    padding: 60px 0;
    color: var(--djt-white);
    margin: 80px 0;
}

.djt-stats-grid-zmh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.djt-stat-number-djx {
    font-size: 3rem;
    font-weight: 800;
    color: var(--djt-brand-accent);
    margin-bottom: 10px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .djt-page-title-zyn { font-size: 2.2rem; }
    .djt-content-block-zmh { flex-direction: column !important; gap: 30px; }
    .djt-img-side-djx { width: 100%; }
    .djt-page-header-zmh { padding: 20px 0 20px 0; }
}

/* --- PAGE: HİZMETLERİMİZ (Pricing & Grid) --- */

/* Hizmet Kartları (Anasayfadan daha detaylı) */
.djt-service-hero-grid-zmh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.djt-srv-card-detail-djx {
    background: var(--djt-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--djt-radius);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.djt-srv-card-detail-djx:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.15);
    border-color: var(--djt-brand-accent);
}

.djt-srv-img-wrapper-zyn {
    height: 220px;
    overflow: hidden;
}

.djt-srv-img-wrapper-zyn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.djt-srv-card-detail-djx:hover .djt-srv-img-wrapper-zyn img {
    transform: scale(1.1);
}

.djt-srv-body-zmh {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Fiyatlandırma Tablosu (Pricing Tables) */
.djt-pricing-section-zyn {
    background-color: var(--djt-bg-main);
    padding: 60px 0;
}

.djt-pricing-wrapper-djx {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Kart boylarını eşitle */
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.djt-price-card-zmh {
    background: var(--djt-white);
    border-radius: 12px;
    padding: 40px;
    width: 350px; /* Sabit genişlik yerine max-width mobilde ayarlanacak */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    border-top: 5px solid transparent;
    transition: var(--djt-trans-fast);
}

.djt-price-card-zmh:hover {
    transform: translateY(-10px);
}

/* Popüler Paket Vurgusu */
.djt-price-card-zmh.popular {
    transform: scale(1.05);
    z-index: 2;
    border-top-color: var(--djt-brand-accent);
    box-shadow: 0 20px 50px rgba(52, 152, 219, 0.2);
}

.djt-price-header-zyn h3 { font-size: 1.5rem; margin-bottom: 10px; }
.djt-price-amount-djx { font-size: 2.5rem; font-weight: 800; color: var(--djt-text-dark); margin-bottom: 20px; }
.djt-price-amount-djx span { font-size: 1rem; font-weight: 400; color: var(--djt-text-light); }

.djt-price-features-zmh {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.djt-price-features-zmh li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--djt-text-light);
    font-size: 0.95rem;
}

.djt-check-icon { color: #27AE60; margin-right: 10px; font-weight: bold; }

/* Responsive Fiyat Tablosu (Taşmayı Önler) */
@media (max-width: 1024px) {
    .djt-pricing-wrapper-djx {
        flex-direction: column;
        align-items: center;
    }
    
    .djt-price-card-zmh {
        width: 100%;
        max-width: 450px;
        margin-bottom: 20px;
    }

    .djt-price-card-zmh.popular {
        transform: scale(1); /* Mobilde scale efektini kapat */
        order: -1; /* Popüler paketi en üste al */
    }
    
    .djt-service-hero-grid-zmh { grid-template-columns: 1fr; }
}

/* --- PAGE: E-TİCARET PAKETLERİ (Features & FAQ) --- */

/* Ortak Özellikler Alanı (Grid List) */
.djt-common-features-zyn {
    background-color: var(--djt-white);
    border-radius: var(--djt-radius);
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-top: 60px;
    border: 1px solid rgba(0,0,0,0.05);
}

.djt-feature-grid-djx {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.djt-feature-item-zmh {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--djt-text-dark);
}

.djt-feat-icon-zyn {
    min-width: 24px;
    height: 24px;
    background: rgba(52, 152, 219, 0.1);
    color: var(--djt-brand-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Accordion (Sık Sorulan Sorular) */
.djt-faq-section-zmh {
    max-width: 800px;
    margin: 0 auto;
}

.djt-accordion-item-djx {
    background: var(--djt-white);
    border: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 15px;
    border-radius: var(--djt-radius);
    overflow: hidden;
    transition: all 0.3s ease;
}

.djt-accordion-item-djx.active {
    border-color: var(--djt-brand-accent);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
}

.djt-accordion-header-zyn {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--djt-text-dark);
}

.djt-accordion-icon-djx {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.djt-accordion-item-djx.active .djt-accordion-icon-djx {
    transform: rotate(45deg); /* + işaretini x yapar */
    color: var(--djt-brand-accent);
}

.djt-accordion-content-zmh {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #FAFAFA;
}

.djt-accordion-body-zyn {
    padding: 20px;
    color: var(--djt-text-light);
    line-height: 1.6;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Platform Logoları (OpenCart Vurgusu) */
.djt-platform-badges-zmh {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.djt-badge-djx {
    padding: 8px 16px;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--djt-text-light);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Mobilde Overflow Koruması */
@media (max-width: 768px) {
    .djt-feature-grid-djx { grid-template-columns: 1fr; }
    .djt-common-features-zyn { padding: 20px; }
    .djt-accordion-header-zyn { font-size: 1rem; }
}

/* --- PAGE: TEMA ÖRNEKLERİ (Filter & Grid) --- */

/* Sticky Filter Bar */
.djt-filter-bar-wrapper-zmh {
    background-color: var(--djt-bg-main); /* Arkaplanla aynı renk, şeffaflığı önler */
    padding: 15px 0;
    position: sticky;
    top: 60px; /* Header'ın (scrolled) yüksekliği kadar pay */
    z-index: 900; /* Header'ın (1000) altında kalmalı */
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: top 0.3s ease;
}

.djt-filter-container-zyn {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.djt-filter-btn-djx {
    padding: 10px 24px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: var(--djt-white);
    color: var(--djt-text-dark);
    border-radius: 30px; /* Hap (Pill) Tasarım */
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.djt-filter-btn-djx:hover,
.djt-filter-btn-djx.active {
    background-color: var(--djt-brand-accent);
    color: var(--djt-white);
    border-color: var(--djt-brand-accent);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* "Tümü" butonu başlangıçta gizli */
.djt-filter-btn-djx[data-filter="all"] {
    display: none;
    background-color: var(--djt-text-dark);
    border-color: var(--djt-text-dark);
    color: var(--djt-white);
}
.djt-filter-btn-djx[data-filter="all"].visible {
    display: inline-block;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Theme Grid Layout */
.djt-themes-grid-zyn {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    min-height: 500px; /* Boşken zıplamayı önler */
}

/* Theme Card */
.djt-theme-card-zmh {
    background: var(--djt-white);
    border-radius: var(--djt-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex; /* Filtrelemede gizlemek için */
    flex-direction: column;
}

.djt-theme-card-zmh.hidden {
    display: none; /* DOM'dan kaldırır gibi davranır ama JS ile geri gelir */
}

/* Filtre animasyonu için */
.djt-theme-card-zmh.anim-in {
    animation: fadeUpFilter 0.5s ease forwards;
}

@keyframes fadeUpFilter {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.djt-theme-thumb-djx {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.djt-theme-thumb-djx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.djt-theme-card-zmh:hover .djt-theme-thumb-djx img {
    transform: scale(1.1);
}

/* Altyapı Rozeti */
.djt-platform-tag-zyn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.djt-theme-info-zmh {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.djt-theme-cat-djx {
    font-size: 0.8rem;
    color: var(--djt-brand-accent);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.djt-theme-title-zyn {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--djt-text-dark);
}

.djt-theme-desc-djx {
    font-size: 0.9rem;
    color: var(--djt-text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.djt-theme-btn-zmh {
    margin-top: auto;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--djt-brand-accent);
    color: var(--djt-brand-accent);
    border-radius: var(--djt-radius);
    font-weight: 600;
    transition: all 0.2s;
}

.djt-theme-btn-zmh:hover {
    background: var(--djt-brand-accent);
    color: white;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .djt-filter-bar-wrapper-zmh {
        top: 60px; /* Mobilde header yüksekliği */
        padding: 10px 0;
    }

    .djt-filter-container-zyn {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 sütunlu sıkışık grid */
        gap: 8px;
        padding: 0 10px;
    }

    .djt-filter-btn-djx {
        padding: 8px 5px;
        font-size: 0.8rem;
        width: 100%;
        text-align: center;
        border-radius: 8px; /* Mobilde daha karemsi butonlar */
    }
    
    /* "Tümü" butonu mobilde tam genişlik olabilir */
    .djt-filter-btn-djx[data-filter="all"].visible {
        grid-column: span 3; /* Tüm satırı kapla */
    }
}

/* --- PAGE: BLOG (Listing & Infinite Scroll) --- */

/* Blog Grid */
.djt-blog-grid-zyn {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Blog Card */
.djt-blog-card-zmh {
    background: var(--djt-white);
    border-radius: var(--djt-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.djt-blog-card-zmh:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.djt-blog-thumb-djx {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.djt-blog-thumb-djx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.djt-blog-card-zmh:hover .djt-blog-thumb-djx img {
    transform: scale(1.08);
}

.djt-blog-meta-zyn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--djt-brand-accent);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.djt-blog-body-zmh {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.djt-blog-date-djx {
    font-size: 0.85rem;
    color: var(--djt-text-light);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.djt-blog-date-djx::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--djt-brand-accent);
    border-radius: 50%;
    margin-right: 8px;
}

.djt-blog-title-zyn {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--djt-text-dark);
    font-weight: 700;
    transition: color 0.2s;
}

.djt-blog-card-zmh:hover .djt-blog-title-zyn {
    color: var(--djt-brand-accent);
}

.djt-blog-excerpt-djx {
    font-size: 0.95rem;
    color: var(--djt-text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* 3 satırla sınırla */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.djt-read-more-btn-zmh {
    margin-top: auto;
    font-weight: 600;
    color: var(--djt-text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.djt-read-more-btn-zmh:hover {
    gap: 12px;
    color: var(--djt-brand-accent);
}

/* Infinite Scroll Loader */
.djt-loader-container-zyn {
    text-align: center;
    padding: 40px 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.djt-loader-container-zyn.visible {
    opacity: 1;
}

.djt-spinner-djx {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(52, 152, 219, 0.2);
    border-radius: 50%;
    border-top-color: var(--djt-brand-accent);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Featured / Hero Blog Area */
.djt-featured-post-zmh {
    display: flex;
    background: var(--djt-white);
    border-radius: var(--djt-radius);
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.djt-featured-img-zyn {
    flex: 1.5;
    min-height: 400px;
}
.djt-featured-img-zyn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.djt-featured-content-djx {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 900px) {
    .djt-featured-post-zmh { flex-direction: column; }
    .djt-featured-img-zyn { min-height: 250px; }
    .djt-featured-content-djx { padding: 30px; }
    .djt-blog-grid-zyn { grid-template-columns: 1fr; }
}

/* --- PAGE: İLETİŞİM (Direct Contact) --- */

.djt-contact-grid-zmh {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: -50px; /* Hero ile görsel bütünlük için yukarı çekme */
    position: relative;
    z-index: 10;
}

.djt-contact-card-djx {
    background: var(--djt-white);
    padding: 40px;
    border-radius: var(--djt-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    border-top: 5px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.djt-contact-card-djx:hover {
    transform: translateY(-10px);
}

/* Kart Varyasyonları (Renkler) */
.djt-card-whatsapp-zyn { border-top-color: #25D366; }
.djt-card-phone-zyn { border-top-color: var(--djt-brand-accent); }
.djt-card-map-zyn { border-top-color: #E74C3C; }
.djt-card-mail-zyn { border-top-color: #F1C40F; }

.djt-contact-icon-zmh {
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.djt-card-whatsapp-zyn .djt-contact-icon-zmh { color: #25D366; }
.djt-card-phone-zyn .djt-contact-icon-zmh { color: var(--djt-brand-accent); }
.djt-card-map-zyn .djt-contact-icon-zmh { color: #E74C3C; }
.djt-card-mail-zyn .djt-contact-icon-zmh { color: #F39C12; }

.djt-contact-card-djx:hover .djt-contact-icon-zmh {
    background: currentColor;
    color: white !important; /* İkon rengini beyaza çevir */
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.djt-contact-title-djx {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--djt-text-dark);
}

.djt-contact-text-zyn {
    font-size: 1.1rem;
    color: var(--djt-text-light);
    margin-bottom: 25px;
    line-height: 1.5;
}

.djt-contact-action-btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.djt-btn-wa { background: rgba(37, 211, 102, 0.1); color: #25D366; }
.djt-btn-wa:hover { background: #25D366; color: white; }

.djt-btn-ph { background: rgba(52, 152, 219, 0.1); color: var(--djt-brand-accent); }
.djt-btn-ph:hover { background: var(--djt-brand-accent); color: white; }

.djt-btn-map { background: rgba(231, 76, 60, 0.1); color: #E74C3C; }
.djt-btn-map:hover { background: #E74C3C; color: white; }

.djt-btn-mail { background: rgba(241, 196, 15, 0.1); color: #F39C12; }
.djt-btn-mail:hover { background: #F39C12; color: white; }

/* Ofis Bilgileri / Alt Bölüm */
.djt-office-info-wrapper {
    background-color: var(--djt-white);
    padding: 80px 0;
    margin-top: 60px;
    text-align: center;
}

.djt-info-list-zmh {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.djt-info-item-djx {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    color: var(--djt-text-dark);
}

.djt-info-label { font-weight: 600; color: var(--djt-text-light); }

/* Responsive */
@media (max-width: 768px) {
    .djt-contact-grid-zmh { margin-top: 0; padding-top: 40px; }
    .djt-info-item-djx { flex-direction: column; gap: 5px; }
}

/* --- PAGE: TEMA DETAY (Product Page Layout) --- */

/* Breadcrumb Navigation */
.djt-breadcrumb-wrapper-zyn {
    padding: 85px 0 0 0;
    margin-bottom: 
    font-size: 0.9rem;
    color: var(--djt-text-light);
}
.djt-breadcrumb-wrapper-zyn a { color: var(--djt-text-dark); font-weight: 600; }
.djt-breadcrumb-wrapper-zyn span { margin: 0 8px; opacity: 0.5; }

/* Product Wrapper */
.djt-product-main-wrapper-zmh {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
}

/* Sol Taraf: Galeri */
.djt-prod-gallery-side-djx {
    flex: 1;
    min-width: 300px;
}

.djt-main-image-box-zyn {
    width: 100%;
    border-radius: var(--djt-radius);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    background: #fff;
    aspect-ratio: 4/3; /* Görsel oranını koru */
}

.djt-main-image-box-zyn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.djt-thumb-grid-zmh {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.djt-thumb-item-djx {
    cursor: pointer;
    border-radius: var(--djt-radius);
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.2s;
    border: 2px solid transparent;
    aspect-ratio: 1/1;
}

.djt-thumb-item-djx img { width: 100%; height: 100%; object-fit: cover; }

.djt-thumb-item-djx:hover,
.djt-thumb-item-djx.active {
    opacity: 1;
    border-color: var(--djt-brand-accent);
}

/* Sağ Taraf: Bilgi */
.djt-prod-info-side-djx {
    flex: 1;
    min-width: 300px;
}

.djt-prod-title-zyn {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--djt-text-dark);
}

.djt-prod-meta-zmh {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: var(--djt-text-light);
}

.djt-rating-stars { color: #F1C40F; letter-spacing: 2px; }

.djt-prod-price-box-djx {
    font-size: 2rem;
    font-weight: 800;
    color: var(--djt-brand-accent);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.djt-old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #95A5A6;
    font-weight: 400;
}

.djt-prod-specs-list-zyn {
    list-style: none;
    margin-bottom: 30px;
}

.djt-prod-specs-list-zyn li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--djt-text-dark);
}

.djt-prod-specs-list-zyn li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--djt-brand-accent);
    font-size: 1.5rem;
    line-height: 1rem;
    top: 2px;
}

.djt-action-buttons-zmh {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Teknik Özellikler Tablosu */
.djt-tech-table-zyn {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.djt-tech-table-zyn td {
    padding: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.djt-tech-label { font-weight: 600; color: var(--djt-text-dark); width: 30%; }
.djt-tech-value { color: var(--djt-text-light); }

/* Detay İçerik Alanı */
.djt-detail-content-area-djx {
    line-height: 1.8;
    color: var(--djt-text-dark);
}
.djt-detail-content-area-djx h3 { font-size: 1.5rem; margin: 30px 0 15px 0; }
.djt-detail-content-area-djx p { margin-bottom: 20px; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .djt-product-main-wrapper-zmh { flex-direction: column; gap: 30px; }
    .djt-prod-title-zyn { font-size: 1.8rem; }
    .djt-action-buttons-zmh .djt-btn-action-zyn { width: 100%; text-align: center; }
}