/* ==============================================
   services.css – עיצוב אזור השירותים
   כרטיסיות שירות, אייקונים, רשימות ומאפייני hover
   ============================================== */


/* ==============================================
   5. כרטיסי שירות
   ============================================== */

/* כרטיס שירות בסיסי עם אנימציית hover */
.service-card {
    background-color: #ffffff;
    border: 1px solid #e4efe7;
    border-radius: 1.5rem;
    padding: 2rem 1.75rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* הרמת הכרטיס בעת מעבר עכבר */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px -20px rgba(55, 92, 69, 0.25);
    border-color: #a3c7ae;
}

/* מיכל אייקון השירות */
.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.35s ease;
}

/* סיבוב קל לאייקון בעת hover */
.service-card:hover .service-icon {
    transform: rotate(-6deg) scale(1.05);
}

/* כותרת השירות */
.service-title {
    font-family: 'Assistant', 'Heebo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #273d30;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* תיאור השירות */
.service-desc {
    color: #394842;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

/* רשימת תכונות השירות */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* פריט ברשימה עם נקודה ירוקה */
.service-list li {
    position: relative;
    padding-inline-start: 1.25rem;
    color: #5c6a63;
    font-size: 0.9rem;
}

/* נקודה ירוקה לפני כל פריט ברשימה */
.service-list li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #78aa88;
}

/* תחתית הכרטיס עם קו מקווקו */
.service-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px dashed #e4efe7;
}
