/**
 * Service Highlights Section CSS
 * Replaces offers section on homepage
 */

.service-highlights-box {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.highlight-card {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #667eea;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.highlight-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.highlight-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .service-highlights-box {
        padding: 30px 20px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .highlight-title {
        font-size: 16px;
    }
    
    .highlight-description {
        font-size: 13px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
