/* 
 * Gradient CTA Section Styling
 * Consistent styling for call-to-action sections across service pages
 */

/* Main CTA area with blue-to-green gradient */
.cta-area {
    background: linear-gradient(135deg, #2b3990, #00A551) !important;
    padding: 80px 0 !important;
    color: white !important;
    position: relative !important;
    z-index: 1 !important;
    margin-top: 60px !important;
    margin-bottom: 0 !important;
}

/* Add subtle pattern overlay for depth */
.cta-area:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h20v20H0V0zm10 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14zm0-1a6 6 0 1 1 0-12 6 6 0 0 1 0 12z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E") !important;
    z-index: -1 !important;
    opacity: 0.5 !important;
}

/* Content styling */
.cta-area .cta-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Heading styling */
.cta-area h2 {
    color: white !important;
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

/* Description text styling */
.cta-area p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 1.2rem !important;
    max-width: 800px !important;
    margin: 0 auto 30px !important;
    line-height: 1.6 !important;
}

/* Button container */
.cta-area .cta-buttons-centered {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

/* White button styling */
.cta-area .btn-white {
    display: inline-block !important;
    font-weight: 600 !important;
    text-align: center !important;
    cursor: pointer !important;
    border: 2px solid #ffffff !important;
    padding: 16px 36px !important;
    font-size: 1.2rem !important;
    border-radius: 8px !important;
    margin: 0 15px 10px !important;
    min-width: 200px !important;
    text-decoration: none !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Button hover effect */
.cta-area .btn-white:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-3px) !important;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .cta-area {
        padding: 60px 0 !important;
    }
    
    .cta-area h2 {
        font-size: 2rem !important;
    }
    
    .cta-area p {
        font-size: 1.1rem !important;
    }
    
    .cta-area .btn-white {
        width: 100% !important;
        margin: 10px 0 !important;
        padding: 14px 20px !important;
    }
}
