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

#services-page::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(44, 139, 176, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.services-page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.services-page-header h1 {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-page-header p {
    color: var(--text-color);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 1.1rem;
}

.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);
    padding: 30px;
    display: flex;
    align-items: center;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.05),
        0 5px 15px rgba(44, 139, 176, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 6px solid var(--secondary-color);
    overflow: hidden;
    position: relative;
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg, 
        transparent, 
        rgba(44, 139, 176, 0.03), 
        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.08),
        0 10px 25px rgba(44, 139, 176, 0.05);
}

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

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

.service-details {
    flex-grow: 1;
}

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

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

.service-detailed-card.service-btn {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 6px solid var(--secondary-color);
}

.service-detailed-card.service-btn:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 45px rgba(0,0,0,0.08),
        0 10px 25px rgba(44, 139, 176, 0.05);
    background-color: rgba(44, 139, 176, 0.02);
}

.service-detailed-card.service-btn:active {
    transform: scale(0.98);
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.05),
        0 5px 15px rgba(44, 139, 176, 0.03);
}

#service-process-overview {
    background: var(--background-light);
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
}

#service-process-overview::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(44, 139, 176, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.process-step {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.05),
        0 5px 15px rgba(44, 139, 176, 0.03);
    width: 300px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg, 
        transparent, 
        rgba(44, 139, 176, 0.03), 
        transparent
    );
    transform: rotate(-45deg);
    z-index: 1;
    opacity: 0.1;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 45px rgba(0,0,0,0.08),
        0 10px 25px rgba(44, 139, 176, 0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .process-step {
        width: 100%;
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .services-page-header h1 {
        font-size: 2.5rem;
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .service-detailed-card {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}