/* ============================================
   SERVİS SAYFASI - Modern Tema
   ============================================ */

#services {
    padding: 60px 0;
    background: var(--bg-light);
    min-height: 60vh;
}

#services .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#services > div > h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    padding-bottom: 1.5rem;
}

#services > div > h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

#services > div > h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 3rem 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

#services > div > h2 i {
    color: var(--primary);
    font-size: 1.5rem;
}

#services table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2.5rem;
}

#services table thead {
    background: var(--gradient);
    color: white;
}

#services table thead th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#services table thead th span {
    display: block;
    font-size: 11px;
    opacity: 0.9;
    margin-top: 0.25rem;
}

#services table tbody tr {
    border-bottom: 1px solid var(--bg-gray);
    transition: var(--transition);
}

#services table tbody tr:hover {
    background: rgba(123, 44, 191, 0.05);
}

#services table tbody tr:last-child {
    border-bottom: none;
}

#services table tbody td {
    padding: 1.25rem 1.5rem;
    color: var(--text-dark);
    font-size: 15px;
}

#services table tbody td span {
    display: block;
}

#services table tbody td:first-child {
    font-weight: 600;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

#services table tbody td:last-child a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
}

#services table tbody td:last-child a:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-md);
}

/* Responsive Table */
@media (max-width: 768px) {
    #services > div > h1 {
        font-size: 2rem;
    }
    
    /* Mobilde kategori başlıklarını (h2) gizle */
    #services > div > h2 {
        display: none !important;
    }
    
    #services table {
        font-size: 14px;
    }
    
    #services table thead th,
    #services table tbody td {
        padding: 1rem;
    }
    
    #services table thead th span {
        display: none;
    }
}

