/* Service Highlights Grid CSS - Professional & Bold */
.service-highlights {
    width: 100%;
    background-color: #ffffff;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.highlight-card {
    padding: 60px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    transition: all 0.3s ease;
}

/* Alternating Brand Colors from Reference Image */
.highlight-card.dark-blue {
    background-color: var(--primary-color);
}

.highlight-card.teal {
    background-color: var(--accent-color);
}

/* Hover Effect for Interactivity */
.highlight-card:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-card h3 {
    color: var(--secondary-color); /* Gold/Yellow heading tint */
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: capitalize;
    line-height: 1.2;
}

.highlight-card p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 500;
    margin: 0 auto;
    max-width: 250px;
}

/* Responsive Grid Polish */
@media screen and (max-width: 992px) {
    .highlights-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .highlights-container {
        grid-template-columns: repeat(2, 1fr); /* 2x2 Columned layout for mobile */
    }
    .highlight-card {
        padding: 40px 15px;
        min-height: auto;
    }
    .highlight-card h3 {
        font-size: 1.1rem; /* Decreased font size for mobile */
        margin-bottom: 10px;
    }
    .highlight-card p {
        font-size: 0.85rem; /* Decreased font size for mobile */
        line-height: 1.3;
        max-width: 100%;
    }
}
