/* ── Service Cards Widget ── */

.scw-grid {
    display: grid;
    gap: 20px;
}
.scw-cols-1 { grid-template-columns: 1fr; }
.scw-cols-2 { grid-template-columns: repeat(2, 1fr); }
.scw-cols-3 { grid-template-columns: repeat(3, 1fr); }
.scw-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Card */
.scw-card {
    background: #ffffff;
    border: 1px solid #f0ece8;
    border-radius: 16px;
    padding: 28px 24px 24px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.35s ease, border-color 0.35s ease;
}

/* Hover overlay – rises from bottom */
.scw-card::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 0;
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}
.scw-card:hover::after { height: 100%; }
.scw-card:hover { transform: translateY(-5px); border-color: #e8917a; }

/* Circle icon */
.scw-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: #f4b8a3;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    position: relative; z-index: 1;
    transition: background 0.35s;
}
.scw-icon-wrap i   { font-size: 20px; color: #c0705a; transition: color 0.35s; }
.scw-icon-wrap svg { width: 20px; height: 20px; fill: #c0705a; transition: fill 0.35s; }
.scw-icon-wrap img { width: 20px; height: 20px; object-fit: contain; }

/* Title */
.scw-title {
    font-size: 17px; font-weight: 600; color: #2c2c2a;
    margin: 0 0 8px; line-height: 1.3;
    position: relative; z-index: 1;
    transition: color 0.35s;
}

/* Description */
.scw-desc {
    font-size: 13px; color: #6b6b65; line-height: 1.6;
    margin: 0 0 16px;
    position: relative; z-index: 1;
    transition: color 0.35s;
}

/* Features list */
.scw-features {
    list-style: none; padding: 0; margin: 0 0 20px;
    position: relative; z-index: 1;
}
.scw-features li {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 8px;
}

.scw-features li::before
{
    display: none !important;    
}

.scw-feat-icon {
    display: flex; align-items: center; flex-shrink: 0;
}
.scw-feat-icon i   { font-size: 16px; color: #c0705a; transition: color 0.35s; }
.scw-feat-icon svg { width: 16px; height: 16px; fill: #c0705a; transition: fill 0.35s; }

.scw-feat-text {
    font-size: 13px; color: #6b6b65;
    transition: color 0.35s;
}

/* Learn More link */
.scw-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500; color: #c0705a;
    text-decoration: none;
    position: relative; z-index: 1;
    transition: color 0.35s, gap 0.25s;
}
.scw-link:hover { gap: 10px; }
.scw-arrow { display: inline-flex; align-items: center; transition: transform 0.25s; }
.scw-link:hover .scw-arrow { transform: translateX(3px); }
.scw-arrow i   { font-size: 12px; color: #c0705a; transition: color 0.35s; }
.scw-arrow svg { width: 12px; height: 12px; fill: #c0705a; transition: fill 0.35s; }

/* Responsive */
@media (max-width: 1024px) {
    .scw-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .scw-cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .scw-cols-4, .scw-cols-3, .scw-cols-2 { grid-template-columns: 1fr; }
}
