/* Services Page Styles */
.services-page {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.services-header {
    margin-bottom: 80px;
}

.services-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.25rem;
    color: #2C3E50;
    font-weight: 400;
    margin: 0;
}

.services-grid {
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(240, 247, 255, 0.75);
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92, 107, 192, 0.2) 0%, rgba(92, 107, 192, 0) 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.service-icon {
    position: relative;
    z-index: 2;
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 25px;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-list li {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.service-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5C6BC0;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.service-outcome {
    color: #2C3E50;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
}

.service-outcome strong {
    color: #2C3E50;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-title {
        font-size: 2.75rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding: 60px 0 50px;
        background-attachment: scroll;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-title {
        font-size: 2.25rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .service-icon-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 25px;
    }
    
    .service-icon {
        width: 100px;
        height: 100px;
    }
    
    .service-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-list li {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .service-outcome {
        font-size: 0.95rem;
        padding-top: 15px;
    }
}
