/* Services Showcase Section Styles */
.services-showcase {
    padding: 60px 0 45px;
    background: linear-gradient(135deg, var(--primary-color, #5682B1) 0%, var(--accent-color, #3b82f6) 100%);
    position: relative;
    overflow: hidden;
}

.services-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.services-showcase .container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    box-sizing: border-box;
}

.showcase-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.showcase-header .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    animation: fadeInDown 0.8s ease-out;
}

.showcase-header .section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.service-options {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.service-option {
    background: white;
    border-radius: 18px;
    padding: 2rem 1.6rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex: 1;
    max-width: 360px;
    animation: slideInScale 0.6s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.service-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(86, 130, 177, 0.1), transparent);
    transition: left 0.4s ease;
}

.service-option:hover::before {
    left: 100%;
}

.service-option:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.service-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color, #5682B1), var(--accent-color, #3b82f6));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 16px rgba(86, 130, 177, 0.25);
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.45rem;
    color: white;
}

.service-option:hover .service-icon {
    transform: scale(1.08) rotate(4deg);
}

.service-option h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.service-description {
    font-size: 0.88rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    line-height: 1.45;
}

.service-features {
    margin-bottom: 1.5rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.15rem 0;
    font-size: 0.84rem;
    color: #334155;
}

.feature-item i {
    color: var(--primary-color, #5682B1);
    font-size: 0.92rem;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    line-height: 1.35;
}

.service-cta {
    text-align: center;
    margin-top: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 0.4rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    width: 100%;
    max-width: 250px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color, #5682B1), var(--accent-color, #3b82f6));
    color: white;
    box-shadow: 0 4px 14px rgba(86, 130, 177, 0.3);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #4f7ca8, #2563eb);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-note {
    font-size: 0.74rem;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
}

.service-divider {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 0.5rem;
}

.divider-line {
    flex: 1;
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.divider-text {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    backdrop-filter: blur(8px);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInScale {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Responsive Design */
@media (max-width: 900px) {
    .service-options {
        gap: 1rem;
    }
    
    .service-option {
        padding: 1.5rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .services-showcase {
        padding: 38px 0 25px;
    }
    
    .services-showcase .container {
        padding: 0 16px;
    }
    
    .showcase-header {
        margin-bottom: 1.75rem;
    }
    
    .showcase-header .section-title {
        font-size: 1.7rem;
    }
    
    .showcase-header .section-subtitle {
        font-size: 0.88rem;
        line-height: 1.4;
    }
    
    .service-options {
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
        width: 100%;
        max-width: 440px;
        margin: 0 auto 1.5rem;
        padding: 0;
    }
    
    .service-option {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem 1.2rem;
        border-radius: 16px;
        box-sizing: border-box;
        margin: 0;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .service-icon i {
        font-size: 1.3rem;
    }
    
    .service-option h3 {
        font-size: 1.15rem;
        margin-bottom: 0.35rem;
    }
    
    .service-description {
        font-size: 0.84rem;
        margin-bottom: 1rem;
    }
    
    .service-features {
        margin-bottom: 1.25rem;
        gap: 0.4rem;
    }
    
    .feature-item {
        font-size: 0.82rem;
        gap: 0.55rem;
    }
    
    .feature-item i {
        font-size: 0.88rem;
    }
    
    .cta-button {
        padding: 0.68rem 1.3rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 260px;
    }
    
    .cta-note {
        font-size: 0.72rem;
    }
    
    .service-divider {
        flex-direction: row;
        width: 100%;
        max-width: 240px;
        gap: 0.75rem;
        margin: 0.25rem auto;
    }
    
    .divider-line {
        flex: 1;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    }
    
    .divider-text {
        font-size: 0.78rem;
        padding: 0.25rem 0.65rem;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .services-showcase {
        padding: 30px 0 18px;
    }
    
    .services-showcase .container {
        padding: 0 14px;
    }
    
    .showcase-header {
        margin-bottom: 1.25rem;
    }
    
    .showcase-header .section-title {
        font-size: 1.45rem;
        margin-bottom: 0.35rem;
    }
    
    .showcase-header .section-subtitle {
        font-size: 0.82rem;
    }
    
    .service-options {
        gap: 1rem;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .service-option {
        padding: 1.25rem 1rem;
        border-radius: 14px;
    }
    
    .service-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 0.6rem;
    }
    
    .service-icon i {
        font-size: 1.15rem;
    }
    
    .service-option h3 {
        font-size: 1.05rem;
        margin-bottom: 0.25rem;
    }
    
    .service-description {
        font-size: 0.78rem;
        margin-bottom: 0.85rem;
        line-height: 1.4;
    }
    
    .service-features {
        margin-bottom: 1rem;
        gap: 0.35rem;
    }
    
    .feature-item {
        font-size: 0.78rem;
        gap: 0.5rem;
    }
    
    .feature-item i {
        font-size: 0.82rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.1rem;
        font-size: 0.82rem;
        max-width: 240px;
    }
    
    .cta-note {
        font-size: 0.68rem;
    }
}

@media (max-width: 360px) {
    .services-showcase .container {
        padding: 0 10px;
    }

    .showcase-header .section-title {
        font-size: 1.3rem;
    }
    
    .service-option {
        padding: 1.1rem 0.85rem;
    }
    
    .service-option h3 {
        font-size: 0.98rem;
    }
    
    .feature-item {
        font-size: 0.74rem;
    }
    
    .cta-button {
        padding: 0.55rem 1rem;
        font-size: 0.78rem;
    }
}
