/* Services Link - Professional & Standout */
.services-cta {
    display: block;
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    color: #ffffff !important;
    font-family: 'Antic Slab', serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 180, 216, 0.3), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.services-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 180, 216, 0.4), 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #ffffff !important;
    text-decoration: none;
}

.services-cta:hover::before {
    left: 100%;
}

.services-cta i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}
