/* =========================================
   Service CTA (Modernized)
   ========================================= */
.wpt-service-cta {
    background: #ffffff;
    border-top: 4px solid var(--wpt-primary, #10b981);
    padding: 32px;
    margin: 40px 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    font-family: inherit;
}

/* Subtle background pattern */
.wpt-service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--wpt-primary, #10b981), #3b82f6);
}

.wpt-service-cta h3.wpt-cta-heading {
    margin: 0 0 16px 0 !important;
    color: #1e293b;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.wpt-service-cta p.wpt-cta-text {
    margin: 0 0 28px 0 !important;
    color: #64748b;
    font-size: 17px !important;
    line-height: 1.6 !important;
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.wpt-cta-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 14px 32px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    border: none !important;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.wpt-cta-button.primary {
    background: var(--wpt-primary, #10b981) !important;
    color: #ffffff !important;
}

.wpt-cta-button.primary:hover {
    background: #059669 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.wpt-cta-button.secondary {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

.wpt-cta-button.secondary:hover {
    background: #e2e8f0 !important;
    transform: translateY(-2px);
}

/* Secondary variant styling */
.wpt-service-cta.secondary {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-top: none;
    box-shadow: none;
}