/* ============================================================
   SERVICES PAGE — services.css
   ============================================================ */

.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem;
}

.svc-card {
    background: rgba(224, 222, 209, .35);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

.svc-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .4rem;
}

.svc-icon--teal   { background: var(--teal); }
.svc-icon--olive  { background: #6b8a5e; }
.svc-icon--gray   { background: #84A1A7; }
.svc-icon--purple { background: var(--purple); }

.svc-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #000;
}

.svc-card p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    font-style: italic;
    color: #000;
    line-height: 1.8;
    text-align: right;
    margin-bottom: 0;
}

.svc-card-link {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 500;
    color: var(--teal);
    text-decoration: none;
    margin-top: auto;
    padding-top: .5rem;
    transition: color .2s ease;
}

.svc-card-link:hover {
    color: var(--purple);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .svc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .svc-card { padding: 1.5rem 1.2rem; }
    .svc-card h3 { font-size: 1.2rem; }
    .svc-card-icon { width: 56px; height: 56px; }
}

