/* assets/css/services.css */

body {
    background-color: #f8f9fa; /* אפור בהיר מאוד */
    font-family: 'Heebo', sans-serif;
}

/* --- כותרת ראשית --- */
.services-header {
    text-align: center;
    padding: 100px 20px 60px;
    background: white;
    margin-bottom: 60px;
}

.services-header h1 {
    font-size: 3.5rem; /* כותרת ענקית */
    font-weight: 900;
    margin-bottom: 15px;
    color: #000;
    letter-spacing: -1px;
}

.services-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- גריד השירותים --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 30px;
}

/* --- כרטיס שירות --- */
.service-card {
    background: white;
    padding: 50px 40px;
    position: relative;
    overflow: hidden; /* כדי שהמספר הענק לא יצא החוצה */
    transition: all 0.4s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    border-top: 5px solid transparent; /* הכנה לפס העליון */
}

/* אפקט בריחוף - הפואנטה */
.service-card:hover {
    transform: translateY(-10px); /* עולה למעלה */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-top-color: #000; /* פס שחור מופיע למעלה */
}

/* המספר הגדול ברקע */
.card-number {
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 10rem; /* ענק! */
    font-weight: 900;
    color: #f4f4f4; /* אפור בהיר מאוד */
    z-index: 0;
    line-height: 1;
    font-family: sans-serif; /* פונט ניטרלי למספרים */
    transition: 0.4s;
}

/* כשעוברים עם העכבר המספר זז קצת */
.service-card:hover .card-number {
    color: #f0f0f0;
    transform: scale(1.05);
}

/* התוכן עצמו (שיהיה מעל המספר) */
.card-content {
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
    margin-top: 40px; /* רווח מהמספר למעלה */
}

/* הרשימה */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.service-list li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 12px;
    padding-right: 15px;
    position: relative;
}

/* קו קטן ליד כל פריט ברשימה (במקום בולט) */
.service-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    width: 6px;
    height: 2px;
    background: #ccc;
}

/* הכפתור בתחתית */
.card-btn {
    display: inline-block;
    padding: 15px 0;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid #000;
    width: fit-content;
    transition: 0.3s;
    margin-top: auto; /* מצמיד לתחתית */
    position: relative;
    z-index: 1;
}

.card-btn:hover {
    color: #555;
    border-bottom-color: #555;
    letter-spacing: 1px; /* אפקט ריווח חמוד */
}

/* מובייל */
@media (max-width: 768px) {
    .services-header h1 { font-size: 2.5rem; }
    .card-number { font-size: 8rem; }
}