/* Mobile Service Links Fix */
@media (max-width: 991.98px) {
    .services-list .service {
        position: relative;
    }
    
    .services-list .service-link {
        position: relative !important;
        z-index: 10 !important;
        pointer-events: auto !important;
        width: 40px !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: #187fd3 !important;
        border-radius: 50% !important;
        margin-top: 20px !important;
        margin-left: auto !important;
        cursor: pointer !important;
    }
    
    .services-list .service-link svg {
        display: block !important;
        width: 16px;
        height: 16px;
        fill: white;
    }
    
    .services-list .service-text {
        position: relative;
        z-index: 2;
    }
    
    .services-list .service-text .read-more-link {
        position: relative;
        z-index: 11;
        pointer-events: auto;
        display: inline-block;
        padding: 8px 16px;
        margin-top: 10px;
        color: #187fd3;
        text-decoration: underline;
        font-weight: 500;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(24, 127, 211, 0.2);
        touch-action: manipulation;
    }
    
    /* Ensure touch events work properly */
    .services-list .service-link,
    .services-list .service-text .read-more-link {
        -webkit-touch-callout: default;
        -webkit-user-select: none;
        user-select: none;
        touch-action: manipulation;
    }
    
    /* Add hover states for mobile */
    .services-list .service-link:active {
        background-color: #1569b5 !important;
        transform: scale(0.95);
    }
    
    .services-list .service-text .read-more-link:active {
        color: #1569b5;
    }
}

/* Desktop - ensure links work properly */
@media (min-width: 992px) {
    .services-list .service {
        position: relative;
    }
    
    .services-list .service-text .read-more-link {
        position: relative;
        z-index: 15;
        pointer-events: auto;
        color: #187fd3;
        text-decoration: underline;
        font-weight: 500;
    }
    
    .services-list .service-text .read-more-link:hover {
        color: #1569b5;
    }
}