/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    text-align: center;
    margin: 0 auto 1rem;
    color: var(--black);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-burgundy);
    margin: 15px auto 3rem;
}

/* Services Grid - Desktop: 3 cards per row */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tablet: 3 cards per row */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Mobile: 2 cards per row */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 10px;
    }
}

/* Small Mobile: 2 cards per row (smaller gap) */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.service-card {
    background: var(--white);
    border: 1px solid var(--light-grey);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    border-radius: 8px;
    /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Slight shadow */
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-burgundy);
    box-shadow: 0 15px 30px rgba(90, 15, 27, 0.1);
    /* Burgundy shadow hint */
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-burgundy);
}

.service-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--primary-burgundy);
    /* Burgundy title */
    font-size: 1.5rem;
}

.service-card p {
    color: var(--medium-grey);
    /* Grey text */
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile responsive adjustments for cards */
@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: 1.5rem 1rem;
    }

    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }
}