:root{
    --card-radius: 12px;
    --accent: #2b7bff;
    --muted: #6b7280;
    --shadow: 0 12px 30px rgba(16,24,40,0.08);
    --section-title-size: 4rem; /* increased main heading size */
}

/* Grid */
.service-grid {
    align-items: stretch;
}

/* Card layout */
.service-card{
    display: grid;
//    grid-template-columns: 220px 1fr;
    gap: 0;
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    border: 1px solid rgba(16,24,40,0.04);
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.service-card:focus-within,
.service-card:focus{
    outline: none;
    box-shadow: 0 10px 28px rgba(43,123,255,0.14);
    transform: translateY(-6px);
}

.service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(16,24,40,0.12);
}

/* Media column */
.service-media{
    width:100%;
    height:100%;
    background:#f3f4f6;
    overflow:hidden;
}

.service-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition: transform .6s cubic-bezier(.2,.8,.2,1);
}

.service-card:hover .service-media img{
    transform: scale(1.06);
}

/* Body column */
.service-body{
    padding: 20px 22px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.service-body h4{
    margin:0;
    font-size:2.25rem;
    font-weight:700;
    color:#0f172a;
}

/* Meta row: duration, type, price */
.meta-row{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
    margin-top:6px;
}

.meta-item{
    font-size:1.25rem;
    color:var(--muted);
    background: rgba(99,102,241,0.06);
    padding:6px 10px;
    border-radius:8px;
    border:1px solid rgba(99,102,241,0.06);
}

.price-tag{
    margin-left:auto;
    color:#fff;
    padding:6px 10px;
    border-radius:8px;
    font-weight:700;
    font-size:1.25rem;
    box-shadow: 0 6px 18px rgba(43,123,255,0.12);
}

/* Description and list */
.service-body p{
    margin:0;
    color:var(--muted);
    line-height:1.5;
}

.service-body ul{
    margin:6px 0 0 18px;
    padding:0;
    color:var(--muted);
}

/* Actions */
.service-actions{
    margin-top:12px;
    display:flex;
    gap:10px;
    align-items:center;
}

.service-actions .btn{
    border-radius:8px;
    padding:8px 14px;
    font-size:1.25rem;
}

/* Responsive: stack columns on small screens */
@media (max-width: 991.98px){
    .service-card{
        grid-template-columns: 1fr;
    }
    .service-media{
        height:220px;
    }
    .price-tag{
        margin-left:0;
    }
}

/* Section title bigger */
.section-title{
    font-weight:700;
    font-size: var(--section-title-size);
    margin-bottom:6px;
}

/* Lead text */
.lead{
    color:var(--muted);
    margin-bottom:18px;
    font-size:1.5rem;
}