/* ========== SERVICES SECTION ========== */
#services {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(245, 240, 255, 0.9));
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all 0.4s ease;
    border-top: 4px solid var(--periwinkle-pale);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--floral-pink), var(--lavender-purple), var(--golden-yellow));
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 106, 165, 0.02), rgba(227, 199, 74, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(150, 142, 176, 0.3);
    border-top-color: var(--floral-pink);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--violet-dusty), var(--grape-muted));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(143, 130, 170, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(200, 106, 165, 0.2);
}

.service-card:hover .service-icon::after {
    opacity: 0.4;
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--floral-pink), var(--rose-pink));
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--golden-yellow), var(--olive-gold));
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, var(--leaf-green), var(--sage-green));
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, var(--plum-deep), var(--fuchsia-muted));
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, var(--lavender-purple), var(--periwinkle-pale));
}

.service-card:nth-child(7) .service-icon {
    background: linear-gradient(135deg, var(--violet-dusty), var(--periwinkle-pale));
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-card p {
    transition: color 0.3s ease;
}

.service-card:hover p {
    color: var(--text-primary);
}

/* EAP Services */
.eap-services {
    background: linear-gradient(135deg, var(--leaf-green), var(--moss-green));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(111, 143, 106, 0.3);
    border: 2px solid var(--sage-green);
    position: relative;
    overflow: hidden;
}

.eap-services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    animation: float 20s linear infinite;
}

.eap-services h3 {
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.eap-services p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.eap-details {
    margin-top: 30px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}

.eap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.eap-details h4 {
    color: var(--golden-yellow);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.eap-details ul {
    list-style: none;
    padding: 0;
}

.eap-details ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.eap-details ul li i {
    color: var(--sage-green);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Session Options */
.session-options-container {
    text-align: center;
}

.session-options-title {
    color: var(--text-primary);
    margin-bottom: 30px;
}

.session-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
    width: 100%;
}

.session-option {
    flex: 1 1 250px;
    max-width: 300px;
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow);
    transition: all var(--transition-fast);
    border: 2px solid var(--golden-yellow);
}

.session-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(227, 199, 74, 0.2);
    border-color: var(--leaf-green);
}

.session-option-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--olive-gold);
    transition: transform 0.3s ease;
}

.session-option:hover .session-option-icon {
    transform: scale(1.1);
}

.session-option:nth-child(2) .session-option-icon {
    color: var(--leaf-green);
}

.session-option h4 {
    margin-bottom: 15px;
    color: var(--text-primary);
}