/* ==========================================================================
   Services Page Styles - Integrative Care Services
   ========================================================================== */

/* Process Cards */
.process-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.process-image {
    width: 100%;
    aspect-ratio: 2/1;
    overflow: hidden;
    position: relative;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.process-card:hover .process-image img {
    transform: scale(1.05);
}

.process-content {
    padding: 2rem;
    position: relative;
}

.process-number {
    position: absolute;
    top: -25px;
    left: 2rem;
    background: var(--ics-primary-blue);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.process-title {
    color: var(--ics-text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.process-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    text-align: justify;
}

.process-text em {
    color: var(--ics-primary-blue);
    font-style: italic;
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .process-card {
        margin-bottom: 2rem;
    }

    .process-content {
        padding: 1.5rem;
    }

    .process-number {
        left: 1.5rem;
    }

    .process-title {
        font-size: 1.3rem;
    }

    .process-text {
        font-size: 0.9rem;
    }
}

/* Hero Section Override for Services */
.services-hero {
    background: linear-gradient(135deg, var(--ics-primary-blue), #5BA5C8);
    min-height: 24vh;
}

/* Placeholder Image Styling */
.process-image img[src*="temp/"] {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Font Awesome Icons - Add CDN to base template if needed */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
