/* ============================================
   SERVICES PAGE CSS - Only for services.html
   ============================================ */

.services-list {
    padding: 60px 0;
    margin-bottom: 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) .service-content {
    direction: ltr;
}

.service-image {
    height: 400px;
    background-size: cover;
    background-position: center;
}

.service-content h2 {
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .services-list {
        padding: 40px 0;
    }
    
    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .service-image {
        height: 250px;
    }
}