/* ============================================================
   Cash For Scrap Cars Ontario — services.css
   Services page specific styles (services.php)
   ============================================================ */

/* --- Services Full Grid --- */
.services-full {
    background: var(--white);
}

.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.services-full-grid .service-full-card:last-child:nth-child(3n - 2) {
    grid-column: 2 / 3;
}

.service-full-card {
    border: 1.5px solid #eee;
    border-radius: 12px;
    padding: 32px 28px;
    transition: all var(--transition);
}

.service-full-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.service-full-card .service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    text-align: center;
}

.service-full-card h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 10px;
}

.service-full-card p {
    font-size: 0.9rem;
    color: var(--grey);
    line-height: 1.7;
}

/* --- Responsive: Services --- */
@media (max-width: 768px) {
    .services-full-grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-full-grid .service-full-card:last-child:nth-child(3n - 2) {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .services-full-grid {
        grid-template-columns: 1fr;
    }
}