/* Enhanced services page styles */
#services-page {
    background: linear-gradient(135deg, var(--background-light), #f9fbfc);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

#services-page::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: rgba(32, 178, 170, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.services-page-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.services-page-header h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.services-page-header p {
    color: var(--text-color);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.service-detailed-card {
    background: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    padding: 30px;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    border-left: 5px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg, 
        transparent, 
        rgba(32, 178, 170, 0.05), 
        transparent
    );
    transform: rotate(-45deg);
    z-index: 1;
    opacity: 0.1;
}

.service-detailed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.1);
}

.service-icon {
    margin-right: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon .icon {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    stroke-width: 1.5;
}

.service-details h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-details p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-service-details {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-service-details:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

