/* =====================================================
   ARALİS GLOBAL – MODERN BELGE LİSTESİ (PREMIUM)
===================================================== */

.docs-content { 
    background: #000b1a; /* Daha derin bir siyah-lacivert */
    min-height: 80vh; 
    padding-bottom: 100px;
}

/* --- HERO ALANI --- */
.docs-hero { 
    padding: 140px 0 80px; 
    text-align: center; 
    position: relative;
}

.docs-hero h1 { 
    font-size: 3rem; 
    font-weight: 800;
    color: #fff; 
    margin: 15px 0; 
    letter-spacing: -1px;
}

.gradient-text { 
    background: linear-gradient(90deg, #FF8C3E, #ffb380); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* --- LİSTE WRAPPER (ANA KUTU) --- */
.docs-wrapper { 
    background: rgba(255, 255, 255, 0.02); 
    border-radius: 24px; 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    overflow: hidden; 
    box-shadow: 0 40px 100px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

/* --- LİSTE SATIRI (ITEM) --- */
.doc-item { 
    display: flex; 
    align-items: center; 
    padding: 28px 40px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.03); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    position: relative;
}

/* Üzerine gelince sol tarafa turuncu bir şerit çekelim */
.doc-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--aralis-orange, #FF8C3E);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.doc-item:hover { 
    background: rgba(255, 140, 62, 0.03); 
    padding-left: 45px; /* Hafif sağa kaysın */
}

.doc-item:hover::before {
    transform: scaleY(1);
}

/* İkon Tasarımı */
.doc-type-icon { 
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem; 
    color: #FF8C3E; 
    margin-right: 25px; 
    border: 1px solid rgba(255, 140, 62, 0.1);
    transition: 0.3s;
}

.doc-item:hover .doc-type-icon {
    background: #FF8C3E;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 140, 62, 0.3);
}

/* Metin Alanı */
.doc-meta {
    flex: 1;
}

.doc-meta h3 { 
    color: #fff; 
    font-size: 1.2rem; 
    font-weight: 600;
    margin-bottom: 6px; 
    transition: 0.3s;
}

.doc-item:hover .doc-meta h3 {
    color: #FF8C3E;
}

.doc-meta span { 
    color: #64748b; 
    font-size: 0.85rem; 
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Aksiyon Butonu (Modern Minimal) */
.doc-action-btn { 
    margin-left: auto; 
    padding: 12px 24px; 
    border-radius: 12px; 
    background: rgba(255, 255, 255, 0.05); 
    color: #fff; 
    text-decoration: none; 
    font-size: 0.85rem; 
    font-weight: 700; 
    border: 1px solid rgba(255, 255, 255, 0.1); 
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease; 
}

.doc-action-btn i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.doc-action-btn:hover { 
    background: #FF8C3E; 
    border-color: #FF8C3E; 
    color: #000;
    box-shadow: 0 10px 20px rgba(255, 140, 62, 0.2);
}

.doc-action-btn:hover i {
    transform: translateY(2px);
}

/* --- MOBİL UYUM --- */
@media (max-width: 768px) {
    .doc-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 25px;
    }

    .doc-action-btn {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }

    .doc-type-icon {
        margin-bottom: 10px;
    }

    .docs-hero h1 {
        font-size: 2.2rem;
    }
}
